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