Fix for case where key may not be checked.
[m6w6/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 #ifdef HAVE_SYS_SOCKET_H
43 # include <sys/socket.h>
44 #endif
45
46 void initialize_binary_request(memcached_instance_st* server, protocol_binary_request_header& header)
47 {
48 server->request_id++;
49 header.request.magic= PROTOCOL_BINARY_REQ;
50 header.request.opaque= htons(server->request_id);
51 }
52
53 enum memc_read_or_write {
54 MEM_READ,
55 MEM_WRITE
56 };
57
58 /**
59 * Try to fill the input buffer for a server with as much
60 * data as possible.
61 *
62 * @param instance the server to pack
63 */
64 static bool repack_input_buffer(memcached_instance_st* instance)
65 {
66 if (instance->read_ptr != instance->read_buffer)
67 {
68 /* Move all of the data to the beginning of the buffer so
69 ** that we can fit more data into the buffer...
70 */
71 memmove(instance->read_buffer, instance->read_ptr, instance->read_buffer_length);
72 instance->read_ptr= instance->read_buffer;
73 instance->read_data_length= instance->read_buffer_length;
74 }
75
76 /* There is room in the buffer, try to fill it! */
77 if (instance->read_buffer_length != MEMCACHED_MAX_BUFFER)
78 {
79 do {
80 /* Just try a single read to grab what's available */
81 ssize_t nr;
82 if ((nr= ::recv(instance->fd,
83 instance->read_ptr + instance->read_data_length,
84 MEMCACHED_MAX_BUFFER - instance->read_data_length,
85 MSG_NOSIGNAL)) <= 0)
86 {
87 if (nr == 0)
88 {
89 memcached_set_error(*instance, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT);
90 }
91 else
92 {
93 switch (get_socket_errno())
94 {
95 case EINTR:
96 continue;
97
98 #if EWOULDBLOCK != EAGAIN
99 case EWOULDBLOCK:
100 #endif
101 case EAGAIN:
102 #ifdef __linux
103 case ERESTART:
104 #endif
105 break; // No IO is fine, we can just move on
106
107 default:
108 memcached_set_errno(*instance, get_socket_errno(), MEMCACHED_AT);
109 }
110 }
111
112 break;
113 }
114 else // We read data, append to our read buffer
115 {
116 instance->read_data_length+= size_t(nr);
117 instance->read_buffer_length+= size_t(nr);
118
119 return true;
120 }
121 } while (false);
122 }
123
124 return false;
125 }
126
127 /**
128 * If the we have callbacks connected to this server structure
129 * we may start process the input queue and fire the callbacks
130 * for the incomming messages. This function is _only_ called
131 * when the input buffer is full, so that we _know_ that we have
132 * at least _one_ message to process.
133 *
134 * @param instance the server to star processing iput messages for
135 * @return true if we processed anything, false otherwise
136 */
137 static bool process_input_buffer(memcached_instance_st* instance)
138 {
139 /*
140 ** We might be able to process some of the response messages if we
141 ** have a callback set up
142 */
143 if (instance->root->callbacks != NULL)
144 {
145 /*
146 * We might have responses... try to read them out and fire
147 * callbacks
148 */
149 memcached_callback_st cb= *instance->root->callbacks;
150
151 memcached_set_processing_input((Memcached *)instance->root, true);
152
153 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
154 Memcached *root= (Memcached *)instance->root;
155 memcached_return_t error= memcached_response(instance, buffer, sizeof(buffer), &root->result);
156
157 memcached_set_processing_input(root, false);
158
159 if (error == MEMCACHED_SUCCESS)
160 {
161 for (unsigned int x= 0; x < cb.number_of_callback; x++)
162 {
163 error= (*cb.callback[x])(instance->root, &root->result, cb.context);
164 if (error != MEMCACHED_SUCCESS)
165 {
166 break;
167 }
168 }
169
170 /* @todo what should I do with the error message??? */
171 }
172 /* @todo what should I do with other error messages?? */
173 return true;
174 }
175
176 return false;
177 }
178
179 static memcached_return_t io_wait(memcached_instance_st* instance,
180 const memc_read_or_write read_or_write)
181 {
182 /*
183 ** We are going to block on write, but at least on Solaris we might block
184 ** on write if we haven't read anything from our input buffer..
185 ** Try to purge the input buffer if we don't do any flow control in the
186 ** application layer (just sending a lot of data etc)
187 ** The test is moved down in the purge function to avoid duplication of
188 ** the test.
189 */
190 if (read_or_write == MEM_WRITE)
191 {
192 if (memcached_purge(instance) == false)
193 {
194 return MEMCACHED_FAILURE;
195 }
196 }
197
198 struct pollfd fds;
199 fds.fd= instance->fd;
200 fds.events= POLLIN;
201 fds.revents= 0;
202
203 if (read_or_write == MEM_WRITE) /* write */
204 {
205 fds.events= POLLOUT;
206 instance->io_wait_count.write++;
207 }
208 else
209 {
210 instance->io_wait_count.read++;
211 }
212
213 if (instance->root->poll_timeout == 0) // Mimic 0 causes timeout behavior (not all platforms do this)
214 {
215 return memcached_set_error(*instance, MEMCACHED_TIMEOUT, MEMCACHED_AT, memcached_literal_param("poll_timeout() was set to zero"));
216 }
217
218 size_t loop_max= 5;
219 while (--loop_max) // While loop is for ERESTART or EINTR
220 {
221 int active_fd= poll(&fds, 1, instance->root->poll_timeout);
222
223 if (active_fd >= 1)
224 {
225 assert_msg(active_fd == 1 , "poll() returned an unexpected number of active file descriptors");
226 if (fds.revents & POLLIN or fds.revents & POLLOUT)
227 {
228 return MEMCACHED_SUCCESS;
229 }
230
231 if (fds.revents & POLLHUP)
232 {
233 return memcached_set_error(*instance, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
234 memcached_literal_param("poll() detected hang up"));
235 }
236
237 if (fds.revents & POLLERR)
238 {
239 int local_errno= EINVAL;
240 int err;
241 socklen_t len= sizeof (err);
242 if (getsockopt(instance->fd, SOL_SOCKET, SO_ERROR, (char*)&err, &len) == 0)
243 {
244 if (err == 0) // treat this as EINTR
245 {
246 continue;
247 }
248 local_errno= err;
249 }
250 memcached_quit_server(instance, true);
251 return memcached_set_errno(*instance, local_errno, MEMCACHED_AT,
252 memcached_literal_param("poll() returned POLLHUP"));
253 }
254
255 return memcached_set_error(*instance, MEMCACHED_FAILURE, MEMCACHED_AT, memcached_literal_param("poll() returned a value that was not dealt with"));
256 }
257
258 if (active_fd == 0)
259 {
260 return memcached_set_error(*instance, MEMCACHED_TIMEOUT, MEMCACHED_AT, memcached_literal_param("No active_fd were found"));
261 }
262
263 // Only an error should result in this code being called.
264 int local_errno= get_socket_errno(); // We cache in case memcached_quit_server() modifies errno
265 assert_msg(active_fd == -1 , "poll() returned an unexpected value");
266 switch (local_errno)
267 {
268 #ifdef __linux
269 case ERESTART:
270 #endif
271 case EINTR:
272 continue;
273
274 case EFAULT:
275 case ENOMEM:
276 memcached_set_error(*instance, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT);
277
278 case EINVAL:
279 memcached_set_error(*instance, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT, memcached_literal_param("RLIMIT_NOFILE exceeded, or if OSX the timeout value was invalid"));
280
281 default:
282 memcached_set_errno(*instance, local_errno, MEMCACHED_AT, memcached_literal_param("poll"));
283 }
284
285 break;
286 }
287
288 memcached_quit_server(instance, true);
289
290 if (memcached_has_error(instance))
291 {
292 return memcached_instance_error_return(instance);
293 }
294
295 return memcached_set_error(*instance, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
296 memcached_literal_param("number of attempts to call io_wait() failed"));
297 }
298
299 static bool io_flush(memcached_instance_st* instance,
300 const bool with_flush,
301 memcached_return_t& error)
302 {
303 /*
304 ** We might want to purge the input buffer if we haven't consumed
305 ** any output yet... The test for the limits is the purge is inline
306 ** in the purge function to avoid duplicating the logic..
307 */
308 {
309 WATCHPOINT_ASSERT(instance->fd != INVALID_SOCKET);
310
311 if (memcached_purge(instance) == false)
312 {
313 return false;
314 }
315 }
316 char *local_write_ptr= instance->write_buffer;
317 size_t write_length= instance->write_buffer_offset;
318
319 error= MEMCACHED_SUCCESS;
320
321 WATCHPOINT_ASSERT(instance->fd != INVALID_SOCKET);
322
323 /* Looking for memory overflows */
324 #if defined(DEBUG)
325 if (write_length == MEMCACHED_MAX_BUFFER)
326 WATCHPOINT_ASSERT(instance->write_buffer == local_write_ptr);
327 WATCHPOINT_ASSERT((instance->write_buffer + MEMCACHED_MAX_BUFFER) >= (local_write_ptr + write_length));
328 #endif
329
330 while (write_length)
331 {
332 WATCHPOINT_ASSERT(instance->fd != INVALID_SOCKET);
333 WATCHPOINT_ASSERT(write_length > 0);
334
335 int flags;
336 if (with_flush)
337 {
338 flags= MSG_NOSIGNAL;
339 }
340 else
341 {
342 flags= MSG_NOSIGNAL|MSG_MORE;
343 }
344
345 ssize_t sent_length= ::send(instance->fd, local_write_ptr, write_length, flags);
346
347 if (sent_length == SOCKET_ERROR)
348 {
349 #if 0 // @todo I should look at why we hit this bit of code hard frequently
350 WATCHPOINT_ERRNO(get_socket_errno());
351 WATCHPOINT_NUMBER(get_socket_errno());
352 #endif
353 switch (get_socket_errno())
354 {
355 case ENOBUFS:
356 continue;
357
358 #if EWOULDBLOCK != EAGAIN
359 case EWOULDBLOCK:
360 #endif
361 case EAGAIN:
362 {
363 /*
364 * We may be blocked on write because the input buffer
365 * is full. Let's check if we have room in our input
366 * buffer for more data and retry the write before
367 * waiting..
368 */
369 if (repack_input_buffer(instance) or process_input_buffer(instance))
370 {
371 continue;
372 }
373
374 memcached_return_t rc= io_wait(instance, MEM_WRITE);
375 if (memcached_success(rc))
376 {
377 continue;
378 }
379 else if (rc == MEMCACHED_TIMEOUT)
380 {
381 return false;
382 }
383
384 memcached_quit_server(instance, true);
385 error= memcached_set_errno(*instance, get_socket_errno(), MEMCACHED_AT);
386 return false;
387 }
388 case ENOTCONN:
389 case EPIPE:
390 default:
391 memcached_quit_server(instance, true);
392 error= memcached_set_errno(*instance, get_socket_errno(), MEMCACHED_AT);
393 WATCHPOINT_ASSERT(instance->fd == INVALID_SOCKET);
394 return false;
395 }
396 }
397
398 instance->io_bytes_sent+= uint32_t(sent_length);
399
400 local_write_ptr+= sent_length;
401 write_length-= uint32_t(sent_length);
402 }
403
404 WATCHPOINT_ASSERT(write_length == 0);
405 instance->write_buffer_offset= 0;
406
407 return true;
408 }
409
410 memcached_return_t memcached_io_wait_for_write(memcached_instance_st* instance)
411 {
412 return io_wait(instance, MEM_WRITE);
413 }
414
415 memcached_return_t memcached_io_wait_for_read(memcached_instance_st* instance)
416 {
417 return io_wait(instance, MEM_READ);
418 }
419
420 static memcached_return_t _io_fill(memcached_instance_st* instance)
421 {
422 ssize_t data_read;
423 do
424 {
425 data_read= ::recv(instance->fd, instance->read_buffer, MEMCACHED_MAX_BUFFER, MSG_NOSIGNAL);
426 if (data_read == SOCKET_ERROR)
427 {
428 switch (get_socket_errno())
429 {
430 case EINTR: // We just retry
431 continue;
432
433 case ETIMEDOUT: // OSX
434 #if EWOULDBLOCK != EAGAIN
435 case EWOULDBLOCK:
436 #endif
437 case EAGAIN:
438 #ifdef __linux
439 case ERESTART:
440 #endif
441 {
442 memcached_return_t io_wait_ret;
443 if (memcached_success(io_wait_ret= io_wait(instance, MEM_READ)))
444 {
445 continue;
446 }
447
448 return io_wait_ret;
449 }
450
451 /* fall through */
452
453 case ENOTCONN: // Programmer Error
454 WATCHPOINT_ASSERT(0);
455 case ENOTSOCK:
456 WATCHPOINT_ASSERT(0);
457 case EBADF:
458 assert_msg(instance->fd != INVALID_SOCKET, "Programmer error, invalid socket");
459 case EINVAL:
460 case EFAULT:
461 case ECONNREFUSED:
462 default:
463 memcached_quit_server(instance, true);
464 memcached_set_errno(*instance, get_socket_errno(), MEMCACHED_AT);
465 break;
466 }
467
468 return memcached_instance_error_return(instance);
469 }
470 else if (data_read == 0)
471 {
472 /*
473 EOF. Any data received so far is incomplete
474 so discard it. This always reads by byte in case of TCP
475 and protocol enforcement happens at memcached_response()
476 looking for '\n'. We do not care for UDB which requests 8 bytes
477 at once. Generally, this means that connection went away. Since
478 for blocking I/O we do not return 0 and for non-blocking case
479 it will return EGAIN if data is not immediatly available.
480 */
481 memcached_quit_server(instance, true);
482 return memcached_set_error(*instance, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
483 memcached_literal_param("::rec() returned zero, server has disconnected"));
484 }
485 instance->io_wait_count._bytes_read+= data_read;
486 } while (data_read <= 0);
487
488 instance->io_bytes_sent= 0;
489 instance->read_data_length= (size_t) data_read;
490 instance->read_buffer_length= (size_t) data_read;
491 instance->read_ptr= instance->read_buffer;
492
493 return MEMCACHED_SUCCESS;
494 }
495
496 memcached_return_t memcached_io_read(memcached_instance_st* instance,
497 void *buffer, size_t length, ssize_t& nread)
498 {
499 assert(memcached_is_udp(instance->root) == false);
500 assert_msg(instance, "Programmer error, memcached_io_read() recieved an invalid Instance"); // Programmer error
501 char *buffer_ptr= static_cast<char *>(buffer);
502
503 if (instance->fd == INVALID_SOCKET)
504 {
505 #if 0
506 assert_msg(int(instance->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Programmer error, invalid socket state");
507 #endif
508 return MEMCACHED_CONNECTION_FAILURE;
509 }
510
511 while (length)
512 {
513 if (instance->read_buffer_length == 0)
514 {
515 memcached_return_t io_fill_ret;
516 if (memcached_fatal(io_fill_ret= _io_fill(instance)))
517 {
518 nread= -1;
519 return io_fill_ret;
520 }
521 }
522
523 if (length > 1)
524 {
525 size_t difference= (length > instance->read_buffer_length) ? instance->read_buffer_length : length;
526
527 memcpy(buffer_ptr, instance->read_ptr, difference);
528 length -= difference;
529 instance->read_ptr+= difference;
530 instance->read_buffer_length-= difference;
531 buffer_ptr+= difference;
532 }
533 else
534 {
535 *buffer_ptr= *instance->read_ptr;
536 instance->read_ptr++;
537 instance->read_buffer_length--;
538 buffer_ptr++;
539 break;
540 }
541 }
542
543 nread= ssize_t(buffer_ptr - (char*)buffer);
544
545 return MEMCACHED_SUCCESS;
546 }
547
548 memcached_return_t memcached_io_slurp(memcached_instance_st* instance)
549 {
550 assert_msg(instance, "Programmer error, invalid Instance");
551 assert(memcached_is_udp(instance->root) == false);
552
553 if (instance->fd == INVALID_SOCKET)
554 {
555 assert_msg(int(instance->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Invalid socket state");
556 return MEMCACHED_CONNECTION_FAILURE;
557 }
558
559 ssize_t data_read;
560 char buffer[MEMCACHED_MAX_BUFFER];
561 do
562 {
563 data_read= ::recv(instance->fd, instance->read_buffer, sizeof(buffer), MSG_NOSIGNAL);
564 if (data_read == SOCKET_ERROR)
565 {
566 switch (get_socket_errno())
567 {
568 case EINTR: // We just retry
569 continue;
570
571 case ETIMEDOUT: // OSX
572 #if EWOULDBLOCK != EAGAIN
573 case EWOULDBLOCK:
574 #endif
575 case EAGAIN:
576 #ifdef __linux
577 case ERESTART:
578 #endif
579 if (memcached_success(io_wait(instance, MEM_READ)))
580 {
581 continue;
582 }
583 return MEMCACHED_IN_PROGRESS;
584
585 /* fall through */
586
587 case ENOTCONN: // Programmer Error
588 assert(0);
589 case ENOTSOCK:
590 assert(0);
591 case EBADF:
592 assert_msg(instance->fd != INVALID_SOCKET, "Invalid socket state");
593 case EINVAL:
594 case EFAULT:
595 case ECONNREFUSED:
596 default:
597 return MEMCACHED_CONNECTION_FAILURE; // We want this!
598 }
599 }
600 } while (data_read > 0);
601
602 return MEMCACHED_CONNECTION_FAILURE;
603 }
604
605 static bool _io_write(memcached_instance_st* instance,
606 const void *buffer, size_t length, bool with_flush,
607 size_t& written)
608 {
609 assert(instance->fd != INVALID_SOCKET);
610 assert(memcached_is_udp(instance->root) == false);
611
612 const char *buffer_ptr= static_cast<const char *>(buffer);
613
614 const size_t original_length= length;
615
616 while (length)
617 {
618 char *write_ptr;
619 size_t buffer_end= MEMCACHED_MAX_BUFFER;
620 size_t should_write= buffer_end -instance->write_buffer_offset;
621 should_write= (should_write < length) ? should_write : length;
622
623 write_ptr= instance->write_buffer + instance->write_buffer_offset;
624 memcpy(write_ptr, buffer_ptr, should_write);
625 instance->write_buffer_offset+= should_write;
626 buffer_ptr+= should_write;
627 length-= should_write;
628
629 if (instance->write_buffer_offset == buffer_end)
630 {
631 WATCHPOINT_ASSERT(instance->fd != INVALID_SOCKET);
632
633 memcached_return_t rc;
634 if (io_flush(instance, with_flush, rc) == false)
635 {
636 written= original_length -length;
637 return false;
638 }
639 }
640 }
641
642 if (with_flush)
643 {
644 memcached_return_t rc;
645 WATCHPOINT_ASSERT(instance->fd != INVALID_SOCKET);
646 if (io_flush(instance, with_flush, rc) == false)
647 {
648 written= original_length -length;
649 return false;
650 }
651 }
652
653 written= original_length -length;
654
655 return true;
656 }
657
658 bool memcached_io_write(memcached_instance_st* instance)
659 {
660 size_t written;
661 return _io_write(instance, NULL, 0, true, written);
662 }
663
664 ssize_t memcached_io_write(memcached_instance_st* instance,
665 const void *buffer, const size_t length, const bool with_flush)
666 {
667 size_t written;
668
669 if (_io_write(instance, buffer, length, with_flush, written) == false)
670 {
671 return -1;
672 }
673
674 return ssize_t(written);
675 }
676
677 bool memcached_io_writev(memcached_instance_st* instance,
678 libmemcached_io_vector_st vector[],
679 const size_t number_of, const bool with_flush)
680 {
681 ssize_t complete_total= 0;
682 ssize_t total= 0;
683
684 for (size_t x= 0; x < number_of; x++, vector++)
685 {
686 complete_total+= vector->length;
687 if (vector->length)
688 {
689 size_t written;
690 if ((_io_write(instance, vector->buffer, vector->length, false, written)) == false)
691 {
692 return false;
693 }
694 total+= written;
695 }
696 }
697
698 if (with_flush)
699 {
700 if (memcached_io_write(instance) == false)
701 {
702 return false;
703 }
704 }
705
706 return (complete_total == total);
707 }
708
709 void memcached_instance_st::start_close_socket()
710 {
711 if (fd != INVALID_SOCKET)
712 {
713 shutdown(fd, SHUT_WR);
714 options.is_shutting_down= true;
715 }
716 }
717
718 void memcached_instance_st::reset_socket()
719 {
720 if (fd != INVALID_SOCKET)
721 {
722 (void)closesocket(fd);
723 fd= INVALID_SOCKET;
724 }
725 }
726
727 void memcached_instance_st::close_socket()
728 {
729 if (fd != INVALID_SOCKET)
730 {
731 int shutdown_options= SHUT_RD;
732 if (options.is_shutting_down == false)
733 {
734 shutdown_options= SHUT_RDWR;
735 }
736
737 /* in case of death shutdown to avoid blocking at close() */
738 if (shutdown(fd, shutdown_options) == SOCKET_ERROR and get_socket_errno() != ENOTCONN)
739 {
740 WATCHPOINT_NUMBER(fd);
741 WATCHPOINT_ERRNO(get_socket_errno());
742 WATCHPOINT_ASSERT(get_socket_errno());
743 }
744
745 reset_socket();
746 state= MEMCACHED_SERVER_STATE_NEW;
747 }
748
749 state= MEMCACHED_SERVER_STATE_NEW;
750 cursor_active_= 0;
751 io_bytes_sent= 0;
752 write_buffer_offset= size_t(root and memcached_is_udp(root) ? UDP_DATAGRAM_HEADER_LENGTH : 0);
753 read_buffer_length= 0;
754 read_ptr= read_buffer;
755 options.is_shutting_down= false;
756 memcached_server_response_reset(this);
757
758 // We reset the version so that if we end up talking to a different server
759 // we don't have stale server version information.
760 major_version= minor_version= micro_version= UINT8_MAX;
761 }
762
763 memcached_instance_st* memcached_io_get_readable_server(Memcached *memc, memcached_return_t&)
764 {
765 #define MAX_SERVERS_TO_POLL 100
766 struct pollfd fds[MAX_SERVERS_TO_POLL];
767 nfds_t host_index= 0;
768
769 for (uint32_t x= 0; x < memcached_server_count(memc) and host_index < MAX_SERVERS_TO_POLL; ++x)
770 {
771 memcached_instance_st* instance= memcached_instance_fetch(memc, x);
772
773 if (instance->read_buffer_length > 0) /* I have data in the buffer */
774 {
775 return instance;
776 }
777
778 if (instance->response_count() > 0)
779 {
780 fds[host_index].events= POLLIN;
781 fds[host_index].revents= 0;
782 fds[host_index].fd= instance->fd;
783 ++host_index;
784 }
785 }
786
787 if (host_index < 2)
788 {
789 /* We have 0 or 1 server with pending events.. */
790 for (uint32_t x= 0; x< memcached_server_count(memc); ++x)
791 {
792 memcached_instance_st* instance= memcached_instance_fetch(memc, x);
793
794 if (instance->response_count() > 0)
795 {
796 return instance;
797 }
798 }
799
800 return NULL;
801 }
802
803 int error= poll(fds, host_index, memc->poll_timeout);
804 switch (error)
805 {
806 case -1:
807 memcached_set_errno(*memc, get_socket_errno(), MEMCACHED_AT);
808 /* FALLTHROUGH */
809 case 0:
810 break;
811
812 default:
813 for (nfds_t x= 0; x < host_index; ++x)
814 {
815 if (fds[x].revents & POLLIN)
816 {
817 for (uint32_t y= 0; y < memcached_server_count(memc); ++y)
818 {
819 memcached_instance_st* instance= memcached_instance_fetch(memc, y);
820
821 if (instance->fd == fds[x].fd)
822 {
823 return instance;
824 }
825 }
826 }
827 }
828 }
829
830 return NULL;
831 }
832
833 /*
834 Eventually we will just kill off the server with the problem.
835 */
836 void memcached_io_reset(memcached_instance_st* instance)
837 {
838 memcached_quit_server(instance, true);
839 }
840
841 /**
842 * Read a given number of bytes from the server and place it into a specific
843 * buffer. Reset the IO channel on this server if an error occurs.
844 */
845 memcached_return_t memcached_safe_read(memcached_instance_st* instance,
846 void *dta,
847 const size_t size)
848 {
849 size_t offset= 0;
850 char *data= static_cast<char *>(dta);
851
852 while (offset < size)
853 {
854 ssize_t nread;
855 memcached_return_t rc;
856
857 while (memcached_continue(rc= memcached_io_read(instance, data + offset, size - offset, nread))) { };
858
859 if (memcached_failed(rc))
860 {
861 return rc;
862 }
863
864 offset+= size_t(nread);
865 }
866
867 return MEMCACHED_SUCCESS;
868 }
869
870 memcached_return_t memcached_io_readline(memcached_instance_st* instance,
871 char *buffer_ptr,
872 size_t size,
873 size_t& total_nr)
874 {
875 total_nr= 0;
876 bool line_complete= false;
877
878 while (line_complete == false)
879 {
880 if (instance->read_buffer_length == 0)
881 {
882 /*
883 * We don't have any data in the buffer, so let's fill the read
884 * buffer. Call the standard read function to avoid duplicating
885 * the logic.
886 */
887 ssize_t nread;
888 memcached_return_t rc= memcached_io_read(instance, buffer_ptr, 1, nread);
889 if (memcached_failed(rc) and rc == MEMCACHED_IN_PROGRESS)
890 {
891 memcached_quit_server(instance, true);
892 return memcached_set_error(*instance, rc, MEMCACHED_AT);
893 }
894 else if (memcached_failed(rc))
895 {
896 return rc;
897 }
898
899 if (*buffer_ptr == '\n')
900 {
901 line_complete= true;
902 }
903
904 ++buffer_ptr;
905 ++total_nr;
906 }
907
908 /* Now let's look in the buffer and copy as we go! */
909 while (instance->read_buffer_length and total_nr < size and line_complete == false)
910 {
911 *buffer_ptr = *instance->read_ptr;
912 if (*buffer_ptr == '\n')
913 {
914 line_complete = true;
915 }
916 --instance->read_buffer_length;
917 ++instance->read_ptr;
918 ++total_nr;
919 ++buffer_ptr;
920 }
921
922 if (total_nr == size)
923 {
924 return MEMCACHED_PROTOCOL_ERROR;
925 }
926 }
927
928 return MEMCACHED_SUCCESS;
929 }