2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
8 * Summary: Server IO, Not public!
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
);
24 static memcached_return_t
io_wait(memcached_server_write_instance_st ptr
,
25 memc_read_or_write read_or_write
)
33 if (read_or_write
== MEM_WRITE
) /* write */
36 WATCHPOINT_SET(ptr
->io_wait_count
.write
++);
40 WATCHPOINT_SET(ptr
->io_wait_count
.read
++);
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
51 if (read_or_write
== MEM_WRITE
)
53 memcached_return_t rc
= memcached_purge(ptr
);
54 if (rc
!= MEMCACHED_SUCCESS
&& rc
!= MEMCACHED_STORED
)
55 return MEMCACHED_FAILURE
;
58 int timeout
= ptr
->root
->poll_timeout
;
59 if (ptr
->root
->flags
.no_block
== false)
63 while (--loop_max
) // While loop is for ERESTART or EINTR
65 error
= poll(&fds
, 1, timeout
);
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
);
73 return MEMCACHED_SUCCESS
;
74 case 0: // Timeout occured, we let the while() loop do its thing.
75 return MEMCACHED_TIMEOUT
;
77 WATCHPOINT_ERRNO(get_socket_errno());
78 switch (get_socket_errno())
80 #ifdef TARGET_OS_LINUX
86 if (fds
.revents
& POLLERR
)
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
;
95 ptr
->cached_errno
= get_socket_errno();
97 memcached_quit_server(ptr
, true);
99 return MEMCACHED_FAILURE
;
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);
109 return MEMCACHED_FAILURE
;
113 * Try to fill the input buffer for a server with as much
116 * @param ptr the server to pack
118 static bool repack_input_buffer(memcached_server_write_instance_st ptr
)
120 if (ptr
->read_ptr
!= ptr
->read_buffer
)
122 /* Move all of the data to the beginning of the buffer so
123 ** that we can fit more data into the buffer...
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
;
130 /* There is room in the buffer, try to fill it! */
131 if (ptr
->read_buffer_length
!= MEMCACHED_MAX_BUFFER
)
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
,
141 ptr
->read_data_length
+= (size_t)nr
;
142 ptr
->read_buffer_length
+= (size_t)nr
;
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.
156 * @param ptr the server to star processing iput messages for
157 * @return true if we processed anything, false otherwise
159 static bool process_input_buffer(memcached_server_write_instance_st ptr
)
162 ** We might be able to process some of the response messages if we
163 ** have a callback set up
165 if (ptr
->root
->callbacks
!= NULL
&& ptr
->root
->flags
.use_udp
== false)
168 * We might have responses... try to read them out and fire
171 memcached_callback_st cb
= *ptr
->root
->callbacks
;
173 memcached_set_processing_input((memcached_st
*)ptr
->root
, true);
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
),
181 memcached_set_processing_input(root
, false);
183 if (error
== MEMCACHED_SUCCESS
)
185 for (unsigned int x
= 0; x
< cb
.number_of_callback
; x
++)
187 error
= (*cb
.callback
[x
])(ptr
->root
, &root
->result
, cb
.context
);
188 if (error
!= MEMCACHED_SUCCESS
)
192 /* @todo what should I do with the error message??? */
194 /* @todo what should I do with other error messages?? */
201 static inline void memcached_io_cork_push(memcached_server_st
*ptr
)
205 if (ptr
->root
->flags
.cork
== false || ptr
->state
.is_corked
)
209 int err
= setsockopt(ptr
->fd
, IPPROTO_TCP
, CORK
,
210 &enable
, (socklen_t
)sizeof(int));
212 ptr
->state
.is_corked
= true;
214 WATCHPOINT_ASSERT(ptr
->state
.is_corked
== true);
218 static inline void memcached_io_cork_pop(memcached_server_st
*ptr
)
222 if (ptr
->root
->flags
.cork
== false || ptr
->state
.is_corked
== false)
226 int err
= setsockopt(ptr
->fd
, IPPROTO_TCP
, CORK
,
227 &enable
, (socklen_t
)sizeof(int));
229 ptr
->state
.is_corked
= false;
231 WATCHPOINT_ASSERT(ptr
->state
.is_corked
== false);
235 #if 0 // Dead code, this should be removed.
236 void memcached_io_preread(memcached_st
*ptr
)
242 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
244 if (memcached_server_response_count(ptr
, x
) &&
245 ptr
->hosts
[x
].read_data_length
< MEMCACHED_MAX_BUFFER
)
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
)
255 ptr
->hosts
[x
].read_buffer_length
+= data_read
;
256 ptr
->hosts
[x
].read_data_length
+= data_read
;
262 memcached_return_t
memcached_io_read(memcached_server_write_instance_st ptr
,
263 void *buffer
, size_t length
, ssize_t
*nread
)
271 if (!ptr
->read_buffer_length
)
277 data_read
= recv(ptr
->fd
, ptr
->read_buffer
, MEMCACHED_MAX_BUFFER
, 0);
282 else if (data_read
== SOCKET_ERROR
)
284 ptr
->cached_errno
= get_socket_errno();
285 memcached_return_t rc
= MEMCACHED_ERRNO
;
286 switch (get_socket_errno())
293 #ifdef TARGET_OS_LINUX
296 if ((rc
= io_wait(ptr
, MEM_READ
)) == MEMCACHED_SUCCESS
)
302 memcached_quit_server(ptr
, true);
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.
319 WATCHPOINT_STRING("We had a zero length recv()");
320 memcached_quit_server(ptr
, true);
322 return MEMCACHED_UNKNOWN_READ_FAILURE
;
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
;
336 difference
= (length
> ptr
->read_buffer_length
) ? ptr
->read_buffer_length
: length
;
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
;
346 *buffer_ptr
= *ptr
->read_ptr
;
348 ptr
->read_buffer_length
--;
354 ptr
->server_failure_counter
= 0;
355 *nread
= (ssize_t
)(buffer_ptr
- (char*)buffer
);
356 return MEMCACHED_SUCCESS
;
359 static ssize_t
_io_write(memcached_server_write_instance_st ptr
,
360 const void *buffer
, size_t length
, bool with_flush
)
362 size_t original_length
;
363 const char* buffer_ptr
;
365 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
367 original_length
= length
;
370 /* more writable data is coming if a flush isn't required, so delay send */
373 memcached_io_cork_push(ptr
);
382 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
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
)
392 buffer_end
= MEMCACHED_MAX_BUFFER
;
393 should_write
= buffer_end
- ptr
->write_buffer_offset
;
394 should_write
= (should_write
< length
) ? should_write
: length
;
397 write_ptr
= ptr
->write_buffer
+ ptr
->write_buffer_offset
;
398 memcpy(write_ptr
, buffer_ptr
, should_write
);
399 ptr
->write_buffer_offset
+= should_write
;
400 buffer_ptr
+= should_write
;
401 length
-= should_write
;
403 if (ptr
->write_buffer_offset
== buffer_end
&& ptr
->type
!= MEMCACHED_CONNECTION_UDP
)
405 memcached_return_t rc
;
408 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
409 sent_length
= io_flush(ptr
, &rc
);
410 if (sent_length
== -1)
413 /* If io_flush calls memcached_purge, sent_length may be 0 */
414 unlikely (sent_length
!= 0)
416 WATCHPOINT_ASSERT(sent_length
== (ssize_t
)buffer_end
);
423 memcached_return_t rc
;
424 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
425 if (io_flush(ptr
, &rc
) == -1)
430 memcached_io_cork_pop(ptr
);
433 return (ssize_t
) original_length
;
436 ssize_t
memcached_io_write(memcached_server_write_instance_st ptr
,
437 const void *buffer
, size_t length
, bool with_flush
)
439 return _io_write(ptr
, buffer
, length
, with_flush
);
442 ssize_t
memcached_io_writev(memcached_server_write_instance_st ptr
,
443 const struct __write_vector_st
*vector
,
444 size_t number_of
, bool with_flush
)
448 for (size_t x
= 0; x
< number_of
; x
++, vector
++)
452 if ((returnable
= _io_write(ptr
, vector
->buffer
, vector
->length
, false)) == -1)
461 if (memcached_io_write(ptr
, NULL
, 0, true) == -1)
471 memcached_return_t
memcached_io_close(memcached_server_write_instance_st ptr
)
473 if (ptr
->fd
== INVALID_SOCKET
)
475 return MEMCACHED_SUCCESS
;
478 /* in case of death shutdown to avoid blocking at close() */
479 if (shutdown(ptr
->fd
, SHUT_RDWR
) == SOCKET_ERROR
&& get_socket_errno() != ENOTCONN
)
481 WATCHPOINT_NUMBER(ptr
->fd
);
482 WATCHPOINT_ERRNO(get_socket_errno());
483 WATCHPOINT_ASSERT(get_socket_errno());
486 if (closesocket(ptr
->fd
) == SOCKET_ERROR
)
488 WATCHPOINT_ERRNO(get_socket_errno());
491 return MEMCACHED_SUCCESS
;
494 memcached_server_write_instance_st
memcached_io_get_readable_server(memcached_st
*memc
)
496 #define MAX_SERVERS_TO_POLL 100
497 struct pollfd fds
[MAX_SERVERS_TO_POLL
];
498 unsigned int host_index
= 0;
501 x
< memcached_server_count(memc
) && host_index
< MAX_SERVERS_TO_POLL
;
504 memcached_server_write_instance_st instance
=
505 memcached_server_instance_fetch(memc
, x
);
507 if (instance
->read_buffer_length
> 0) /* I have data in the buffer */
510 if (memcached_server_response_count(instance
) > 0)
512 fds
[host_index
].events
= POLLIN
;
513 fds
[host_index
].revents
= 0;
514 fds
[host_index
].fd
= instance
->fd
;
521 /* We have 0 or 1 server with pending events.. */
522 for (uint32_t x
= 0; x
< memcached_server_count(memc
); ++x
)
524 memcached_server_write_instance_st instance
=
525 memcached_server_instance_fetch(memc
, x
);
527 if (memcached_server_response_count(instance
) > 0)
536 int err
= poll(fds
, host_index
, memc
->poll_timeout
);
539 memc
->cached_errno
= get_socket_errno();
544 for (size_t x
= 0; x
< host_index
; ++x
)
546 if (fds
[x
].revents
& POLLIN
)
548 for (uint32_t y
= 0; y
< memcached_server_count(memc
); ++y
)
550 memcached_server_write_instance_st instance
=
551 memcached_server_instance_fetch(memc
, y
);
553 if (instance
->fd
== fds
[x
].fd
)
563 static ssize_t
io_flush(memcached_server_write_instance_st ptr
,
564 memcached_return_t
*error
)
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..
572 memcached_return_t rc
;
573 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
574 rc
= memcached_purge(ptr
);
576 if (rc
!= MEMCACHED_SUCCESS
&& rc
!= MEMCACHED_STORED
)
580 size_t return_length
;
581 char *local_write_ptr
= ptr
->write_buffer
;
582 size_t write_length
= ptr
->write_buffer_offset
;
584 *error
= MEMCACHED_SUCCESS
;
586 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
588 // UDP Sanity check, make sure that we are not sending somthing too big
589 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
&& write_length
> MAX_UDP_DATAGRAM_LENGTH
)
592 if (ptr
->write_buffer_offset
== 0 || (ptr
->type
== MEMCACHED_CONNECTION_UDP
593 && ptr
->write_buffer_offset
== UDP_DATAGRAM_HEADER_LENGTH
))
596 /* Looking for memory overflows */
598 if (write_length
== MEMCACHED_MAX_BUFFER
)
599 WATCHPOINT_ASSERT(ptr
->write_buffer
== local_write_ptr
);
600 WATCHPOINT_ASSERT((ptr
->write_buffer
+ MEMCACHED_MAX_BUFFER
) >= (local_write_ptr
+ write_length
));
606 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
607 WATCHPOINT_ASSERT(write_length
> 0);
609 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
610 increment_udp_message_id(ptr
);
612 sent_length
= send(ptr
->fd
, local_write_ptr
, write_length
, 0);
613 if (sent_length
== SOCKET_ERROR
)
615 ptr
->cached_errno
= get_socket_errno();
616 WATCHPOINT_ERRNO(get_socket_errno());
617 WATCHPOINT_NUMBER(get_socket_errno());
618 switch (get_socket_errno())
628 * We may be blocked on write because the input buffer
629 * is full. Let's check if we have room in our input
630 * buffer for more data and retry the write before
633 if (repack_input_buffer(ptr
) ||
634 process_input_buffer(ptr
))
637 memcached_return_t rc
;
638 rc
= io_wait(ptr
, MEM_WRITE
);
640 if (rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_TIMEOUT
)
643 memcached_quit_server(ptr
, true);
647 memcached_quit_server(ptr
, true);
648 *error
= MEMCACHED_ERRNO
;
653 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
&&
654 (size_t)sent_length
!= write_length
)
656 memcached_quit_server(ptr
, true);
660 ptr
->io_bytes_sent
+= (uint32_t) sent_length
;
662 local_write_ptr
+= sent_length
;
663 write_length
-= (uint32_t) sent_length
;
664 return_length
+= (uint32_t) sent_length
;
667 WATCHPOINT_ASSERT(write_length
== 0);
668 // Need to study this assert() WATCHPOINT_ASSERT(return_length ==
669 // ptr->write_buffer_offset);
671 // if we are a udp server, the begining of the buffer is reserverd for
672 // the upd frame header
673 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
674 ptr
->write_buffer_offset
= UDP_DATAGRAM_HEADER_LENGTH
;
676 ptr
->write_buffer_offset
= 0;
678 return (ssize_t
) return_length
;
682 Eventually we will just kill off the server with the problem.
684 void memcached_io_reset(memcached_server_write_instance_st ptr
)
686 memcached_quit_server(ptr
, true);
690 * Read a given number of bytes from the server and place it into a specific
691 * buffer. Reset the IO channel on this server if an error occurs.
693 memcached_return_t
memcached_safe_read(memcached_server_write_instance_st ptr
,
700 while (offset
< size
)
703 memcached_return_t rc
= memcached_io_read(ptr
, data
+ offset
, size
- offset
,
705 if (rc
!= MEMCACHED_SUCCESS
)
708 offset
+= (size_t) nread
;
711 return MEMCACHED_SUCCESS
;
714 memcached_return_t
memcached_io_readline(memcached_server_write_instance_st ptr
,
718 bool line_complete
= false;
721 while (!line_complete
)
723 if (ptr
->read_buffer_length
== 0)
726 * We don't have any data in the buffer, so let's fill the read
727 * buffer. Call the standard read function to avoid duplicating
731 memcached_return_t rc
= memcached_io_read(ptr
, buffer_ptr
, 1, &nread
);
732 if (rc
!= MEMCACHED_SUCCESS
)
735 if (*buffer_ptr
== '\n')
742 /* Now let's look in the buffer and copy as we go! */
743 while (ptr
->read_buffer_length
&& total_nr
< size
&& !line_complete
)
745 *buffer_ptr
= *ptr
->read_ptr
;
746 if (*buffer_ptr
== '\n')
747 line_complete
= true;
748 --ptr
->read_buffer_length
;
754 if (total_nr
== size
)
755 return MEMCACHED_PROTOCOL_ERROR
;
758 return MEMCACHED_SUCCESS
;
762 * The udp request id consists of two seperate sections
764 * 2) The message number
765 * The thread id should only be set when the memcached_st struct is created
766 * and should not be changed.
768 * The message num is incremented for each new message we send, this function
769 * extracts the message number from message_id, increments it and then
770 * writes the new value back into the header
772 static void increment_udp_message_id(memcached_server_write_instance_st ptr
)
774 struct udp_datagram_header_st
*header
= (struct udp_datagram_header_st
*)ptr
->write_buffer
;
775 uint16_t cur_req
= get_udp_datagram_request_id(header
);
776 int msg_num
= get_msg_num_from_request_id(cur_req
);
777 int thread_id
= get_thread_id_from_request_id(cur_req
);
779 if (((++msg_num
) & UDP_REQUEST_ID_THREAD_MASK
) != 0)
782 header
->request_id
= htons((uint16_t) (thread_id
| msg_num
));
785 memcached_return_t
memcached_io_init_udp_header(memcached_server_write_instance_st ptr
, uint16_t thread_id
)
787 if (thread_id
> UDP_REQUEST_ID_MAX_THREAD_ID
)
788 return MEMCACHED_FAILURE
;
790 struct udp_datagram_header_st
*header
= (struct udp_datagram_header_st
*)ptr
->write_buffer
;
791 header
->request_id
= htons((uint16_t) (generate_udp_request_thread_id(thread_id
)));
792 header
->num_datagrams
= htons(1);
793 header
->sequence_number
= htons(0);
795 return MEMCACHED_SUCCESS
;