]> arthur.barton.de Git - netdata.git/blob - src/web_server.c
faster single threaded web server implementation
[netdata.git] / src / web_server.c
1 #ifdef HAVE_CONFIG_H
2 #include <config.h>
3 #endif
4 #include <unistd.h>
5 #include <stdlib.h>
6 #include <sys/types.h>
7 #include <sys/socket.h>
8 #include <netinet/in.h>
9 #include <arpa/inet.h>
10 #include <errno.h>
11 #include <pthread.h>
12 #include <sys/stat.h>
13 #include <fcntl.h>
14 #include <netinet/tcp.h>
15 #include <malloc.h>
16
17 #include "common.h"
18 #include "log.h"
19 #include "appconfig.h"
20 #include "url.h"
21 #include "web_buffer.h"
22 #include "web_client.h"
23 #include "web_server.h"
24 #include "global_statistics.h"
25 #include "rrd.h"
26 #include "rrd2json.h"
27 #include "../config.h"
28
29 int listen_backlog = LISTEN_BACKLOG;
30 int listen_fd = -1;
31 int listen_port = LISTEN_PORT;
32 int web_server_mode = WEB_SERVER_MODE_MULTI_THREADED;
33
34 #ifdef NETDATA_INTERNAL_CHECKS
35 static void log_allocations(void)
36 {
37         static int mem = 0;
38
39         struct mallinfo mi;
40
41         mi = mallinfo();
42         if(mi.uordblks > mem) {
43                 int clients = 0;
44                 struct web_client *w;
45                 for(w = web_clients; w ; w = w->next) clients++;
46
47                 info("Allocated memory increased from %d to %d (increased by %d bytes). There are %d web clients connected.", mem, mi.uordblks, mi.uordblks - mem, clients);
48                 mem = mi.uordblks;
49         }
50 }
51 #endif
52
53 static int is_ip_anything(const char *ip)
54 {
55         if(!ip || !*ip
56                         || !strcmp(ip, "any")
57                         || !strcmp(ip, "all")
58                         || !strcmp(ip, "*")
59                         || !strcmp(ip, "::")
60                         || !strcmp(ip, "0.0.0.0")
61                         ) return 1;
62
63         return 0;
64 }
65
66 int create_listen_socket4(const char *ip, int port, int listen_backlog)
67 {
68         int sock;
69         int sockopt = 1;
70
71         debug(D_LISTENER, "IPv4 creating new listening socket on port %d", port);
72
73         sock = socket(AF_INET, SOCK_STREAM, 0);
74         if(sock < 0) {
75                 error("IPv4 socket() failed.");
76                 return -1;
77         }
78
79         /* avoid "address already in use" */
80         setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*)&sockopt, sizeof(sockopt));
81
82         struct sockaddr_in name;
83         memset(&name, 0, sizeof(struct sockaddr_in));
84         name.sin_family = AF_INET;
85         name.sin_port = htons (port);
86
87         if(is_ip_anything(ip)) {
88                 name.sin_addr.s_addr = htonl(INADDR_ANY);
89                 // info("Listening on any IPs (IPv4).");
90         }
91         else {
92                 int ret = inet_pton(AF_INET, ip, (void *)&name.sin_addr.s_addr);
93                 if(ret != 1) {
94                         error("Failed to convert IP '%s' to a valid IPv4 address.", ip);
95                         close(sock);
96                         return -1;
97                 }
98                 // info("Listening on IP '%s' (IPv4).", ip);
99         }
100
101         if(bind (sock, (struct sockaddr *) &name, sizeof (name)) < 0) {
102                 close(sock);
103                 error("IPv4 bind() failed.");
104                 return -1;
105         }
106
107         if(listen(sock, listen_backlog) < 0) {
108                 close(sock);
109                 fatal("IPv4 listen() failed.");
110                 return -1;
111         }
112
113         debug(D_LISTENER, "IPv4 listening port %d created", port);
114         return sock;
115 }
116
117 int create_listen_socket6(const char *ip, int port, int listen_backlog)
118 {
119         int sock = -1;
120         int sockopt = 1;
121
122         debug(D_LISTENER, "IPv6 creating new listening socket on port %d", port);
123
124         sock = socket(AF_INET6, SOCK_STREAM, 0);
125         if (sock < 0) {
126                 error("IPv6 socket() failed. Disabling IPv6.");
127                 return -1;
128         }
129
130         /* avoid "address already in use" */
131         setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*)&sockopt, sizeof(sockopt));
132
133         struct sockaddr_in6 name;
134         memset(&name, 0, sizeof(struct sockaddr_in6));
135         name.sin6_family = AF_INET6;
136         name.sin6_port = htons ((uint16_t) port);
137
138         if(is_ip_anything(ip)) {
139                 name.sin6_addr = in6addr_any;
140                 // info("Listening on all IPs (IPv6 and IPv4)");
141         }
142         else {
143                 int ret = inet_pton(AF_INET6, ip, (void *)&name.sin6_addr.s6_addr);
144                 if(ret != 1) {
145                         error("Failed to convert IP '%s' to a valid IPv6 address. Disabling IPv6.", ip);
146                         close(sock);
147                         return -1;
148                 }
149                 // info("Listening on IP '%s' (IPv6)", ip);
150         }
151
152         name.sin6_scope_id = 0;
153
154         if (bind (sock, (struct sockaddr *) &name, sizeof (name)) < 0) {
155                 close(sock);
156                 error("IPv6 bind() failed. Disabling IPv6.");
157                 return -1;
158         }
159
160         if (listen(sock, listen_backlog) < 0) {
161                 close(sock);
162                 error("IPv6 listen() failed. Disabling IPv6.");
163                 return -1;
164         }
165
166         debug(D_LISTENER, "IPv6 listening port %d created", port);
167         return sock;
168 }
169
170
171 int create_listen_socket(void) {
172         listen_backlog = (int) config_get_number("global", "http port listen backlog", LISTEN_BACKLOG);
173
174         listen_port = (int) config_get_number("global", "port", LISTEN_PORT);
175         if(listen_port < 1 || listen_port > 65535) {
176                 error("Invalid listen port %d given. Defaulting to %d.", listen_port, LISTEN_PORT);
177                 listen_port = LISTEN_PORT;
178         }
179         else debug(D_OPTIONS, "Listen port set to %d.", listen_port);
180
181         int ip = 0;
182         char *ipv = config_get("global", "ip version", "any");
183         if(!strcmp(ipv, "any") || !strcmp(ipv, "both") || !strcmp(ipv, "all")) ip = 0;
184         else if(!strcmp(ipv, "ipv4") || !strcmp(ipv, "IPV4") || !strcmp(ipv, "IPv4") || !strcmp(ipv, "4")) ip = 4;
185         else if(!strcmp(ipv, "ipv6") || !strcmp(ipv, "IPV6") || !strcmp(ipv, "IPv6") || !strcmp(ipv, "6")) ip = 6;
186         else error("Cannot understand ip version '%s'. Assuming 'any'.", ipv);
187
188         if(ip == 0 || ip == 6) listen_fd = create_listen_socket6(config_get("global", "bind socket to IP", "*"), listen_port, listen_backlog);
189         if(listen_fd < 0) {
190                 listen_fd = create_listen_socket4(config_get("global", "bind socket to IP", "*"), listen_port, listen_backlog);
191                 // if(listen_fd >= 0 && ip != 4) info("Managed to open an IPv4 socket on port %d.", listen_port);
192         }
193
194         return listen_fd;
195 }
196
197 // --------------------------------------------------------------------------------------
198 // the main socket listener
199
200 // 1. it accepts new incoming requests on our port
201 // 2. creates a new web_client for each connection received
202 // 3. spawns a new pthread to serve the client (this is optimal for keep-alive clients)
203 // 4. cleans up old web_clients that their pthreads have been exited
204
205 void *socket_listen_main_multi_threaded(void *ptr) {
206         if(ptr) { ; }
207
208         web_server_mode = WEB_SERVER_MODE_MULTI_THREADED;
209         info("Multi-threaded WEB SERVER thread created with task id %d", gettid());
210
211         struct web_client *w;
212         struct timeval tv;
213         int retval, failures = 0;
214
215         if(ptr) { ; }
216
217         if(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) != 0)
218                 error("Cannot set pthread cancel type to DEFERRED.");
219
220         if(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0)
221                 error("Cannot set pthread cancel state to ENABLE.");
222
223         if(listen_fd < 0 || listen_fd >= FD_SETSIZE) fatal("LISTENER: Listen socket %d is not ready, or invalid.", listen_fd);
224
225         fd_set ifds;
226         FD_ZERO (&ifds);
227
228         for(;;) {
229                 tv.tv_sec = 0;
230                 tv.tv_usec = 200000;
231
232                 if(likely(listen_fd >= 0))
233                         FD_SET(listen_fd, &ifds);
234
235                 // debug(D_WEB_CLIENT, "LISTENER: Waiting...");
236                 retval = select(listen_fd + 1, &ifds, NULL, NULL, &tv);
237
238                 if(unlikely(retval == -1)) {
239                         error("LISTENER: select() failed.");
240                         failures++;
241
242                         if(failures > 10) {
243                                 error("LISTENER: our listen port %d seems dead. Re-opening it.", listen_fd);
244                                 close(listen_fd);
245                                 listen_fd = -1;
246                                 sleep(5);
247                                 create_listen_socket();
248                                 if(listen_fd < 0)
249                                         fatal("Cannot listen for web clients (connected clients %llu).", global_statistics.connected_clients);
250
251                                 failures = 0;
252                         }
253
254                         continue;
255                 }
256                 else if(likely(retval)) {
257                         // check for new incoming connections
258                         if(likely(FD_ISSET(listen_fd, &ifds))) {
259                                 w = web_client_create(listen_fd);
260                                 if(unlikely(!w)) {
261                                         // no need for error log - web_client_create already logged the error
262                                         continue;
263                                 }
264
265                                 if(pthread_create(&w->thread, NULL, web_client_main, w) != 0) {
266                                         error("%llu: failed to create new thread for web client.");
267                                         w->obsolete = 1;
268                                 }
269                                 else if(pthread_detach(w->thread) != 0) {
270                                         error("%llu: Cannot request detach of newly created web client thread.", w->id);
271                                         w->obsolete = 1;
272                                 }
273                         }
274                         else debug(D_WEB_CLIENT, "LISTENER: select() didn't do anything.");
275
276                 }
277                 //else {
278                 //      debug(D_WEB_CLIENT, "LISTENER: select() timeout.");
279                 //}
280
281                 failures = 0;
282
283                 // cleanup unused clients
284                 for (w = web_clients; w; ) {
285                         if (w->obsolete) {
286                                 debug(D_WEB_CLIENT, "%llu: Removing client.", w->id);
287                                 // pthread_cancel(w->thread);
288                                 // pthread_join(w->thread, NULL);
289                                 w = web_client_free(w);
290 #ifdef NETDATA_INTERNAL_CHECKS
291                                 log_allocations();
292 #endif
293                         }
294                         else w = w->next;
295                 }
296         }
297
298         error("LISTENER: exit!");
299         close(listen_fd);
300         listen_fd = -1;
301         return NULL;
302 }
303
304 struct web_client *single_threaded_clients[FD_SETSIZE];
305
306 static inline int single_threaded_link_client(struct web_client *w, fd_set *ifds, fd_set *ofds, fd_set *efds, int *max) {
307         if(unlikely(w->obsolete || w->dead || (!w->wait_receive && !w->wait_send)))
308                 return 1;
309
310         if(unlikely(w->ifd < 0 || w->ifd >= FD_SETSIZE || w->ofd < 0 || w->ofd >= FD_SETSIZE)) {
311                 error("%llu: invalid file descriptor, ifd = %d, ofd = %d (required 0 <= fd < FD_SETSIZE (%d)", w->id, w->ifd, w->ofd, FD_SETSIZE);
312                 return 1;
313         }
314
315         FD_SET(w->ifd, efds);
316         if(unlikely(*max < w->ifd)) *max = w->ifd;
317
318         if(unlikely(w->ifd != w->ofd)) {
319                 if(*max < w->ofd) *max = w->ofd;
320                 FD_SET(w->ofd, efds);
321         }
322
323         if(w->wait_receive) FD_SET(w->ifd, ifds);
324         if(w->wait_send)    FD_SET(w->ofd, ofds);
325
326         single_threaded_clients[w->ifd] = w;
327         single_threaded_clients[w->ofd] = w;
328
329         return 0;
330 }
331
332 static inline int single_threaded_unlink_client(struct web_client *w, fd_set *ifds, fd_set *ofds, fd_set *efds) {
333         FD_CLR(w->ifd, efds);
334         if(unlikely(w->ifd != w->ofd)) FD_CLR(w->ofd, efds);
335
336         if(w->wait_receive) FD_CLR(w->ifd, ifds);
337         if(w->wait_send)    FD_CLR(w->ofd, ofds);
338
339         single_threaded_clients[w->ifd] = NULL;
340         single_threaded_clients[w->ofd] = NULL;
341
342         if(unlikely(w->obsolete || w->dead || (!w->wait_receive && !w->wait_send)))
343                 return 1;
344
345         return 0;
346 }
347
348 void *socket_listen_main_single_threaded(void *ptr) {
349         (void)ptr;
350
351         web_server_mode = WEB_SERVER_MODE_SINGLE_THREADED;
352
353         info("Single threaded WEB SERVER thread created with task id %d", gettid());
354
355         struct web_client *w;
356         int retval, failures = 0;
357
358         if(ptr) { ; }
359
360         if(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) != 0)
361                 error("Cannot set pthread cancel type to DEFERRED.");
362
363         if(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0)
364                 error("Cannot set pthread cancel state to ENABLE.");
365
366         if(listen_fd < 0 || listen_fd >= FD_SETSIZE)
367                 fatal("LISTENER: Listen socket %d is not ready, or invalid.", listen_fd);
368
369         int i;
370         for(i = 0; i < FD_SETSIZE ; i++)
371                 single_threaded_clients[i] = NULL;
372
373         fd_set ifds, ofds, efds, rifds, rofds, refds;
374         FD_ZERO (&ifds);
375         FD_ZERO (&ofds);
376         FD_ZERO (&efds);
377         FD_SET(listen_fd, &ifds);
378         FD_SET(listen_fd, &efds);
379         int fdmax = listen_fd;
380
381         for(;;) {
382                 debug(D_WEB_CLIENT_ACCESS, "LISTENER: single threaded web server waiting (listen fd = %d, fdmax = %d)...", listen_fd, fdmax);
383
384                 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
385                 rifds = ifds;
386                 rofds = ofds;
387                 refds = efds;
388                 retval = select(fdmax+1, &rifds, &rofds, &refds, &tv);
389
390                 if(unlikely(retval == -1)) {
391                         error("LISTENER: select() failed.");
392                         failures++;
393                         if(failures > 10) {
394                                 if(global_statistics.connected_clients) {
395                                         error("REMOVING ALL %lu WEB CLIENTS !", global_statistics.connected_clients);
396                                         while (web_clients) {
397                                                 single_threaded_unlink_client(web_clients, &ifds, &ofds, &efds);
398                                                 web_client_free(web_clients);
399                                         }
400                                 }
401
402                                 error("LISTENER: our listen port %d seems dead. Re-opening it.", listen_fd);
403
404                                 close(listen_fd);
405                                 listen_fd = -1;
406                                 sleep(5);
407
408                                 create_listen_socket();
409                                 if(listen_fd < 0 || listen_fd >= FD_SETSIZE)
410                                         fatal("Cannot listen for web clients (connected clients %llu).", global_statistics.connected_clients);
411
412                                 FD_ZERO (&ifds);
413                                 FD_ZERO (&ofds);
414                                 FD_ZERO (&efds);
415                                 FD_SET(listen_fd, &ifds);
416                                 FD_SET(listen_fd, &efds);
417                                 failures = 0;
418                         }
419                 }
420                 else if(likely(retval)) {
421                         failures = 0;
422                         debug(D_WEB_CLIENT_ACCESS, "LISTENER: got something.");
423
424                         if(FD_ISSET(listen_fd, &rifds)) {
425                                 debug(D_WEB_CLIENT_ACCESS, "LISTENER: new connection.");
426                                 w = web_client_create(listen_fd);
427                                 if(single_threaded_link_client(w, &ifds, &ofds, &ifds, &fdmax) != 0) {
428                                         web_client_free(w);
429                                 }
430                         }
431
432                         for(i = 0 ; i <= fdmax ; i++) {
433                                 if(likely(!FD_ISSET(i, &rifds) && !FD_ISSET(i, &rofds) && !FD_ISSET(i, &refds)))
434                                         continue;
435
436                                 w = single_threaded_clients[i];
437                                 if(unlikely(!w))
438                                         continue;
439
440                                 if(unlikely(single_threaded_unlink_client(w, &ifds, &ofds, &efds) != 0)) {
441                                         web_client_free(w);
442                                         continue;
443                                 }
444
445                                 if (unlikely(FD_ISSET(w->ifd, &refds) || FD_ISSET(w->ofd, &refds))) {
446                                         web_client_free(w);
447                                         continue;
448                                 }
449
450                                 if (unlikely(w->wait_receive && FD_ISSET(w->ifd, &rifds))) {
451                                         if (unlikely(web_client_receive(w) < 0)) {
452                                                 web_client_free(w);
453                                                 continue;
454                                         }
455
456                                         if (w->mode != WEB_CLIENT_MODE_FILECOPY) {
457                                                 debug(D_WEB_CLIENT, "%llu: Processing received data.", w->id);
458                                                 web_client_process(w);
459                                         }
460                                 }
461
462                                 if (unlikely(w->wait_send && FD_ISSET(w->ofd, &rofds))) {
463                                         if (unlikely(web_client_send(w) < 0)) {
464                                                 debug(D_WEB_CLIENT, "%llu: Cannot send data to client. Closing client.", w->id);
465                                                 web_client_free(w);
466                                                 continue;
467                                         }
468                                 }
469
470                                 if(unlikely(single_threaded_link_client(w, &ifds, &ofds, &efds, &fdmax) != 0)) {
471                                         web_client_free(w);
472                                 }
473                         }
474                 }
475                 else {
476                         debug(D_WEB_CLIENT_ACCESS, "LISTENER: single threaded web server timeout.");
477 #ifdef NETDATA_INTERNAL_CHECKS
478                         log_allocations();
479 #endif
480                 }
481         }
482
483         error("LISTENER: exit!");
484         close(listen_fd);
485         listen_fd = -1;
486         return NULL;
487 }