Flip structure declation.
[awesomized/libmemcached] / libmemcached / io.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * LibMemcached
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
16 * * Redistributions in binary form must reproduce the above
17 * copyright notice, this list of conditions and the following disclaimer
18 * in the documentation and/or other materials provided with the
19 * distribution.
20 *
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
23 * written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 */
38
39
40 #include <libmemcached/common.h>
41
42 enum memc_read_or_write {
43 MEM_READ,
44 MEM_WRITE
45 };
46
47 /*
48 * The udp request id consists of two seperate sections
49 * 1) The thread id
50 * 2) The message number
51 * The thread id should only be set when the memcached_st struct is created
52 * and should not be changed.
53 *
54 * The message num is incremented for each new message we send, this function
55 * extracts the message number from message_id, increments it and then
56 * writes the new value back into the header
57 */
58 static void increment_udp_message_id(memcached_server_write_instance_st ptr)
59 {
60 struct udp_datagram_header_st *header= (struct udp_datagram_header_st *)ptr->write_buffer;
61 uint16_t cur_req= get_udp_datagram_request_id(header);
62 int msg_num= get_msg_num_from_request_id(cur_req);
63 int thread_id= get_thread_id_from_request_id(cur_req);
64
65 if (((++msg_num) & UDP_REQUEST_ID_THREAD_MASK) != 0)
66 msg_num= 0;
67
68 header->request_id= htons((uint16_t) (thread_id | msg_num));
69 }
70
71 /**
72 * Try to fill the input buffer for a server with as much
73 * data as possible.
74 *
75 * @param ptr the server to pack
76 */
77 static bool repack_input_buffer(memcached_server_write_instance_st ptr)
78 {
79 if (ptr->read_ptr != ptr->read_buffer)
80 {
81 /* Move all of the data to the beginning of the buffer so
82 ** that we can fit more data into the buffer...
83 */
84 memmove(ptr->read_buffer, ptr->read_ptr, ptr->read_buffer_length);
85 ptr->read_ptr= ptr->read_buffer;
86 ptr->read_data_length= ptr->read_buffer_length;
87 }
88
89 /* There is room in the buffer, try to fill it! */
90 if (ptr->read_buffer_length != MEMCACHED_MAX_BUFFER)
91 {
92 do {
93 /* Just try a single read to grab what's available */
94 ssize_t nr= recv(ptr->fd,
95 ptr->read_ptr + ptr->read_data_length,
96 MEMCACHED_MAX_BUFFER - ptr->read_data_length,
97 MSG_DONTWAIT);
98
99 switch (nr)
100 {
101 case SOCKET_ERROR:
102 {
103 switch (get_socket_errno())
104 {
105 case EINTR:
106 continue;
107
108 case EWOULDBLOCK:
109 #ifdef USE_EAGAIN
110 case EAGAIN:
111 #endif
112 #ifdef TARGET_OS_LINUX
113 case ERESTART:
114 #endif
115 break; // No IO is fine, we can just move on
116
117 default:
118 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
119 }
120 }
121 break;
122
123 case 0: // Shutdown on the socket has occurred
124 {
125 memcached_set_error(*ptr, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT);
126 }
127 break;
128
129 default:
130 {
131 ptr->read_data_length+= size_t(nr);
132 ptr->read_buffer_length+= size_t(nr);
133 return true;
134 }
135 break;
136 }
137 } while (0);
138 }
139 return false;
140 }
141
142 /**
143 * If the we have callbacks connected to this server structure
144 * we may start process the input queue and fire the callbacks
145 * for the incomming messages. This function is _only_ called
146 * when the input buffer is full, so that we _know_ that we have
147 * at least _one_ message to process.
148 *
149 * @param ptr the server to star processing iput messages for
150 * @return true if we processed anything, false otherwise
151 */
152 static bool process_input_buffer(memcached_server_write_instance_st ptr)
153 {
154 /*
155 ** We might be able to process some of the response messages if we
156 ** have a callback set up
157 */
158 if (ptr->root->callbacks != NULL && ptr->root->flags.use_udp == false)
159 {
160 /*
161 * We might have responses... try to read them out and fire
162 * callbacks
163 */
164 memcached_callback_st cb= *ptr->root->callbacks;
165
166 memcached_set_processing_input((memcached_st *)ptr->root, true);
167
168 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
169 memcached_return_t error;
170 memcached_st *root= (memcached_st *)ptr->root;
171 error= memcached_response(ptr, buffer, sizeof(buffer),
172 &root->result);
173
174 memcached_set_processing_input(root, false);
175
176 if (error == MEMCACHED_SUCCESS)
177 {
178 for (unsigned int x= 0; x < cb.number_of_callback; x++)
179 {
180 error= (*cb.callback[x])(ptr->root, &root->result, cb.context);
181 if (error != MEMCACHED_SUCCESS)
182 break;
183 }
184
185 /* @todo what should I do with the error message??? */
186 }
187 /* @todo what should I do with other error messages?? */
188 return true;
189 }
190
191 return false;
192 }
193
194 static memcached_return_t io_wait(memcached_server_write_instance_st ptr,
195 memc_read_or_write read_or_write)
196 {
197 struct pollfd fds;
198 fds.fd= ptr->fd;
199 fds.events= POLLIN;
200
201 if (read_or_write == MEM_WRITE) /* write */
202 {
203 fds.events= POLLOUT;
204 WATCHPOINT_SET(ptr->io_wait_count.write++);
205 }
206 else
207 {
208 WATCHPOINT_SET(ptr->io_wait_count.read++);
209 }
210
211 /*
212 ** We are going to block on write, but at least on Solaris we might block
213 ** on write if we haven't read anything from our input buffer..
214 ** Try to purge the input buffer if we don't do any flow control in the
215 ** application layer (just sending a lot of data etc)
216 ** The test is moved down in the purge function to avoid duplication of
217 ** the test.
218 */
219 if (read_or_write == MEM_WRITE)
220 {
221 memcached_return_t rc= memcached_purge(ptr);
222 if (rc != MEMCACHED_SUCCESS && rc != MEMCACHED_STORED)
223 {
224 return MEMCACHED_FAILURE;
225 }
226 }
227
228 if (ptr->root->poll_timeout == 0) // Mimic 0 causes timeout behavior (not all platforms do this)
229 {
230 return memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
231 }
232
233 size_t loop_max= 5;
234 while (--loop_max) // While loop is for ERESTART or EINTR
235 {
236
237 int error= poll(&fds, 1, ptr->root->poll_timeout);
238 switch (error)
239 {
240 case 1: // Success!
241 WATCHPOINT_IF_LABELED_NUMBER(read_or_write && loop_max < 4, "read() times we had to loop, decremented down from 5", loop_max);
242 WATCHPOINT_IF_LABELED_NUMBER(!read_or_write && loop_max < 4, "write() times we had to loop, decremented down from 5", loop_max);
243
244 return MEMCACHED_SUCCESS;
245
246 case 0: // Timeout occured, we let the while() loop do its thing.
247 return memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
248
249 default:
250 WATCHPOINT_ERRNO(get_socket_errno());
251 switch (get_socket_errno())
252 {
253 #ifdef TARGET_OS_LINUX
254 case ERESTART:
255 #endif
256 case EINTR:
257 break;
258
259 case EFAULT:
260 case ENOMEM:
261 return memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT);
262
263 case EINVAL:
264 return memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT, memcached_literal_param("RLIMIT_NOFILE exceeded, or if OSX the timeout value was invalid"));
265
266 default:
267 if (fds.revents & POLLERR)
268 {
269 int err;
270 socklen_t len= sizeof (err);
271 (void)getsockopt(ptr->fd, SOL_SOCKET, SO_ERROR, &err, &len);
272 memcached_set_errno(*ptr, (err == 0) ? get_socket_errno() : err, MEMCACHED_AT);
273 }
274 else
275 {
276 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
277 }
278 memcached_quit_server(ptr, true);
279
280 return memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
281 }
282 }
283 }
284
285 memcached_quit_server(ptr, true);
286
287 return memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
288 }
289
290 static ssize_t io_flush(memcached_server_write_instance_st ptr,
291 const bool with_flush,
292 memcached_return_t *error)
293 {
294 /*
295 ** We might want to purge the input buffer if we haven't consumed
296 ** any output yet... The test for the limits is the purge is inline
297 ** in the purge function to avoid duplicating the logic..
298 */
299 {
300 memcached_return_t rc;
301 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
302 rc= memcached_purge(ptr);
303
304 if (rc != MEMCACHED_SUCCESS && rc != MEMCACHED_STORED)
305 {
306 return -1;
307 }
308 }
309 size_t return_length;
310 char *local_write_ptr= ptr->write_buffer;
311 size_t write_length= ptr->write_buffer_offset;
312
313 *error= MEMCACHED_SUCCESS;
314
315 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
316
317 // UDP Sanity check, make sure that we are not sending somthing too big
318 if (ptr->type == MEMCACHED_CONNECTION_UDP && write_length > MAX_UDP_DATAGRAM_LENGTH)
319 {
320 *error= MEMCACHED_WRITE_FAILURE;
321 return -1;
322 }
323
324 if (ptr->write_buffer_offset == 0 || (ptr->type == MEMCACHED_CONNECTION_UDP
325 && ptr->write_buffer_offset == UDP_DATAGRAM_HEADER_LENGTH))
326 {
327 return 0;
328 }
329
330 /* Looking for memory overflows */
331 #if defined(DEBUG)
332 if (write_length == MEMCACHED_MAX_BUFFER)
333 WATCHPOINT_ASSERT(ptr->write_buffer == local_write_ptr);
334 WATCHPOINT_ASSERT((ptr->write_buffer + MEMCACHED_MAX_BUFFER) >= (local_write_ptr + write_length));
335 #endif
336
337 return_length= 0;
338 while (write_length)
339 {
340 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
341 WATCHPOINT_ASSERT(write_length > 0);
342 if (ptr->type == MEMCACHED_CONNECTION_UDP)
343 increment_udp_message_id(ptr);
344
345 ssize_t sent_length= 0;
346 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
347 if (with_flush)
348 {
349 sent_length= send(ptr->fd, local_write_ptr, write_length, MSG_NOSIGNAL|MSG_DONTWAIT);
350 }
351 else
352 {
353 sent_length= send(ptr->fd, local_write_ptr, write_length, MSG_NOSIGNAL|MSG_DONTWAIT|MSG_MORE);
354 }
355
356 if (sent_length == SOCKET_ERROR)
357 {
358 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
359 #if 0 // @todo I should look at why we hit this bit of code hard frequently
360 WATCHPOINT_ERRNO(get_socket_errno());
361 WATCHPOINT_NUMBER(get_socket_errno());
362 #endif
363 switch (get_socket_errno())
364 {
365 case ENOBUFS:
366 continue;
367 case EWOULDBLOCK:
368 #ifdef USE_EAGAIN
369 case EAGAIN:
370 #endif
371 {
372 /*
373 * We may be blocked on write because the input buffer
374 * is full. Let's check if we have room in our input
375 * buffer for more data and retry the write before
376 * waiting..
377 */
378 if (repack_input_buffer(ptr) or
379 process_input_buffer(ptr))
380 {
381 continue;
382 }
383
384 memcached_return_t rc= io_wait(ptr, MEM_WRITE);
385 if (memcached_success(rc))
386 {
387 continue;
388 }
389 else if (rc == MEMCACHED_TIMEOUT)
390 {
391 *error= memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
392 return -1;
393 }
394
395 memcached_quit_server(ptr, true);
396 *error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
397 return -1;
398 }
399 case ENOTCONN:
400 case EPIPE:
401 default:
402 memcached_quit_server(ptr, true);
403 *error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
404 WATCHPOINT_ASSERT(ptr->fd == -1);
405 return -1;
406 }
407 }
408
409 if (ptr->type == MEMCACHED_CONNECTION_UDP and
410 size_t(sent_length) != write_length)
411 {
412 memcached_quit_server(ptr, true);
413 *error= memcached_set_error(*ptr, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
414 return -1;
415 }
416
417 ptr->io_bytes_sent += (uint32_t) sent_length;
418
419 local_write_ptr+= sent_length;
420 write_length-= (uint32_t) sent_length;
421 return_length+= (uint32_t) sent_length;
422 }
423
424 WATCHPOINT_ASSERT(write_length == 0);
425 // Need to study this assert() WATCHPOINT_ASSERT(return_length ==
426 // ptr->write_buffer_offset);
427
428 // if we are a udp server, the begining of the buffer is reserverd for
429 // the upd frame header
430 if (ptr->type == MEMCACHED_CONNECTION_UDP)
431 ptr->write_buffer_offset= UDP_DATAGRAM_HEADER_LENGTH;
432 else
433 ptr->write_buffer_offset= 0;
434
435 return (ssize_t) return_length;
436 }
437
438 memcached_return_t memcached_io_wait_for_write(memcached_server_write_instance_st ptr)
439 {
440 return io_wait(ptr, MEM_WRITE);
441 }
442
443 memcached_return_t memcached_io_read(memcached_server_write_instance_st ptr,
444 void *buffer, size_t length, ssize_t *nread)
445 {
446 assert_msg(ptr, "Programmer error, memcached_io_read() recieved an invalid memcached_server_write_instance_st"); // Programmer error
447 char *buffer_ptr= static_cast<char *>(buffer);
448
449 if (ptr->fd == INVALID_SOCKET)
450 {
451 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Programmer error, invalid socket state");
452 return MEMCACHED_CONNECTION_FAILURE;
453 }
454
455 while (length)
456 {
457 if (not ptr->read_buffer_length)
458 {
459 ssize_t data_read;
460 do
461 {
462 data_read= recv(ptr->fd, ptr->read_buffer, MEMCACHED_MAX_BUFFER, MSG_DONTWAIT);
463 if (data_read == SOCKET_ERROR)
464 {
465 switch (get_socket_errno())
466 {
467 case EINTR: // We just retry
468 continue;
469
470 case ETIMEDOUT: // OSX
471 case EWOULDBLOCK:
472 #ifdef USE_EAGAIN
473 case EAGAIN:
474 #endif
475 #ifdef TARGET_OS_LINUX
476 case ERESTART:
477 #endif
478 if (memcached_success(io_wait(ptr, MEM_READ)))
479 {
480 continue;
481 }
482 return MEMCACHED_IN_PROGRESS;
483
484 /* fall through */
485
486 case ENOTCONN: // Programmer Error
487 WATCHPOINT_ASSERT(0);
488 case ENOTSOCK:
489 WATCHPOINT_ASSERT(0);
490 case EBADF:
491 assert_msg(ptr->fd != INVALID_SOCKET, "Programmer error, invalid socket");
492 case EINVAL:
493 case EFAULT:
494 case ECONNREFUSED:
495 default:
496 {
497 memcached_quit_server(ptr, true);
498 *nread= -1;
499 return memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
500 }
501 }
502 }
503 else if (data_read == 0)
504 {
505 /*
506 EOF. Any data received so far is incomplete
507 so discard it. This always reads by byte in case of TCP
508 and protocol enforcement happens at memcached_response()
509 looking for '\n'. We do not care for UDB which requests 8 bytes
510 at once. Generally, this means that connection went away. Since
511 for blocking I/O we do not return 0 and for non-blocking case
512 it will return EGAIN if data is not immediatly available.
513 */
514 WATCHPOINT_STRING("We had a zero length recv()");
515 memcached_quit_server(ptr, true);
516 *nread= -1;
517 return memcached_set_error(*ptr, MEMCACHED_UNKNOWN_READ_FAILURE, MEMCACHED_AT);
518 }
519 } while (data_read <= 0);
520
521 ptr->io_bytes_sent = 0;
522 ptr->read_data_length= (size_t) data_read;
523 ptr->read_buffer_length= (size_t) data_read;
524 ptr->read_ptr= ptr->read_buffer;
525 }
526
527 if (length > 1)
528 {
529 size_t difference;
530
531 difference= (length > ptr->read_buffer_length) ? ptr->read_buffer_length : length;
532
533 memcpy(buffer_ptr, ptr->read_ptr, difference);
534 length -= difference;
535 ptr->read_ptr+= difference;
536 ptr->read_buffer_length-= difference;
537 buffer_ptr+= difference;
538 }
539 else
540 {
541 *buffer_ptr= *ptr->read_ptr;
542 ptr->read_ptr++;
543 ptr->read_buffer_length--;
544 buffer_ptr++;
545 break;
546 }
547 }
548
549 *nread = (ssize_t)(buffer_ptr - (char*)buffer);
550
551 return MEMCACHED_SUCCESS;
552 }
553
554 memcached_return_t memcached_io_slurp(memcached_server_write_instance_st ptr)
555 {
556 assert_msg(ptr, "Programmer error, invalid memcached_server_write_instance_st");
557
558 if (ptr->fd == INVALID_SOCKET)
559 {
560 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Invalid socket state");
561 return MEMCACHED_CONNECTION_FAILURE;
562 }
563
564 ssize_t data_read;
565 char buffer[MEMCACHED_MAX_BUFFER];
566 do
567 {
568 data_read= recv(ptr->fd, ptr->read_buffer, sizeof(buffer), MSG_DONTWAIT);
569 if (data_read == SOCKET_ERROR)
570 {
571 switch (get_socket_errno())
572 {
573 case EINTR: // We just retry
574 continue;
575
576 case ETIMEDOUT: // OSX
577 case EWOULDBLOCK:
578 #ifdef USE_EAGAIN
579 case EAGAIN:
580 #endif
581 #ifdef TARGET_OS_LINUX
582 case ERESTART:
583 #endif
584 if (memcached_success(io_wait(ptr, MEM_READ)))
585 {
586 continue;
587 }
588 return MEMCACHED_IN_PROGRESS;
589
590 /* fall through */
591
592 case ENOTCONN: // Programmer Error
593 WATCHPOINT_ASSERT(0);
594 case ENOTSOCK:
595 WATCHPOINT_ASSERT(0);
596 case EBADF:
597 assert_msg(ptr->fd != INVALID_SOCKET, "Invalid socket state");
598 case EINVAL:
599 case EFAULT:
600 case ECONNREFUSED:
601 default:
602 return MEMCACHED_CONNECTION_FAILURE; // We want this!
603 }
604 }
605 } while (data_read > 0);
606
607 return MEMCACHED_CONNECTION_FAILURE;
608 }
609
610 static ssize_t _io_write(memcached_server_write_instance_st ptr,
611 const void *buffer, size_t length, bool with_flush)
612 {
613 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
614
615 size_t original_length= length;
616 const char *buffer_ptr= static_cast<const char *>(buffer);
617
618 while (length)
619 {
620 char *write_ptr;
621 size_t should_write;
622 size_t buffer_end;
623
624 if (ptr->type == MEMCACHED_CONNECTION_UDP)
625 {
626 //UDP does not support partial writes
627 buffer_end= MAX_UDP_DATAGRAM_LENGTH;
628 should_write= length;
629 if (ptr->write_buffer_offset + should_write > buffer_end)
630 {
631 return -1;
632 }
633 }
634 else
635 {
636 buffer_end= MEMCACHED_MAX_BUFFER;
637 should_write= buffer_end - ptr->write_buffer_offset;
638 should_write= (should_write < length) ? should_write : length;
639 }
640
641 write_ptr= ptr->write_buffer + ptr->write_buffer_offset;
642 memcpy(write_ptr, buffer_ptr, should_write);
643 ptr->write_buffer_offset+= should_write;
644 buffer_ptr+= should_write;
645 length-= should_write;
646
647 if (ptr->write_buffer_offset == buffer_end && ptr->type != MEMCACHED_CONNECTION_UDP)
648 {
649 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
650
651 memcached_return_t rc;
652 ssize_t sent_length= io_flush(ptr, with_flush, &rc);
653 if (sent_length == -1)
654 {
655 return -1;
656 }
657
658 /* If io_flush calls memcached_purge, sent_length may be 0 */
659 unlikely (sent_length != 0)
660 {
661 WATCHPOINT_ASSERT(sent_length == (ssize_t)buffer_end);
662 }
663 }
664 }
665
666 if (with_flush)
667 {
668 memcached_return_t rc;
669 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
670 if (io_flush(ptr, with_flush, &rc) == -1)
671 {
672 return -1;
673 }
674 }
675
676 return (ssize_t) original_length;
677 }
678
679 ssize_t memcached_io_write(memcached_server_write_instance_st ptr,
680 const void *buffer, size_t length, bool with_flush)
681 {
682 return _io_write(ptr, buffer, length, with_flush);
683 }
684
685 ssize_t memcached_io_writev(memcached_server_write_instance_st ptr,
686 const struct libmemcached_io_vector_st *vector,
687 size_t number_of, bool with_flush)
688 {
689 ssize_t total= 0;
690
691 for (size_t x= 0; x < number_of; x++, vector++)
692 {
693 ssize_t returnable;
694
695 if ((returnable= _io_write(ptr, vector->buffer, vector->length, false)) == -1)
696 {
697 return -1;
698 }
699 total+= returnable;
700 }
701
702 if (with_flush)
703 {
704 if (memcached_io_write(ptr, NULL, 0, true) == -1)
705 {
706 return -1;
707 }
708 }
709
710 return total;
711 }
712
713
714 void memcached_io_close(memcached_server_write_instance_st ptr)
715 {
716 if (ptr->fd == INVALID_SOCKET)
717 {
718 return;
719 }
720
721 /* in case of death shutdown to avoid blocking at close() */
722 if (shutdown(ptr->fd, SHUT_RDWR) == SOCKET_ERROR && get_socket_errno() != ENOTCONN)
723 {
724 WATCHPOINT_NUMBER(ptr->fd);
725 WATCHPOINT_ERRNO(get_socket_errno());
726 WATCHPOINT_ASSERT(get_socket_errno());
727 }
728
729 if (closesocket(ptr->fd) == SOCKET_ERROR)
730 {
731 WATCHPOINT_ERRNO(get_socket_errno());
732 }
733 ptr->state= MEMCACHED_SERVER_STATE_NEW;
734 ptr->fd= INVALID_SOCKET;
735 }
736
737 memcached_server_write_instance_st memcached_io_get_readable_server(memcached_st *memc)
738 {
739 #define MAX_SERVERS_TO_POLL 100
740 struct pollfd fds[MAX_SERVERS_TO_POLL];
741 unsigned int host_index= 0;
742
743 for (uint32_t x= 0; x < memcached_server_count(memc) && host_index < MAX_SERVERS_TO_POLL; ++x)
744 {
745 memcached_server_write_instance_st instance=
746 memcached_server_instance_fetch(memc, x);
747
748 if (instance->read_buffer_length > 0) /* I have data in the buffer */
749 return instance;
750
751 if (memcached_server_response_count(instance) > 0)
752 {
753 fds[host_index].events = POLLIN;
754 fds[host_index].revents = 0;
755 fds[host_index].fd = instance->fd;
756 ++host_index;
757 }
758 }
759
760 if (host_index < 2)
761 {
762 /* We have 0 or 1 server with pending events.. */
763 for (uint32_t x= 0; x< memcached_server_count(memc); ++x)
764 {
765 memcached_server_write_instance_st instance=
766 memcached_server_instance_fetch(memc, x);
767
768 if (memcached_server_response_count(instance) > 0)
769 {
770 return instance;
771 }
772 }
773
774 return NULL;
775 }
776
777 int error= poll(fds, host_index, memc->poll_timeout);
778 switch (error)
779 {
780 case -1:
781 memcached_set_errno(*memc, get_socket_errno(), MEMCACHED_AT);
782 /* FALLTHROUGH */
783 case 0:
784 break;
785
786 default:
787 for (size_t x= 0; x < host_index; ++x)
788 {
789 if (fds[x].revents & POLLIN)
790 {
791 for (uint32_t y= 0; y < memcached_server_count(memc); ++y)
792 {
793 memcached_server_write_instance_st instance=
794 memcached_server_instance_fetch(memc, y);
795
796 if (instance->fd == fds[x].fd)
797 return instance;
798 }
799 }
800 }
801 }
802
803 return NULL;
804 }
805
806 /*
807 Eventually we will just kill off the server with the problem.
808 */
809 void memcached_io_reset(memcached_server_write_instance_st ptr)
810 {
811 memcached_quit_server(ptr, true);
812 }
813
814 /**
815 * Read a given number of bytes from the server and place it into a specific
816 * buffer. Reset the IO channel on this server if an error occurs.
817 */
818 memcached_return_t memcached_safe_read(memcached_server_write_instance_st ptr,
819 void *dta,
820 size_t size)
821 {
822 size_t offset= 0;
823 char *data= static_cast<char *>(dta);
824
825 while (offset < size)
826 {
827 ssize_t nread;
828 memcached_return_t rc;
829
830 while (memcached_continue(rc= memcached_io_read(ptr, data + offset, size - offset, &nread))) { };
831
832 if (memcached_failed(rc))
833 {
834 return rc;
835 }
836
837 offset+= (size_t) nread;
838 }
839
840 return MEMCACHED_SUCCESS;
841 }
842
843 memcached_return_t memcached_io_readline(memcached_server_write_instance_st ptr,
844 char *buffer_ptr,
845 size_t size,
846 size_t& total_nr)
847 {
848 total_nr= 0;
849 bool line_complete= false;
850
851 while (not line_complete)
852 {
853 if (ptr->read_buffer_length == 0)
854 {
855 /*
856 * We don't have any data in the buffer, so let's fill the read
857 * buffer. Call the standard read function to avoid duplicating
858 * the logic.
859 */
860 ssize_t nread;
861 memcached_return_t rc= memcached_io_read(ptr, buffer_ptr, 1, &nread);
862 if (memcached_failed(rc) and rc == MEMCACHED_IN_PROGRESS)
863 {
864 memcached_quit_server(ptr, true);
865 return memcached_set_error(*ptr, rc, MEMCACHED_AT);
866 }
867 else if (memcached_failed(rc))
868 {
869 return rc;
870 }
871
872 if (*buffer_ptr == '\n')
873 line_complete= true;
874
875 ++buffer_ptr;
876 ++total_nr;
877 }
878
879 /* Now let's look in the buffer and copy as we go! */
880 while (ptr->read_buffer_length && total_nr < size && !line_complete)
881 {
882 *buffer_ptr = *ptr->read_ptr;
883 if (*buffer_ptr == '\n')
884 line_complete = true;
885 --ptr->read_buffer_length;
886 ++ptr->read_ptr;
887 ++total_nr;
888 ++buffer_ptr;
889 }
890
891 if (total_nr == size)
892 return MEMCACHED_PROTOCOL_ERROR;
893 }
894
895 return MEMCACHED_SUCCESS;
896 }
897
898 memcached_return_t memcached_io_init_udp_header(memcached_server_write_instance_st ptr, uint16_t thread_id)
899 {
900 if (thread_id > UDP_REQUEST_ID_MAX_THREAD_ID)
901 return MEMCACHED_FAILURE;
902
903 struct udp_datagram_header_st *header= (struct udp_datagram_header_st *)ptr->write_buffer;
904 header->request_id= htons((uint16_t) (generate_udp_request_thread_id(thread_id)));
905 header->num_datagrams= htons(1);
906 header->sequence_number= htons(0);
907
908 return MEMCACHED_SUCCESS;
909 }