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