1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * * Redistributions in binary form must reproduce the above
17 * copyright notice, this list of conditions and the following disclaimer
18 * in the documentation and/or other materials provided with the
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <libmemcached/common.h>
42 enum memc_read_or_write
{
48 * Try to fill the input buffer for a server with as much
51 * @param ptr the server to pack
53 static bool repack_input_buffer(memcached_server_write_instance_st ptr
)
55 if (ptr
->read_ptr
!= ptr
->read_buffer
)
57 /* Move all of the data to the beginning of the buffer so
58 ** that we can fit more data into the buffer...
60 memmove(ptr
->read_buffer
, ptr
->read_ptr
, ptr
->read_buffer_length
);
61 ptr
->read_ptr
= ptr
->read_buffer
;
62 ptr
->read_data_length
= ptr
->read_buffer_length
;
65 /* There is room in the buffer, try to fill it! */
66 if (ptr
->read_buffer_length
!= MEMCACHED_MAX_BUFFER
)
69 /* Just try a single read to grab what's available */
70 ssize_t nr
= recv(ptr
->fd
,
71 ptr
->read_ptr
+ ptr
->read_data_length
,
72 MEMCACHED_MAX_BUFFER
- ptr
->read_data_length
,
79 switch (get_socket_errno())
84 #if EWOULDBLOCK != EAGAIN
88 #ifdef TARGET_OS_LINUX
91 break; // No IO is fine, we can just move on
94 memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
99 case 0: // Shutdown on the socket has occurred
101 memcached_set_error(*ptr
, MEMCACHED_CONNECTION_FAILURE
, MEMCACHED_AT
);
107 ptr
->read_data_length
+= size_t(nr
);
108 ptr
->read_buffer_length
+= size_t(nr
);
119 * If the we have callbacks connected to this server structure
120 * we may start process the input queue and fire the callbacks
121 * for the incomming messages. This function is _only_ called
122 * when the input buffer is full, so that we _know_ that we have
123 * at least _one_ message to process.
125 * @param ptr the server to star processing iput messages for
126 * @return true if we processed anything, false otherwise
128 static bool process_input_buffer(memcached_server_write_instance_st ptr
)
131 ** We might be able to process some of the response messages if we
132 ** have a callback set up
134 if (ptr
->root
->callbacks
!= NULL
)
137 * We might have responses... try to read them out and fire
140 memcached_callback_st cb
= *ptr
->root
->callbacks
;
142 memcached_set_processing_input((memcached_st
*)ptr
->root
, true);
144 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
145 memcached_st
*root
= (memcached_st
*)ptr
->root
;
146 memcached_return_t error
= memcached_response(ptr
, buffer
, sizeof(buffer
), &root
->result
);
148 memcached_set_processing_input(root
, false);
150 if (error
== MEMCACHED_SUCCESS
)
152 for (unsigned int x
= 0; x
< cb
.number_of_callback
; x
++)
154 error
= (*cb
.callback
[x
])(ptr
->root
, &root
->result
, cb
.context
);
155 if (error
!= MEMCACHED_SUCCESS
)
159 /* @todo what should I do with the error message??? */
161 /* @todo what should I do with other error messages?? */
168 static memcached_return_t
io_wait(memcached_server_write_instance_st ptr
,
169 const memc_read_or_write read_or_write
)
175 if (read_or_write
== MEM_WRITE
) /* write */
178 WATCHPOINT_SET(ptr
->io_wait_count
.write
++);
182 WATCHPOINT_SET(ptr
->io_wait_count
.read
++);
186 ** We are going to block on write, but at least on Solaris we might block
187 ** on write if we haven't read anything from our input buffer..
188 ** Try to purge the input buffer if we don't do any flow control in the
189 ** application layer (just sending a lot of data etc)
190 ** The test is moved down in the purge function to avoid duplication of
193 if (read_or_write
== MEM_WRITE
)
195 if (memcached_fatal(memcached_purge(ptr
)))
197 return MEMCACHED_FAILURE
;
201 if (ptr
->root
->poll_timeout
== 0) // Mimic 0 causes timeout behavior (not all platforms do this)
203 return memcached_set_error(*ptr
, MEMCACHED_TIMEOUT
, MEMCACHED_AT
);
207 while (--loop_max
) // While loop is for ERESTART or EINTR
210 int error
= poll(&fds
, 1, ptr
->root
->poll_timeout
);
214 WATCHPOINT_IF_LABELED_NUMBER(read_or_write
&& loop_max
< 4, "read() times we had to loop, decremented down from 5", loop_max
);
215 WATCHPOINT_IF_LABELED_NUMBER(!read_or_write
&& loop_max
< 4, "write() times we had to loop, decremented down from 5", loop_max
);
217 return MEMCACHED_SUCCESS
;
219 case 0: // Timeout occured, we let the while() loop do its thing.
220 return memcached_set_error(*ptr
, MEMCACHED_TIMEOUT
, MEMCACHED_AT
);
223 WATCHPOINT_ERRNO(get_socket_errno());
224 switch (get_socket_errno())
226 #ifdef TARGET_OS_LINUX
234 return memcached_set_error(*ptr
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
);
237 return memcached_set_error(*ptr
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
, memcached_literal_param("RLIMIT_NOFILE exceeded, or if OSX the timeout value was invalid"));
240 if (fds
.revents
& POLLERR
)
243 socklen_t len
= sizeof (err
);
244 if (getsockopt(ptr
->fd
, SOL_SOCKET
, SO_ERROR
, &err
, &len
) == 0)
255 memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
257 int local_errno
= get_socket_errno(); // We cache in case memcached_quit_server() modifies errno
258 memcached_quit_server(ptr
, true);
260 return memcached_set_errno(*ptr
, local_errno
, MEMCACHED_AT
);
265 memcached_quit_server(ptr
, true);
267 return memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
270 static bool io_flush(memcached_server_write_instance_st ptr
,
271 const bool with_flush
,
272 memcached_return_t
& error
)
275 ** We might want to purge the input buffer if we haven't consumed
276 ** any output yet... The test for the limits is the purge is inline
277 ** in the purge function to avoid duplicating the logic..
280 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
281 memcached_return_t rc
= memcached_purge(ptr
);
283 if (rc
!= MEMCACHED_SUCCESS
and rc
!= MEMCACHED_STORED
)
288 char *local_write_ptr
= ptr
->write_buffer
;
289 size_t write_length
= ptr
->write_buffer_offset
;
291 error
= MEMCACHED_SUCCESS
;
293 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
295 /* Looking for memory overflows */
297 if (write_length
== MEMCACHED_MAX_BUFFER
)
298 WATCHPOINT_ASSERT(ptr
->write_buffer
== local_write_ptr
);
299 WATCHPOINT_ASSERT((ptr
->write_buffer
+ MEMCACHED_MAX_BUFFER
) >= (local_write_ptr
+ write_length
));
304 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
305 WATCHPOINT_ASSERT(write_length
> 0);
307 ssize_t sent_length
= 0;
308 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
311 sent_length
= ::send(ptr
->fd
, local_write_ptr
, write_length
, MSG_NOSIGNAL
|MSG_DONTWAIT
);
315 sent_length
= ::send(ptr
->fd
, local_write_ptr
, write_length
, MSG_NOSIGNAL
|MSG_DONTWAIT
|MSG_MORE
);
318 if (sent_length
== SOCKET_ERROR
)
320 #if 0 // @todo I should look at why we hit this bit of code hard frequently
321 WATCHPOINT_ERRNO(get_socket_errno());
322 WATCHPOINT_NUMBER(get_socket_errno());
324 switch (get_socket_errno())
329 #if EWOULDBLOCK != EAGAIN
335 * We may be blocked on write because the input buffer
336 * is full. Let's check if we have room in our input
337 * buffer for more data and retry the write before
340 if (repack_input_buffer(ptr
) or process_input_buffer(ptr
))
345 memcached_return_t rc
= io_wait(ptr
, MEM_WRITE
);
346 if (memcached_success(rc
))
350 else if (rc
== MEMCACHED_TIMEOUT
)
352 error
= memcached_set_error(*ptr
, MEMCACHED_TIMEOUT
, MEMCACHED_AT
);
356 memcached_quit_server(ptr
, true);
357 error
= memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
363 memcached_quit_server(ptr
, true);
364 error
= memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
365 WATCHPOINT_ASSERT(ptr
->fd
== INVALID_SOCKET
);
370 ptr
->io_bytes_sent
+= uint32_t(sent_length
);
372 local_write_ptr
+= sent_length
;
373 write_length
-= uint32_t(sent_length
);
376 WATCHPOINT_ASSERT(write_length
== 0);
377 ptr
->write_buffer_offset
= 0;
382 memcached_return_t
memcached_io_wait_for_write(memcached_server_write_instance_st ptr
)
384 return io_wait(ptr
, MEM_WRITE
);
387 memcached_return_t
memcached_io_read(memcached_server_write_instance_st ptr
,
388 void *buffer
, size_t length
, ssize_t
& nread
)
390 assert(memcached_is_udp(ptr
->root
) == false);
391 assert_msg(ptr
, "Programmer error, memcached_io_read() recieved an invalid memcached_server_write_instance_st"); // Programmer error
392 char *buffer_ptr
= static_cast<char *>(buffer
);
394 if (ptr
->fd
== INVALID_SOCKET
)
397 assert_msg(int(ptr
->state
) <= int(MEMCACHED_SERVER_STATE_ADDRINFO
), "Programmer error, invalid socket state");
399 return MEMCACHED_CONNECTION_FAILURE
;
404 if (not ptr
->read_buffer_length
)
409 data_read
= ::recv(ptr
->fd
, ptr
->read_buffer
, MEMCACHED_MAX_BUFFER
, MSG_DONTWAIT
);
410 if (data_read
== SOCKET_ERROR
)
412 switch (get_socket_errno())
414 case EINTR
: // We just retry
417 case ETIMEDOUT
: // OSX
418 #if EWOULDBLOCK != EAGAIN
422 #ifdef TARGET_OS_LINUX
425 if (memcached_success(io_wait(ptr
, MEM_READ
)))
429 return MEMCACHED_IN_PROGRESS
;
433 case ENOTCONN
: // Programmer Error
434 WATCHPOINT_ASSERT(0);
436 WATCHPOINT_ASSERT(0);
438 assert_msg(ptr
->fd
!= INVALID_SOCKET
, "Programmer error, invalid socket");
444 memcached_quit_server(ptr
, true);
446 return memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
450 else if (data_read
== 0)
453 EOF. Any data received so far is incomplete
454 so discard it. This always reads by byte in case of TCP
455 and protocol enforcement happens at memcached_response()
456 looking for '\n'. We do not care for UDB which requests 8 bytes
457 at once. Generally, this means that connection went away. Since
458 for blocking I/O we do not return 0 and for non-blocking case
459 it will return EGAIN if data is not immediatly available.
461 WATCHPOINT_STRING("We had a zero length recv()");
462 memcached_quit_server(ptr
, true);
464 return memcached_set_error(*ptr
, MEMCACHED_CONNECTION_FAILURE
, MEMCACHED_AT
,
465 memcached_literal_param("::rec() returned zero, server has disconnected"));
467 } while (data_read
<= 0);
469 ptr
->io_bytes_sent
= 0;
470 ptr
->read_data_length
= (size_t) data_read
;
471 ptr
->read_buffer_length
= (size_t) data_read
;
472 ptr
->read_ptr
= ptr
->read_buffer
;
479 difference
= (length
> ptr
->read_buffer_length
) ? ptr
->read_buffer_length
: length
;
481 memcpy(buffer_ptr
, ptr
->read_ptr
, difference
);
482 length
-= difference
;
483 ptr
->read_ptr
+= difference
;
484 ptr
->read_buffer_length
-= difference
;
485 buffer_ptr
+= difference
;
489 *buffer_ptr
= *ptr
->read_ptr
;
491 ptr
->read_buffer_length
--;
497 nread
= ssize_t(buffer_ptr
- (char*)buffer
);
499 return MEMCACHED_SUCCESS
;
502 memcached_return_t
memcached_io_slurp(memcached_server_write_instance_st ptr
)
504 assert_msg(ptr
, "Programmer error, invalid memcached_server_write_instance_st");
505 assert(memcached_is_udp(ptr
->root
) == false);
507 if (ptr
->fd
== INVALID_SOCKET
)
509 assert_msg(int(ptr
->state
) <= int(MEMCACHED_SERVER_STATE_ADDRINFO
), "Invalid socket state");
510 return MEMCACHED_CONNECTION_FAILURE
;
514 char buffer
[MEMCACHED_MAX_BUFFER
];
517 data_read
= recv(ptr
->fd
, ptr
->read_buffer
, sizeof(buffer
), MSG_DONTWAIT
);
518 if (data_read
== SOCKET_ERROR
)
520 switch (get_socket_errno())
522 case EINTR
: // We just retry
525 case ETIMEDOUT
: // OSX
526 #if EWOULDBLOCK != EAGAIN
530 #ifdef TARGET_OS_LINUX
533 if (memcached_success(io_wait(ptr
, MEM_READ
)))
537 return MEMCACHED_IN_PROGRESS
;
541 case ENOTCONN
: // Programmer Error
542 WATCHPOINT_ASSERT(0);
544 WATCHPOINT_ASSERT(0);
546 assert_msg(ptr
->fd
!= INVALID_SOCKET
, "Invalid socket state");
551 return MEMCACHED_CONNECTION_FAILURE
; // We want this!
554 } while (data_read
> 0);
556 return MEMCACHED_CONNECTION_FAILURE
;
559 static ssize_t
_io_write(memcached_server_write_instance_st ptr
,
560 const void *buffer
, size_t length
, bool with_flush
)
562 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
563 assert(memcached_is_udp(ptr
->root
) == false);
565 size_t original_length
= length
;
566 const char *buffer_ptr
= static_cast<const char *>(buffer
);
571 size_t buffer_end
= MEMCACHED_MAX_BUFFER
;
572 size_t should_write
= buffer_end
-ptr
->write_buffer_offset
;
573 should_write
= (should_write
< length
) ? should_write
: length
;
575 write_ptr
= ptr
->write_buffer
+ ptr
->write_buffer_offset
;
576 memcpy(write_ptr
, buffer_ptr
, should_write
);
577 ptr
->write_buffer_offset
+= should_write
;
578 buffer_ptr
+= should_write
;
579 length
-= should_write
;
581 if (ptr
->write_buffer_offset
== buffer_end
)
583 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
585 memcached_return_t rc
;
586 if (io_flush(ptr
, with_flush
, rc
) == false)
595 memcached_return_t rc
;
596 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
597 if (io_flush(ptr
, with_flush
, rc
) == false)
603 return (ssize_t
) original_length
;
606 bool memcached_io_write(memcached_server_write_instance_st ptr
)
608 return (_io_write(ptr
, NULL
, 0, true) >= 0);
611 ssize_t
memcached_io_write(memcached_server_write_instance_st ptr
,
612 const void *buffer
, const size_t length
, const bool with_flush
)
614 return _io_write(ptr
, buffer
, length
, with_flush
);
617 ssize_t
memcached_io_writev(memcached_server_write_instance_st ptr
,
618 libmemcached_io_vector_st vector
[],
619 const size_t number_of
, const bool with_flush
)
623 for (size_t x
= 0; x
< number_of
; x
++, vector
++)
629 if ((returnable
= _io_write(ptr
, vector
->buffer
, vector
->length
, false)) == -1)
639 if (memcached_io_write(ptr
) == false)
649 void memcached_io_close(memcached_server_write_instance_st ptr
)
651 if (ptr
->fd
== INVALID_SOCKET
)
656 /* in case of death shutdown to avoid blocking at close() */
657 if (shutdown(ptr
->fd
, SHUT_RDWR
) == SOCKET_ERROR
&& get_socket_errno() != ENOTCONN
)
659 WATCHPOINT_NUMBER(ptr
->fd
);
660 WATCHPOINT_ERRNO(get_socket_errno());
661 WATCHPOINT_ASSERT(get_socket_errno());
664 if (closesocket(ptr
->fd
) == SOCKET_ERROR
)
666 WATCHPOINT_ERRNO(get_socket_errno());
668 ptr
->state
= MEMCACHED_SERVER_STATE_NEW
;
669 ptr
->fd
= INVALID_SOCKET
;
672 memcached_server_write_instance_st
memcached_io_get_readable_server(memcached_st
*memc
)
674 #define MAX_SERVERS_TO_POLL 100
675 struct pollfd fds
[MAX_SERVERS_TO_POLL
];
676 nfds_t host_index
= 0;
678 for (uint32_t x
= 0; x
< memcached_server_count(memc
) and host_index
< MAX_SERVERS_TO_POLL
; ++x
)
680 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(memc
, x
);
682 if (instance
->read_buffer_length
> 0) /* I have data in the buffer */
687 if (memcached_server_response_count(instance
) > 0)
689 fds
[host_index
].events
= POLLIN
;
690 fds
[host_index
].revents
= 0;
691 fds
[host_index
].fd
= instance
->fd
;
698 /* We have 0 or 1 server with pending events.. */
699 for (uint32_t x
= 0; x
< memcached_server_count(memc
); ++x
)
701 memcached_server_write_instance_st instance
=
702 memcached_server_instance_fetch(memc
, x
);
704 if (memcached_server_response_count(instance
) > 0)
713 int error
= poll(fds
, host_index
, memc
->poll_timeout
);
717 memcached_set_errno(*memc
, get_socket_errno(), MEMCACHED_AT
);
723 for (nfds_t x
= 0; x
< host_index
; ++x
)
725 if (fds
[x
].revents
& POLLIN
)
727 for (uint32_t y
= 0; y
< memcached_server_count(memc
); ++y
)
729 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(memc
, y
);
731 if (instance
->fd
== fds
[x
].fd
)
744 Eventually we will just kill off the server with the problem.
746 void memcached_io_reset(memcached_server_write_instance_st ptr
)
748 memcached_quit_server(ptr
, true);
752 * Read a given number of bytes from the server and place it into a specific
753 * buffer. Reset the IO channel on this server if an error occurs.
755 memcached_return_t
memcached_safe_read(memcached_server_write_instance_st ptr
,
760 char *data
= static_cast<char *>(dta
);
762 while (offset
< size
)
765 memcached_return_t rc
;
767 while (memcached_continue(rc
= memcached_io_read(ptr
, data
+ offset
, size
- offset
, nread
))) { };
769 if (memcached_failed(rc
))
774 offset
+= size_t(nread
);
777 return MEMCACHED_SUCCESS
;
780 memcached_return_t
memcached_io_readline(memcached_server_write_instance_st ptr
,
786 bool line_complete
= false;
788 while (line_complete
== false)
790 if (ptr
->read_buffer_length
== 0)
793 * We don't have any data in the buffer, so let's fill the read
794 * buffer. Call the standard read function to avoid duplicating
798 memcached_return_t rc
= memcached_io_read(ptr
, buffer_ptr
, 1, nread
);
799 if (memcached_failed(rc
) and rc
== MEMCACHED_IN_PROGRESS
)
801 memcached_quit_server(ptr
, true);
802 return memcached_set_error(*ptr
, rc
, MEMCACHED_AT
);
804 else if (memcached_failed(rc
))
809 if (*buffer_ptr
== '\n')
818 /* Now let's look in the buffer and copy as we go! */
819 while (ptr
->read_buffer_length
&& total_nr
< size
&& !line_complete
)
821 *buffer_ptr
= *ptr
->read_ptr
;
822 if (*buffer_ptr
== '\n')
824 line_complete
= true;
826 --ptr
->read_buffer_length
;
832 if (total_nr
== size
)
834 return MEMCACHED_PROTOCOL_ERROR
;
838 return MEMCACHED_SUCCESS
;