1 /* -*- Mode: C; tab-width: 2; c-basic-offset: 2; indent-tabs-mode: nil -*- */
3 * What is a library without an example to show you how to use the library?
4 * This example use both interfaces to implement a small memcached server.
5 * Please note that this is an exemple on how to use the library, not
6 * an implementation of a scalable memcached server. If you look closely
7 * at the example it isn't even multithreaded ;-)
9 * With that in mind, let me give you some pointers into the source:
10 * storage.c/h - Implements the item store for this server and not really
11 * interesting for this example.
12 * interface_v0.c - Shows an implementation of the memcached server by using
13 * the "raw" access to the packets as they arrive
14 * interface_v1.c - Shows an implementation of the memcached server by using
15 * the more "logical" interface.
16 * memcached_light.c - This file sets up all of the sockets and run the main
21 #include <sys/types.h>
22 #include <sys/socket.h>
24 #include <netinet/tcp.h>
33 #include <libmemcached/protocol_handler.h>
34 #include <libmemcached/byteorder.h>
37 extern struct memcached_binary_protocol_callback_st interface_v0_impl
;
38 extern struct memcached_binary_protocol_callback_st interface_v1_impl
;
40 static int server_sockets
[1024];
41 static int num_server_sockets
= 0;
42 static void* socket_userdata_map
[1024];
43 static bool verbose
= false;
46 * Create a socket and bind it to a specific port number
47 * @param port the port number to bind to
49 static int server_socket(const char *port
) {
51 struct addrinfo hints
= { .ai_flags
= AI_PASSIVE
,
52 .ai_family
= AF_UNSPEC
,
53 .ai_socktype
= SOCK_STREAM
};
55 int error
= getaddrinfo("127.0.0.1", port
, &hints
, &ai
);
58 if (error
!= EAI_SYSTEM
)
59 fprintf(stderr
, "getaddrinfo(): %s\n", gai_strerror(error
));
61 perror("getaddrinfo()");
66 struct linger ling
= {0, 0};
68 for (struct addrinfo
*next
= ai
; next
; next
= next
->ai_next
)
70 int sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
73 perror("Failed to create socket");
77 int flags
= fcntl(sock
, F_GETFL
, 0);
80 perror("Failed to get socket flags");
85 if ((flags
& O_NONBLOCK
) != O_NONBLOCK
)
86 if (fcntl(sock
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
88 perror("Failed to set socket to nonblocking mode");
94 if (setsockopt(sock
, SOL_SOCKET
, SO_REUSEADDR
, (void *)&flags
, sizeof(flags
)) != 0)
95 perror("Failed to set SO_REUSEADDR");
97 if (setsockopt(sock
, SOL_SOCKET
, SO_KEEPALIVE
, (void *)&flags
, sizeof(flags
)) != 0)
98 perror("Failed to set SO_KEEPALIVE");
100 if (setsockopt(sock
, SOL_SOCKET
, SO_LINGER
, (void *)&ling
, sizeof(ling
)) != 0)
101 perror("Failed to set SO_LINGER");
103 if (setsockopt(sock
, IPPROTO_TCP
, TCP_NODELAY
, (void *)&flags
, sizeof(flags
)) != 0)
104 perror("Failed to set TCP_NODELAY");
106 if (bind(sock
, next
->ai_addr
, next
->ai_addrlen
) == -1)
108 if (errno
!= EADDRINUSE
)
117 if (listen(sock
, 1024) == -1)
124 server_sockets
[num_server_sockets
++]= sock
;
129 return (num_server_sockets
> 0) ? 0 : 1;
133 * Convert a command code to a textual string
134 * @param cmd the comcode to convert
135 * @return a textual string with the command or NULL for unknown commands
137 static const char* comcode2str(uint8_t cmd
)
139 static const char * const text
[] = {
140 "GET", "SET", "ADD", "REPLACE", "DELETE",
141 "INCREMENT", "DECREMENT", "QUIT", "FLUSH",
142 "GETQ", "NOOP", "VERSION", "GETK", "GETKQ",
143 "APPEND", "PREPEND", "STAT", "SETQ", "ADDQ",
144 "REPLACEQ", "DELETEQ", "INCREMENTQ", "DECREMENTQ",
145 "QUITQ", "FLUSHQ", "APPENDQ", "PREPENDQ"
148 if (cmd
<= PROTOCOL_BINARY_CMD_PREPENDQ
)
155 * Print out the command we are about to execute
157 static void pre_execute(const void *cookie
__attribute__((unused
)),
158 protocol_binary_request_header
*header
__attribute__((unused
)))
162 const char *cmd
= comcode2str(header
->request
.opcode
);
164 fprintf(stderr
, "pre_execute from %p: %s\n", cookie
, cmd
);
166 fprintf(stderr
, "pre_execute from %p: 0x%02x\n", cookie
, header
->request
.opcode
);
171 * Print out the command we just executed
173 static void post_execute(const void *cookie
__attribute__((unused
)),
174 protocol_binary_request_header
*header
__attribute__((unused
)))
178 const char *cmd
= comcode2str(header
->request
.opcode
);
180 fprintf(stderr
, "post_execute from %p: %s\n", cookie
, cmd
);
182 fprintf(stderr
, "post_execute from %p: 0x%02x\n", cookie
, header
->request
.opcode
);
187 * Callback handler for all unknown commands.
188 * Send an unknown command back to the client
190 static protocol_binary_response_status
unknown(const void *cookie
,
191 protocol_binary_request_header
*header
,
192 memcached_binary_protocol_raw_response_handler response_handler
)
194 protocol_binary_response_no_extras response
= {
197 .magic
= PROTOCOL_BINARY_RES
,
198 .opcode
= header
->request
.opcode
,
199 .status
= htons(PROTOCOL_BINARY_RESPONSE_UNKNOWN_COMMAND
),
200 .opaque
= header
->request
.opaque
205 return response_handler(cookie
, header
, (void*)&response
);
208 static void work(void);
211 * Program entry point. Bind to the specified port(s) and serve clients
213 * @param argc number of items in the argument vector
214 * @param argv argument vector
215 * @return 0 on success, 1 otherwise
217 int main(int argc
, char **argv
)
219 bool port_specified
= false;
221 struct memcached_binary_protocol_callback_st
*interface
= &interface_v0_impl
;
223 while ((cmd
= getopt(argc
, argv
, "v1p:?")) != EOF
)
227 interface
= &interface_v1_impl
;
230 port_specified
= true;
231 (void)server_socket(optarg
);
236 case '?': /* FALLTHROUGH */
238 (void)fprintf(stderr
, "Usage: %s [-p port] [-v] [-1]\n", argv
[0]);
243 if (!initialize_storage())
245 /* Error message already printed */
250 (void)server_socket("9999");
252 if (num_server_sockets
== 0)
254 fprintf(stderr
, "I don't have any server sockets\n");
259 * Create and initialize the handles to the protocol handlers. I want
260 * to be able to trace the traffic throught the pre/post handlers, and
261 * set up a common handler for unknown messages
263 interface
->pre_execute
= pre_execute
;
264 interface
->post_execute
= post_execute
;
265 interface
->unknown
= unknown
;
267 struct memcached_binary_protocol_st
*protocol_handle
;
268 if ((protocol_handle
= memcached_binary_protocol_create_instance()) == NULL
)
270 fprintf(stderr
, "Failed to allocate protocol handle\n");
274 memcached_binary_protocol_set_callbacks(protocol_handle
, interface
);
275 memcached_binary_protocol_set_pedantic(protocol_handle
, true);
277 for (int xx
= 0; xx
< num_server_sockets
; ++xx
)
278 socket_userdata_map
[server_sockets
[xx
]]= protocol_handle
;
280 /* Serve all of the clients */
287 static void work(void) {
288 #define MAX_SERVERS_TO_POLL 100
289 struct pollfd fds
[MAX_SERVERS_TO_POLL
];
292 for (max_poll
= 0; max_poll
< num_server_sockets
; ++max_poll
)
294 fds
[max_poll
].events
= POLLIN
;
295 fds
[max_poll
].revents
= 0;
296 fds
[max_poll
].fd
= server_sockets
[max_poll
];
302 int err
= poll(fds
, (nfds_t
)max_poll
, -1);
304 if (err
== 0 || (err
== -1 && errno
!= EINTR
))
306 perror("poll() failed");
310 /* find the available filedescriptors */
311 for (int x
= max_poll
- 1; x
> -1 && err
> 0; --x
)
313 if (fds
[x
].revents
!= 0)
316 if (x
< num_server_sockets
)
318 /* accept new client */
319 struct sockaddr_storage addr
;
320 socklen_t addrlen
= sizeof(addr
);
321 int sock
= accept(fds
[x
].fd
, (struct sockaddr
*)&addr
,
326 perror("Failed to accept client");
330 struct memcached_binary_protocol_st
*protocol
;
331 protocol
= socket_userdata_map
[fds
[x
].fd
];
333 struct memcached_binary_protocol_client_st
* c
;
334 c
= memcached_binary_protocol_create_client(protocol
, sock
);
337 fprintf(stderr
, "Failed to create client\n");
342 socket_userdata_map
[sock
]= c
;
343 fds
[max_poll
].events
= POLLIN
;
344 fds
[max_poll
].revents
= 0;
345 fds
[max_poll
].fd
= sock
;
351 /* drive the client */
352 struct memcached_binary_protocol_client_st
* c
;
353 c
= socket_userdata_map
[fds
[x
].fd
];
355 fds
[max_poll
].events
= 0;
357 switch (memcached_binary_protocol_client_work(c
))
360 case READ_WRITE_EVENT
:
361 fds
[max_poll
].events
= POLLOUT
;
364 fds
[max_poll
].events
|= POLLIN
;
367 default: /* ERROR or unknown state.. close */
368 memcached_binary_protocol_client_destroy(c
);
372 if (x
!= max_poll
- 1)
373 memmove(fds
+ x
, fds
+ x
+ 1, (size_t)(max_poll
- x
));