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