5e626b6a420ae456c7c5c62470735fa013c778b8
[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 if (getsockopt(ptr->fd, SOL_SOCKET, SO_ERROR, &err, &len) == 0)
272 {
273 if (err == 0)
274 {
275 continue;
276 }
277 errno= err;
278 }
279 }
280 else
281 {
282 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
283 }
284 int local_errno= get_socket_errno(); // We cache in case memcached_quit_server() modifies errno
285 memcached_quit_server(ptr, true);
286
287 return memcached_set_errno(*ptr, local_errno, MEMCACHED_AT);
288 }
289 }
290 }
291
292 memcached_quit_server(ptr, true);
293
294 return memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
295 }
296
297 static bool io_flush(memcached_server_write_instance_st ptr,
298 const bool with_flush,
299 memcached_return_t& error)
300 {
301 /*
302 ** We might want to purge the input buffer if we haven't consumed
303 ** any output yet... The test for the limits is the purge is inline
304 ** in the purge function to avoid duplicating the logic..
305 */
306 {
307 memcached_return_t rc;
308 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
309 rc= memcached_purge(ptr);
310
311 if (rc != MEMCACHED_SUCCESS && rc != MEMCACHED_STORED)
312 {
313 return false;
314 }
315 }
316 char *local_write_ptr= ptr->write_buffer;
317 size_t write_length= ptr->write_buffer_offset;
318
319 error= MEMCACHED_SUCCESS;
320
321 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
322
323 // UDP Sanity check, make sure that we are not sending somthing too big
324 if (memcached_is_udp(ptr->root) and write_length > MAX_UDP_DATAGRAM_LENGTH)
325 {
326 error= memcached_set_error(*ptr, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
327 return false;
328 }
329
330 if (ptr->write_buffer_offset == 0 or (memcached_is_udp(ptr->root) and ptr->write_buffer_offset == UDP_DATAGRAM_HEADER_LENGTH))
331 {
332 return true;
333 }
334
335 /* Looking for memory overflows */
336 #if defined(DEBUG)
337 if (write_length == MEMCACHED_MAX_BUFFER)
338 WATCHPOINT_ASSERT(ptr->write_buffer == local_write_ptr);
339 WATCHPOINT_ASSERT((ptr->write_buffer + MEMCACHED_MAX_BUFFER) >= (local_write_ptr + write_length));
340 #endif
341
342 while (write_length)
343 {
344 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
345 WATCHPOINT_ASSERT(write_length > 0);
346 if (memcached_is_udp(ptr->root))
347 {
348 increment_udp_message_id(ptr);
349 }
350
351 ssize_t sent_length= 0;
352 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
353 if (with_flush)
354 {
355 sent_length= ::send(ptr->fd, local_write_ptr, write_length, MSG_NOSIGNAL|MSG_DONTWAIT);
356 }
357 else
358 {
359 sent_length= ::send(ptr->fd, local_write_ptr, write_length, MSG_NOSIGNAL|MSG_DONTWAIT|MSG_MORE);
360 }
361
362 if (sent_length == SOCKET_ERROR)
363 {
364 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
365 #if 0 // @todo I should look at why we hit this bit of code hard frequently
366 WATCHPOINT_ERRNO(get_socket_errno());
367 WATCHPOINT_NUMBER(get_socket_errno());
368 #endif
369 switch (get_socket_errno())
370 {
371 case ENOBUFS:
372 continue;
373 case EWOULDBLOCK:
374 #ifdef USE_EAGAIN
375 case EAGAIN:
376 #endif
377 {
378 /*
379 * We may be blocked on write because the input buffer
380 * is full. Let's check if we have room in our input
381 * buffer for more data and retry the write before
382 * waiting..
383 */
384 if (repack_input_buffer(ptr) or process_input_buffer(ptr))
385 {
386 continue;
387 }
388
389 memcached_return_t rc= io_wait(ptr, MEM_WRITE);
390 if (memcached_success(rc))
391 {
392 continue;
393 }
394 else if (rc == MEMCACHED_TIMEOUT)
395 {
396 error= memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
397 return false;
398 }
399
400 memcached_quit_server(ptr, true);
401 error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
402 return false;
403 }
404 case ENOTCONN:
405 case EPIPE:
406 default:
407 memcached_quit_server(ptr, true);
408 error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
409 WATCHPOINT_ASSERT(ptr->fd == INVALID_SOCKET);
410 return false;
411 }
412 }
413
414 if (memcached_is_udp(ptr->root) and size_t(sent_length) != write_length)
415 {
416 memcached_quit_server(ptr, true);
417 error= memcached_set_error(*ptr, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
418 return false;
419 }
420
421 ptr->io_bytes_sent+= uint32_t(sent_length);
422
423 local_write_ptr+= sent_length;
424 write_length-= uint32_t(sent_length);
425 }
426
427 WATCHPOINT_ASSERT(write_length == 0);
428 if (memcached_is_udp(ptr->root))
429 {
430 ptr->write_buffer_offset= UDP_DATAGRAM_HEADER_LENGTH;
431 }
432 else
433 {
434 ptr->write_buffer_offset= 0;
435 }
436
437 return true;
438 }
439
440 memcached_return_t memcached_io_wait_for_write(memcached_server_write_instance_st ptr)
441 {
442 return io_wait(ptr, MEM_WRITE);
443 }
444
445 memcached_return_t memcached_io_read(memcached_server_write_instance_st ptr,
446 void *buffer, size_t length, ssize_t *nread)
447 {
448 assert_msg(ptr, "Programmer error, memcached_io_read() recieved an invalid memcached_server_write_instance_st"); // Programmer error
449 char *buffer_ptr= static_cast<char *>(buffer);
450
451 if (ptr->fd == INVALID_SOCKET)
452 {
453 #if 0
454 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Programmer error, invalid socket state");
455 #endif
456 return MEMCACHED_CONNECTION_FAILURE;
457 }
458
459 while (length)
460 {
461 if (not ptr->read_buffer_length)
462 {
463 ssize_t data_read;
464 do
465 {
466 data_read= recv(ptr->fd, ptr->read_buffer, MEMCACHED_MAX_BUFFER, MSG_DONTWAIT);
467 if (data_read == SOCKET_ERROR)
468 {
469 switch (get_socket_errno())
470 {
471 case EINTR: // We just retry
472 continue;
473
474 case ETIMEDOUT: // OSX
475 case EWOULDBLOCK:
476 #ifdef USE_EAGAIN
477 case EAGAIN:
478 #endif
479 #ifdef TARGET_OS_LINUX
480 case ERESTART:
481 #endif
482 if (memcached_success(io_wait(ptr, MEM_READ)))
483 {
484 continue;
485 }
486 return MEMCACHED_IN_PROGRESS;
487
488 /* fall through */
489
490 case ENOTCONN: // Programmer Error
491 WATCHPOINT_ASSERT(0);
492 case ENOTSOCK:
493 WATCHPOINT_ASSERT(0);
494 case EBADF:
495 assert_msg(ptr->fd != INVALID_SOCKET, "Programmer error, invalid socket");
496 case EINVAL:
497 case EFAULT:
498 case ECONNREFUSED:
499 default:
500 {
501 memcached_quit_server(ptr, true);
502 *nread= -1;
503 return memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
504 }
505 }
506 }
507 else if (data_read == 0)
508 {
509 /*
510 EOF. Any data received so far is incomplete
511 so discard it. This always reads by byte in case of TCP
512 and protocol enforcement happens at memcached_response()
513 looking for '\n'. We do not care for UDB which requests 8 bytes
514 at once. Generally, this means that connection went away. Since
515 for blocking I/O we do not return 0 and for non-blocking case
516 it will return EGAIN if data is not immediatly available.
517 */
518 WATCHPOINT_STRING("We had a zero length recv()");
519 memcached_quit_server(ptr, true);
520 *nread= -1;
521 return memcached_set_error(*ptr, MEMCACHED_UNKNOWN_READ_FAILURE, MEMCACHED_AT);
522 }
523 } while (data_read <= 0);
524
525 ptr->io_bytes_sent = 0;
526 ptr->read_data_length= (size_t) data_read;
527 ptr->read_buffer_length= (size_t) data_read;
528 ptr->read_ptr= ptr->read_buffer;
529 }
530
531 if (length > 1)
532 {
533 size_t difference;
534
535 difference= (length > ptr->read_buffer_length) ? ptr->read_buffer_length : length;
536
537 memcpy(buffer_ptr, ptr->read_ptr, difference);
538 length -= difference;
539 ptr->read_ptr+= difference;
540 ptr->read_buffer_length-= difference;
541 buffer_ptr+= difference;
542 }
543 else
544 {
545 *buffer_ptr= *ptr->read_ptr;
546 ptr->read_ptr++;
547 ptr->read_buffer_length--;
548 buffer_ptr++;
549 break;
550 }
551 }
552
553 *nread = (ssize_t)(buffer_ptr - (char*)buffer);
554
555 return MEMCACHED_SUCCESS;
556 }
557
558 memcached_return_t memcached_io_slurp(memcached_server_write_instance_st ptr)
559 {
560 assert_msg(ptr, "Programmer error, invalid memcached_server_write_instance_st");
561
562 if (ptr->fd == INVALID_SOCKET)
563 {
564 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Invalid socket state");
565 return MEMCACHED_CONNECTION_FAILURE;
566 }
567
568 ssize_t data_read;
569 char buffer[MEMCACHED_MAX_BUFFER];
570 do
571 {
572 data_read= recv(ptr->fd, ptr->read_buffer, sizeof(buffer), MSG_DONTWAIT);
573 if (data_read == SOCKET_ERROR)
574 {
575 switch (get_socket_errno())
576 {
577 case EINTR: // We just retry
578 continue;
579
580 case ETIMEDOUT: // OSX
581 case EWOULDBLOCK:
582 #ifdef USE_EAGAIN
583 case EAGAIN:
584 #endif
585 #ifdef TARGET_OS_LINUX
586 case ERESTART:
587 #endif
588 if (memcached_success(io_wait(ptr, MEM_READ)))
589 {
590 continue;
591 }
592 return MEMCACHED_IN_PROGRESS;
593
594 /* fall through */
595
596 case ENOTCONN: // Programmer Error
597 WATCHPOINT_ASSERT(0);
598 case ENOTSOCK:
599 WATCHPOINT_ASSERT(0);
600 case EBADF:
601 assert_msg(ptr->fd != INVALID_SOCKET, "Invalid socket state");
602 case EINVAL:
603 case EFAULT:
604 case ECONNREFUSED:
605 default:
606 return MEMCACHED_CONNECTION_FAILURE; // We want this!
607 }
608 }
609 } while (data_read > 0);
610
611 return MEMCACHED_CONNECTION_FAILURE;
612 }
613
614 static ssize_t _io_write(memcached_server_write_instance_st ptr,
615 const void *buffer, size_t length, bool with_flush)
616 {
617 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
618
619 size_t original_length= length;
620 const char *buffer_ptr= static_cast<const char *>(buffer);
621
622 while (length)
623 {
624 char *write_ptr;
625 size_t should_write;
626 size_t buffer_end;
627
628 if (memcached_is_udp(ptr->root))
629 {
630 //UDP does not support partial writes
631 buffer_end= MAX_UDP_DATAGRAM_LENGTH;
632 should_write= length;
633 if (ptr->write_buffer_offset + should_write > buffer_end)
634 {
635 return -1;
636 }
637 }
638 else
639 {
640 buffer_end= MEMCACHED_MAX_BUFFER;
641 should_write= buffer_end - ptr->write_buffer_offset;
642 should_write= (should_write < length) ? should_write : length;
643 }
644
645 write_ptr= ptr->write_buffer + ptr->write_buffer_offset;
646 memcpy(write_ptr, buffer_ptr, should_write);
647 ptr->write_buffer_offset+= should_write;
648 buffer_ptr+= should_write;
649 length-= should_write;
650
651 if (ptr->write_buffer_offset == buffer_end and memcached_is_udp(ptr->root) == false)
652 {
653 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
654
655 memcached_return_t rc;
656 if (io_flush(ptr, with_flush, rc) == false)
657 {
658 return -1;
659 }
660 }
661 }
662
663 if (with_flush)
664 {
665 memcached_return_t rc;
666 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
667 if (io_flush(ptr, with_flush, rc) == false)
668 {
669 return -1;
670 }
671 }
672
673 return (ssize_t) original_length;
674 }
675
676 bool memcached_io_write(memcached_server_write_instance_st ptr)
677 {
678 return (_io_write(ptr, NULL, 0, true) >= 0);
679 }
680
681 ssize_t memcached_io_write(memcached_server_write_instance_st ptr,
682 const void *buffer, const size_t length, const bool with_flush)
683 {
684 return _io_write(ptr, buffer, length, with_flush);
685 }
686
687 size_t io_vector_total_size(libmemcached_io_vector_st* vector, const size_t number_of)
688 {
689 ssize_t total= 0;
690
691 for (size_t x= 0; x < number_of; x++)
692 {
693 total+= vector->length;
694 }
695
696 return total;
697 }
698
699 ssize_t memcached_io_writev(memcached_server_write_instance_st ptr,
700 const struct libmemcached_io_vector_st *vector,
701 size_t number_of, bool with_flush)
702 {
703 ssize_t total= 0;
704
705 for (size_t x= 0; x < number_of; x++, vector++)
706 {
707 ssize_t returnable;
708
709 if (vector->length)
710 {
711 if ((returnable= _io_write(ptr, vector->buffer, vector->length, false)) == -1)
712 {
713 return -1;
714 }
715 total+= returnable;
716 }
717 }
718
719 if (with_flush)
720 {
721 if (memcached_io_write(ptr) == false)
722 {
723 return -1;
724 }
725 }
726
727 return total;
728 }
729
730
731 void memcached_io_close(memcached_server_write_instance_st ptr)
732 {
733 if (ptr->fd == INVALID_SOCKET)
734 {
735 return;
736 }
737
738 /* in case of death shutdown to avoid blocking at close() */
739 if (shutdown(ptr->fd, SHUT_RDWR) == SOCKET_ERROR && get_socket_errno() != ENOTCONN)
740 {
741 WATCHPOINT_NUMBER(ptr->fd);
742 WATCHPOINT_ERRNO(get_socket_errno());
743 WATCHPOINT_ASSERT(get_socket_errno());
744 }
745
746 if (closesocket(ptr->fd) == SOCKET_ERROR)
747 {
748 WATCHPOINT_ERRNO(get_socket_errno());
749 }
750 ptr->state= MEMCACHED_SERVER_STATE_NEW;
751 ptr->fd= INVALID_SOCKET;
752 }
753
754 memcached_server_write_instance_st memcached_io_get_readable_server(memcached_st *memc)
755 {
756 #define MAX_SERVERS_TO_POLL 100
757 struct pollfd fds[MAX_SERVERS_TO_POLL];
758 unsigned int host_index= 0;
759
760 for (uint32_t x= 0; x < memcached_server_count(memc) && host_index < MAX_SERVERS_TO_POLL; ++x)
761 {
762 memcached_server_write_instance_st instance= memcached_server_instance_fetch(memc, x);
763
764 if (instance->read_buffer_length > 0) /* I have data in the buffer */
765 {
766 return instance;
767 }
768
769 if (memcached_server_response_count(instance) > 0)
770 {
771 fds[host_index].events = POLLIN;
772 fds[host_index].revents = 0;
773 fds[host_index].fd = instance->fd;
774 ++host_index;
775 }
776 }
777
778 if (host_index < 2)
779 {
780 /* We have 0 or 1 server with pending events.. */
781 for (uint32_t x= 0; x< memcached_server_count(memc); ++x)
782 {
783 memcached_server_write_instance_st instance=
784 memcached_server_instance_fetch(memc, x);
785
786 if (memcached_server_response_count(instance) > 0)
787 {
788 return instance;
789 }
790 }
791
792 return NULL;
793 }
794
795 int error= poll(fds, host_index, memc->poll_timeout);
796 switch (error)
797 {
798 case -1:
799 memcached_set_errno(*memc, get_socket_errno(), MEMCACHED_AT);
800 /* FALLTHROUGH */
801 case 0:
802 break;
803
804 default:
805 for (size_t x= 0; x < host_index; ++x)
806 {
807 if (fds[x].revents & POLLIN)
808 {
809 for (uint32_t y= 0; y < memcached_server_count(memc); ++y)
810 {
811 memcached_server_write_instance_st instance=
812 memcached_server_instance_fetch(memc, y);
813
814 if (instance->fd == fds[x].fd)
815 return instance;
816 }
817 }
818 }
819 }
820
821 return NULL;
822 }
823
824 /*
825 Eventually we will just kill off the server with the problem.
826 */
827 void memcached_io_reset(memcached_server_write_instance_st ptr)
828 {
829 memcached_quit_server(ptr, true);
830 }
831
832 /**
833 * Read a given number of bytes from the server and place it into a specific
834 * buffer. Reset the IO channel on this server if an error occurs.
835 */
836 memcached_return_t memcached_safe_read(memcached_server_write_instance_st ptr,
837 void *dta,
838 size_t size)
839 {
840 size_t offset= 0;
841 char *data= static_cast<char *>(dta);
842
843 while (offset < size)
844 {
845 ssize_t nread;
846 memcached_return_t rc;
847
848 while (memcached_continue(rc= memcached_io_read(ptr, data + offset, size - offset, &nread))) { };
849
850 if (memcached_failed(rc))
851 {
852 return rc;
853 }
854
855 offset+= (size_t) nread;
856 }
857
858 return MEMCACHED_SUCCESS;
859 }
860
861 memcached_return_t memcached_io_readline(memcached_server_write_instance_st ptr,
862 char *buffer_ptr,
863 size_t size,
864 size_t& total_nr)
865 {
866 total_nr= 0;
867 bool line_complete= false;
868
869 while (line_complete == false)
870 {
871 if (ptr->read_buffer_length == 0)
872 {
873 /*
874 * We don't have any data in the buffer, so let's fill the read
875 * buffer. Call the standard read function to avoid duplicating
876 * the logic.
877 */
878 ssize_t nread;
879 memcached_return_t rc= memcached_io_read(ptr, buffer_ptr, 1, &nread);
880 if (memcached_failed(rc) and rc == MEMCACHED_IN_PROGRESS)
881 {
882 memcached_quit_server(ptr, true);
883 return memcached_set_error(*ptr, rc, MEMCACHED_AT);
884 }
885 else if (memcached_failed(rc))
886 {
887 return rc;
888 }
889
890 if (*buffer_ptr == '\n')
891 {
892 line_complete= true;
893 }
894
895 ++buffer_ptr;
896 ++total_nr;
897 }
898
899 /* Now let's look in the buffer and copy as we go! */
900 while (ptr->read_buffer_length && total_nr < size && !line_complete)
901 {
902 *buffer_ptr = *ptr->read_ptr;
903 if (*buffer_ptr == '\n')
904 {
905 line_complete = true;
906 }
907 --ptr->read_buffer_length;
908 ++ptr->read_ptr;
909 ++total_nr;
910 ++buffer_ptr;
911 }
912
913 if (total_nr == size)
914 {
915 return MEMCACHED_PROTOCOL_ERROR;
916 }
917 }
918
919 return MEMCACHED_SUCCESS;
920 }
921
922 memcached_return_t memcached_io_init_udp_header(memcached_server_write_instance_st ptr, uint16_t thread_id)
923 {
924 if (thread_id > UDP_REQUEST_ID_MAX_THREAD_ID)
925 {
926 return MEMCACHED_FAILURE;
927 }
928
929 struct udp_datagram_header_st *header= (struct udp_datagram_header_st *)ptr->write_buffer;
930 header->request_id= htons((uint16_t) (generate_udp_request_thread_id(thread_id)));
931 header->num_datagrams= htons(1);
932 header->sequence_number= htons(0);
933
934 return MEMCACHED_SUCCESS;
935 }