Updating for vector interface.
[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 ssize_t memcached_io_writev(memcached_server_write_instance_st ptr,
330 struct __write_vector_st *vector,
331 size_t number_of, bool with_flush)
332 {
333 ssize_t total= 0;
334
335 for (size_t x= 0; x < number_of; x++, vector++)
336 {
337 ssize_t returnable;
338
339 if ((returnable= memcached_io_write(ptr, vector->buffer, vector->length, false)) == -1)
340 {
341 return -1;
342 }
343 total+= returnable;
344 }
345
346 if (with_flush)
347 {
348 if (memcached_io_write(ptr, NULL, 0, true) == -1)
349 {
350 return -1;
351 }
352 }
353
354 return total;
355 }
356
357 ssize_t memcached_io_write(memcached_server_write_instance_st ptr,
358 const void *buffer, size_t length, bool with_flush)
359 {
360 size_t original_length;
361 const char* buffer_ptr;
362
363 WATCHPOINT_ASSERT(ptr->fd != -1);
364
365 original_length= length;
366 buffer_ptr= buffer;
367
368 /* more writable data is coming if a flush isn't required, so delay send */
369 if (! with_flush)
370 {
371 memcached_io_cork_push(ptr);
372 }
373
374 while (length)
375 {
376 char *write_ptr;
377 size_t should_write;
378 size_t buffer_end;
379
380 if (ptr->type == MEMCACHED_CONNECTION_UDP)
381 {
382 //UDP does not support partial writes
383 buffer_end= MAX_UDP_DATAGRAM_LENGTH;
384 should_write= length;
385 if (ptr->write_buffer_offset + should_write > buffer_end)
386 return -1;
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 != -1);
407 sent_length= io_flush(ptr, &rc);
408 if (sent_length == -1)
409 return -1;
410
411 /* If io_flush calls memcached_purge, sent_length may be 0 */
412 unlikely (sent_length != 0)
413 {
414 WATCHPOINT_ASSERT(sent_length == (ssize_t)buffer_end);
415 }
416 }
417 }
418
419 if (with_flush)
420 {
421 memcached_return_t rc;
422 WATCHPOINT_ASSERT(ptr->fd != -1);
423 if (io_flush(ptr, &rc) == -1)
424 {
425 return -1;
426 }
427
428 memcached_io_cork_pop(ptr);
429 }
430
431 return (ssize_t) original_length;
432 }
433
434 memcached_return_t memcached_io_close(memcached_server_write_instance_st ptr)
435 {
436 if (ptr->fd == -1)
437 {
438 return MEMCACHED_SUCCESS;
439 }
440
441 /* in case of death shutdown to avoid blocking at close() */
442 if (shutdown(ptr->fd, SHUT_RDWR) == -1 && errno != ENOTCONN)
443 {
444 WATCHPOINT_NUMBER(ptr->fd);
445 WATCHPOINT_ERRNO(errno);
446 WATCHPOINT_ASSERT(errno);
447 }
448
449 if (close(ptr->fd) == -1)
450 {
451 WATCHPOINT_ERRNO(errno);
452 }
453
454 return MEMCACHED_SUCCESS;
455 }
456
457 memcached_server_write_instance_st memcached_io_get_readable_server(memcached_st *memc)
458 {
459 #define MAX_SERVERS_TO_POLL 100
460 struct pollfd fds[MAX_SERVERS_TO_POLL];
461 unsigned int host_index= 0;
462
463 for (uint32_t x= 0;
464 x< memcached_server_count(memc) && host_index < MAX_SERVERS_TO_POLL;
465 ++x)
466 {
467 memcached_server_write_instance_st instance=
468 memcached_server_instance_fetch(memc, x);
469
470 if (instance->read_buffer_length > 0) /* I have data in the buffer */
471 return instance;
472
473 if (memcached_server_response_count(instance) > 0)
474 {
475 fds[host_index].events = POLLIN;
476 fds[host_index].revents = 0;
477 fds[host_index].fd = instance->fd;
478 ++host_index;
479 }
480 }
481
482 if (host_index < 2)
483 {
484 /* We have 0 or 1 server with pending events.. */
485 for (uint32_t x= 0; x< memcached_server_count(memc); ++x)
486 {
487 memcached_server_write_instance_st instance=
488 memcached_server_instance_fetch(memc, x);
489
490 if (memcached_server_response_count(instance) > 0)
491 {
492 return instance;
493 }
494 }
495
496 return NULL;
497 }
498
499 int err= poll(fds, host_index, memc->poll_timeout);
500 switch (err) {
501 case -1:
502 memc->cached_errno = errno;
503 /* FALLTHROUGH */
504 case 0:
505 break;
506 default:
507 for (size_t x= 0; x < host_index; ++x)
508 {
509 if (fds[x].revents & POLLIN)
510 {
511 for (uint32_t y= 0; y < memcached_server_count(memc); ++y)
512 {
513 memcached_server_write_instance_st instance=
514 memcached_server_instance_fetch(memc, y);
515
516 if (instance->fd == fds[x].fd)
517 return instance;
518 }
519 }
520 }
521 }
522
523 return NULL;
524 }
525
526 static ssize_t io_flush(memcached_server_write_instance_st ptr,
527 memcached_return_t *error)
528 {
529 /*
530 ** We might want to purge the input buffer if we haven't consumed
531 ** any output yet... The test for the limits is the purge is inline
532 ** in the purge function to avoid duplicating the logic..
533 */
534 {
535 memcached_return_t rc;
536 WATCHPOINT_ASSERT(ptr->fd != -1);
537 rc= memcached_purge(ptr);
538
539 if (rc != MEMCACHED_SUCCESS && rc != MEMCACHED_STORED)
540 return -1;
541 }
542 ssize_t sent_length;
543 size_t return_length;
544 char *local_write_ptr= ptr->write_buffer;
545 size_t write_length= ptr->write_buffer_offset;
546
547 *error= MEMCACHED_SUCCESS;
548
549 WATCHPOINT_ASSERT(ptr->fd != -1);
550
551 // UDP Sanity check, make sure that we are not sending somthing too big
552 if (ptr->type == MEMCACHED_CONNECTION_UDP && write_length > MAX_UDP_DATAGRAM_LENGTH)
553 return -1;
554
555 if (ptr->write_buffer_offset == 0 || (ptr->type == MEMCACHED_CONNECTION_UDP
556 && ptr->write_buffer_offset == UDP_DATAGRAM_HEADER_LENGTH))
557 return 0;
558
559 /* Looking for memory overflows */
560 #if defined(DEBUG)
561 if (write_length == MEMCACHED_MAX_BUFFER)
562 WATCHPOINT_ASSERT(ptr->write_buffer == local_write_ptr);
563 WATCHPOINT_ASSERT((ptr->write_buffer + MEMCACHED_MAX_BUFFER) >= (local_write_ptr + write_length));
564 #endif
565
566 return_length= 0;
567 while (write_length)
568 {
569 WATCHPOINT_ASSERT(ptr->fd != -1);
570 WATCHPOINT_ASSERT(write_length > 0);
571 sent_length= 0;
572 if (ptr->type == MEMCACHED_CONNECTION_UDP)
573 increment_udp_message_id(ptr);
574 sent_length= write(ptr->fd, local_write_ptr, write_length);
575
576 if (sent_length == -1)
577 {
578 ptr->cached_errno= errno;
579 switch (errno)
580 {
581 case ENOBUFS:
582 continue;
583 case EAGAIN:
584 {
585 /*
586 * We may be blocked on write because the input buffer
587 * is full. Let's check if we have room in our input
588 * buffer for more data and retry the write before
589 * waiting..
590 */
591 if (repack_input_buffer(ptr) ||
592 process_input_buffer(ptr))
593 continue;
594
595 memcached_return_t rc;
596 rc= io_wait(ptr, MEM_WRITE);
597
598 if (rc == MEMCACHED_SUCCESS || rc == MEMCACHED_TIMEOUT)
599 continue;
600
601 memcached_quit_server(ptr, true);
602 return -1;
603 }
604 default:
605 memcached_quit_server(ptr, true);
606 *error= MEMCACHED_ERRNO;
607 return -1;
608 }
609 }
610
611 if (ptr->type == MEMCACHED_CONNECTION_UDP &&
612 (size_t)sent_length != write_length)
613 {
614 memcached_quit_server(ptr, true);
615 return -1;
616 }
617
618 ptr->io_bytes_sent += (uint32_t) sent_length;
619
620 local_write_ptr+= sent_length;
621 write_length-= (uint32_t) sent_length;
622 return_length+= (uint32_t) sent_length;
623 }
624
625 WATCHPOINT_ASSERT(write_length == 0);
626 // Need to study this assert() WATCHPOINT_ASSERT(return_length ==
627 // ptr->write_buffer_offset);
628
629 // if we are a udp server, the begining of the buffer is reserverd for
630 // the upd frame header
631 if (ptr->type == MEMCACHED_CONNECTION_UDP)
632 ptr->write_buffer_offset= UDP_DATAGRAM_HEADER_LENGTH;
633 else
634 ptr->write_buffer_offset= 0;
635
636 return (ssize_t) return_length;
637 }
638
639 /*
640 Eventually we will just kill off the server with the problem.
641 */
642 void memcached_io_reset(memcached_server_write_instance_st ptr)
643 {
644 memcached_quit_server(ptr, true);
645 }
646
647 /**
648 * Read a given number of bytes from the server and place it into a specific
649 * buffer. Reset the IO channel on this server if an error occurs.
650 */
651 memcached_return_t memcached_safe_read(memcached_server_write_instance_st ptr,
652 void *dta,
653 size_t size)
654 {
655 size_t offset= 0;
656 char *data= dta;
657
658 while (offset < size)
659 {
660 ssize_t nread;
661 memcached_return_t rc= memcached_io_read(ptr, data + offset, size - offset,
662 &nread);
663 if (rc != MEMCACHED_SUCCESS)
664 return rc;
665
666 offset+= (size_t) nread;
667 }
668
669 return MEMCACHED_SUCCESS;
670 }
671
672 memcached_return_t memcached_io_readline(memcached_server_write_instance_st ptr,
673 char *buffer_ptr,
674 size_t size)
675 {
676 bool line_complete= false;
677 size_t total_nr= 0;
678
679 while (!line_complete)
680 {
681 if (ptr->read_buffer_length == 0)
682 {
683 /*
684 * We don't have any data in the buffer, so let's fill the read
685 * buffer. Call the standard read function to avoid duplicating
686 * the logic.
687 */
688 ssize_t nread;
689 memcached_return_t rc= memcached_io_read(ptr, buffer_ptr, 1, &nread);
690 if (rc != MEMCACHED_SUCCESS)
691 return rc;
692
693 if (*buffer_ptr == '\n')
694 line_complete= true;
695
696 ++buffer_ptr;
697 ++total_nr;
698 }
699
700 /* Now let's look in the buffer and copy as we go! */
701 while (ptr->read_buffer_length && total_nr < size && !line_complete)
702 {
703 *buffer_ptr = *ptr->read_ptr;
704 if (*buffer_ptr == '\n')
705 line_complete = true;
706 --ptr->read_buffer_length;
707 ++ptr->read_ptr;
708 ++total_nr;
709 ++buffer_ptr;
710 }
711
712 if (total_nr == size)
713 return MEMCACHED_PROTOCOL_ERROR;
714 }
715
716 return MEMCACHED_SUCCESS;
717 }
718
719 /*
720 * The udp request id consists of two seperate sections
721 * 1) The thread id
722 * 2) The message number
723 * The thread id should only be set when the memcached_st struct is created
724 * and should not be changed.
725 *
726 * The message num is incremented for each new message we send, this function
727 * extracts the message number from message_id, increments it and then
728 * writes the new value back into the header
729 */
730 static void increment_udp_message_id(memcached_server_write_instance_st ptr)
731 {
732 struct udp_datagram_header_st *header= (struct udp_datagram_header_st *)ptr->write_buffer;
733 uint16_t cur_req= get_udp_datagram_request_id(header);
734 int msg_num= get_msg_num_from_request_id(cur_req);
735 int thread_id= get_thread_id_from_request_id(cur_req);
736
737 if (((++msg_num) & UDP_REQUEST_ID_THREAD_MASK) != 0)
738 msg_num= 0;
739
740 header->request_id= htons((uint16_t) (thread_id | msg_num));
741 }
742
743 memcached_return_t memcached_io_init_udp_header(memcached_server_write_instance_st ptr, uint16_t thread_id)
744 {
745 if (thread_id > UDP_REQUEST_ID_MAX_THREAD_ID)
746 return MEMCACHED_FAILURE;
747
748 struct udp_datagram_header_st *header= (struct udp_datagram_header_st *)ptr->write_buffer;
749 header->request_id= htons((uint16_t) (generate_udp_request_thread_id(thread_id)));
750 header->num_datagrams= htons(1);
751 header->sequence_number= htons(0);
752
753 return MEMCACHED_SUCCESS;
754 }