3 * Author: Mingqiang Zhuang
5 * Created on February 10, 2009
7 * (c) Copyright 2009, Schooner Information Technology, Inc.
8 * http://www.schoonerinfotech.com/
20 #include <netinet/tcp.h>
21 #include <netinet/in.h>
22 #include <arpa/inet.h>
23 #if TIME_WITH_SYS_TIME
24 # include <sys/time.h>
28 # include <sys/time.h>
33 #include "ms_setting.h"
34 #include "ms_thread.h"
35 #include "ms_atomic.h"
38 /* /usr/include/netinet/in.h defines macros from ntohs() to _bswap_nn to
39 * optimize the conversion functions, but the prototypes generate warnings
40 * from gcc. The conversion methods isn't the bottleneck for my app, so
41 * just remove the warnings by undef'ing the optimization ..
49 /* for network write */
50 #define TRANSMIT_COMPLETE 0
51 #define TRANSMIT_INCOMPLETE 1
52 #define TRANSMIT_SOFT_ERROR 2
53 #define TRANSMIT_HARD_ERROR 3
55 /* for generating key */
56 #define KEY_PREFIX_BASE 0x1010101010101010 /* not include ' ' '\r' '\n' '\0' */
57 #define KEY_PREFIX_MASK 0x1010101010101010
59 /* For parse the value length return by server */
61 #define VALUELEN_TOKEN 3
63 /* global increasing counter, to ensure the key prefix unique */
64 static uint64_t key_prefix_seq
= KEY_PREFIX_BASE
;
66 /* global increasing counter, generating request id for UDP */
67 static volatile uint32_t udp_request_id
= 0;
69 extern pthread_key_t ms_thread_key
;
71 /* generate upd request id */
72 static uint32_t ms_get_udp_request_id(void);
75 /* connect initialize */
76 static void ms_task_init(ms_conn_t
*c
);
77 static int ms_conn_udp_init(ms_conn_t
*c
, const bool is_udp
);
78 static int ms_conn_sock_init(ms_conn_t
*c
);
79 static int ms_conn_event_init(ms_conn_t
*c
);
80 static int ms_conn_init(ms_conn_t
*c
,
82 const int read_buffer_size
,
84 static void ms_warmup_num_init(ms_conn_t
*c
);
85 static int ms_item_win_init(ms_conn_t
*c
);
88 /* connection close */
89 void ms_conn_free(ms_conn_t
*c
);
90 static void ms_conn_close(ms_conn_t
*c
);
93 /* create network connection */
94 static int ms_new_socket(struct addrinfo
*ai
);
95 static void ms_maximize_sndbuf(const int sfd
);
96 static int ms_network_connect(ms_conn_t
*c
,
101 static int ms_reconn(ms_conn_t
*c
);
105 static int ms_tokenize_command(char *command
,
107 const int max_tokens
);
108 static int ms_ascii_process_line(ms_conn_t
*c
, char *command
);
109 static int ms_try_read_line(ms_conn_t
*c
);
110 static int ms_sort_udp_packet(ms_conn_t
*c
, char *buf
, int rbytes
);
111 static int ms_udp_read(ms_conn_t
*c
, char *buf
, int len
);
112 static int ms_try_read_network(ms_conn_t
*c
);
113 static void ms_verify_value(ms_conn_t
*c
,
114 ms_mlget_task_item_t
*mlget_item
,
117 static void ms_ascii_complete_nread(ms_conn_t
*c
);
118 static void ms_bin_complete_nread(ms_conn_t
*c
);
119 static void ms_complete_nread(ms_conn_t
*c
);
123 static int ms_add_msghdr(ms_conn_t
*c
);
124 static int ms_ensure_iov_space(ms_conn_t
*c
);
125 static int ms_add_iov(ms_conn_t
*c
, const void *buf
, int len
);
126 static int ms_build_udp_headers(ms_conn_t
*c
);
127 static int ms_transmit(ms_conn_t
*c
);
130 /* status adjustment */
131 static void ms_conn_shrink(ms_conn_t
*c
);
132 static void ms_conn_set_state(ms_conn_t
*c
, int state
);
133 static bool ms_update_event(ms_conn_t
*c
, const int new_flags
);
134 static uint32_t ms_get_rep_sock_index(ms_conn_t
*c
, int cmd
);
135 static uint32_t ms_get_next_sock_index(ms_conn_t
*c
);
136 static int ms_update_conn_sock_event(ms_conn_t
*c
);
137 static bool ms_need_yield(ms_conn_t
*c
);
138 static void ms_update_start_time(ms_conn_t
*c
);
142 static void ms_drive_machine(ms_conn_t
*c
);
143 void ms_event_handler(const int fd
, const short which
, void *arg
);
147 static int ms_build_ascii_write_buf_set(ms_conn_t
*c
, ms_task_item_t
*item
);
148 static int ms_build_ascii_write_buf_get(ms_conn_t
*c
, ms_task_item_t
*item
);
149 static int ms_build_ascii_write_buf_mlget(ms_conn_t
*c
);
152 /* binary protocol */
153 static int ms_bin_process_response(ms_conn_t
*c
);
154 static void ms_add_bin_header(ms_conn_t
*c
,
159 static void ms_add_key_to_iov(ms_conn_t
*c
, ms_task_item_t
*item
);
160 static int ms_build_bin_write_buf_set(ms_conn_t
*c
, ms_task_item_t
*item
);
161 static int ms_build_bin_write_buf_get(ms_conn_t
*c
, ms_task_item_t
*item
);
162 static int ms_build_bin_write_buf_mlget(ms_conn_t
*c
);
166 * each key has two parts, prefix and suffix. The suffix is a
167 * string random get form the character table. The prefix is a
168 * uint64_t variable. And the prefix must be unique. we use the
169 * prefix to identify a key. And the prefix can't include
170 * character ' ' '\r' '\n' '\0'.
174 uint64_t ms_get_key_prefix(void)
178 pthread_mutex_lock(&ms_global
.seq_mutex
);
179 key_prefix_seq
|= KEY_PREFIX_MASK
;
180 key_prefix
= key_prefix_seq
;
182 pthread_mutex_unlock(&ms_global
.seq_mutex
);
185 } /* ms_get_key_prefix */
189 * get an unique udp request id
191 * @return an unique UDP request id
193 static uint32_t ms_get_udp_request_id(void)
195 return atomic_add_32_nv(&udp_request_id
, 1);
200 * initialize current task structure
202 * @param c, pointer of the concurrency
204 static void ms_task_init(ms_conn_t
*c
)
206 c
->curr_task
.cmd
= CMD_NULL
;
207 c
->curr_task
.item
= 0;
208 c
->curr_task
.verify
= false;
209 c
->curr_task
.finish_verify
= true;
210 c
->curr_task
.get_miss
= true;
212 c
->curr_task
.get_opt
= 0;
213 c
->curr_task
.set_opt
= 0;
214 c
->curr_task
.cycle_undo_get
= 0;
215 c
->curr_task
.cycle_undo_set
= 0;
216 c
->curr_task
.verified_get
= 0;
217 c
->curr_task
.overwrite_set
= 0;
222 * initialize udp for the connection structure
224 * @param c, pointer of the concurrency
225 * @param is_udp, whether it's udp
227 * @return int, if success, return EXIT_SUCCESS, else return -1
229 static int ms_conn_udp_init(ms_conn_t
*c
, const bool is_udp
)
235 c
->rudpsize
= UDP_DATA_BUFFER_SIZE
;
246 if (c
->udp
|| (! c
->udp
&& ms_setting
.facebook_test
))
248 c
->rudpbuf
= (char *)malloc((size_t)c
->rudpsize
);
249 c
->udppkt
= (ms_udppkt_t
*)malloc(MAX_UDP_PACKET
* sizeof(ms_udppkt_t
));
251 if ((c
->rudpbuf
== NULL
) || (c
->udppkt
== NULL
))
253 if (c
->rudpbuf
!= NULL
)
255 if (c
->udppkt
!= NULL
)
257 fprintf(stderr
, "malloc()\n");
260 memset(c
->udppkt
, 0, MAX_UDP_PACKET
* sizeof(ms_udppkt_t
));
264 } /* ms_conn_udp_init */
268 * initialize the connection structure
270 * @param c, pointer of the concurrency
271 * @param init_state, (conn_read, conn_write, conn_closing)
272 * @param read_buffer_size
273 * @param is_udp, whether it's udp
275 * @return int, if success, return EXIT_SUCCESS, else return -1
277 static int ms_conn_init(ms_conn_t
*c
,
278 const int init_state
,
279 const int read_buffer_size
,
288 c
->rsize
= read_buffer_size
;
289 c
->wsize
= WRITE_BUFFER_SIZE
;
290 c
->iovsize
= IOV_LIST_INITIAL
;
291 c
->msgsize
= MSG_LIST_INITIAL
;
293 /* for replication, each connection need connect all the server */
294 if (ms_setting
.rep_write_srv
> 0)
296 c
->total_sfds
= ms_setting
.srv_cnt
* ms_setting
.sock_per_conn
;
300 c
->total_sfds
= ms_setting
.sock_per_conn
;
304 c
->rbuf
= (char *)malloc((size_t)c
->rsize
);
305 c
->wbuf
= (char *)malloc((size_t)c
->wsize
);
306 c
->iov
= (struct iovec
*)malloc(sizeof(struct iovec
) * (size_t)c
->iovsize
);
307 c
->msglist
= (struct msghdr
*)malloc(
308 sizeof(struct msghdr
) * (size_t)c
->msgsize
);
309 if (ms_setting
.mult_key_num
> 1)
311 c
->mlget_task
.mlget_item
= (ms_mlget_task_item_t
*)
313 sizeof(ms_mlget_task_item_t
) * (size_t)ms_setting
.mult_key_num
);
315 c
->tcpsfd
= (int *)malloc((size_t)c
->total_sfds
* sizeof(int));
317 if ((c
->rbuf
== NULL
) || (c
->wbuf
== NULL
) || (c
->iov
== NULL
)
318 || (c
->msglist
== NULL
) || (c
->tcpsfd
== NULL
)
319 || ((ms_setting
.mult_key_num
> 1)
320 && (c
->mlget_task
.mlget_item
== NULL
)))
328 if (c
->msglist
!= NULL
)
330 if (c
->mlget_task
.mlget_item
!= NULL
)
331 free(c
->mlget_task
.mlget_item
);
332 if (c
->tcpsfd
!= NULL
)
334 fprintf(stderr
, "malloc()\n");
338 c
->state
= init_state
;
346 c
->cur_idx
= c
->total_sfds
; /* default index is a invalid value */
350 c
->change_sfd
= false;
352 c
->precmd
.cmd
= c
->currcmd
.cmd
= CMD_NULL
;
353 c
->precmd
.isfinish
= true; /* default the previous command finished */
354 c
->currcmd
.isfinish
= false;
355 c
->precmd
.retstat
= c
->currcmd
.retstat
= MCD_FAILURE
;
356 c
->precmd
.key_prefix
= c
->currcmd
.key_prefix
= 0;
358 c
->mlget_task
.mlget_num
= 0;
359 c
->mlget_task
.value_index
= -1; /* default invalid value */
361 if (ms_setting
.binary_prot
)
363 c
->protocol
= binary_prot
;
367 c
->protocol
= ascii_prot
;
371 if (ms_conn_udp_init(c
, is_udp
) != 0)
376 /* initialize task */
379 if (! (ms_setting
.facebook_test
&& is_udp
))
381 atomic_add_32(&ms_stats
.active_conns
, 1);
389 * when doing 100% get operation, it could preset some objects
390 * to warmup the server. this function is used to initialize the
391 * number of the objects to preset.
393 * @param c, pointer of the concurrency
395 static void ms_warmup_num_init(ms_conn_t
*c
)
397 /* no set operation, preset all the items in the window */
398 if (ms_setting
.cmd_distr
[CMD_SET
].cmd_prop
< PROP_ERROR
)
400 c
->warmup_num
= c
->win_size
;
401 c
->remain_warmup_num
= c
->warmup_num
;
406 c
->remain_warmup_num
= c
->warmup_num
;
408 } /* ms_warmup_num_init */
412 * each connection has an item window, this function initialize
413 * the window. The window is used to generate task.
415 * @param c, pointer of the concurrency
417 * @return int, if success, return EXIT_SUCCESS, else return -1
419 static int ms_item_win_init(ms_conn_t
*c
)
421 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
424 c
->win_size
= (int)ms_setting
.win_size
;
426 c
->exec_num
= ms_thread
->thread_ctx
->exec_num_perconn
;
427 c
->remain_exec_num
= c
->exec_num
;
429 c
->item_win
= (ms_task_item_t
*)malloc(
430 sizeof(ms_task_item_t
) * (size_t)c
->win_size
);
431 if (c
->item_win
== NULL
)
433 fprintf(stderr
, "Can't allocate task item array for conn.\n");
436 memset(c
->item_win
, 0, sizeof(ms_task_item_t
) * (size_t)c
->win_size
);
438 for (int i
= 0; i
< c
->win_size
; i
++)
440 c
->item_win
[i
].key_size
= (int)ms_setting
.distr
[i
].key_size
;
441 c
->item_win
[i
].key_prefix
= ms_get_key_prefix();
442 c
->item_win
[i
].key_suffix_offset
= ms_setting
.distr
[i
].key_offset
;
443 c
->item_win
[i
].value_size
= (int)ms_setting
.distr
[i
].value_size
;
444 c
->item_win
[i
].value_offset
= INVALID_OFFSET
; /* default in invalid offset */
445 c
->item_win
[i
].client_time
= 0;
447 /* set expire time base on the proportion */
448 if (exp_cnt
< ms_setting
.exp_ver_per
* i
)
450 c
->item_win
[i
].exp_time
= FIXED_EXPIRE_TIME
;
455 c
->item_win
[i
].exp_time
= 0;
459 ms_warmup_num_init(c
);
462 } /* ms_item_win_init */
466 * each connection structure can include one or more sock
467 * handlers. this function create these socks and connect the
470 * @param c, pointer of the concurrency
472 * @return int, if success, return EXIT_SUCCESS, else return -1
474 static int ms_conn_sock_init(ms_conn_t
*c
)
476 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
482 assert(c
->tcpsfd
!= NULL
);
484 for (i
= 0; i
< c
->total_sfds
; i
++)
487 if (ms_setting
.rep_write_srv
> 0)
489 /* for replication, each connection need connect all the server */
490 srv_idx
= i
% ms_setting
.srv_cnt
;
494 /* all the connections in a thread connects the same server */
495 srv_idx
= ms_thread
->thread_ctx
->srv_idx
;
498 if (ms_network_connect(c
, ms_setting
.servers
[srv_idx
].srv_host_name
,
499 ms_setting
.servers
[srv_idx
].srv_port
,
500 ms_setting
.udp
, &ret_sfd
) != 0)
510 if (! ms_setting
.udp
)
512 c
->tcpsfd
[i
]= ret_sfd
;
518 /* initialize udp sock handler if necessary */
519 if (ms_setting
.facebook_test
)
522 if (ms_network_connect(c
, ms_setting
.servers
[srv_idx
].srv_host_name
,
523 ms_setting
.servers
[srv_idx
].srv_port
,
524 true, &ret_sfd
) != 0)
534 if ((i
!= c
->total_sfds
) || (ms_setting
.facebook_test
&& (c
->udpsfd
== 0)))
542 for (uint32_t j
= 0; j
< i
; j
++)
557 } /* ms_conn_sock_init */
561 * each connection is managed by libevent, this function
562 * initialize the event of the connection structure.
564 * @param c, pointer of the concurrency
566 * @return int, if success, return EXIT_SUCCESS, else return -1
568 static int ms_conn_event_init(ms_conn_t
*c
)
570 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
571 short event_flags
= EV_WRITE
| EV_PERSIST
;
573 event_set(&c
->event
, c
->sfd
, event_flags
, ms_event_handler
, (void *)c
);
574 event_base_set(ms_thread
->base
, &c
->event
);
575 c
->ev_flags
= event_flags
;
577 if (event_add(&c
->event
, NULL
) == -1)
583 } /* ms_conn_event_init */
587 * setup a connection, each connection structure of each
588 * thread must call this function to initialize.
590 * @param c, pointer of the concurrency
592 * @return int, if success, return EXIT_SUCCESS, else return -1
594 int ms_setup_conn(ms_conn_t
*c
)
596 if (ms_item_win_init(c
) != 0)
601 if (ms_conn_init(c
, conn_write
, DATA_BUFFER_SIZE
, ms_setting
.udp
) != 0)
606 if (ms_conn_sock_init(c
) != 0)
611 if (ms_conn_event_init(c
) != 0)
617 } /* ms_setup_conn */
621 * Frees a connection.
623 * @param c, pointer of the concurrency
625 void ms_conn_free(ms_conn_t
*c
)
627 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
630 if (c
->hdrbuf
!= NULL
)
632 if (c
->msglist
!= NULL
)
640 if (c
->mlget_task
.mlget_item
!= NULL
)
641 free(c
->mlget_task
.mlget_item
);
642 if (c
->rudpbuf
!= NULL
)
644 if (c
->udppkt
!= NULL
)
646 if (c
->item_win
!= NULL
)
648 if (c
->tcpsfd
!= NULL
)
651 if (--ms_thread
->nactive_conn
== 0)
653 free(ms_thread
->conn
);
662 * @param c, pointer of the concurrency
664 static void ms_conn_close(ms_conn_t
*c
)
666 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
669 /* delete the event, the socket and the connection */
670 event_del(&c
->event
);
672 for (uint32_t i
= 0; i
< c
->total_sfds
; i
++)
674 if (c
->tcpsfd
[i
] > 0)
681 if (ms_setting
.facebook_test
)
686 atomic_dec_32(&ms_stats
.active_conns
);
690 if (ms_setting
.run_time
== 0)
692 pthread_mutex_lock(&ms_global
.run_lock
.lock
);
693 ms_global
.run_lock
.count
++;
694 pthread_cond_signal(&ms_global
.run_lock
.cond
);
695 pthread_mutex_unlock(&ms_global
.run_lock
.lock
);
698 if (ms_thread
->nactive_conn
== 0)
702 } /* ms_conn_close */
708 * @param ai, server address information
710 * @return int, if success, return EXIT_SUCCESS, else return -1
712 static int ms_new_socket(struct addrinfo
*ai
)
716 if ((sfd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
)) == -1)
718 fprintf(stderr
, "socket() error: %s.\n", strerror(errno
));
723 } /* ms_new_socket */
727 * Sets a socket's send buffer size to the maximum allowed by the system.
729 * @param sfd, file descriptor of socket
731 static void ms_maximize_sndbuf(const int sfd
)
733 socklen_t intsize
= sizeof(int);
734 unsigned int last_good
= 0;
735 unsigned int min
, max
, avg
;
736 unsigned int old_size
;
738 /* Start with the default size. */
739 if (getsockopt(sfd
, SOL_SOCKET
, SO_SNDBUF
, &old_size
, &intsize
) != 0)
741 fprintf(stderr
, "getsockopt(SO_SNDBUF)\n");
745 /* Binary-search for the real maximum. */
747 max
= MAX_SENDBUF_SIZE
;
751 avg
= ((unsigned int)(min
+ max
)) / 2;
752 if (setsockopt(sfd
, SOL_SOCKET
, SO_SNDBUF
, (void *)&avg
, intsize
) == 0)
762 } /* ms_maximize_sndbuf */
766 * socket connects the server
768 * @param c, pointer of the concurrency
769 * @param srv_host_name, the host name of the server
770 * @param srv_port, port of server
771 * @param is_udp, whether it's udp
772 * @param ret_sfd, the connected socket file descriptor
774 * @return int, if success, return EXIT_SUCCESS, else return -1
776 static int ms_network_connect(ms_conn_t
*c
,
788 struct addrinfo
*next
;
789 struct addrinfo hints
;
790 char port_buf
[NI_MAXSERV
];
797 * the memset call clears nonstandard fields in some impementations
798 * that otherwise mess things up.
800 memset(&hints
, 0, sizeof(hints
));
802 hints
.ai_flags
= AI_PASSIVE
| AI_ADDRCONFIG
;
804 hints
.ai_flags
= AI_PASSIVE
;
805 #endif /* AI_ADDRCONFIG */
808 hints
.ai_protocol
= IPPROTO_UDP
;
809 hints
.ai_socktype
= SOCK_DGRAM
;
810 hints
.ai_family
= AF_INET
; /* This left here because of issues with OSX 10.5 */
814 hints
.ai_family
= AF_UNSPEC
;
815 hints
.ai_protocol
= IPPROTO_TCP
;
816 hints
.ai_socktype
= SOCK_STREAM
;
819 snprintf(port_buf
, NI_MAXSERV
, "%d", srv_port
);
820 error
= getaddrinfo(srv_host_name
, port_buf
, &hints
, &ai
);
823 if (error
!= EAI_SYSTEM
)
824 fprintf(stderr
, "getaddrinfo(): %s.\n", gai_strerror(error
));
826 perror("getaddrinfo()\n");
831 for (next
= ai
; next
; next
= next
->ai_next
)
833 if ((sfd
= ms_new_socket(next
)) == -1)
839 setsockopt(sfd
, SOL_SOCKET
, SO_REUSEADDR
, (void *)&flags
, sizeof(flags
));
842 ms_maximize_sndbuf(sfd
);
846 setsockopt(sfd
, SOL_SOCKET
, SO_KEEPALIVE
, (void *)&flags
,
848 setsockopt(sfd
, SOL_SOCKET
, SO_LINGER
, (void *)&ling
, sizeof(ling
));
849 setsockopt(sfd
, IPPROTO_TCP
, TCP_NODELAY
, (void *)&flags
,
855 c
->srv_recv_addr_size
= sizeof(struct sockaddr
);
856 memcpy(&c
->srv_recv_addr
, next
->ai_addr
, c
->srv_recv_addr_size
);
860 if (connect(sfd
, next
->ai_addr
, next
->ai_addrlen
) == -1)
868 if (((flags
= fcntl(sfd
, F_GETFL
, 0)) < 0)
869 || (fcntl(sfd
, F_SETFL
, flags
| O_NONBLOCK
) < 0))
871 fprintf(stderr
, "setting O_NONBLOCK\n");
887 /* Return zero if we detected no errors in starting up connections */
889 } /* ms_network_connect */
893 * reconnect a disconnected sock
895 * @param c, pointer of the concurrency
897 * @return int, if success, return EXIT_SUCCESS, else return -1
899 static int ms_reconn(ms_conn_t
*c
)
901 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
903 uint32_t srv_conn_cnt
= 0;
905 if (ms_setting
.rep_write_srv
> 0)
907 srv_idx
= c
->cur_idx
% ms_setting
.srv_cnt
;
908 srv_conn_cnt
= ms_setting
.sock_per_conn
* ms_setting
.nconns
;
912 srv_idx
= ms_thread
->thread_ctx
->srv_idx
;
913 srv_conn_cnt
= ms_setting
.nconns
/ ms_setting
.srv_cnt
;
916 /* close the old socket handler */
918 c
->tcpsfd
[c
->cur_idx
]= 0;
920 if (atomic_add_32_nv(&ms_setting
.servers
[srv_idx
].disconn_cnt
, 1)
923 gettimeofday(&ms_setting
.servers
[srv_idx
].disconn_time
, NULL
);
924 fprintf(stderr
, "Server %s:%d disconnect\n",
925 ms_setting
.servers
[srv_idx
].srv_host_name
,
926 ms_setting
.servers
[srv_idx
].srv_port
);
929 if (ms_setting
.rep_write_srv
> 0)
933 for (i
= 0; i
< c
->total_sfds
; i
++)
935 if (c
->tcpsfd
[i
] != 0)
941 /* all socks disconnect */
942 if (i
== c
->total_sfds
)
951 /* reconnect success, break the loop */
952 if (ms_network_connect(c
, ms_setting
.servers
[srv_idx
].srv_host_name
,
953 ms_setting
.servers
[srv_idx
].srv_port
,
954 ms_setting
.udp
, &c
->sfd
) == 0)
956 c
->tcpsfd
[c
->cur_idx
]= c
->sfd
;
957 if (atomic_add_32_nv(&ms_setting
.servers
[srv_idx
].reconn_cnt
, 1)
958 % (uint32_t)srv_conn_cnt
== 0)
960 gettimeofday(&ms_setting
.servers
[srv_idx
].reconn_time
, NULL
);
962 (int)(ms_setting
.servers
[srv_idx
].reconn_time
.tv_sec
963 - ms_setting
.servers
[srv_idx
].disconn_time
965 fprintf(stderr
, "Server %s:%d reconnect after %ds\n",
966 ms_setting
.servers
[srv_idx
].srv_host_name
,
967 ms_setting
.servers
[srv_idx
].srv_port
, reconn_time
);
972 if (ms_setting
.rep_write_srv
== 0 && c
->total_sfds
> 0)
974 /* wait a second and reconnect */
978 while (ms_setting
.rep_write_srv
== 0 && c
->total_sfds
> 0);
981 if ((c
->total_sfds
> 1) && (c
->tcpsfd
[c
->cur_idx
] == 0))
992 * reconnect several disconnected socks in the connection
993 * structure, the ever-1-second timer of the thread will check
994 * whether some socks in the connections disconnect. if
995 * disconnect, reconnect the sock.
997 * @param c, pointer of the concurrency
999 * @return int, if success, return EXIT_SUCCESS, else return -1
1001 int ms_reconn_socks(ms_conn_t
*c
)
1003 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
1004 uint32_t srv_idx
= 0;
1006 uint32_t srv_conn_cnt
= 0;
1007 struct timeval cur_time
;
1011 if ((c
->total_sfds
== 1) || (c
->total_sfds
== c
->alive_sfds
))
1013 return EXIT_SUCCESS
;
1016 for (uint32_t i
= 0; i
< c
->total_sfds
; i
++)
1018 if (c
->tcpsfd
[i
] == 0)
1020 gettimeofday(&cur_time
, NULL
);
1023 * For failover test of replication, reconnect the socks after
1024 * it disconnects more than 5 seconds, Otherwise memslap will
1025 * block at connect() function and the work threads can't work
1029 - ms_setting
.servers
[srv_idx
].disconn_time
.tv_sec
< 5)
1034 if (ms_setting
.rep_write_srv
> 0)
1036 srv_idx
= i
% ms_setting
.srv_cnt
;
1037 srv_conn_cnt
= ms_setting
.sock_per_conn
* ms_setting
.nconns
;
1041 srv_idx
= ms_thread
->thread_ctx
->srv_idx
;
1042 srv_conn_cnt
= ms_setting
.nconns
/ ms_setting
.srv_cnt
;
1045 if (ms_network_connect(c
, ms_setting
.servers
[srv_idx
].srv_host_name
,
1046 ms_setting
.servers
[srv_idx
].srv_port
,
1047 ms_setting
.udp
, &ret_sfd
) == 0)
1049 c
->tcpsfd
[i
]= ret_sfd
;
1052 if (atomic_add_32_nv(&ms_setting
.servers
[srv_idx
].reconn_cnt
, 1)
1053 % (uint32_t)srv_conn_cnt
== 0)
1055 gettimeofday(&ms_setting
.servers
[srv_idx
].reconn_time
, NULL
);
1057 (int)(ms_setting
.servers
[srv_idx
].reconn_time
.tv_sec
1058 - ms_setting
.servers
[srv_idx
].disconn_time
1060 fprintf(stderr
, "Server %s:%d reconnect after %ds\n",
1061 ms_setting
.servers
[srv_idx
].srv_host_name
,
1062 ms_setting
.servers
[srv_idx
].srv_port
, reconn_time
);
1068 return EXIT_SUCCESS
;
1069 } /* ms_reconn_socks */
1073 * Tokenize the command string by replacing whitespace with '\0' and update
1074 * the token array tokens with pointer to start of each token and length.
1075 * Returns total number of tokens. The last valid token is the terminal
1076 * token (value points to the first unprocessed character of the string and
1081 * while(ms_tokenize_command(command, ncommand, tokens, max_tokens) > 0) {
1082 * for(int ix = 0; tokens[ix].length != 0; ix++) {
1085 * ncommand = tokens[ix].value - command;
1086 * command = tokens[ix].value;
1089 * @param command, the command string to token
1090 * @param tokens, array to store tokens
1091 * @param max_tokens, maximum tokens number
1093 * @return int, the number of tokens
1095 static int ms_tokenize_command(char *command
,
1097 const int max_tokens
)
1102 assert(command
!= NULL
&& tokens
!= NULL
&& max_tokens
> 1);
1104 for (s
= e
= command
; ntokens
< max_tokens
- 1; ++e
)
1110 tokens
[ntokens
].value
= s
;
1111 tokens
[ntokens
].length
= (size_t)(e
- s
);
1117 else if (*e
== '\0')
1121 tokens
[ntokens
].value
= s
;
1122 tokens
[ntokens
].length
= (size_t)(e
- s
);
1126 break; /* string end */
1131 } /* ms_tokenize_command */
1135 * parse the response of server.
1137 * @param c, pointer of the concurrency
1138 * @param command, the string responded by server
1140 * @return int, if the command completed return EXIT_SUCCESS, else return
1143 static int ms_ascii_process_line(ms_conn_t
*c
, char *command
)
1147 char *buffer
= command
;
1152 * for command get, we store the returned value into local buffer
1153 * then continue in ms_complete_nread().
1158 case 'V': /* VALUE || VERSION */
1159 if (buffer
[1] == 'A') /* VALUE */
1161 token_t tokens
[MAX_TOKENS
];
1162 ms_tokenize_command(command
, tokens
, MAX_TOKENS
);
1163 value_len
= strtol(tokens
[VALUELEN_TOKEN
].value
, NULL
, 10);
1164 c
->currcmd
.key_prefix
= *(uint64_t *)tokens
[KEY_TOKEN
].value
;
1167 * We read the \r\n into the string since not doing so is more
1168 * cycles then the waster of memory to do so.
1170 * We are null terminating through, which will most likely make
1171 * some people lazy about using the return length.
1173 c
->rvbytes
= (int)(value_len
+ 2);
1181 c
->currcmd
.retstat
= MCD_SUCCESS
;
1183 case 'S': /* STORED STATS SERVER_ERROR */
1184 if (buffer
[2] == 'A') /* STORED STATS */
1186 c
->currcmd
.retstat
= MCD_STAT
;
1188 else if (buffer
[1] == 'E')
1191 printf("<%d %s\n", c
->sfd
, buffer
);
1193 c
->currcmd
.retstat
= MCD_SERVER_ERROR
;
1195 else if (buffer
[1] == 'T')
1198 c
->currcmd
.retstat
= MCD_STORED
;
1202 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
1206 case 'D': /* DELETED DATA */
1207 if (buffer
[1] == 'E')
1209 c
->currcmd
.retstat
= MCD_DELETED
;
1213 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
1218 case 'N': /* NOT_FOUND NOT_STORED*/
1219 if (buffer
[4] == 'F')
1221 c
->currcmd
.retstat
= MCD_NOTFOUND
;
1223 else if (buffer
[4] == 'S')
1225 printf("<%d %s\n", c
->sfd
, buffer
);
1226 c
->currcmd
.retstat
= MCD_NOTSTORED
;
1230 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
1234 case 'E': /* PROTOCOL ERROR or END */
1235 if (buffer
[1] == 'N')
1238 c
->currcmd
.retstat
= MCD_END
;
1240 else if (buffer
[1] == 'R')
1242 printf("<%d ERROR\n", c
->sfd
);
1243 c
->currcmd
.retstat
= MCD_PROTOCOL_ERROR
;
1245 else if (buffer
[1] == 'X')
1247 c
->currcmd
.retstat
= MCD_DATA_EXISTS
;
1248 printf("<%d %s\n", c
->sfd
, buffer
);
1252 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
1256 case 'C': /* CLIENT ERROR */
1257 printf("<%d %s\n", c
->sfd
, buffer
);
1258 c
->currcmd
.retstat
= MCD_CLIENT_ERROR
;
1262 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
1267 } /* ms_ascii_process_line */
1271 * after one operation completes, reset the concurrency
1273 * @param c, pointer of the concurrency
1274 * @param timeout, whether it's timeout
1276 void ms_reset_conn(ms_conn_t
*c
, bool timeout
)
1282 if ((c
->packets
> 0) && (c
->packets
< MAX_UDP_PACKET
))
1284 memset(c
->udppkt
, 0, sizeof(ms_udppkt_t
) * (size_t)c
->packets
);
1293 c
->currcmd
.isfinish
= true;
1300 ms_conn_set_state(c
, conn_write
);
1301 memcpy(&c
->precmd
, &c
->currcmd
, sizeof(ms_cmdstat_t
)); /* replicate command state */
1305 ms_drive_machine(c
);
1307 } /* ms_reset_conn */
1311 * if we have a complete line in the buffer, process it.
1313 * @param c, pointer of the concurrency
1315 * @return int, if success, return EXIT_SUCCESS, else return -1
1317 static int ms_try_read_line(ms_conn_t
*c
)
1319 if (c
->protocol
== binary_prot
)
1321 /* Do we have the complete packet header? */
1322 if ((uint64_t)c
->rbytes
< sizeof(c
->binary_header
))
1324 /* need more data! */
1325 return EXIT_SUCCESS
;
1330 if (((long)(c
->rcurr
)) % 8 != 0)
1332 /* must realign input buffer */
1333 memmove(c
->rbuf
, c
->rcurr
, c
->rbytes
);
1335 if (settings
.verbose
)
1337 fprintf(stderr
, "%d: Realign input buffer.\n", c
->sfd
);
1341 protocol_binary_response_header
*rsp
;
1342 rsp
= (protocol_binary_response_header
*)c
->rcurr
;
1344 c
->binary_header
= *rsp
;
1345 c
->binary_header
.response
.extlen
= rsp
->response
.extlen
;
1346 c
->binary_header
.response
.keylen
= ntohs(rsp
->response
.keylen
);
1347 c
->binary_header
.response
.bodylen
= ntohl(rsp
->response
.bodylen
);
1348 c
->binary_header
.response
.status
= ntohs(rsp
->response
.status
);
1350 if (c
->binary_header
.response
.magic
!= PROTOCOL_BINARY_RES
)
1352 fprintf(stderr
, "Invalid magic: %x\n",
1353 c
->binary_header
.response
.magic
);
1354 ms_conn_set_state(c
, conn_closing
);
1355 return EXIT_SUCCESS
;
1358 /* process this complete response */
1359 if (ms_bin_process_response(c
) == 0)
1361 /* current operation completed */
1362 ms_reset_conn(c
, false);
1367 c
->rbytes
-= (int32_t)sizeof(c
->binary_header
);
1368 c
->rcurr
+= sizeof(c
->binary_header
);
1377 assert(c
->rcurr
<= (c
->rbuf
+ c
->rsize
));
1380 return EXIT_SUCCESS
;
1382 el
= memchr(c
->rcurr
, '\n', (size_t)c
->rbytes
);
1384 return EXIT_SUCCESS
;
1387 if (((el
- c
->rcurr
) > 1) && (*(el
- 1) == '\r'))
1393 assert(cont
<= (c
->rcurr
+ c
->rbytes
));
1395 /* process this complete line */
1396 if (ms_ascii_process_line(c
, c
->rcurr
) == 0)
1398 /* current operation completed */
1399 ms_reset_conn(c
, false);
1404 /* current operation didn't complete */
1405 c
->rbytes
-= (int32_t)(cont
- c
->rcurr
);
1409 assert(c
->rcurr
<= (c
->rbuf
+ c
->rsize
));
1413 } /* ms_try_read_line */
1417 * because the packet of UDP can't ensure the order, the
1418 * function is used to sort the received udp packet.
1420 * @param c, pointer of the concurrency
1421 * @param buf, the buffer to store the ordered packages data
1422 * @param rbytes, the maximum capacity of the buffer
1424 * @return int, if success, return the copy bytes, else return
1427 static int ms_sort_udp_packet(ms_conn_t
*c
, char *buf
, int rbytes
)
1432 uint16_t seq_num
= 0;
1433 uint16_t packets
= 0;
1434 unsigned char *header
= NULL
;
1436 /* no enough data */
1438 assert(buf
!= NULL
);
1439 assert(c
->rudpbytes
>= UDP_HEADER_SIZE
);
1441 /* calculate received packets count */
1442 if (c
->rudpbytes
% UDP_MAX_PAYLOAD_SIZE
>= UDP_HEADER_SIZE
)
1444 /* the last packet has some data */
1445 c
->recvpkt
= c
->rudpbytes
/ UDP_MAX_PAYLOAD_SIZE
+ 1;
1449 c
->recvpkt
= c
->rudpbytes
/ UDP_MAX_PAYLOAD_SIZE
;
1452 /* get the total packets count if necessary */
1453 if (c
->packets
== 0)
1455 c
->packets
= HEADER_TO_PACKETS((unsigned char *)c
->rudpbuf
);
1458 /* build the ordered packet array */
1459 for (int i
= c
->pktcurr
; i
< c
->recvpkt
; i
++)
1461 header
= (unsigned char *)c
->rudpbuf
+ i
* UDP_MAX_PAYLOAD_SIZE
;
1462 req_id
= (uint16_t)HEADER_TO_REQID(header
);
1463 assert(req_id
== c
->request_id
% (1 << 16));
1465 packets
= (uint16_t)HEADER_TO_PACKETS(header
);
1466 assert(c
->packets
== HEADER_TO_PACKETS(header
));
1468 seq_num
= (uint16_t)HEADER_TO_SEQNUM(header
);
1469 c
->udppkt
[seq_num
].header
= header
;
1470 c
->udppkt
[seq_num
].data
= (char *)header
+ UDP_HEADER_SIZE
;
1472 if (i
== c
->recvpkt
- 1)
1474 /* last received packet */
1475 if (c
->rudpbytes
% UDP_MAX_PAYLOAD_SIZE
== 0)
1477 c
->udppkt
[seq_num
].rbytes
= UDP_MAX_PAYLOAD_SIZE
- UDP_HEADER_SIZE
;
1482 c
->udppkt
[seq_num
].rbytes
= c
->rudpbytes
% UDP_MAX_PAYLOAD_SIZE
1488 c
->udppkt
[seq_num
].rbytes
= UDP_MAX_PAYLOAD_SIZE
- UDP_HEADER_SIZE
;
1493 for (int i
= c
->ordcurr
; i
< c
->recvpkt
; i
++)
1495 /* there is some data to copy */
1496 if ((c
->udppkt
[i
].data
!= NULL
)
1497 && (c
->udppkt
[i
].copybytes
< c
->udppkt
[i
].rbytes
))
1499 header
= c
->udppkt
[i
].header
;
1500 len
= c
->udppkt
[i
].rbytes
- c
->udppkt
[i
].copybytes
;
1501 if (len
> rbytes
- wbytes
)
1503 len
= rbytes
- wbytes
;
1506 assert(len
<= rbytes
- wbytes
);
1507 assert(i
== HEADER_TO_SEQNUM(header
));
1509 memcpy(buf
+ wbytes
, c
->udppkt
[i
].data
+ c
->udppkt
[i
].copybytes
,
1512 c
->udppkt
[i
].copybytes
+= len
;
1514 if ((c
->udppkt
[i
].copybytes
== c
->udppkt
[i
].rbytes
)
1515 && (c
->udppkt
[i
].rbytes
== UDP_MAX_PAYLOAD_SIZE
- UDP_HEADER_SIZE
))
1517 /* finish copying all the data of this packet, next */
1521 /* last received packet, and finish copying all the data */
1522 if ((c
->recvpkt
== c
->packets
) && (i
== c
->recvpkt
- 1)
1523 && (c
->udppkt
[i
].copybytes
== c
->udppkt
[i
].rbytes
))
1528 /* no space to copy data */
1529 if (wbytes
>= rbytes
)
1534 /* it doesn't finish reading all the data of the packet from network */
1535 if ((i
!= c
->recvpkt
- 1)
1536 && (c
->udppkt
[i
].rbytes
< UDP_MAX_PAYLOAD_SIZE
- UDP_HEADER_SIZE
))
1543 /* no data to copy */
1548 return wbytes
== 0 ? -1 : wbytes
;
1549 } /* ms_sort_udp_packet */
1553 * encapsulate upd read like tcp read
1555 * @param c, pointer of the concurrency
1556 * @param buf, read buffer
1557 * @param len, length to read
1559 * @return int, if success, return the read bytes, else return
1562 static int ms_udp_read(ms_conn_t
*c
, char *buf
, int len
)
1573 if (c
->rudpbytes
+ UDP_MAX_PAYLOAD_SIZE
> c
->rudpsize
)
1575 char *new_rbuf
= realloc(c
->rudpbuf
, (size_t)c
->rudpsize
* 2);
1578 fprintf(stderr
, "Couldn't realloc input buffer.\n");
1579 c
->rudpbytes
= 0; /* ignore what we read */
1582 c
->rudpbuf
= new_rbuf
;
1586 avail
= c
->rudpsize
- c
->rudpbytes
;
1587 /* UDP each time read a packet, 1400 bytes */
1588 res
= (int)read(c
->sfd
, c
->rudpbuf
+ c
->rudpbytes
, (size_t)avail
);
1592 atomic_add_size(&ms_stats
.bytes_read
, res
);
1607 /* "connection" closed */
1613 /* no data to read */
1618 /* copy data to read buffer */
1621 copybytes
= ms_sort_udp_packet(c
, buf
, len
);
1624 if (copybytes
== -1)
1626 atomic_add_size(&ms_stats
.pkt_disorder
, 1);
1634 * read from network as much as we can, handle buffer overflow and connection
1636 * before reading, move the remaining incomplete fragment of a command
1637 * (if any) to the beginning of the buffer.
1638 * return EXIT_SUCCESS if there's nothing to read on the first read.
1642 * read from network as much as we can, handle buffer overflow and connection
1643 * close. before reading, move the remaining incomplete fragment of a command
1644 * (if any) to the beginning of the buffer.
1646 * @param c, pointer of the concurrency
1649 * return EXIT_SUCCESS if there's nothing to read on the first read.
1650 * return EXIT_FAILURE if get data
1651 * return -1 if error happens
1653 static int ms_try_read_network(ms_conn_t
*c
)
1661 if ((c
->rcurr
!= c
->rbuf
)
1662 && (! c
->readval
|| (c
->rvbytes
> c
->rsize
- (c
->rcurr
- c
->rbuf
))
1663 || (c
->readval
&& (c
->rcurr
- c
->rbuf
> c
->rbytes
))))
1665 if (c
->rbytes
!= 0) /* otherwise there's nothing to copy */
1666 memmove(c
->rbuf
, c
->rcurr
, (size_t)c
->rbytes
);
1672 if (c
->rbytes
>= c
->rsize
)
1674 char *new_rbuf
= realloc(c
->rbuf
, (size_t)c
->rsize
* 2);
1677 fprintf(stderr
, "Couldn't realloc input buffer.\n");
1678 c
->rbytes
= 0; /* ignore what we read */
1681 c
->rcurr
= c
->rbuf
= new_rbuf
;
1685 avail
= c
->rsize
- c
->rbytes
- (c
->rcurr
- c
->rbuf
);
1693 res
= (int32_t)ms_udp_read(c
, c
->rcurr
+ c
->rbytes
, (int32_t)avail
);
1697 res
= (int)read(c
->sfd
, c
->rcurr
+ c
->rbytes
, (size_t)avail
);
1704 atomic_add_size(&ms_stats
.bytes_read
, res
);
1719 /* connection closed */
1720 ms_conn_set_state(c
, conn_closing
);
1725 if ((errno
== EAGAIN
) || (errno
== EWOULDBLOCK
))
1727 /* Should close on unhandled errors. */
1728 ms_conn_set_state(c
, conn_closing
);
1734 } /* ms_try_read_network */
1738 * after get the object from server, verify the value if
1741 * @param c, pointer of the concurrency
1742 * @param mlget_item, pointer of mulit-get task item structure
1743 * @param value, received value string
1744 * @param vlen, received value string length
1746 static void ms_verify_value(ms_conn_t
*c
,
1747 ms_mlget_task_item_t
*mlget_item
,
1751 if (c
->curr_task
.verify
)
1753 assert(c
->curr_task
.item
->value_offset
!= INVALID_OFFSET
);
1754 char *orignval
= &ms_setting
.char_block
[c
->curr_task
.item
->value_offset
];
1756 &ms_setting
.char_block
[c
->curr_task
.item
->key_suffix_offset
];
1758 /* verify expire time if necessary */
1759 if (c
->curr_task
.item
->exp_time
> 0)
1761 struct timeval curr_time
;
1762 gettimeofday(&curr_time
, NULL
);
1764 /* object expired but get it now */
1765 if (curr_time
.tv_sec
- c
->curr_task
.item
->client_time
1766 > c
->curr_task
.item
->exp_time
+ EXPIRE_TIME_ERROR
)
1768 atomic_add_size(&ms_stats
.exp_get
, 1);
1770 if (ms_setting
.verbose
)
1774 strftime(set_time
, 64, "%Y-%m-%d %H:%M:%S",
1775 localtime(&c
->curr_task
.item
->client_time
));
1776 strftime(cur_time
, 64, "%Y-%m-%d %H:%M:%S",
1777 localtime(&curr_time
.tv_sec
));
1779 "\n<%d expire time verification failed, "
1780 "object expired but get it now\n"
1782 "\tkey: %" PRIx64
" %.*s\n"
1783 "\tset time: %s current time: %s "
1784 "diff time: %d expire time: %d\n"
1785 "\texpected data: \n"
1786 "\treceived data len: %d\n"
1787 "\treceived data: %.*s\n",
1789 c
->curr_task
.item
->key_size
,
1790 c
->curr_task
.item
->key_prefix
,
1791 c
->curr_task
.item
->key_size
- (int)KEY_PREFIX_SIZE
,
1795 (int)(curr_time
.tv_sec
- c
->curr_task
.item
->client_time
),
1796 c
->curr_task
.item
->exp_time
,
1806 if ((c
->curr_task
.item
->value_size
!= vlen
)
1807 || (memcmp(orignval
, value
, (size_t)vlen
) != 0))
1809 atomic_add_size(&ms_stats
.vef_failed
, 1);
1811 if (ms_setting
.verbose
)
1814 "\n<%d data verification failed\n"
1816 "\tkey: %" PRIx64
" %.*s\n"
1817 "\texpected data len: %d\n"
1818 "\texpected data: %.*s\n"
1819 "\treceived data len: %d\n"
1820 "\treceived data: %.*s\n",
1822 c
->curr_task
.item
->key_size
,
1823 c
->curr_task
.item
->key_prefix
,
1824 c
->curr_task
.item
->key_size
- (int)KEY_PREFIX_SIZE
,
1826 c
->curr_task
.item
->value_size
,
1827 c
->curr_task
.item
->value_size
,
1837 c
->curr_task
.finish_verify
= true;
1839 if (mlget_item
!= NULL
)
1841 mlget_item
->finish_verify
= true;
1844 } /* ms_verify_value */
1848 * For ASCII protocol, after store the data into the local
1849 * buffer, run this function to handle the data.
1851 * @param c, pointer of the concurrency
1853 static void ms_ascii_complete_nread(ms_conn_t
*c
)
1856 assert(c
->rbytes
>= c
->rvbytes
);
1857 assert(c
->protocol
== ascii_prot
);
1861 c
->rcurr
[c
->rvbytes
- 1] == '\n' && c
->rcurr
[c
->rvbytes
- 2] == '\r');
1865 ms_mlget_task_item_t
*mlget_item
= NULL
;
1866 if (((ms_setting
.mult_key_num
> 1)
1867 && (c
->mlget_task
.mlget_num
>= ms_setting
.mult_key_num
))
1868 || ((c
->remain_exec_num
== 0) && (c
->mlget_task
.mlget_num
> 0)))
1870 c
->mlget_task
.value_index
++;
1871 mlget_item
= &c
->mlget_task
.mlget_item
[c
->mlget_task
.value_index
];
1873 if (mlget_item
->item
->key_prefix
== c
->currcmd
.key_prefix
)
1875 c
->curr_task
.item
= mlget_item
->item
;
1876 c
->curr_task
.verify
= mlget_item
->verify
;
1877 c
->curr_task
.finish_verify
= mlget_item
->finish_verify
;
1878 mlget_item
->get_miss
= false;
1882 /* Try to find the task item in multi-get task array */
1883 for (int i
= 0; i
< c
->mlget_task
.mlget_num
; i
++)
1885 mlget_item
= &c
->mlget_task
.mlget_item
[i
];
1886 if (mlget_item
->item
->key_prefix
== c
->currcmd
.key_prefix
)
1888 c
->curr_task
.item
= mlget_item
->item
;
1889 c
->curr_task
.verify
= mlget_item
->verify
;
1890 c
->curr_task
.finish_verify
= mlget_item
->finish_verify
;
1891 mlget_item
->get_miss
= false;
1899 ms_verify_value(c
, mlget_item
, c
->rcurr
, c
->rvbytes
- 2);
1901 c
->curr_task
.get_miss
= false;
1902 c
->rbytes
-= c
->rvbytes
;
1903 c
->rcurr
= c
->rcurr
+ c
->rvbytes
;
1904 assert(c
->rcurr
<= (c
->rbuf
+ c
->rsize
));
1907 } /* ms_ascii_complete_nread */
1911 * For binary protocol, after store the data into the local
1912 * buffer, run this function to handle the data.
1914 * @param c, pointer of the concurrency
1916 static void ms_bin_complete_nread(ms_conn_t
*c
)
1919 assert(c
->rbytes
>= c
->rvbytes
);
1920 assert(c
->protocol
== binary_prot
);
1922 int extlen
= c
->binary_header
.response
.extlen
;
1923 int keylen
= c
->binary_header
.response
.keylen
;
1924 uint8_t opcode
= c
->binary_header
.response
.opcode
;
1926 /* not get command or not include value, just return */
1927 if (((opcode
!= PROTOCOL_BINARY_CMD_GET
)
1928 && (opcode
!= PROTOCOL_BINARY_CMD_GETQ
))
1929 || (c
->rvbytes
<= extlen
+ keylen
))
1932 if (c
->binary_header
.response
.opcode
== PROTOCOL_BINARY_CMD_GET
)
1934 c
->currcmd
.retstat
= MCD_END
;
1935 c
->curr_task
.get_miss
= true;
1940 ms_reset_conn(c
, false);
1945 ms_mlget_task_item_t
*mlget_item
= NULL
;
1946 if (((ms_setting
.mult_key_num
> 1)
1947 && (c
->mlget_task
.mlget_num
>= ms_setting
.mult_key_num
))
1948 || ((c
->remain_exec_num
== 0) && (c
->mlget_task
.mlget_num
> 0)))
1950 c
->mlget_task
.value_index
++;
1951 mlget_item
= &c
->mlget_task
.mlget_item
[c
->mlget_task
.value_index
];
1953 c
->curr_task
.item
= mlget_item
->item
;
1954 c
->curr_task
.verify
= mlget_item
->verify
;
1955 c
->curr_task
.finish_verify
= mlget_item
->finish_verify
;
1956 mlget_item
->get_miss
= false;
1961 c
->rcurr
+ extlen
+ keylen
,
1962 c
->rvbytes
- extlen
- keylen
);
1964 c
->currcmd
.retstat
= MCD_END
;
1965 c
->curr_task
.get_miss
= false;
1966 c
->rbytes
-= c
->rvbytes
;
1967 c
->rcurr
= c
->rcurr
+ c
->rvbytes
;
1968 assert(c
->rcurr
<= (c
->rbuf
+ c
->rsize
));
1972 if (ms_setting
.mult_key_num
> 1)
1974 /* multi-get have check all the item */
1975 if (c
->mlget_task
.value_index
== c
->mlget_task
.mlget_num
- 1)
1977 ms_reset_conn(c
, false);
1983 ms_reset_conn(c
, false);
1985 } /* ms_bin_complete_nread */
1989 * we get here after reading the value of get commands.
1991 * @param c, pointer of the concurrency
1993 static void ms_complete_nread(ms_conn_t
*c
)
1996 assert(c
->rbytes
>= c
->rvbytes
);
1997 assert(c
->protocol
== ascii_prot
1998 || c
->protocol
== binary_prot
);
2000 if (c
->protocol
== binary_prot
)
2002 ms_bin_complete_nread(c
);
2006 ms_ascii_complete_nread(c
);
2008 } /* ms_complete_nread */
2012 * Adds a message header to a connection.
2014 * @param c, pointer of the concurrency
2016 * @return int, if success, return EXIT_SUCCESS, else return -1
2018 static int ms_add_msghdr(ms_conn_t
*c
)
2024 if (c
->msgsize
== c
->msgused
)
2027 realloc(c
->msglist
, (size_t)c
->msgsize
* 2 * sizeof(struct msghdr
));
2035 msg
= c
->msglist
+ c
->msgused
;
2038 * this wipes msg_iovlen, msg_control, msg_controllen, and
2039 * msg_flags, the last 3 of which aren't defined on solaris:
2041 memset(msg
, 0, sizeof(struct msghdr
));
2043 msg
->msg_iov
= &c
->iov
[c
->iovused
];
2045 if (c
->udp
&& (c
->srv_recv_addr_size
> 0))
2047 msg
->msg_name
= &c
->srv_recv_addr
;
2048 msg
->msg_namelen
= c
->srv_recv_addr_size
;
2056 /* Leave room for the UDP header, which we'll fill in later. */
2057 return ms_add_iov(c
, NULL
, UDP_HEADER_SIZE
);
2060 return EXIT_SUCCESS
;
2061 } /* ms_add_msghdr */
2065 * Ensures that there is room for another structure iovec in a connection's
2068 * @param c, pointer of the concurrency
2070 * @return int, if success, return EXIT_SUCCESS, else return -1
2072 static int ms_ensure_iov_space(ms_conn_t
*c
)
2076 if (c
->iovused
>= c
->iovsize
)
2079 struct iovec
*new_iov
= (struct iovec
*)realloc(c
->iov
,
2082 * sizeof(struct iovec
));
2089 /* Point all the msghdr structures at the new list. */
2090 for (i
= 0, iovnum
= 0; i
< c
->msgused
; i
++)
2092 c
->msglist
[i
].msg_iov
= &c
->iov
[iovnum
];
2093 iovnum
+= (int)c
->msglist
[i
].msg_iovlen
;
2097 return EXIT_SUCCESS
;
2098 } /* ms_ensure_iov_space */
2102 * Adds data to the list of pending data that will be written out to a
2105 * @param c, pointer of the concurrency
2106 * @param buf, the buffer includes data to send
2107 * @param len, the data length in the buffer
2109 * @return int, if success, return EXIT_SUCCESS, else return -1
2111 static int ms_add_iov(ms_conn_t
*c
, const void *buf
, int len
)
2121 m
= &c
->msglist
[c
->msgused
- 1];
2124 * Limit UDP packets, to UDP_MAX_PAYLOAD_SIZE bytes.
2126 limit_to_mtu
= c
->udp
;
2129 /* We may need to start a new msghdr if this one is full. */
2130 if ((m
->msg_iovlen
== IOV_MAX
)
2131 || (limit_to_mtu
&& (c
->msgbytes
>= UDP_MAX_SEND_PAYLOAD_SIZE
)))
2134 m
= &c
->msglist
[c
->msgused
- 1];
2138 if (ms_ensure_iov_space(c
) != 0)
2141 /* If the fragment is too big to fit in the datagram, split it up */
2142 if (limit_to_mtu
&& (len
+ c
->msgbytes
> UDP_MAX_SEND_PAYLOAD_SIZE
))
2144 leftover
= len
+ c
->msgbytes
- UDP_MAX_SEND_PAYLOAD_SIZE
;
2152 m
= &c
->msglist
[c
->msgused
- 1];
2153 m
->msg_iov
[m
->msg_iovlen
].iov_base
= (void *)buf
;
2154 m
->msg_iov
[m
->msg_iovlen
].iov_len
= (size_t)len
;
2160 buf
= ((char *)buf
) + len
;
2163 while (leftover
> 0);
2165 return EXIT_SUCCESS
;
2170 * Constructs a set of UDP headers and attaches them to the outgoing messages.
2172 * @param c, pointer of the concurrency
2174 * @return int, if success, return EXIT_SUCCESS, else return -1
2176 static int ms_build_udp_headers(ms_conn_t
*c
)
2183 c
->request_id
= ms_get_udp_request_id();
2185 if (c
->msgused
> c
->hdrsize
)
2189 new_hdrbuf
= realloc(c
->hdrbuf
,
2190 (size_t)c
->msgused
* 2 * UDP_HEADER_SIZE
);
2192 new_hdrbuf
= malloc((size_t)c
->msgused
* 2 * UDP_HEADER_SIZE
);
2196 c
->hdrbuf
= (unsigned char *)new_hdrbuf
;
2197 c
->hdrsize
= c
->msgused
* 2;
2200 /* If this is a multi-packet request, drop it. */
2201 if (c
->udp
&& (c
->msgused
> 1))
2203 fprintf(stderr
, "multi-packet request for UDP not supported.\n");
2208 for (i
= 0; i
< c
->msgused
; i
++)
2210 c
->msglist
[i
].msg_iov
[0].iov_base
= (void *)hdr
;
2211 c
->msglist
[i
].msg_iov
[0].iov_len
= UDP_HEADER_SIZE
;
2212 *hdr
++= (unsigned char)(c
->request_id
/ 256);
2213 *hdr
++= (unsigned char)(c
->request_id
% 256);
2214 *hdr
++= (unsigned char)(i
/ 256);
2215 *hdr
++= (unsigned char)(i
% 256);
2216 *hdr
++= (unsigned char)(c
->msgused
/ 256);
2217 *hdr
++= (unsigned char)(c
->msgused
% 256);
2218 *hdr
++= (unsigned char)1; /* support facebook memcached */
2219 *hdr
++= (unsigned char)0;
2221 ((unsigned char *)c
->msglist
[i
].msg_iov
[0].iov_base
2222 + UDP_HEADER_SIZE
));
2225 return EXIT_SUCCESS
;
2226 } /* ms_build_udp_headers */
2230 * Transmit the next chunk of data from our list of msgbuf structures.
2232 * @param c, pointer of the concurrency
2234 * @return TRANSMIT_COMPLETE All done writing.
2235 * TRANSMIT_INCOMPLETE More data remaining to write.
2236 * TRANSMIT_SOFT_ERROR Can't write any more right now.
2237 * TRANSMIT_HARD_ERROR Can't write (c->state is set to conn_closing)
2239 static int ms_transmit(ms_conn_t
*c
)
2243 if ((c
->msgcurr
< c
->msgused
)
2244 && (c
->msglist
[c
->msgcurr
].msg_iovlen
== 0))
2246 /* Finished writing the current msg; advance to the next. */
2250 if (c
->msgcurr
< c
->msgused
)
2253 struct msghdr
*m
= &c
->msglist
[c
->msgcurr
];
2255 res
= sendmsg(c
->sfd
, m
, 0);
2258 atomic_add_size(&ms_stats
.bytes_written
, res
);
2260 /* We've written some of the data. Remove the completed
2261 * iovec entries from the list of pending writes. */
2262 while (m
->msg_iovlen
> 0 && res
>= (ssize_t
)m
->msg_iov
->iov_len
)
2264 res
-= (ssize_t
)m
->msg_iov
->iov_len
;
2269 /* Might have written just part of the last iovec entry;
2270 * adjust it so the next write will do the rest. */
2273 m
->msg_iov
->iov_base
= (void *)((unsigned char *)m
->msg_iov
->iov_base
+ res
);
2274 m
->msg_iov
->iov_len
-= (size_t)res
;
2276 return TRANSMIT_INCOMPLETE
;
2278 if ((res
== -1) && ((errno
== EAGAIN
) || (errno
== EWOULDBLOCK
)))
2280 if (! ms_update_event(c
, EV_WRITE
| EV_PERSIST
))
2282 fprintf(stderr
, "Couldn't update event.\n");
2283 ms_conn_set_state(c
, conn_closing
);
2284 return TRANSMIT_HARD_ERROR
;
2286 return TRANSMIT_SOFT_ERROR
;
2289 /* if res==0 or res==-1 and error is not EAGAIN or EWOULDBLOCK,
2290 * we have a real error, on which we close the connection */
2291 fprintf(stderr
, "Failed to write, and not due to blocking.\n");
2293 ms_conn_set_state(c
, conn_closing
);
2294 return TRANSMIT_HARD_ERROR
;
2298 return TRANSMIT_COMPLETE
;
2304 * Shrinks a connection's buffers if they're too big. This prevents
2305 * periodic large "mget" response from server chewing lots of client
2308 * This should only be called in between requests since it can wipe output
2311 * @param c, pointer of the concurrency
2313 static void ms_conn_shrink(ms_conn_t
*c
)
2320 if ((c
->rsize
> READ_BUFFER_HIGHWAT
) && (c
->rbytes
< DATA_BUFFER_SIZE
))
2324 if (c
->rcurr
!= c
->rbuf
)
2325 memmove(c
->rbuf
, c
->rcurr
, (size_t)c
->rbytes
);
2327 newbuf
= (char *)realloc((void *)c
->rbuf
, DATA_BUFFER_SIZE
);
2332 c
->rsize
= DATA_BUFFER_SIZE
;
2337 if (c
->udp
&& (c
->rudpsize
> UDP_DATA_BUFFER_HIGHWAT
)
2338 && (c
->rudpbytes
+ UDP_MAX_PAYLOAD_SIZE
< UDP_DATA_BUFFER_SIZE
))
2340 char *new_rbuf
= (char *)realloc(c
->rudpbuf
, (size_t)c
->rudpsize
* 2);
2343 c
->rudpbuf
= new_rbuf
;
2344 c
->rudpsize
= UDP_DATA_BUFFER_SIZE
;
2346 /* TODO check error condition? */
2349 if (c
->msgsize
> MSG_LIST_HIGHWAT
)
2351 struct msghdr
*newbuf
= (struct msghdr
*)realloc(
2354 * sizeof(c
->msglist
[0]));
2358 c
->msgsize
= MSG_LIST_INITIAL
;
2360 /* TODO check error condition? */
2363 if (c
->iovsize
> IOV_LIST_HIGHWAT
)
2365 struct iovec
*newbuf
= (struct iovec
*)realloc((void *)c
->iov
,
2367 * sizeof(c
->iov
[0]));
2371 c
->iovsize
= IOV_LIST_INITIAL
;
2373 /* TODO check return value */
2375 } /* ms_conn_shrink */
2379 * Sets a connection's current state in the state machine. Any special
2380 * processing that needs to happen on certain state transitions can
2383 * @param c, pointer of the concurrency
2384 * @param state, connection state
2386 static void ms_conn_set_state(ms_conn_t
*c
, int state
)
2390 if (state
!= c
->state
)
2392 if (state
== conn_read
)
2398 } /* ms_conn_set_state */
2402 * update the event if socks change state. for example: when
2403 * change the listen scoket read event to sock write event, or
2404 * change socket handler, we could call this function.
2406 * @param c, pointer of the concurrency
2407 * @param new_flags, new event flags
2409 * @return bool, if success, return true, else return false
2411 static bool ms_update_event(ms_conn_t
*c
, const int new_flags
)
2415 struct event_base
*base
= c
->event
.ev_base
;
2416 if ((c
->ev_flags
== new_flags
) && (ms_setting
.rep_write_srv
== 0)
2417 && (! ms_setting
.facebook_test
|| (c
->total_sfds
== 1)))
2422 if (event_del(&c
->event
) == -1)
2424 /* try to delete the event again */
2425 if (event_del(&c
->event
) == -1)
2431 event_set(&c
->event
,
2436 event_base_set(base
, &c
->event
);
2437 c
->ev_flags
= (short)new_flags
;
2439 if (event_add(&c
->event
, NULL
) == -1)
2445 } /* ms_update_event */
2449 * If user want to get the expected throughput, we could limit
2450 * the performance of memslap. we could give up some work and
2451 * just wait a short time. The function is used to check this
2454 * @param c, pointer of the concurrency
2456 * @return bool, if success, return true, else return false
2458 static bool ms_need_yield(ms_conn_t
*c
)
2460 ms_thread_t
*ms_thread
= pthread_getspecific(ms_thread_key
);
2462 int64_t time_diff
= 0;
2463 struct timeval curr_time
;
2464 ms_task_t
*task
= &c
->curr_task
;
2466 if (ms_setting
.expected_tps
> 0)
2468 gettimeofday(&curr_time
, NULL
);
2469 time_diff
= ms_time_diff(&ms_thread
->startup_time
, &curr_time
);
2470 tps
= (int64_t)(((task
->get_opt
+ task
->set_opt
) / (uint64_t)time_diff
) * 1000000);
2472 /* current throughput is greater than expected throughput */
2473 if (tps
> ms_thread
->thread_ctx
->tps_perconn
)
2480 } /* ms_need_yield */
2484 * used to update the start time of each operation
2486 * @param c, pointer of the concurrency
2488 static void ms_update_start_time(ms_conn_t
*c
)
2490 ms_task_item_t
*item
= c
->curr_task
.item
;
2492 if ((ms_setting
.stat_freq
> 0) || c
->udp
2493 || ((c
->currcmd
.cmd
== CMD_SET
) && (item
->exp_time
> 0)))
2495 gettimeofday(&c
->start_time
, NULL
);
2496 if ((c
->currcmd
.cmd
== CMD_SET
) && (item
->exp_time
> 0))
2498 /* record the current time */
2499 item
->client_time
= c
->start_time
.tv_sec
;
2502 } /* ms_update_start_time */
2506 * run the state machine
2508 * @param c, pointer of the concurrency
2510 static void ms_drive_machine(ms_conn_t
*c
)
2523 if (c
->rbytes
>= c
->rvbytes
)
2525 ms_complete_nread(c
);
2531 if (ms_try_read_line(c
) != 0)
2537 if (ms_try_read_network(c
) != 0)
2542 /* doesn't read all the response data, wait event wake up */
2543 if (! c
->currcmd
.isfinish
)
2545 if (! ms_update_event(c
, EV_READ
| EV_PERSIST
))
2547 fprintf(stderr
, "Couldn't update event.\n");
2548 ms_conn_set_state(c
, conn_closing
);
2555 /* we have no command line and no data to read from network, next write */
2556 ms_conn_set_state(c
, conn_write
);
2557 memcpy(&c
->precmd
, &c
->currcmd
, sizeof(ms_cmdstat_t
)); /* replicate command state */
2562 if (! c
->ctnwrite
&& ms_need_yield(c
))
2566 if (! ms_update_event(c
, EV_WRITE
| EV_PERSIST
))
2568 fprintf(stderr
, "Couldn't update event.\n");
2569 ms_conn_set_state(c
, conn_closing
);
2576 if (! c
->ctnwrite
&& (ms_exec_task(c
) != 0))
2578 ms_conn_set_state(c
, conn_closing
);
2582 /* record the start time before starting to send data if necessary */
2583 if (! c
->ctnwrite
|| (c
->change_sfd
&& c
->ctnwrite
))
2587 c
->change_sfd
= false;
2589 ms_update_start_time(c
);
2592 /* change sfd if necessary */
2600 /* execute task until nothing need be written to network */
2601 if (! c
->ctnwrite
&& (c
->msgcurr
== c
->msgused
))
2603 if (! ms_update_event(c
, EV_WRITE
| EV_PERSIST
))
2605 fprintf(stderr
, "Couldn't update event.\n");
2606 ms_conn_set_state(c
, conn_closing
);
2613 switch (ms_transmit(c
))
2615 case TRANSMIT_COMPLETE
:
2616 /* we have no data to write to network, next wait repose */
2617 if (! ms_update_event(c
, EV_READ
| EV_PERSIST
))
2619 fprintf(stderr
, "Couldn't update event.\n");
2620 ms_conn_set_state(c
, conn_closing
);
2624 ms_conn_set_state(c
, conn_read
);
2629 case TRANSMIT_INCOMPLETE
:
2631 break; /* Continue in state machine. */
2633 case TRANSMIT_HARD_ERROR
:
2637 case TRANSMIT_SOFT_ERROR
:
2649 /* recovery mode, need reconnect if connection close */
2650 if (ms_setting
.reconnect
&& (! ms_global
.time_out
2651 || ((ms_setting
.run_time
== 0)
2652 && (c
->remain_exec_num
> 0))))
2654 if (ms_reconn(c
) != 0)
2661 ms_reset_conn(c
, false);
2663 if (c
->total_sfds
== 1)
2665 if (! ms_update_event(c
, EV_WRITE
| EV_PERSIST
))
2667 fprintf(stderr
, "Couldn't update event.\n");
2668 ms_conn_set_state(c
, conn_closing
);
2686 } /* ms_drive_machine */
2690 * the event handler of each thread
2692 * @param fd, the file descriptor of socket
2693 * @param which, event flag
2694 * @param arg, argument
2696 void ms_event_handler(const int fd
, const short which
, void *arg
)
2698 ms_conn_t
*c
= (ms_conn_t
*)arg
;
2708 "Catastrophic: event fd: %d doesn't match conn fd: %d\n",
2714 assert(fd
== c
->sfd
);
2716 ms_drive_machine(c
);
2718 /* wait for next event */
2719 } /* ms_event_handler */
2723 * get the next socket descriptor index to run for replication
2725 * @param c, pointer of the concurrency
2726 * @param cmd, command(get or set )
2728 * @return int, if success, return the index, else return EXIT_SUCCESS
2730 static uint32_t ms_get_rep_sock_index(ms_conn_t
*c
, int cmd
)
2732 uint32_t sock_index
= 0;
2735 if (c
->total_sfds
== 1)
2737 return EXIT_SUCCESS
;
2740 if (ms_setting
.rep_write_srv
== 0)
2749 for (i
= 0; i
< ms_setting
.rep_write_srv
; i
++)
2751 if (c
->tcpsfd
[i
] > 0)
2757 if (i
== ms_setting
.rep_write_srv
)
2759 /* random get one replication server to read */
2760 sock_index
= (uint32_t)random() % c
->total_sfds
;
2764 /* random get one replication writing server to write */
2765 sock_index
= (uint32_t)random() % ms_setting
.rep_write_srv
;
2768 else if (cmd
== CMD_GET
)
2770 /* random get one replication server to read */
2771 sock_index
= (uint32_t)random() % c
->total_sfds
;
2774 while (c
->tcpsfd
[sock_index
] == 0);
2777 } /* ms_get_rep_sock_index */
2781 * get the next socket descriptor index to run
2783 * @param c, pointer of the concurrency
2785 * @return int, return the index
2787 static uint32_t ms_get_next_sock_index(ms_conn_t
*c
)
2789 uint32_t sock_index
= 0;
2793 sock_index
= (++c
->cur_idx
== c
->total_sfds
) ? 0 : c
->cur_idx
;
2795 while (c
->tcpsfd
[sock_index
] == 0);
2798 } /* ms_get_next_sock_index */
2802 * update socket event of the connections
2804 * @param c, pointer of the concurrency
2806 * @return int, if success, return EXIT_SUCCESS, else return -1
2808 static int ms_update_conn_sock_event(ms_conn_t
*c
)
2812 switch (c
->currcmd
.cmd
)
2815 if (ms_setting
.facebook_test
&& c
->udp
)
2817 c
->sfd
= c
->tcpsfd
[0];
2819 c
->change_sfd
= true;
2824 if (ms_setting
.facebook_test
&& ! c
->udp
)
2828 c
->change_sfd
= true;
2836 if (! c
->udp
&& (c
->total_sfds
> 1))
2838 if (c
->cur_idx
!= c
->total_sfds
)
2840 if (ms_setting
.rep_write_srv
== 0)
2842 c
->cur_idx
= ms_get_next_sock_index(c
);
2846 c
->cur_idx
= ms_get_rep_sock_index(c
, c
->currcmd
.cmd
);
2851 /* must select the first sock of the connection at the beginning */
2855 c
->sfd
= c
->tcpsfd
[c
->cur_idx
];
2856 assert(c
->sfd
!= 0);
2857 c
->change_sfd
= true;
2862 if (! ms_update_event(c
, EV_WRITE
| EV_PERSIST
))
2864 fprintf(stderr
, "Couldn't update event.\n");
2865 ms_conn_set_state(c
, conn_closing
);
2870 return EXIT_SUCCESS
;
2871 } /* ms_update_conn_sock_event */
2875 * for ASCII protocol, this function build the set command
2876 * string and send the command.
2878 * @param c, pointer of the concurrency
2879 * @param item, pointer of task item which includes the object
2882 * @return int, if success, return EXIT_SUCCESS, else return -1
2884 static int ms_build_ascii_write_buf_set(ms_conn_t
*c
, ms_task_item_t
*item
)
2888 char *buffer
= c
->wbuf
;
2890 write_len
= snprintf(buffer
,
2897 if (write_len
> c
->wsize
|| write_len
< 0)
2899 /* ought to be always enough. just fail for simplicity */
2900 fprintf(stderr
, "output command line too long.\n");
2904 if (item
->value_offset
== INVALID_OFFSET
)
2906 value_offset
= item
->key_suffix_offset
;
2910 value_offset
= item
->value_offset
;
2913 if ((ms_add_iov(c
, "set ", 4) != 0)
2914 || (ms_add_iov(c
, (char *)&item
->key_prefix
,
2915 (int)KEY_PREFIX_SIZE
) != 0)
2916 || (ms_add_iov(c
, &ms_setting
.char_block
[item
->key_suffix_offset
],
2917 item
->key_size
- (int)KEY_PREFIX_SIZE
) != 0)
2918 || (ms_add_iov(c
, buffer
, write_len
) != 0)
2919 || (ms_add_iov(c
, &ms_setting
.char_block
[value_offset
],
2920 item
->value_size
) != 0)
2921 || (ms_add_iov(c
, "\r\n", 2) != 0)
2922 || (c
->udp
&& (ms_build_udp_headers(c
) != 0)))
2927 return EXIT_SUCCESS
;
2928 } /* ms_build_ascii_write_buf_set */
2932 * used to send set command to server
2934 * @param c, pointer of the concurrency
2935 * @param item, pointer of task item which includes the object
2938 * @return int, if success, return EXIT_SUCCESS, else return -1
2940 int ms_mcd_set(ms_conn_t
*c
, ms_task_item_t
*item
)
2944 c
->currcmd
.cmd
= CMD_SET
;
2945 c
->currcmd
.isfinish
= false;
2946 c
->currcmd
.retstat
= MCD_FAILURE
;
2948 if (ms_update_conn_sock_event(c
) != 0)
2956 if (ms_add_msghdr(c
) != 0)
2958 fprintf(stderr
, "Out of memory preparing request.");
2962 /* binary protocol */
2963 if (c
->protocol
== binary_prot
)
2965 if (ms_build_bin_write_buf_set(c
, item
) != 0)
2972 if (ms_build_ascii_write_buf_set(c
, item
) != 0)
2978 atomic_add_size(&ms_stats
.obj_bytes
,
2979 item
->key_size
+ item
->value_size
);
2980 atomic_add_size(&ms_stats
.cmd_set
, 1);
2982 return EXIT_SUCCESS
;
2987 * for ASCII protocol, this function build the get command
2988 * string and send the command.
2990 * @param c, pointer of the concurrency
2991 * @param item, pointer of task item which includes the object
2994 * @return int, if success, return EXIT_SUCCESS, else return -1
2996 static int ms_build_ascii_write_buf_get(ms_conn_t
*c
, ms_task_item_t
*item
)
2998 if ((ms_add_iov(c
, "get ", 4) != 0)
2999 || (ms_add_iov(c
, (char *)&item
->key_prefix
,
3000 (int)KEY_PREFIX_SIZE
) != 0)
3001 || (ms_add_iov(c
, &ms_setting
.char_block
[item
->key_suffix_offset
],
3002 item
->key_size
- (int)KEY_PREFIX_SIZE
) != 0)
3003 || (ms_add_iov(c
, "\r\n", 2) != 0)
3004 || (c
->udp
&& (ms_build_udp_headers(c
) != 0)))
3009 return EXIT_SUCCESS
;
3010 } /* ms_build_ascii_write_buf_get */
3014 * used to send the get command to server
3016 * @param c, pointer of the concurrency
3017 * @param item, pointer of task item which includes the object
3020 * @return int, if success, return EXIT_SUCCESS, else return -1
3022 int ms_mcd_get(ms_conn_t
*c
, ms_task_item_t
*item
)
3026 c
->currcmd
.cmd
= CMD_GET
;
3027 c
->currcmd
.isfinish
= false;
3028 c
->currcmd
.retstat
= MCD_FAILURE
;
3030 if (ms_update_conn_sock_event(c
) != 0)
3038 if (ms_add_msghdr(c
) != 0)
3040 fprintf(stderr
, "Out of memory preparing request.");
3044 /* binary protocol */
3045 if (c
->protocol
== binary_prot
)
3047 if (ms_build_bin_write_buf_get(c
, item
) != 0)
3054 if (ms_build_ascii_write_buf_get(c
, item
) != 0)
3060 atomic_add_size(&ms_stats
.cmd_get
, 1);
3062 return EXIT_SUCCESS
;
3067 * for ASCII protocol, this function build the multi-get command
3068 * string and send the command.
3070 * @param c, pointer of the concurrency
3072 * @return int, if success, return EXIT_SUCCESS, else return -1
3074 static int ms_build_ascii_write_buf_mlget(ms_conn_t
*c
)
3076 ms_task_item_t
*item
;
3078 if (ms_add_iov(c
, "get", 3) != 0)
3083 for (int i
= 0; i
< c
->mlget_task
.mlget_num
; i
++)
3085 item
= c
->mlget_task
.mlget_item
[i
].item
;
3086 assert(item
!= NULL
);
3087 if ((ms_add_iov(c
, " ", 1) != 0)
3088 || (ms_add_iov(c
, (char *)&item
->key_prefix
,
3089 (int)KEY_PREFIX_SIZE
) != 0)
3090 || (ms_add_iov(c
, &ms_setting
.char_block
[item
->key_suffix_offset
],
3091 item
->key_size
- (int)KEY_PREFIX_SIZE
) != 0))
3097 if ((ms_add_iov(c
, "\r\n", 2) != 0)
3098 || (c
->udp
&& (ms_build_udp_headers(c
) != 0)))
3103 return EXIT_SUCCESS
;
3104 } /* ms_build_ascii_write_buf_mlget */
3108 * used to send the multi-get command to server
3110 * @param c, pointer of the concurrency
3112 * @return int, if success, return EXIT_SUCCESS, else return -1
3114 int ms_mcd_mlget(ms_conn_t
*c
)
3116 ms_task_item_t
*item
;
3119 assert(c
->mlget_task
.mlget_num
>= 1);
3121 c
->currcmd
.cmd
= CMD_GET
;
3122 c
->currcmd
.isfinish
= false;
3123 c
->currcmd
.retstat
= MCD_FAILURE
;
3125 if (ms_update_conn_sock_event(c
) != 0)
3133 if (ms_add_msghdr(c
) != 0)
3135 fprintf(stderr
, "Out of memory preparing request.");
3139 /* binary protocol */
3140 if (c
->protocol
== binary_prot
)
3142 if (ms_build_bin_write_buf_mlget(c
) != 0)
3149 if (ms_build_ascii_write_buf_mlget(c
) != 0)
3155 /* decrease operation time of each item */
3156 for (int i
= 0; i
< c
->mlget_task
.mlget_num
; i
++)
3158 item
= c
->mlget_task
.mlget_item
[i
].item
;
3159 atomic_add_size(&ms_stats
.cmd_get
, 1);
3162 return EXIT_SUCCESS
;
3163 } /* ms_mcd_mlget */
3167 * binary protocol support
3171 * for binary protocol, parse the response of server
3173 * @param c, pointer of the concurrency
3175 * @return int, if success, return EXIT_SUCCESS, else return -1
3177 static int ms_bin_process_response(ms_conn_t
*c
)
3179 const char *errstr
= NULL
;
3183 uint32_t bodylen
= c
->binary_header
.response
.bodylen
;
3184 uint8_t opcode
= c
->binary_header
.response
.opcode
;
3185 uint16_t status
= c
->binary_header
.response
.status
;
3189 c
->rvbytes
= (int32_t)bodylen
;
3191 return EXIT_FAILURE
;
3197 case PROTOCOL_BINARY_RESPONSE_SUCCESS
:
3198 if (opcode
== PROTOCOL_BINARY_CMD_SET
)
3200 c
->currcmd
.retstat
= MCD_STORED
;
3202 else if (opcode
== PROTOCOL_BINARY_CMD_DELETE
)
3204 c
->currcmd
.retstat
= MCD_DELETED
;
3206 else if (opcode
== PROTOCOL_BINARY_CMD_GET
)
3208 c
->currcmd
.retstat
= MCD_END
;
3212 case PROTOCOL_BINARY_RESPONSE_ENOMEM
:
3213 errstr
= "Out of memory";
3214 c
->currcmd
.retstat
= MCD_SERVER_ERROR
;
3217 case PROTOCOL_BINARY_RESPONSE_UNKNOWN_COMMAND
:
3218 errstr
= "Unknown command";
3219 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
3222 case PROTOCOL_BINARY_RESPONSE_KEY_ENOENT
:
3223 errstr
= "Not found";
3224 c
->currcmd
.retstat
= MCD_NOTFOUND
;
3227 case PROTOCOL_BINARY_RESPONSE_EINVAL
:
3228 errstr
= "Invalid arguments";
3229 c
->currcmd
.retstat
= MCD_PROTOCOL_ERROR
;
3232 case PROTOCOL_BINARY_RESPONSE_KEY_EEXISTS
:
3233 errstr
= "Data exists for key.";
3236 case PROTOCOL_BINARY_RESPONSE_E2BIG
:
3237 errstr
= "Too large.";
3238 c
->currcmd
.retstat
= MCD_SERVER_ERROR
;
3241 case PROTOCOL_BINARY_RESPONSE_NOT_STORED
:
3242 errstr
= "Not stored.";
3243 c
->currcmd
.retstat
= MCD_NOTSTORED
;
3247 errstr
= "Unknown error";
3248 c
->currcmd
.retstat
= MCD_UNKNOWN_READ_FAILURE
;
3254 fprintf(stderr
, "%s\n", errstr
);
3258 return EXIT_SUCCESS
;
3259 } /* ms_bin_process_response */
3262 /* build binary header and add the header to the buffer to send */
3265 * build binary header and add the header to the buffer to send
3267 * @param c, pointer of the concurrency
3268 * @param opcode, operation code
3269 * @param hdr_len, length of header
3270 * @param key_len, length of key
3271 * @param body_len. length of body
3273 static void ms_add_bin_header(ms_conn_t
*c
,
3279 protocol_binary_request_header
*header
;
3283 header
= (protocol_binary_request_header
*)c
->wcurr
;
3285 header
->request
.magic
= (uint8_t)PROTOCOL_BINARY_REQ
;
3286 header
->request
.opcode
= (uint8_t)opcode
;
3287 header
->request
.keylen
= htons(key_len
);
3289 header
->request
.extlen
= (uint8_t)hdr_len
;
3290 header
->request
.datatype
= (uint8_t)PROTOCOL_BINARY_RAW_BYTES
;
3291 header
->request
.vbucket
= 0;
3293 header
->request
.bodylen
= htonl(body_len
);
3294 header
->request
.opaque
= 0;
3295 header
->request
.cas
= 0;
3297 ms_add_iov(c
, c
->wcurr
, sizeof(header
->request
));
3298 } /* ms_add_bin_header */
3302 * add the key to the socket write buffer array
3304 * @param c, pointer of the concurrency
3305 * @param item, pointer of task item which includes the object
3308 static void ms_add_key_to_iov(ms_conn_t
*c
, ms_task_item_t
*item
)
3310 ms_add_iov(c
, (char *)&item
->key_prefix
, (int)KEY_PREFIX_SIZE
);
3311 ms_add_iov(c
, &ms_setting
.char_block
[item
->key_suffix_offset
],
3312 item
->key_size
- (int)KEY_PREFIX_SIZE
);
3317 * for binary protocol, this function build the set command
3318 * and add the command to send buffer array.
3320 * @param c, pointer of the concurrency
3321 * @param item, pointer of task item which includes the object
3324 * @return int, if success, return EXIT_SUCCESS, else return -1
3326 static int ms_build_bin_write_buf_set(ms_conn_t
*c
, ms_task_item_t
*item
)
3328 assert(c
->wbuf
== c
->wcurr
);
3331 protocol_binary_request_set
*rep
= (protocol_binary_request_set
*)c
->wcurr
;
3332 uint16_t keylen
= (uint16_t)item
->key_size
;
3333 uint32_t bodylen
= (uint32_t)sizeof(rep
->message
.body
)
3334 + (uint32_t)keylen
+ (uint32_t)item
->value_size
;
3336 ms_add_bin_header(c
,
3337 PROTOCOL_BINARY_CMD_SET
,
3338 sizeof(rep
->message
.body
),
3341 rep
->message
.body
.flags
= 0;
3342 rep
->message
.body
.expiration
= htonl((uint32_t)item
->exp_time
);
3343 ms_add_iov(c
, &rep
->message
.body
, sizeof(rep
->message
.body
));
3344 ms_add_key_to_iov(c
, item
);
3346 if (item
->value_offset
== INVALID_OFFSET
)
3348 value_offset
= item
->key_suffix_offset
;
3352 value_offset
= item
->value_offset
;
3354 ms_add_iov(c
, &ms_setting
.char_block
[value_offset
], item
->value_size
);
3356 return EXIT_SUCCESS
;
3357 } /* ms_build_bin_write_buf_set */
3361 * for binary protocol, this function build the get command and
3362 * add the command to send buffer array.
3364 * @param c, pointer of the concurrency
3365 * @param item, pointer of task item which includes the object
3368 * @return int, if success, return EXIT_SUCCESS, else return -1
3370 static int ms_build_bin_write_buf_get(ms_conn_t
*c
, ms_task_item_t
*item
)
3372 assert(c
->wbuf
== c
->wcurr
);
3374 ms_add_bin_header(c
, PROTOCOL_BINARY_CMD_GET
, 0, (uint16_t)item
->key_size
,
3375 (uint32_t)item
->key_size
);
3376 ms_add_key_to_iov(c
, item
);
3378 return EXIT_SUCCESS
;
3379 } /* ms_build_bin_write_buf_get */
3383 * for binary protocol, this function build the multi-get
3384 * command and add the command to send buffer array.
3386 * @param c, pointer of the concurrency
3387 * @param item, pointer of task item which includes the object
3390 * @return int, if success, return EXIT_SUCCESS, else return -1
3392 static int ms_build_bin_write_buf_mlget(ms_conn_t
*c
)
3394 ms_task_item_t
*item
;
3396 assert(c
->wbuf
== c
->wcurr
);
3398 for (int i
= 0; i
< c
->mlget_task
.mlget_num
; i
++)
3400 item
= c
->mlget_task
.mlget_item
[i
].item
;
3401 assert(item
!= NULL
);
3403 ms_add_bin_header(c
,
3404 PROTOCOL_BINARY_CMD_GET
,
3406 (uint16_t)item
->key_size
,
3407 (uint32_t)item
->key_size
);
3408 ms_add_key_to_iov(c
, item
);
3409 c
->wcurr
+= sizeof(protocol_binary_request_get
);
3414 return EXIT_SUCCESS
;
3415 } /* ms_build_bin_write_buf_mlget */