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