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