]> arthur.barton.de Git - netdata.git/blob - src/web_client.c
allow metrics streaming to work in parallel with local database; propagate O/S type...
[netdata.git] / src / web_client.c
1 #include "common.h"
2
3 #define INITIAL_WEB_DATA_LENGTH 16384
4 #define WEB_REQUEST_LENGTH 16384
5 #define TOO_BIG_REQUEST 16384
6
7 int web_client_timeout = DEFAULT_DISCONNECT_IDLE_WEB_CLIENTS_AFTER_SECONDS;
8 int respect_web_browser_do_not_track_policy = 0;
9 char *web_x_frame_options = NULL;
10
11 #ifdef NETDATA_WITH_ZLIB
12 int web_enable_gzip = 1, web_gzip_level = 3, web_gzip_strategy = Z_DEFAULT_STRATEGY;
13 #endif /* NETDATA_WITH_ZLIB */
14
15 struct web_client *web_clients = NULL;
16 unsigned long long web_clients_count = 0;
17
18 static inline int web_client_crock_socket(struct web_client *w) {
19 #ifdef TCP_CORK
20     if(likely(!w->tcp_cork && w->ofd != -1)) {
21         w->tcp_cork = 1;
22         if(unlikely(setsockopt(w->ofd, IPPROTO_TCP, TCP_CORK, (char *) &w->tcp_cork, sizeof(int)) != 0)) {
23             error("%llu: failed to enable TCP_CORK on socket.", w->id);
24             w->tcp_cork = 0;
25             return -1;
26         }
27     }
28 #endif /* TCP_CORK */
29
30     return 0;
31 }
32
33 static inline int web_client_uncrock_socket(struct web_client *w) {
34 #ifdef TCP_CORK
35     if(likely(w->tcp_cork && w->ofd != -1)) {
36         w->tcp_cork = 0;
37         if(unlikely(setsockopt(w->ofd, IPPROTO_TCP, TCP_CORK, (char *) &w->tcp_cork, sizeof(int)) != 0)) {
38             error("%llu: failed to disable TCP_CORK on socket.", w->id);
39             w->tcp_cork = 1;
40             return -1;
41         }
42     }
43 #endif /* TCP_CORK */
44
45     return 0;
46 }
47
48 struct web_client *web_client_create(int listener) {
49     struct web_client *w;
50
51     w = callocz(1, sizeof(struct web_client));
52     w->id = ++web_clients_count;
53     w->mode = WEB_CLIENT_MODE_NORMAL;
54
55     {
56         struct sockaddr *sadr;
57         socklen_t addrlen;
58
59         sadr = (struct sockaddr*) &w->clientaddr;
60         addrlen = sizeof(w->clientaddr);
61
62         w->ifd = accept4(listener, sadr, &addrlen, SOCK_NONBLOCK);
63         if (w->ifd == -1) {
64             error("%llu: Cannot accept new incoming connection.", w->id);
65             freez(w);
66             return NULL;
67         }
68         w->ofd = w->ifd;
69
70         if(getnameinfo(sadr, addrlen, w->client_ip, NI_MAXHOST, w->client_port, NI_MAXSERV, NI_NUMERICHOST | NI_NUMERICSERV) != 0) {
71             error("Cannot getnameinfo() on received client connection.");
72             strncpyz(w->client_ip,   "UNKNOWN", NI_MAXHOST);
73             strncpyz(w->client_port, "UNKNOWN", NI_MAXSERV);
74         }
75         w->client_ip[NI_MAXHOST]   = '\0';
76         w->client_port[NI_MAXSERV] = '\0';
77
78         switch(sadr->sa_family) {
79         case AF_INET:
80             debug(D_WEB_CLIENT_ACCESS, "%llu: New IPv4 web client from %s port %s on socket %d.", w->id, w->client_ip, w->client_port, w->ifd);
81             break;
82
83         case AF_INET6:
84             if(strncmp(w->client_ip, "::ffff:", 7) == 0) {
85                 memmove(w->client_ip, &w->client_ip[7], strlen(&w->client_ip[7]) + 1);
86                 debug(D_WEB_CLIENT_ACCESS, "%llu: New IPv4 web client from %s port %s on socket %d.", w->id, w->client_ip, w->client_port, w->ifd);
87             }
88             else
89                 debug(D_WEB_CLIENT_ACCESS, "%llu: New IPv6 web client from %s port %s on socket %d.", w->id, w->client_ip, w->client_port, w->ifd);
90             break;
91
92         default:
93             debug(D_WEB_CLIENT_ACCESS, "%llu: New UNKNOWN web client from %s port %s on socket %d.", w->id, w->client_ip, w->client_port, w->ifd);
94             break;
95         }
96
97         int flag = 1;
98         if(setsockopt(w->ofd, IPPROTO_TCP, TCP_NODELAY, (char *) &flag, sizeof(int)) != 0)
99             error("%llu: failed to enable TCP_NODELAY on socket.", w->id);
100
101         flag = 1;
102         if(setsockopt(w->ifd, SOL_SOCKET, SO_KEEPALIVE, (char *) &flag, sizeof(int)) != 0)
103             error("%llu: Cannot set SO_KEEPALIVE on socket.", w->id);
104     }
105
106     w->response.data = buffer_create(INITIAL_WEB_DATA_LENGTH);
107     w->response.header = buffer_create(HTTP_RESPONSE_HEADER_SIZE);
108     w->response.header_output = buffer_create(HTTP_RESPONSE_HEADER_SIZE);
109     w->origin[0] = '*';
110     w->wait_receive = 1;
111
112     if(web_clients) web_clients->prev = w;
113     w->next = web_clients;
114     web_clients = w;
115
116     web_client_connected();
117
118     return(w);
119 }
120
121 void web_client_reset(struct web_client *w) {
122     web_client_uncrock_socket(w);
123
124     debug(D_WEB_CLIENT, "%llu: Resetting client.", w->id);
125
126     if(likely(w->last_url[0])) {
127         struct timeval tv;
128         now_realtime_timeval(&tv);
129
130         size_t size = (w->mode == WEB_CLIENT_MODE_FILECOPY)?w->response.rlen:w->response.data->len;
131         size_t sent = size;
132 #ifdef NETDATA_WITH_ZLIB
133         if(likely(w->response.zoutput)) sent = (size_t)w->response.zstream.total_out;
134 #endif
135
136         // --------------------------------------------------------------------
137         // global statistics
138
139         finished_web_request_statistics(dt_usec(&tv, &w->tv_in),
140                                         w->stats_received_bytes,
141                                         w->stats_sent_bytes,
142                                         size,
143                                         sent);
144
145         w->stats_received_bytes = 0;
146         w->stats_sent_bytes = 0;
147
148
149         // --------------------------------------------------------------------
150         // access log
151
152         log_access("%llu: (sent/all = %zu/%zu bytes %0.0f%%, prep/sent/total = %0.2f/%0.2f/%0.2f ms) %s: %d '%s'",
153                    w->id,
154                    sent, size, -((size > 0) ? ((size - sent) / (double) size * 100.0) : 0.0),
155                    dt_usec(&w->tv_ready, &w->tv_in) / 1000.0,
156                    dt_usec(&tv, &w->tv_ready) / 1000.0,
157                    dt_usec(&tv, &w->tv_in) / 1000.0,
158                    (w->mode == WEB_CLIENT_MODE_FILECOPY) ? "filecopy" : ((w->mode == WEB_CLIENT_MODE_OPTIONS)
159                                                                          ? "options" : "data"),
160                    w->response.code,
161                    w->last_url
162         );
163     }
164
165     if(unlikely(w->mode == WEB_CLIENT_MODE_FILECOPY)) {
166         if(w->ifd != w->ofd) {
167             debug(D_WEB_CLIENT, "%llu: Closing filecopy input file descriptor %d.", w->id, w->ifd);
168             if(w->ifd != -1) close(w->ifd);
169             w->ifd = w->ofd;
170         }
171     }
172
173     w->last_url[0] = '\0';
174     w->cookie1[0] = '\0';
175     w->cookie2[0] = '\0';
176     w->origin[0] = '*';
177     w->origin[1] = '\0';
178
179     w->mode = WEB_CLIENT_MODE_NORMAL;
180
181     w->tcp_cork = 0;
182     w->donottrack = 0;
183     w->tracking_required = 0;
184     w->keepalive = 0;
185     w->decoded_url[0] = '\0';
186
187     buffer_reset(w->response.header_output);
188     buffer_reset(w->response.header);
189     buffer_reset(w->response.data);
190     w->response.rlen = 0;
191     w->response.sent = 0;
192     w->response.code = 0;
193
194     w->wait_receive = 1;
195     w->wait_send = 0;
196
197     w->response.zoutput = 0;
198
199     // if we had enabled compression, release it
200 #ifdef NETDATA_WITH_ZLIB
201     if(w->response.zinitialized) {
202         debug(D_DEFLATE, "%llu: Freeing compression resources.", w->id);
203         deflateEnd(&w->response.zstream);
204         w->response.zsent = 0;
205         w->response.zhave = 0;
206         w->response.zstream.avail_in = 0;
207         w->response.zstream.avail_out = 0;
208         w->response.zstream.total_in = 0;
209         w->response.zstream.total_out = 0;
210         w->response.zinitialized = 0;
211     }
212 #endif // NETDATA_WITH_ZLIB
213 }
214
215 struct web_client *web_client_free(struct web_client *w) {
216     web_client_reset(w);
217
218     struct web_client *n = w->next;
219     if(w == web_clients) web_clients = n;
220
221     debug(D_WEB_CLIENT_ACCESS, "%llu: Closing web client from %s port %s.", w->id, w->client_ip, w->client_port);
222
223     if(w->prev) w->prev->next = w->next;
224     if(w->next) w->next->prev = w->prev;
225     buffer_free(w->response.header_output);
226     buffer_free(w->response.header);
227     buffer_free(w->response.data);
228     if(w->ifd != -1) close(w->ifd);
229     if(w->ofd != -1 && w->ofd != w->ifd) close(w->ofd);
230     freez(w);
231
232     web_client_disconnected();
233
234     return(n);
235 }
236
237 uid_t web_files_uid(void) {
238     static char *web_owner = NULL;
239     static uid_t owner_uid = 0;
240
241     if(unlikely(!web_owner)) {
242         web_owner = config_get("global", "web files owner", config_get("global", "run as user", ""));
243         if(!web_owner || !*web_owner)
244             owner_uid = geteuid();
245         else {
246             // getpwnam() is not thread safe,
247             // but we have called this function once
248             // while single threaded
249             struct passwd *pw = getpwnam(web_owner);
250             if(!pw) {
251                 error("User '%s' is not present. Ignoring option.", web_owner);
252                 owner_uid = geteuid();
253             }
254             else {
255                 debug(D_WEB_CLIENT, "Web files owner set to %s.", web_owner);
256                 owner_uid = pw->pw_uid;
257             }
258         }
259     }
260
261     return(owner_uid);
262 }
263
264 gid_t web_files_gid(void) {
265     static char *web_group = NULL;
266     static gid_t owner_gid = 0;
267
268     if(unlikely(!web_group)) {
269         web_group = config_get("global", "web files group", config_get("global", "web files owner", ""));
270         if(!web_group || !*web_group)
271             owner_gid = getegid();
272         else {
273             // getgrnam() is not thread safe,
274             // but we have called this function once
275             // while single threaded
276             struct group *gr = getgrnam(web_group);
277             if(!gr) {
278                 error("Group '%s' is not present. Ignoring option.", web_group);
279                 owner_gid = getegid();
280             }
281             else {
282                 debug(D_WEB_CLIENT, "Web files group set to %s.", web_group);
283                 owner_gid = gr->gr_gid;
284             }
285         }
286     }
287
288     return(owner_gid);
289 }
290
291 int mysendfile(struct web_client *w, char *filename)
292 {
293     debug(D_WEB_CLIENT, "%llu: Looking for file '%s/%s'", w->id, netdata_configured_web_dir, filename);
294
295     // skip leading slashes
296     while (*filename == '/') filename++;
297
298     // if the filename contain known paths, skip them
299     if(strncmp(filename, WEB_PATH_FILE "/", strlen(WEB_PATH_FILE) + 1) == 0)
300         filename = &filename[strlen(WEB_PATH_FILE) + 1];
301
302     char *s;
303     for(s = filename; *s ;s++) {
304         if( !isalnum(*s) && *s != '/' && *s != '.' && *s != '-' && *s != '_') {
305             debug(D_WEB_CLIENT_ACCESS, "%llu: File '%s' is not acceptable.", w->id, filename);
306             buffer_sprintf(w->response.data, "Filename contains invalid characters: ");
307             buffer_strcat_htmlescape(w->response.data, filename);
308             return 400;
309         }
310     }
311
312     // if the filename contains a .. refuse to serve it
313     if(strstr(filename, "..") != 0) {
314         debug(D_WEB_CLIENT_ACCESS, "%llu: File '%s' is not acceptable.", w->id, filename);
315         buffer_strcat(w->response.data, "Relative filenames are not supported: ");
316         buffer_strcat_htmlescape(w->response.data, filename);
317         return 400;
318     }
319
320     // access the file
321     char webfilename[FILENAME_MAX + 1];
322     snprintfz(webfilename, FILENAME_MAX, "%s/%s", netdata_configured_web_dir, filename);
323
324     // check if the file exists
325     struct stat stat;
326     if(lstat(webfilename, &stat) != 0) {
327         debug(D_WEB_CLIENT_ACCESS, "%llu: File '%s' is not found.", w->id, webfilename);
328         buffer_strcat(w->response.data, "File does not exist, or is not accessible: ");
329         buffer_strcat_htmlescape(w->response.data, webfilename);
330         return 404;
331     }
332
333     // check if the file is owned by expected user
334     if(stat.st_uid != web_files_uid()) {
335         error("%llu: File '%s' is owned by user %u (expected user %u). Access Denied.", w->id, webfilename, stat.st_uid, web_files_uid());
336         buffer_strcat(w->response.data, "Access to file is not permitted: ");
337         buffer_strcat_htmlescape(w->response.data, webfilename);
338         return 403;
339     }
340
341     // check if the file is owned by expected group
342     if(stat.st_gid != web_files_gid()) {
343         error("%llu: File '%s' is owned by group %u (expected group %u). Access Denied.", w->id, webfilename, stat.st_gid, web_files_gid());
344         buffer_strcat(w->response.data, "Access to file is not permitted: ");
345         buffer_strcat_htmlescape(w->response.data, webfilename);
346         return 403;
347     }
348
349     if((stat.st_mode & S_IFMT) == S_IFDIR) {
350         snprintfz(webfilename, FILENAME_MAX, "%s/index.html", filename);
351         return mysendfile(w, webfilename);
352     }
353
354     if((stat.st_mode & S_IFMT) != S_IFREG) {
355         error("%llu: File '%s' is not a regular file. Access Denied.", w->id, webfilename);
356         buffer_strcat(w->response.data, "Access to file is not permitted: ");
357         buffer_strcat_htmlescape(w->response.data, webfilename);
358         return 403;
359     }
360
361     // open the file
362     w->ifd = open(webfilename, O_NONBLOCK, O_RDONLY);
363     if(w->ifd == -1) {
364         w->ifd = w->ofd;
365
366         if(errno == EBUSY || errno == EAGAIN) {
367             error("%llu: File '%s' is busy, sending 307 Moved Temporarily to force retry.", w->id, webfilename);
368             buffer_sprintf(w->response.header, "Location: /" WEB_PATH_FILE "/%s\r\n", filename);
369             buffer_strcat(w->response.data, "File is currently busy, please try again later: ");
370             buffer_strcat_htmlescape(w->response.data, webfilename);
371             return 307;
372         }
373         else {
374             error("%llu: Cannot open file '%s'.", w->id, webfilename);
375             buffer_strcat(w->response.data, "Cannot open file: ");
376             buffer_strcat_htmlescape(w->response.data, webfilename);
377             return 404;
378         }
379     }
380     if(fcntl(w->ifd, F_SETFL, O_NONBLOCK) < 0)
381         error("%llu: Cannot set O_NONBLOCK on file '%s'.", w->id, webfilename);
382
383     // pick a Content-Type for the file
384          if(strstr(filename, ".html") != NULL)  w->response.data->contenttype = CT_TEXT_HTML;
385     else if(strstr(filename, ".js")   != NULL)  w->response.data->contenttype = CT_APPLICATION_X_JAVASCRIPT;
386     else if(strstr(filename, ".css")  != NULL)  w->response.data->contenttype = CT_TEXT_CSS;
387     else if(strstr(filename, ".xml")  != NULL)  w->response.data->contenttype = CT_TEXT_XML;
388     else if(strstr(filename, ".xsl")  != NULL)  w->response.data->contenttype = CT_TEXT_XSL;
389     else if(strstr(filename, ".txt")  != NULL)  w->response.data->contenttype = CT_TEXT_PLAIN;
390     else if(strstr(filename, ".svg")  != NULL)  w->response.data->contenttype = CT_IMAGE_SVG_XML;
391     else if(strstr(filename, ".ttf")  != NULL)  w->response.data->contenttype = CT_APPLICATION_X_FONT_TRUETYPE;
392     else if(strstr(filename, ".otf")  != NULL)  w->response.data->contenttype = CT_APPLICATION_X_FONT_OPENTYPE;
393     else if(strstr(filename, ".woff2")!= NULL)  w->response.data->contenttype = CT_APPLICATION_FONT_WOFF2;
394     else if(strstr(filename, ".woff") != NULL)  w->response.data->contenttype = CT_APPLICATION_FONT_WOFF;
395     else if(strstr(filename, ".eot")  != NULL)  w->response.data->contenttype = CT_APPLICATION_VND_MS_FONTOBJ;
396     else if(strstr(filename, ".png")  != NULL)  w->response.data->contenttype = CT_IMAGE_PNG;
397     else if(strstr(filename, ".jpg")  != NULL)  w->response.data->contenttype = CT_IMAGE_JPG;
398     else if(strstr(filename, ".jpeg") != NULL)  w->response.data->contenttype = CT_IMAGE_JPG;
399     else if(strstr(filename, ".gif")  != NULL)  w->response.data->contenttype = CT_IMAGE_GIF;
400     else if(strstr(filename, ".bmp")  != NULL)  w->response.data->contenttype = CT_IMAGE_BMP;
401     else if(strstr(filename, ".ico")  != NULL)  w->response.data->contenttype = CT_IMAGE_XICON;
402     else if(strstr(filename, ".icns") != NULL)  w->response.data->contenttype = CT_IMAGE_ICNS;
403     else w->response.data->contenttype = CT_APPLICATION_OCTET_STREAM;
404
405     debug(D_WEB_CLIENT_ACCESS, "%llu: Sending file '%s' (%ld bytes, ifd %d, ofd %d).", w->id, webfilename, stat.st_size, w->ifd, w->ofd);
406
407     w->mode = WEB_CLIENT_MODE_FILECOPY;
408     w->wait_receive = 1;
409     w->wait_send = 0;
410     buffer_flush(w->response.data);
411     w->response.rlen = stat.st_size;
412 #ifdef __APPLE__
413     w->response.data->date = stat.st_mtimespec.tv_sec;
414 #else
415     w->response.data->date = stat.st_mtim.tv_sec;
416 #endif /* __APPLE__ */
417     buffer_cacheable(w->response.data);
418
419     return 200;
420 }
421
422
423 #ifdef NETDATA_WITH_ZLIB
424 void web_client_enable_deflate(struct web_client *w, int gzip) {
425     if(unlikely(w->response.zinitialized)) {
426         debug(D_DEFLATE, "%llu: Compression has already be initialized for this client.", w->id);
427         return;
428     }
429
430     if(unlikely(w->response.sent)) {
431         error("%llu: Cannot enable compression in the middle of a conversation.", w->id);
432         return;
433     }
434
435     w->response.zstream.zalloc = Z_NULL;
436     w->response.zstream.zfree = Z_NULL;
437     w->response.zstream.opaque = Z_NULL;
438
439     w->response.zstream.next_in = (Bytef *)w->response.data->buffer;
440     w->response.zstream.avail_in = 0;
441     w->response.zstream.total_in = 0;
442
443     w->response.zstream.next_out = w->response.zbuffer;
444     w->response.zstream.avail_out = 0;
445     w->response.zstream.total_out = 0;
446
447     w->response.zstream.zalloc = Z_NULL;
448     w->response.zstream.zfree = Z_NULL;
449     w->response.zstream.opaque = Z_NULL;
450
451 //  if(deflateInit(&w->response.zstream, Z_DEFAULT_COMPRESSION) != Z_OK) {
452 //      error("%llu: Failed to initialize zlib. Proceeding without compression.", w->id);
453 //      return;
454 //  }
455
456     // Select GZIP compression: windowbits = 15 + 16 = 31
457     if(deflateInit2(&w->response.zstream, web_gzip_level, Z_DEFLATED, 15 + ((gzip)?16:0), 8, web_gzip_strategy) != Z_OK) {
458         error("%llu: Failed to initialize zlib. Proceeding without compression.", w->id);
459         return;
460     }
461
462     w->response.zsent = 0;
463     w->response.zoutput = 1;
464     w->response.zinitialized = 1;
465
466     debug(D_DEFLATE, "%llu: Initialized compression.", w->id);
467 }
468 #endif // NETDATA_WITH_ZLIB
469
470 void buffer_data_options2string(BUFFER *wb, uint32_t options) {
471     int count = 0;
472
473     if(options & RRDR_OPTION_NONZERO) {
474         if(count++) buffer_strcat(wb, " ");
475         buffer_strcat(wb, "nonzero");
476     }
477
478     if(options & RRDR_OPTION_REVERSED) {
479         if(count++) buffer_strcat(wb, " ");
480         buffer_strcat(wb, "flip");
481     }
482
483     if(options & RRDR_OPTION_JSON_WRAP) {
484         if(count++) buffer_strcat(wb, " ");
485         buffer_strcat(wb, "jsonwrap");
486     }
487
488     if(options & RRDR_OPTION_MIN2MAX) {
489         if(count++) buffer_strcat(wb, " ");
490         buffer_strcat(wb, "min2max");
491     }
492
493     if(options & RRDR_OPTION_MILLISECONDS) {
494         if(count++) buffer_strcat(wb, " ");
495         buffer_strcat(wb, "ms");
496     }
497
498     if(options & RRDR_OPTION_ABSOLUTE) {
499         if(count++) buffer_strcat(wb, " ");
500         buffer_strcat(wb, "absolute");
501     }
502
503     if(options & RRDR_OPTION_SECONDS) {
504         if(count++) buffer_strcat(wb, " ");
505         buffer_strcat(wb, "seconds");
506     }
507
508     if(options & RRDR_OPTION_NULL2ZERO) {
509         if(count++) buffer_strcat(wb, " ");
510         buffer_strcat(wb, "null2zero");
511     }
512
513     if(options & RRDR_OPTION_OBJECTSROWS) {
514         if(count++) buffer_strcat(wb, " ");
515         buffer_strcat(wb, "objectrows");
516     }
517
518     if(options & RRDR_OPTION_GOOGLE_JSON) {
519         if(count++) buffer_strcat(wb, " ");
520         buffer_strcat(wb, "google_json");
521     }
522
523     if(options & RRDR_OPTION_PERCENTAGE) {
524         if(count++) buffer_strcat(wb, " ");
525         buffer_strcat(wb, "percentage");
526     }
527
528     if(options & RRDR_OPTION_NOT_ALIGNED) {
529         if(count++) buffer_strcat(wb, " ");
530         buffer_strcat(wb, "unaligned");
531     }
532 }
533
534 uint32_t web_client_api_request_v1_data_options(char *o)
535 {
536     uint32_t ret = 0x00000000;
537     char *tok;
538
539     while(o && *o && (tok = mystrsep(&o, ", |"))) {
540         if(!*tok) continue;
541
542         if(!strcmp(tok, "nonzero"))
543             ret |= RRDR_OPTION_NONZERO;
544         else if(!strcmp(tok, "flip") || !strcmp(tok, "reversed") || !strcmp(tok, "reverse"))
545             ret |= RRDR_OPTION_REVERSED;
546         else if(!strcmp(tok, "jsonwrap"))
547             ret |= RRDR_OPTION_JSON_WRAP;
548         else if(!strcmp(tok, "min2max"))
549             ret |= RRDR_OPTION_MIN2MAX;
550         else if(!strcmp(tok, "ms") || !strcmp(tok, "milliseconds"))
551             ret |= RRDR_OPTION_MILLISECONDS;
552         else if(!strcmp(tok, "abs") || !strcmp(tok, "absolute") || !strcmp(tok, "absolute_sum") || !strcmp(tok, "absolute-sum"))
553             ret |= RRDR_OPTION_ABSOLUTE;
554         else if(!strcmp(tok, "seconds"))
555             ret |= RRDR_OPTION_SECONDS;
556         else if(!strcmp(tok, "null2zero"))
557             ret |= RRDR_OPTION_NULL2ZERO;
558         else if(!strcmp(tok, "objectrows"))
559             ret |= RRDR_OPTION_OBJECTSROWS;
560         else if(!strcmp(tok, "google_json"))
561             ret |= RRDR_OPTION_GOOGLE_JSON;
562         else if(!strcmp(tok, "percentage"))
563             ret |= RRDR_OPTION_PERCENTAGE;
564         else if(!strcmp(tok, "unaligned"))
565             ret |= RRDR_OPTION_NOT_ALIGNED;
566     }
567
568     return ret;
569 }
570
571 uint32_t web_client_api_request_v1_data_format(char *name)
572 {
573     if(!strcmp(name, DATASOURCE_FORMAT_DATATABLE_JSON)) // datatable
574         return DATASOURCE_DATATABLE_JSON;
575
576     else if(!strcmp(name, DATASOURCE_FORMAT_DATATABLE_JSONP)) // datasource
577         return DATASOURCE_DATATABLE_JSONP;
578
579     else if(!strcmp(name, DATASOURCE_FORMAT_JSON)) // json
580         return DATASOURCE_JSON;
581
582     else if(!strcmp(name, DATASOURCE_FORMAT_JSONP)) // jsonp
583         return DATASOURCE_JSONP;
584
585     else if(!strcmp(name, DATASOURCE_FORMAT_SSV)) // ssv
586         return DATASOURCE_SSV;
587
588     else if(!strcmp(name, DATASOURCE_FORMAT_CSV)) // csv
589         return DATASOURCE_CSV;
590
591     else if(!strcmp(name, DATASOURCE_FORMAT_TSV) || !strcmp(name, "tsv-excel")) // tsv
592         return DATASOURCE_TSV;
593
594     else if(!strcmp(name, DATASOURCE_FORMAT_HTML)) // html
595         return DATASOURCE_HTML;
596
597     else if(!strcmp(name, DATASOURCE_FORMAT_JS_ARRAY)) // array
598         return DATASOURCE_JS_ARRAY;
599
600     else if(!strcmp(name, DATASOURCE_FORMAT_SSV_COMMA)) // ssvcomma
601         return DATASOURCE_SSV_COMMA;
602
603     else if(!strcmp(name, DATASOURCE_FORMAT_CSV_JSON_ARRAY)) // csvjsonarray
604         return DATASOURCE_CSV_JSON_ARRAY;
605
606     return DATASOURCE_JSON;
607 }
608
609 uint32_t web_client_api_request_v1_data_google_format(char *name)
610 {
611     if(!strcmp(name, "json"))
612         return DATASOURCE_DATATABLE_JSONP;
613
614     else if(!strcmp(name, "html"))
615         return DATASOURCE_HTML;
616
617     else if(!strcmp(name, "csv"))
618         return DATASOURCE_CSV;
619
620     else if(!strcmp(name, "tsv-excel"))
621         return DATASOURCE_TSV;
622
623     return DATASOURCE_JSON;
624 }
625
626 const char *group_method2string(int group) {
627     switch(group) {
628         case GROUP_UNDEFINED:
629             return "";
630
631         case GROUP_AVERAGE:
632             return "average";
633
634         case GROUP_MIN:
635             return "min";
636
637         case GROUP_MAX:
638             return "max";
639
640         case GROUP_SUM:
641             return "sum";
642
643         case GROUP_INCREMENTAL_SUM:
644             return "incremental-sum";
645
646         default:
647             return "unknown-group-method";
648     }
649 }
650
651 int web_client_api_request_v1_data_group(char *name, int def)
652 {
653     if(!strcmp(name, "average"))
654         return GROUP_AVERAGE;
655
656     else if(!strcmp(name, "min"))
657         return GROUP_MIN;
658
659     else if(!strcmp(name, "max"))
660         return GROUP_MAX;
661
662     else if(!strcmp(name, "sum"))
663         return GROUP_SUM;
664
665     else if(!strcmp(name, "incremental-sum"))
666         return GROUP_INCREMENTAL_SUM;
667
668     return def;
669 }
670
671 int web_client_api_request_v1_alarms(RRDHOST *host, struct web_client *w, char *url)
672 {
673     int all = 0;
674
675     while(url) {
676         char *value = mystrsep(&url, "?&");
677         if (!value || !*value) continue;
678
679         if(!strcmp(value, "all")) all = 1;
680         else if(!strcmp(value, "active")) all = 0;
681     }
682
683     buffer_flush(w->response.data);
684     w->response.data->contenttype = CT_APPLICATION_JSON;
685     health_alarms2json(host, w->response.data, all);
686     return 200;
687 }
688
689 int web_client_api_request_v1_alarm_log(RRDHOST *host, struct web_client *w, char *url)
690 {
691     uint32_t after = 0;
692
693     while(url) {
694         char *value = mystrsep(&url, "?&");
695         if (!value || !*value) continue;
696
697         char *name = mystrsep(&value, "=");
698         if(!name || !*name) continue;
699         if(!value || !*value) continue;
700
701         if(!strcmp(name, "after")) after = (uint32_t)strtoul(value, NULL, 0);
702     }
703
704     buffer_flush(w->response.data);
705     w->response.data->contenttype = CT_APPLICATION_JSON;
706     health_alarm_log2json(host, w->response.data, after);
707     return 200;
708 }
709
710 int web_client_api_request_single_chart(RRDHOST *host, struct web_client *w, char *url, void callback(RRDSET *st, BUFFER *buf))
711 {
712     int ret = 400;
713     char *chart = NULL;
714
715     buffer_flush(w->response.data);
716
717     while(url) {
718         char *value = mystrsep(&url, "?&");
719         if(!value || !*value) continue;
720
721         char *name = mystrsep(&value, "=");
722         if(!name || !*name) continue;
723         if(!value || !*value) continue;
724
725         // name and value are now the parameters
726         // they are not null and not empty
727
728         if(!strcmp(name, "chart")) chart = value;
729         //else {
730         /// buffer_sprintf(w->response.data, "Unknown parameter '%s' in request.", name);
731         //  goto cleanup;
732         //}
733     }
734
735     if(!chart || !*chart) {
736         buffer_sprintf(w->response.data, "No chart id is given at the request.");
737         goto cleanup;
738     }
739
740     RRDSET *st = rrdset_find(host, chart);
741     if(!st) st = rrdset_find_byname(host, chart);
742     if(!st) {
743         buffer_strcat(w->response.data, "Chart is not found: ");
744         buffer_strcat_htmlescape(w->response.data, chart);
745         ret = 404;
746         goto cleanup;
747     }
748
749     w->response.data->contenttype = CT_APPLICATION_JSON;
750     callback(st, w->response.data);
751     return 200;
752
753     cleanup:
754     return ret;
755 }
756
757 int web_client_api_request_v1_alarm_variables(RRDHOST *host, struct web_client *w, char *url)
758 {
759     return web_client_api_request_single_chart(host, w, url, health_api_v1_chart_variables2json);
760 }
761
762 int web_client_api_request_v1_charts(RRDHOST *host, struct web_client *w, char *url)
763 {
764     (void)url;
765
766     buffer_flush(w->response.data);
767     w->response.data->contenttype = CT_APPLICATION_JSON;
768     rrd_stats_api_v1_charts(host, w->response.data);
769     return 200;
770 }
771
772 int web_client_api_request_v1_allmetrics(RRDHOST *host, struct web_client *w, char *url)
773 {
774     int format = ALLMETRICS_SHELL;
775
776     while(url) {
777         char *value = mystrsep(&url, "?&");
778         if (!value || !*value) continue;
779
780         char *name = mystrsep(&value, "=");
781         if(!name || !*name) continue;
782         if(!value || !*value) continue;
783
784         if(!strcmp(name, "format")) {
785             if(!strcmp(value, ALLMETRICS_FORMAT_SHELL))
786                 format = ALLMETRICS_SHELL;
787             else if(!strcmp(value, ALLMETRICS_FORMAT_PROMETHEUS))
788                 format = ALLMETRICS_PROMETHEUS;
789             else
790                 format = 0;
791         }
792     }
793
794     buffer_flush(w->response.data);
795     buffer_no_cacheable(w->response.data);
796
797     switch(format) {
798         case ALLMETRICS_SHELL:
799             w->response.data->contenttype = CT_TEXT_PLAIN;
800             rrd_stats_api_v1_charts_allmetrics_shell(host, w->response.data);
801             return 200;
802
803         case ALLMETRICS_PROMETHEUS:
804             w->response.data->contenttype = CT_PROMETHEUS;
805             rrd_stats_api_v1_charts_allmetrics_prometheus(host, w->response.data);
806             return 200;
807
808         default:
809             w->response.data->contenttype = CT_TEXT_PLAIN;
810             buffer_strcat(w->response.data, "Which format? Only '" ALLMETRICS_FORMAT_SHELL "' and '" ALLMETRICS_FORMAT_PROMETHEUS "' is currently supported.");
811             return 400;
812     }
813 }
814
815 int web_client_api_request_v1_chart(RRDHOST *host, struct web_client *w, char *url)
816 {
817     return web_client_api_request_single_chart(host, w, url, rrd_stats_api_v1_chart);
818 }
819
820 int web_client_api_request_v1_badge(RRDHOST *host, struct web_client *w, char *url) {
821     int ret = 400;
822     buffer_flush(w->response.data);
823
824     BUFFER *dimensions = NULL;
825     
826     const char *chart = NULL
827             , *before_str = NULL
828             , *after_str = NULL
829             , *points_str = NULL
830             , *multiply_str = NULL
831             , *divide_str = NULL
832             , *label = NULL
833             , *units = NULL
834             , *label_color = NULL
835             , *value_color = NULL
836             , *refresh_str = NULL
837             , *precision_str = NULL
838             , *alarm = NULL;
839
840     int group = GROUP_AVERAGE;
841     uint32_t options = 0x00000000;
842
843     while(url) {
844         char *value = mystrsep(&url, "/?&");
845         if(!value || !*value) continue;
846
847         char *name = mystrsep(&value, "=");
848         if(!name || !*name) continue;
849         if(!value || !*value) continue;
850
851         debug(D_WEB_CLIENT, "%llu: API v1 badge.svg query param '%s' with value '%s'", w->id, name, value);
852
853         // name and value are now the parameters
854         // they are not null and not empty
855
856         if(!strcmp(name, "chart")) chart = value;
857         else if(!strcmp(name, "dimension") || !strcmp(name, "dim") || !strcmp(name, "dimensions") || !strcmp(name, "dims")) {
858             if(!dimensions)
859                 dimensions = buffer_create(100);
860
861             buffer_strcat(dimensions, "|");
862             buffer_strcat(dimensions, value);
863         }
864         else if(!strcmp(name, "after")) after_str = value;
865         else if(!strcmp(name, "before")) before_str = value;
866         else if(!strcmp(name, "points")) points_str = value;
867         else if(!strcmp(name, "group")) {
868             group = web_client_api_request_v1_data_group(value, GROUP_AVERAGE);
869         }
870         else if(!strcmp(name, "options")) {
871             options |= web_client_api_request_v1_data_options(value);
872         }
873         else if(!strcmp(name, "label")) label = value;
874         else if(!strcmp(name, "units")) units = value;
875         else if(!strcmp(name, "label_color")) label_color = value;
876         else if(!strcmp(name, "value_color")) value_color = value;
877         else if(!strcmp(name, "multiply")) multiply_str = value;
878         else if(!strcmp(name, "divide")) divide_str = value;
879         else if(!strcmp(name, "refresh")) refresh_str = value;
880         else if(!strcmp(name, "precision")) precision_str = value;
881         else if(!strcmp(name, "alarm")) alarm = value;
882     }
883
884     if(!chart || !*chart) {
885         buffer_no_cacheable(w->response.data);
886         buffer_sprintf(w->response.data, "No chart id is given at the request.");
887         goto cleanup;
888     }
889
890     RRDSET *st = rrdset_find(host, chart);
891     if(!st) st = rrdset_find_byname(host, chart);
892     if(!st) {
893         buffer_no_cacheable(w->response.data);
894         buffer_svg(w->response.data, "chart not found", NAN, "", NULL, NULL, -1);
895         ret = 200;
896         goto cleanup;
897     }
898
899     RRDCALC *rc = NULL;
900     if(alarm) {
901         rc = rrdcalc_find(st, alarm);
902         if (!rc) {
903             buffer_no_cacheable(w->response.data);
904             buffer_svg(w->response.data, "alarm not found", NAN, "", NULL, NULL, -1);
905             ret = 200;
906             goto cleanup;
907         }
908     }
909
910     long long multiply  = (multiply_str  && *multiply_str )?str2l(multiply_str):1;
911     long long divide    = (divide_str    && *divide_str   )?str2l(divide_str):1;
912     long long before    = (before_str    && *before_str   )?str2l(before_str):0;
913     long long after     = (after_str     && *after_str    )?str2l(after_str):-st->update_every;
914     int       points    = (points_str    && *points_str   )?str2i(points_str):1;
915     int       precision = (precision_str && *precision_str)?str2i(precision_str):-1;
916
917     if(!multiply) multiply = 1;
918     if(!divide) divide = 1;
919
920     int refresh = 0;
921     if(refresh_str && *refresh_str) {
922         if(!strcmp(refresh_str, "auto")) {
923             if(rc) refresh = rc->update_every;
924             else if(options & RRDR_OPTION_NOT_ALIGNED)
925                 refresh = st->update_every;
926             else {
927                 refresh = (int)(before - after);
928                 if(refresh < 0) refresh = -refresh;
929             }
930         }
931         else {
932             refresh = str2i(refresh_str);
933             if(refresh < 0) refresh = -refresh;
934         }
935     }
936
937     if(!label) {
938         if(alarm) {
939             char *s = (char *)alarm;
940             while(*s) {
941                 if(*s == '_') *s = ' ';
942                 s++;
943             }
944             label = alarm;
945         }
946         else if(dimensions) {
947             const char *dim = buffer_tostring(dimensions);
948             if(*dim == '|') dim++;
949             label = dim;
950         }
951         else
952             label = st->name;
953     }
954     if(!units) {
955         if(alarm) {
956             if(rc->units)
957                 units = rc->units;
958             else
959                 units = "";
960         }
961         else if(options & RRDR_OPTION_PERCENTAGE)
962             units = "%";
963         else
964             units = st->units;
965     }
966
967     debug(D_WEB_CLIENT, "%llu: API command 'badge.svg' for chart '%s', alarm '%s', dimensions '%s', after '%lld', before '%lld', points '%d', group '%d', options '0x%08x'"
968             , w->id
969             , chart
970             , alarm?alarm:""
971             , (dimensions)?buffer_tostring(dimensions):""
972             , after
973             , before
974             , points
975             , group
976             , options
977             );
978
979     if(rc) {
980         if (refresh > 0) {
981             buffer_sprintf(w->response.header, "Refresh: %d\r\n", refresh);
982             w->response.data->expires = now_realtime_sec() + refresh;
983         }
984         else buffer_no_cacheable(w->response.data);
985
986         if(!value_color) {
987             switch(rc->status) {
988                 case RRDCALC_STATUS_CRITICAL:
989                     value_color = "red";
990                     break;
991
992                 case RRDCALC_STATUS_WARNING:
993                     value_color = "orange";
994                     break;
995
996                 case RRDCALC_STATUS_CLEAR:
997                     value_color = "brightgreen";
998                     break;
999
1000                 case RRDCALC_STATUS_UNDEFINED:
1001                     value_color = "lightgrey";
1002                     break;
1003
1004                 case RRDCALC_STATUS_UNINITIALIZED:
1005                     value_color = "#000";
1006                     break;
1007
1008                 default:
1009                     value_color = "grey";
1010                     break;
1011             }
1012         }
1013
1014         buffer_svg(w->response.data,
1015                 label,
1016                 (isnan(rc->value)||isinf(rc->value)) ? rc->value : rc->value * multiply / divide,
1017                 units,
1018                 label_color,
1019                 value_color,
1020                 precision);
1021         ret = 200;
1022     }
1023     else {
1024         time_t latest_timestamp = 0;
1025         int value_is_null = 1;
1026         calculated_number n = NAN;
1027         ret = 500;
1028
1029         // if the collected value is too old, don't calculate its value
1030         if (rrdset_last_entry_t(st) >= (now_realtime_sec() - (st->update_every * st->gap_when_lost_iterations_above)))
1031             ret = rrd2value(st,
1032                             w->response.data,
1033                             &n,
1034                             (dimensions) ? buffer_tostring(dimensions) : NULL,
1035                             points,
1036                             after,
1037                             before,
1038                             group,
1039                             options,
1040                             NULL,
1041                             &latest_timestamp,
1042                             &value_is_null);
1043
1044         // if the value cannot be calculated, show empty badge
1045         if (ret != 200) {
1046             buffer_no_cacheable(w->response.data);
1047             value_is_null = 1;
1048             n = 0;
1049             ret = 200;
1050         }
1051         else if (refresh > 0) {
1052             buffer_sprintf(w->response.header, "Refresh: %d\r\n", refresh);
1053             w->response.data->expires = now_realtime_sec() + refresh;
1054         }
1055         else buffer_no_cacheable(w->response.data);
1056
1057         // render the badge
1058         buffer_svg(w->response.data,
1059                 label,
1060                 (value_is_null)?NAN:(n * multiply / divide),
1061                 units,
1062                 label_color,
1063                 value_color,
1064                 precision);
1065     }
1066
1067 cleanup:
1068     buffer_free(dimensions);
1069     return ret;
1070 }
1071
1072 // returns the HTTP code
1073 int web_client_api_request_v1_data(RRDHOST *host, struct web_client *w, char *url)
1074 {
1075     debug(D_WEB_CLIENT, "%llu: API v1 data with URL '%s'", w->id, url);
1076
1077     int ret = 400;
1078     BUFFER *dimensions = NULL;
1079
1080     buffer_flush(w->response.data);
1081
1082     char    *google_version = "0.6",
1083             *google_reqId = "0",
1084             *google_sig = "0",
1085             *google_out = "json",
1086             *responseHandler = NULL,
1087             *outFileName = NULL;
1088
1089     time_t last_timestamp_in_data = 0, google_timestamp = 0;
1090
1091     char *chart = NULL
1092             , *before_str = NULL
1093             , *after_str = NULL
1094             , *points_str = NULL;
1095
1096     int group = GROUP_AVERAGE;
1097     uint32_t format = DATASOURCE_JSON;
1098     uint32_t options = 0x00000000;
1099
1100     while(url) {
1101         char *value = mystrsep(&url, "?&");
1102         if(!value || !*value) continue;
1103
1104         char *name = mystrsep(&value, "=");
1105         if(!name || !*name) continue;
1106         if(!value || !*value) continue;
1107
1108         debug(D_WEB_CLIENT, "%llu: API v1 data query param '%s' with value '%s'", w->id, name, value);
1109
1110         // name and value are now the parameters
1111         // they are not null and not empty
1112
1113         if(!strcmp(name, "chart")) chart = value;
1114         else if(!strcmp(name, "dimension") || !strcmp(name, "dim") || !strcmp(name, "dimensions") || !strcmp(name, "dims")) {
1115             if(!dimensions) dimensions = buffer_create(100);
1116             buffer_strcat(dimensions, "|");
1117             buffer_strcat(dimensions, value);
1118         }
1119         else if(!strcmp(name, "after")) after_str = value;
1120         else if(!strcmp(name, "before")) before_str = value;
1121         else if(!strcmp(name, "points")) points_str = value;
1122         else if(!strcmp(name, "group")) {
1123             group = web_client_api_request_v1_data_group(value, GROUP_AVERAGE);
1124         }
1125         else if(!strcmp(name, "format")) {
1126             format = web_client_api_request_v1_data_format(value);
1127         }
1128         else if(!strcmp(name, "options")) {
1129             options |= web_client_api_request_v1_data_options(value);
1130         }
1131         else if(!strcmp(name, "callback")) {
1132             responseHandler = value;
1133         }
1134         else if(!strcmp(name, "filename")) {
1135             outFileName = value;
1136         }
1137         else if(!strcmp(name, "tqx")) {
1138             // parse Google Visualization API options
1139             // https://developers.google.com/chart/interactive/docs/dev/implementing_data_source
1140             char *tqx_name, *tqx_value;
1141
1142             while(value) {
1143                 tqx_value = mystrsep(&value, ";");
1144                 if(!tqx_value || !*tqx_value) continue;
1145
1146                 tqx_name = mystrsep(&tqx_value, ":");
1147                 if(!tqx_name || !*tqx_name) continue;
1148                 if(!tqx_value || !*tqx_value) continue;
1149
1150                 if(!strcmp(tqx_name, "version"))
1151                     google_version = tqx_value;
1152                 else if(!strcmp(tqx_name, "reqId"))
1153                     google_reqId = tqx_value;
1154                 else if(!strcmp(tqx_name, "sig")) {
1155                     google_sig = tqx_value;
1156                     google_timestamp = strtoul(google_sig, NULL, 0);
1157                 }
1158                 else if(!strcmp(tqx_name, "out")) {
1159                     google_out = tqx_value;
1160                     format = web_client_api_request_v1_data_google_format(google_out);
1161                 }
1162                 else if(!strcmp(tqx_name, "responseHandler"))
1163                     responseHandler = tqx_value;
1164                 else if(!strcmp(tqx_name, "outFileName"))
1165                     outFileName = tqx_value;
1166             }
1167         }
1168     }
1169
1170     if(!chart || !*chart) {
1171         buffer_sprintf(w->response.data, "No chart id is given at the request.");
1172         goto cleanup;
1173     }
1174
1175     RRDSET *st = rrdset_find(host, chart);
1176     if(!st) st = rrdset_find_byname(host, chart);
1177     if(!st) {
1178         buffer_strcat(w->response.data, "Chart is not found: ");
1179         buffer_strcat_htmlescape(w->response.data, chart);
1180         ret = 404;
1181         goto cleanup;
1182     }
1183
1184     long long before = (before_str && *before_str)?str2l(before_str):0;
1185     long long after  = (after_str  && *after_str) ?str2l(after_str):0;
1186     int       points = (points_str && *points_str)?str2i(points_str):0;
1187
1188     debug(D_WEB_CLIENT, "%llu: API command 'data' for chart '%s', dimensions '%s', after '%lld', before '%lld', points '%d', group '%d', format '%u', options '0x%08x'"
1189             , w->id
1190             , chart
1191             , (dimensions)?buffer_tostring(dimensions):""
1192             , after
1193             , before
1194             , points
1195             , group
1196             , format
1197             , options
1198             );
1199
1200     if(outFileName && *outFileName) {
1201         buffer_sprintf(w->response.header, "Content-Disposition: attachment; filename=\"%s\"\r\n", outFileName);
1202         debug(D_WEB_CLIENT, "%llu: generating outfilename header: '%s'", w->id, outFileName);
1203     }
1204
1205     if(format == DATASOURCE_DATATABLE_JSONP) {
1206         if(responseHandler == NULL)
1207             responseHandler = "google.visualization.Query.setResponse";
1208
1209         debug(D_WEB_CLIENT_ACCESS, "%llu: GOOGLE JSON/JSONP: version = '%s', reqId = '%s', sig = '%s', out = '%s', responseHandler = '%s', outFileName = '%s'",
1210                 w->id, google_version, google_reqId, google_sig, google_out, responseHandler, outFileName
1211             );
1212
1213         buffer_sprintf(w->response.data,
1214             "%s({version:'%s',reqId:'%s',status:'ok',sig:'%ld',table:",
1215             responseHandler, google_version, google_reqId, st->last_updated.tv_sec);
1216     }
1217     else if(format == DATASOURCE_JSONP) {
1218         if(responseHandler == NULL)
1219             responseHandler = "callback";
1220
1221         buffer_strcat(w->response.data, responseHandler);
1222         buffer_strcat(w->response.data, "(");
1223     }
1224
1225     ret = rrd2format(st, w->response.data, dimensions, format, points, after, before, group, options, &last_timestamp_in_data);
1226
1227     if(format == DATASOURCE_DATATABLE_JSONP) {
1228         if(google_timestamp < last_timestamp_in_data)
1229             buffer_strcat(w->response.data, "});");
1230
1231         else {
1232             // the client already has the latest data
1233             buffer_flush(w->response.data);
1234             buffer_sprintf(w->response.data,
1235                 "%s({version:'%s',reqId:'%s',status:'error',errors:[{reason:'not_modified',message:'Data not modified'}]});",
1236                 responseHandler, google_version, google_reqId);
1237         }
1238     }
1239     else if(format == DATASOURCE_JSONP)
1240         buffer_strcat(w->response.data, ");");
1241
1242 cleanup:
1243     buffer_free(dimensions);
1244     return ret;
1245 }
1246
1247
1248 int web_client_api_request_v1_registry(RRDHOST *host, struct web_client *w, char *url)
1249 {
1250     static uint32_t hash_action = 0, hash_access = 0, hash_hello = 0, hash_delete = 0, hash_search = 0,
1251             hash_switch = 0, hash_machine = 0, hash_url = 0, hash_name = 0, hash_delete_url = 0, hash_for = 0,
1252             hash_to = 0 /*, hash_redirects = 0 */;
1253
1254     if(unlikely(!hash_action)) {
1255         hash_action = simple_hash("action");
1256         hash_access = simple_hash("access");
1257         hash_hello = simple_hash("hello");
1258         hash_delete = simple_hash("delete");
1259         hash_search = simple_hash("search");
1260         hash_switch = simple_hash("switch");
1261         hash_machine = simple_hash("machine");
1262         hash_url = simple_hash("url");
1263         hash_name = simple_hash("name");
1264         hash_delete_url = simple_hash("delete_url");
1265         hash_for = simple_hash("for");
1266         hash_to = simple_hash("to");
1267 /*
1268         hash_redirects = simple_hash("redirects");
1269 */
1270     }
1271
1272     char person_guid[GUID_LEN + 1] = "";
1273
1274     debug(D_WEB_CLIENT, "%llu: API v1 registry with URL '%s'", w->id, url);
1275
1276     // FIXME
1277     // The browser may send multiple cookies with our id
1278     
1279     char *cookie = strstr(w->response.data->buffer, NETDATA_REGISTRY_COOKIE_NAME "=");
1280     if(cookie)
1281         strncpyz(person_guid, &cookie[sizeof(NETDATA_REGISTRY_COOKIE_NAME)], 36);
1282
1283     char action = '\0';
1284     char *machine_guid = NULL,
1285             *machine_url = NULL,
1286             *url_name = NULL,
1287             *search_machine_guid = NULL,
1288             *delete_url = NULL,
1289             *to_person_guid = NULL;
1290 /*
1291     int redirects = 0;
1292 */
1293
1294     while(url) {
1295         char *value = mystrsep(&url, "?&");
1296         if (!value || !*value) continue;
1297
1298         char *name = mystrsep(&value, "=");
1299         if (!name || !*name) continue;
1300         if (!value || !*value) continue;
1301
1302         debug(D_WEB_CLIENT, "%llu: API v1 registry query param '%s' with value '%s'", w->id, name, value);
1303
1304         uint32_t hash = simple_hash(name);
1305
1306         if(hash == hash_action && !strcmp(name, "action")) {
1307             uint32_t vhash = simple_hash(value);
1308
1309             if(vhash == hash_access && !strcmp(value, "access")) action = 'A';
1310             else if(vhash == hash_hello && !strcmp(value, "hello")) action = 'H';
1311             else if(vhash == hash_delete && !strcmp(value, "delete")) action = 'D';
1312             else if(vhash == hash_search && !strcmp(value, "search")) action = 'S';
1313             else if(vhash == hash_switch && !strcmp(value, "switch")) action = 'W';
1314 #ifdef NETDATA_INTERNAL_CHECKS
1315             else error("unknown registry action '%s'", value);
1316 #endif /* NETDATA_INTERNAL_CHECKS */
1317         }
1318 /*
1319         else if(hash == hash_redirects && !strcmp(name, "redirects"))
1320             redirects = atoi(value);
1321 */
1322         else if(hash == hash_machine && !strcmp(name, "machine"))
1323             machine_guid = value;
1324
1325         else if(hash == hash_url && !strcmp(name, "url"))
1326             machine_url = value;
1327
1328         else if(action == 'A') {
1329             if(hash == hash_name && !strcmp(name, "name"))
1330                 url_name = value;
1331         }
1332         else if(action == 'D') {
1333             if(hash == hash_delete_url && !strcmp(name, "delete_url"))
1334                 delete_url = value;
1335         }
1336         else if(action == 'S') {
1337             if(hash == hash_for && !strcmp(name, "for"))
1338                 search_machine_guid = value;
1339         }
1340         else if(action == 'W') {
1341             if(hash == hash_to && !strcmp(name, "to"))
1342                 to_person_guid = value;
1343         }
1344 #ifdef NETDATA_INTERNAL_CHECKS
1345         else error("unused registry URL parameter '%s' with value '%s'", name, value);
1346 #endif /* NETDATA_INTERNAL_CHECKS */
1347     }
1348
1349     if(respect_web_browser_do_not_track_policy && w->donottrack) {
1350         buffer_flush(w->response.data);
1351         buffer_sprintf(w->response.data, "Your web browser is sending 'DNT: 1' (Do Not Track). The registry requires persistent cookies on your browser to work.");
1352         return 400;
1353     }
1354
1355     if(action == 'A' && (!machine_guid || !machine_url || !url_name)) {
1356         error("Invalid registry request - access requires these parameters: machine ('%s'), url ('%s'), name ('%s')",
1357                 machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", url_name?url_name:"UNSET");
1358         buffer_flush(w->response.data);
1359         buffer_strcat(w->response.data, "Invalid registry Access request.");
1360         return 400;
1361     }
1362     else if(action == 'D' && (!machine_guid || !machine_url || !delete_url)) {
1363         error("Invalid registry request - delete requires these parameters: machine ('%s'), url ('%s'), delete_url ('%s')",
1364                 machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", delete_url?delete_url:"UNSET");
1365         buffer_flush(w->response.data);
1366         buffer_strcat(w->response.data, "Invalid registry Delete request.");
1367         return 400;
1368     }
1369     else if(action == 'S' && (!machine_guid || !machine_url || !search_machine_guid)) {
1370         error("Invalid registry request - search requires these parameters: machine ('%s'), url ('%s'), for ('%s')",
1371                 machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", search_machine_guid?search_machine_guid:"UNSET");
1372         buffer_flush(w->response.data);
1373         buffer_strcat(w->response.data, "Invalid registry Search request.");
1374         return 400;
1375     }
1376     else if(action == 'W' && (!machine_guid || !machine_url || !to_person_guid)) {
1377         error("Invalid registry request - switching identity requires these parameters: machine ('%s'), url ('%s'), to ('%s')",
1378                 machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", to_person_guid?to_person_guid:"UNSET");
1379         buffer_flush(w->response.data);
1380         buffer_strcat(w->response.data, "Invalid registry Switch request.");
1381         return 400;
1382     }
1383
1384     switch(action) {
1385         case 'A':
1386             w->tracking_required = 1;
1387             return registry_request_access_json(host, w, person_guid, machine_guid, machine_url, url_name, now_realtime_sec());
1388
1389         case 'D':
1390             w->tracking_required = 1;
1391             return registry_request_delete_json(host, w, person_guid, machine_guid, machine_url, delete_url, now_realtime_sec());
1392
1393         case 'S':
1394             w->tracking_required = 1;
1395             return registry_request_search_json(host, w, person_guid, machine_guid, machine_url, search_machine_guid, now_realtime_sec());
1396
1397         case 'W':
1398             w->tracking_required = 1;
1399             return registry_request_switch_json(host, w, person_guid, machine_guid, machine_url, to_person_guid, now_realtime_sec());
1400
1401         case 'H':
1402             return registry_request_hello_json(host, w);
1403
1404         default:
1405             buffer_flush(w->response.data);
1406             buffer_strcat(w->response.data, "Invalid registry request - you need to set an action: hello, access, delete, search");
1407             return 400;
1408     }
1409 }
1410
1411 int web_client_api_request_v1(RRDHOST *host, struct web_client *w, char *url) {
1412     static uint32_t hash_data = 0, hash_chart = 0, hash_charts = 0, hash_registry = 0, hash_badge = 0, hash_alarms = 0, hash_alarm_log = 0, hash_alarm_variables = 0, hash_raw = 0;
1413
1414     if(unlikely(hash_data == 0)) {
1415         hash_data = simple_hash("data");
1416         hash_chart = simple_hash("chart");
1417         hash_charts = simple_hash("charts");
1418         hash_registry = simple_hash("registry");
1419         hash_badge = simple_hash("badge.svg");
1420         hash_alarms = simple_hash("alarms");
1421         hash_alarm_log = simple_hash("alarm_log");
1422         hash_alarm_variables = simple_hash("alarm_variables");
1423         hash_raw = simple_hash("allmetrics");
1424     }
1425
1426     // get the command
1427     char *tok = mystrsep(&url, "/?&");
1428     if(tok && *tok) {
1429         debug(D_WEB_CLIENT, "%llu: Searching for API v1 command '%s'.", w->id, tok);
1430         uint32_t hash = simple_hash(tok);
1431
1432         if(hash == hash_data && !strcmp(tok, "data"))
1433             return web_client_api_request_v1_data(host, w, url);
1434
1435         else if(hash == hash_chart && !strcmp(tok, "chart"))
1436             return web_client_api_request_v1_chart(host, w, url);
1437
1438         else if(hash == hash_charts && !strcmp(tok, "charts"))
1439             return web_client_api_request_v1_charts(host, w, url);
1440
1441         else if(hash == hash_registry && !strcmp(tok, "registry"))
1442             return web_client_api_request_v1_registry(host, w, url);
1443
1444         else if(hash == hash_badge && !strcmp(tok, "badge.svg"))
1445             return web_client_api_request_v1_badge(host, w, url);
1446
1447         else if(hash == hash_alarms && !strcmp(tok, "alarms"))
1448             return web_client_api_request_v1_alarms(host, w, url);
1449
1450         else if(hash == hash_alarm_log && !strcmp(tok, "alarm_log"))
1451             return web_client_api_request_v1_alarm_log(host, w, url);
1452
1453         else if(hash == hash_alarm_variables && !strcmp(tok, "alarm_variables"))
1454             return web_client_api_request_v1_alarm_variables(host, w, url);
1455
1456         else if(hash == hash_raw && !strcmp(tok, "allmetrics"))
1457             return web_client_api_request_v1_allmetrics(host, w, url);
1458
1459         else {
1460             buffer_flush(w->response.data);
1461             buffer_strcat(w->response.data, "Unsupported v1 API command: ");
1462             buffer_strcat_htmlescape(w->response.data, tok);
1463             return 404;
1464         }
1465     }
1466     else {
1467         buffer_flush(w->response.data);
1468         buffer_sprintf(w->response.data, "Which API v1 command?");
1469         return 400;
1470     }
1471 }
1472
1473 int web_client_api_request(RRDHOST *host, struct web_client *w, char *url)
1474 {
1475     // get the api version
1476     char *tok = mystrsep(&url, "/?&");
1477     if(tok && *tok) {
1478         debug(D_WEB_CLIENT, "%llu: Searching for API version '%s'.", w->id, tok);
1479         if(strcmp(tok, "v1") == 0)
1480             return web_client_api_request_v1(host, w, url);
1481         else {
1482             buffer_flush(w->response.data);
1483             buffer_strcat(w->response.data, "Unsupported API version: ");
1484             buffer_strcat_htmlescape(w->response.data, tok);
1485             return 404;
1486         }
1487     }
1488     else {
1489         buffer_flush(w->response.data);
1490         buffer_sprintf(w->response.data, "Which API version?");
1491         return 400;
1492     }
1493 }
1494
1495 int web_client_api_old_data_request(RRDHOST *host, struct web_client *w, char *url, int datasource_type)
1496 {
1497     if(!url || !*url) {
1498         buffer_flush(w->response.data);
1499         buffer_sprintf(w->response.data, "Incomplete request.");
1500         return 400;
1501     }
1502
1503     RRDSET *st = NULL;
1504
1505     char *args = strchr(url, '?');
1506     if(args) {
1507         *args='\0';
1508         args = &args[1];
1509     }
1510
1511     // get the name of the data to show
1512     char *tok = mystrsep(&url, "/");
1513     if(!tok) tok = "";
1514
1515     // do we have such a data set?
1516     if(*tok) {
1517         debug(D_WEB_CLIENT, "%llu: Searching for RRD data with name '%s'.", w->id, tok);
1518         st = rrdset_find_byname(host, tok);
1519         if(!st) st = rrdset_find(host, tok);
1520     }
1521
1522     if(!st) {
1523         // we don't have it
1524         // try to send a file with that name
1525         buffer_flush(w->response.data);
1526         return(mysendfile(w, tok));
1527     }
1528
1529     // we have it
1530     debug(D_WEB_CLIENT, "%llu: Found RRD data with name '%s'.", w->id, tok);
1531
1532     // how many entries does the client want?
1533     int lines = (int)st->entries;
1534     int group_count = 1;
1535     time_t after = 0, before = 0;
1536     int group_method = GROUP_AVERAGE;
1537     int nonzero = 0;
1538
1539     if(url) {
1540         // parse the lines required
1541         tok = mystrsep(&url, "/");
1542         if(tok) lines = str2i(tok);
1543         if(lines < 1) lines = 1;
1544     }
1545     if(url) {
1546         // parse the group count required
1547         tok = mystrsep(&url, "/");
1548         if(tok && *tok) group_count = str2i(tok);
1549         if(group_count < 1) group_count = 1;
1550         //if(group_count > save_history / 20) group_count = save_history / 20;
1551     }
1552     if(url) {
1553         // parse the grouping method required
1554         tok = mystrsep(&url, "/");
1555         if(tok && *tok) {
1556             if(strcmp(tok, "max") == 0) group_method = GROUP_MAX;
1557             else if(strcmp(tok, "average") == 0) group_method = GROUP_AVERAGE;
1558             else if(strcmp(tok, "sum") == 0) group_method = GROUP_SUM;
1559             else debug(D_WEB_CLIENT, "%llu: Unknown group method '%s'", w->id, tok);
1560         }
1561     }
1562     if(url) {
1563         // parse after time
1564         tok = mystrsep(&url, "/");
1565         if(tok && *tok) after = str2ul(tok);
1566         if(after < 0) after = 0;
1567     }
1568     if(url) {
1569         // parse before time
1570         tok = mystrsep(&url, "/");
1571         if(tok && *tok) before = str2ul(tok);
1572         if(before < 0) before = 0;
1573     }
1574     if(url) {
1575         // parse nonzero
1576         tok = mystrsep(&url, "/");
1577         if(tok && *tok && strcmp(tok, "nonzero") == 0) nonzero = 1;
1578     }
1579
1580     w->response.data->contenttype = CT_APPLICATION_JSON;
1581     buffer_flush(w->response.data);
1582
1583     char *google_version = "0.6";
1584     char *google_reqId = "0";
1585     char *google_sig = "0";
1586     char *google_out = "json";
1587     char *google_responseHandler = "google.visualization.Query.setResponse";
1588     char *google_outFileName = NULL;
1589     time_t last_timestamp_in_data = 0;
1590     if(datasource_type == DATASOURCE_DATATABLE_JSON || datasource_type == DATASOURCE_DATATABLE_JSONP) {
1591
1592         w->response.data->contenttype = CT_APPLICATION_X_JAVASCRIPT;
1593
1594         while(args) {
1595             tok = mystrsep(&args, "&");
1596             if(tok && *tok) {
1597                 char *name = mystrsep(&tok, "=");
1598                 if(name && *name && strcmp(name, "tqx") == 0) {
1599                     char *key = mystrsep(&tok, ":");
1600                     char *value = mystrsep(&tok, ";");
1601                     if(key && value && *key && *value) {
1602                         if(strcmp(key, "version") == 0)
1603                             google_version = value;
1604
1605                         else if(strcmp(key, "reqId") == 0)
1606                             google_reqId = value;
1607
1608                         else if(strcmp(key, "sig") == 0)
1609                             google_sig = value;
1610
1611                         else if(strcmp(key, "out") == 0)
1612                             google_out = value;
1613
1614                         else if(strcmp(key, "responseHandler") == 0)
1615                             google_responseHandler = value;
1616
1617                         else if(strcmp(key, "outFileName") == 0)
1618                             google_outFileName = value;
1619                     }
1620                 }
1621             }
1622         }
1623
1624         debug(D_WEB_CLIENT_ACCESS, "%llu: GOOGLE JSONP: version = '%s', reqId = '%s', sig = '%s', out = '%s', responseHandler = '%s', outFileName = '%s'",
1625             w->id, google_version, google_reqId, google_sig, google_out, google_responseHandler, google_outFileName
1626             );
1627
1628         if(datasource_type == DATASOURCE_DATATABLE_JSONP) {
1629             last_timestamp_in_data = strtoul(google_sig, NULL, 0);
1630
1631             // check the client wants json
1632             if(strcmp(google_out, "json") != 0) {
1633                 buffer_sprintf(w->response.data,
1634                     "%s({version:'%s',reqId:'%s',status:'error',errors:[{reason:'invalid_query',message:'output format is not supported',detailed_message:'the format %s requested is not supported by netdata.'}]});",
1635                     google_responseHandler, google_version, google_reqId, google_out);
1636                     return 200;
1637             }
1638         }
1639     }
1640
1641     if(datasource_type == DATASOURCE_DATATABLE_JSONP) {
1642         buffer_sprintf(w->response.data,
1643             "%s({version:'%s',reqId:'%s',status:'ok',sig:'%ld',table:",
1644             google_responseHandler, google_version, google_reqId, st->last_updated.tv_sec);
1645     }
1646
1647     debug(D_WEB_CLIENT_ACCESS, "%llu: Sending RRD data '%s' (id %s, %d lines, %d group, %d group_method, %ld after, %ld before).",
1648         w->id, st->name, st->id, lines, group_count, group_method, after, before);
1649
1650     time_t timestamp_in_data = rrd_stats_json(datasource_type, st, w->response.data, lines, group_count, group_method, (unsigned long)after, (unsigned long)before, nonzero);
1651
1652     if(datasource_type == DATASOURCE_DATATABLE_JSONP) {
1653         if(timestamp_in_data > last_timestamp_in_data)
1654             buffer_strcat(w->response.data, "});");
1655
1656         else {
1657             // the client already has the latest data
1658             buffer_flush(w->response.data);
1659             buffer_sprintf(w->response.data,
1660                 "%s({version:'%s',reqId:'%s',status:'error',errors:[{reason:'not_modified',message:'Data not modified'}]});",
1661                 google_responseHandler, google_version, google_reqId);
1662         }
1663     }
1664
1665     return 200;
1666 }
1667
1668 int validate_stream_api_key(const char *key) {
1669     if(appconfig_get_boolean(&stream_config, key, "enabled", 0))
1670         return 1;
1671
1672     return 0;
1673 }
1674
1675 int web_client_stream_request(RRDHOST *host, struct web_client *w, char *url) {
1676     char *key = NULL, *hostname = NULL, *machine_guid = NULL, *os = NULL;
1677     int update_every = default_rrd_update_every;
1678     int history = default_rrd_history_entries;
1679     RRD_MEMORY_MODE mode = default_rrd_memory_mode;
1680     int health_enabled = default_health_enabled;
1681
1682     while(url) {
1683         char *value = mystrsep(&url, "?&");
1684         if(!value || !*value) continue;
1685
1686         char *name = mystrsep(&value, "=");
1687         if(!name || !*name) continue;
1688         if(!value || !*value) continue;
1689
1690         if(!strcmp(name, "key"))
1691             key = value;
1692         else if(!strcmp(name, "hostname"))
1693             hostname = value;
1694         else if(!strcmp(name, "machine_guid"))
1695             machine_guid = value;
1696         else if(!strcmp(name, "update_every"))
1697             update_every = (int)strtoul(value, NULL, 0);
1698         else if(!strcmp(name, "os"))
1699             os = value;
1700     }
1701
1702     if(!key || !*key) {
1703         error("STREAM [%s]:%s: request without an API key. Forbidding access.", w->client_ip, w->client_port);
1704         buffer_flush(w->response.data);
1705         buffer_sprintf(w->response.data, "You need an API key for this request.");
1706         return 401;
1707     }
1708
1709     if(!hostname || !*hostname) {
1710         error("STREAM [%s]:%s: request without a hostname. Forbidding access.", w->client_ip, w->client_port);
1711         buffer_flush(w->response.data);
1712         buffer_sprintf(w->response.data, "You need to send a hostname too.");
1713         return 400;
1714     }
1715
1716     if(!machine_guid || !*machine_guid) {
1717         error("STREAM [%s]:%s: request without a machine GUID. Forbidding access.", w->client_ip, w->client_port);
1718         buffer_flush(w->response.data);
1719         buffer_sprintf(w->response.data, "You need to send a machine GUID too.");
1720         return 400;
1721     }
1722
1723     if(!validate_stream_api_key(key)) {
1724         error("STREAM [%s]:%s: API key '%s' is not allowed. Forbidding access.", w->client_ip, w->client_port, key);
1725         buffer_flush(w->response.data);
1726         buffer_sprintf(w->response.data, "Your API key is not permitted access.");
1727         return 401;
1728     }
1729
1730     if(!appconfig_get_boolean(&stream_config, machine_guid, "enabled", 1)) {
1731         error("STREAM [%s]:%s: machine GUID '%s' is not allowed. Forbidding access.", w->client_ip, w->client_port, machine_guid);
1732         buffer_flush(w->response.data);
1733         buffer_sprintf(w->response.data, "Your machine guide is not permitted access.");
1734         return 404;
1735     }
1736
1737     update_every = (int)appconfig_get_number(&stream_config, machine_guid, "update every", update_every);
1738     if(update_every < 0) update_every = 1;
1739
1740     history = (int)appconfig_get_number(&stream_config, key, "default history", history);
1741     history = (int)appconfig_get_number(&stream_config, machine_guid, "history", history);
1742     if(history < 5) history = 5;
1743
1744     mode = rrd_memory_mode_id(appconfig_get(&stream_config, key, "default memory mode", rrd_memory_mode_name(mode)));
1745     mode = rrd_memory_mode_id(appconfig_get(&stream_config, machine_guid, "memory mode", rrd_memory_mode_name(mode)));
1746
1747     health_enabled = appconfig_get_boolean_ondemand(&stream_config, key, "health enabled by default", health_enabled);
1748     health_enabled = appconfig_get_boolean_ondemand(&stream_config, machine_guid, "health enabled", health_enabled);
1749
1750     if(strcmp(machine_guid, "localhost"))
1751         host = localhost;
1752     else
1753         host = rrdhost_find_or_create(hostname, machine_guid, os, update_every, history, mode, health_enabled?1:0);
1754
1755     info("STREAM request from client '%s:%s' for host '%s' with machine_guid '%s': update every = %d, history = %d, memory mode = %s, health %s",
1756             w->client_ip, w->client_port,
1757             hostname, machine_guid,
1758             update_every,
1759             history,
1760             rrd_memory_mode_name(mode),
1761             (health_enabled == CONFIG_BOOLEAN_NO)?"disabled":((health_enabled == CONFIG_BOOLEAN_YES)?"enabled":"auto")
1762     );
1763
1764     struct plugind cd = {
1765             .enabled = 1,
1766             .update_every = default_rrd_update_every,
1767             .pid = 0,
1768             .serial_failures = 0,
1769             .successful_collections = 0,
1770             .obsolete = 0,
1771             .started_t = now_realtime_sec(),
1772             .next = NULL,
1773     };
1774
1775     // put the client IP and port into the buffers used by plugins.d
1776     snprintfz(cd.id,           CONFIG_MAX_NAME,  "%s:%s", w->client_ip, w->client_port);
1777     snprintfz(cd.filename,     FILENAME_MAX,     "%s:%s", w->client_ip, w->client_port);
1778     snprintfz(cd.fullfilename, FILENAME_MAX,     "%s:%s", w->client_ip, w->client_port);
1779     snprintfz(cd.cmd,          PLUGINSD_CMD_MAX, "%s:%s", w->client_ip, w->client_port);
1780
1781     info("STREAM [%s]:%s: sending STREAM to initiate streaming...", w->client_ip, w->client_port);
1782     if(send_timeout(w->ifd, "STREAM", 6, 0, 60) != 6) {
1783         error("STREAM [%s]:%s: cannot send STREAM.", w->client_ip, w->client_port);
1784         buffer_flush(w->response.data);
1785         buffer_sprintf(w->response.data, "Failed to reply back with STREAM");
1786         return 400;
1787     }
1788
1789     // remove the non-blocking flag from the socket
1790     if(fcntl(w->ifd, F_SETFL, fcntl(w->ifd, F_GETFL, 0) & ~O_NONBLOCK) == -1)
1791         error("STREAM [%s]:%s: cannot remove the non-blocking flag from socket %d", w->client_ip, w->client_port, w->ifd);
1792
1793     /*
1794     char buffer[1000 + 1];
1795     ssize_t len;
1796     while((len = read(w->ifd, buffer, 1000)) != -1) {
1797         buffer[len] = '\0';
1798         fprintf(stderr, "BEGIN READ %zu bytes\n%s\nEND READ\n", (size_t)len, buffer);
1799     }
1800     */
1801
1802     // convert the socket to a FILE *
1803     FILE *fp = fdopen(w->ifd, "r");
1804     if(!fp) {
1805         error("STREAM [%s]:%s: failed to get a FILE for FD %d.", w->client_ip, w->client_port, w->ifd);
1806         buffer_flush(w->response.data);
1807         buffer_sprintf(w->response.data, "Failed to get a FILE for an FD.");
1808         return 500;
1809     }
1810
1811     rrdhost_wrlock(host);
1812     host->use_counter++;
1813     rrdhost_unlock(host);
1814
1815     // call the plugins.d processor to receive the metrics
1816     info("STREAM [%s]:%s: connecting client to plugins.d on host '%s' with machine GUID '%s'.", w->client_ip, w->client_port, host->hostname, host->machine_guid);
1817     size_t count = pluginsd_process(host, &cd, fp, 1);
1818     error("STREAM [%s]:%s: client disconnected (host '%s', machine GUID '%s').", w->client_ip, w->client_port, host->hostname, host->machine_guid);
1819
1820     rrdhost_wrlock(host);
1821     host->use_counter--;
1822     if(!host->use_counter && health_enabled == CONFIG_BOOLEAN_AUTO)
1823         host->health_enabled = 0;
1824     rrdhost_unlock(host);
1825
1826     // cleanup
1827     fclose(fp);
1828     w->ifd = -1;
1829
1830     // this will not send anything
1831     // the socket is closed
1832     buffer_flush(w->response.data);
1833     if(count) return 200;
1834     return 400;
1835 }
1836
1837 const char *web_content_type_to_string(uint8_t contenttype) {
1838     switch(contenttype) {
1839         case CT_TEXT_HTML:
1840             return "text/html; charset=utf-8";
1841
1842         case CT_APPLICATION_XML:
1843             return "application/xml; charset=utf-8";
1844
1845         case CT_APPLICATION_JSON:
1846             return "application/json; charset=utf-8";
1847
1848         case CT_APPLICATION_X_JAVASCRIPT:
1849             return "application/x-javascript; charset=utf-8";
1850
1851         case CT_TEXT_CSS:
1852             return "text/css; charset=utf-8";
1853
1854         case CT_TEXT_XML:
1855             return "text/xml; charset=utf-8";
1856
1857         case CT_TEXT_XSL:
1858             return "text/xsl; charset=utf-8";
1859
1860         case CT_APPLICATION_OCTET_STREAM:
1861             return "application/octet-stream";
1862
1863         case CT_IMAGE_SVG_XML:
1864             return "image/svg+xml";
1865
1866         case CT_APPLICATION_X_FONT_TRUETYPE:
1867             return "application/x-font-truetype";
1868
1869         case CT_APPLICATION_X_FONT_OPENTYPE:
1870             return "application/x-font-opentype";
1871
1872         case CT_APPLICATION_FONT_WOFF:
1873             return "application/font-woff";
1874
1875         case CT_APPLICATION_FONT_WOFF2:
1876             return "application/font-woff2";
1877
1878         case CT_APPLICATION_VND_MS_FONTOBJ:
1879             return "application/vnd.ms-fontobject";
1880
1881         case CT_IMAGE_PNG:
1882             return "image/png";
1883
1884         case CT_IMAGE_JPG:
1885             return "image/jpeg";
1886
1887         case CT_IMAGE_GIF:
1888             return "image/gif";
1889
1890         case CT_IMAGE_XICON:
1891             return "image/x-icon";
1892
1893         case CT_IMAGE_BMP:
1894             return "image/bmp";
1895
1896         case CT_IMAGE_ICNS:
1897             return "image/icns";
1898
1899         case CT_PROMETHEUS:
1900             return "text/plain; version=0.0.4";
1901
1902         default:
1903         case CT_TEXT_PLAIN:
1904             return "text/plain; charset=utf-8";
1905     }
1906 }
1907
1908
1909 const char *web_response_code_to_string(int code) {
1910     switch(code) {
1911         case 200:
1912             return "OK";
1913
1914         case 307:
1915             return "Temporary Redirect";
1916
1917         case 400:
1918             return "Bad Request";
1919
1920         case 403:
1921             return "Forbidden";
1922
1923         case 404:
1924             return "Not Found";
1925
1926         case 412:
1927             return "Preconditions Failed";
1928
1929         default:
1930             if(code >= 100 && code < 200)
1931                 return "Informational";
1932
1933             if(code >= 200 && code < 300)
1934                 return "Successful";
1935
1936             if(code >= 300 && code < 400)
1937                 return "Redirection";
1938
1939             if(code >= 400 && code < 500)
1940                 return "Bad Request";
1941
1942             if(code >= 500 && code < 600)
1943                 return "Server Error";
1944
1945             return "Undefined Error";
1946     }
1947 }
1948
1949 static inline char *http_header_parse(struct web_client *w, char *s) {
1950     static uint32_t hash_origin = 0, hash_connection = 0, hash_accept_encoding = 0, hash_donottrack = 0;
1951
1952     if(unlikely(!hash_origin)) {
1953         hash_origin = simple_uhash("Origin");
1954         hash_connection = simple_uhash("Connection");
1955         hash_accept_encoding = simple_uhash("Accept-Encoding");
1956         hash_donottrack = simple_uhash("DNT");
1957     }
1958
1959     char *e = s;
1960
1961     // find the :
1962     while(*e && *e != ':') e++;
1963     if(!*e) return e;
1964
1965     // get the name
1966     *e = '\0';
1967
1968     // find the value
1969     char *v = e + 1, *ve;
1970
1971     // skip leading spaces from value
1972     while(*v == ' ') v++;
1973     ve = v;
1974
1975     // find the \r
1976     while(*ve && *ve != '\r') ve++;
1977     if(!*ve || ve[1] != '\n') {
1978         *e = ':';
1979         return ve;
1980     }
1981
1982     // terminate the value
1983     *ve = '\0';
1984
1985     // fprintf(stderr, "HEADER: '%s' = '%s'\n", s, v);
1986     uint32_t hash = simple_uhash(s);
1987
1988     if(hash == hash_origin && !strcasecmp(s, "Origin"))
1989         strncpyz(w->origin, v, ORIGIN_MAX);
1990
1991     else if(hash == hash_connection && !strcasecmp(s, "Connection")) {
1992         if(strcasestr(v, "keep-alive"))
1993             w->keepalive = 1;
1994     }
1995     else if(respect_web_browser_do_not_track_policy && hash == hash_donottrack && !strcasecmp(s, "DNT")) {
1996         if(*v == '0') w->donottrack = 0;
1997         else if(*v == '1') w->donottrack = 1;
1998     }
1999 #ifdef NETDATA_WITH_ZLIB
2000     else if(hash == hash_accept_encoding && !strcasecmp(s, "Accept-Encoding")) {
2001         if(web_enable_gzip) {
2002             if(strcasestr(v, "gzip"))
2003                 web_client_enable_deflate(w, 1);
2004             //
2005             // does not seem to work
2006             // else if(strcasestr(v, "deflate"))
2007             //  web_client_enable_deflate(w, 0);
2008         }
2009     }
2010 #endif /* NETDATA_WITH_ZLIB */
2011
2012     *e = ':';
2013     *ve = '\r';
2014     return ve;
2015 }
2016
2017 // http_request_validate()
2018 // returns:
2019 // = 0 : all good, process the request
2020 // > 0 : request is not supported
2021 // < 0 : request is incomplete - wait for more data
2022
2023 typedef enum http_validation {
2024     HTTP_VALIDATION_OK,
2025     HTTP_VALIDATION_NOT_SUPPORTED,
2026     HTTP_VALIDATION_INCOMPLETE
2027 } HTTP_VALIDATION;
2028
2029 static inline HTTP_VALIDATION http_request_validate(struct web_client *w) {
2030     char *s = w->response.data->buffer, *encoded_url = NULL;
2031
2032     // is is a valid request?
2033     if(!strncmp(s, "GET ", 4)) {
2034         encoded_url = s = &s[4];
2035         w->mode = WEB_CLIENT_MODE_NORMAL;
2036     }
2037     else if(!strncmp(s, "OPTIONS ", 8)) {
2038         encoded_url = s = &s[8];
2039         w->mode = WEB_CLIENT_MODE_OPTIONS;
2040     }
2041     else if(!strncmp(s, "STREAM ", 8)) {
2042         encoded_url = s = &s[8];
2043         w->mode = WEB_CLIENT_MODE_STREAM;
2044     }
2045     else {
2046         w->wait_receive = 0;
2047         return HTTP_VALIDATION_NOT_SUPPORTED;
2048     }
2049
2050     // find the SPACE + "HTTP/"
2051     while(*s) {
2052         // find the next space
2053         while (*s && *s != ' ') s++;
2054
2055         // is it SPACE + "HTTP/" ?
2056         if(*s && !strncmp(s, " HTTP/", 6)) break;
2057         else s++;
2058     }
2059
2060     // incomplete requests
2061     if(unlikely(!*s)) {
2062         w->wait_receive = 1;
2063         return HTTP_VALIDATION_INCOMPLETE;
2064     }
2065
2066     // we have the end of encoded_url - remember it
2067     char *ue = s;
2068
2069     // make sure we have complete request
2070     // complete requests contain: \r\n\r\n
2071     while(*s) {
2072         // find a line feed
2073         while(*s && *s++ != '\r');
2074
2075         // did we reach the end?
2076         if(unlikely(!*s)) break;
2077
2078         // is it \r\n ?
2079         if(likely(*s++ == '\n')) {
2080
2081             // is it again \r\n ? (header end)
2082             if(unlikely(*s == '\r' && s[1] == '\n')) {
2083                 // a valid complete HTTP request found
2084
2085                 *ue = '\0';
2086                 url_decode_r(w->decoded_url, encoded_url, URL_MAX + 1);
2087                 *ue = ' ';
2088                 
2089                 // copy the URL - we are going to overwrite parts of it
2090                 // FIXME -- we should avoid it
2091                 strncpyz(w->last_url, w->decoded_url, URL_MAX);
2092
2093                 w->wait_receive = 0;
2094                 return HTTP_VALIDATION_OK;
2095             }
2096
2097             // another header line
2098             s = http_header_parse(w, s);
2099         }
2100     }
2101
2102     // incomplete request
2103     w->wait_receive = 1;
2104     return HTTP_VALIDATION_INCOMPLETE;
2105 }
2106
2107 static inline void web_client_send_http_header(struct web_client *w) {
2108     if(unlikely(w->response.code != 200))
2109         buffer_no_cacheable(w->response.data);
2110
2111     // set a proper expiration date, if not already set
2112     if(unlikely(!w->response.data->expires)) {
2113         if(w->response.data->options & WB_CONTENT_NO_CACHEABLE)
2114             w->response.data->expires = w->tv_ready.tv_sec + localhost->rrd_update_every;
2115         else
2116             w->response.data->expires = w->tv_ready.tv_sec + 86400;
2117     }
2118
2119     // prepare the HTTP response header
2120     debug(D_WEB_CLIENT, "%llu: Generating HTTP header with response %d.", w->id, w->response.code);
2121
2122     const char *content_type_string = web_content_type_to_string(w->response.data->contenttype);
2123     const char *code_msg = web_response_code_to_string(w->response.code);
2124
2125     // prepare the last modified and expiration dates
2126     char date[32], edate[32];
2127     {
2128         struct tm tmbuf, *tm;
2129
2130         tm = gmtime_r(&w->response.data->date, &tmbuf);
2131         strftime(date, sizeof(date), "%a, %d %b %Y %H:%M:%S %Z", tm);
2132
2133         tm = gmtime_r(&w->response.data->expires, &tmbuf);
2134         strftime(edate, sizeof(edate), "%a, %d %b %Y %H:%M:%S %Z", tm);
2135     }
2136
2137     buffer_sprintf(w->response.header_output,
2138             "HTTP/1.1 %d %s\r\n"
2139                     "Connection: %s\r\n"
2140                     "Server: NetData Embedded HTTP Server\r\n"
2141                     "Access-Control-Allow-Origin: %s\r\n"
2142                     "Access-Control-Allow-Credentials: true\r\n"
2143                     "Content-Type: %s\r\n"
2144                     "Date: %s\r\n"
2145                    , w->response.code, code_msg
2146                    , w->keepalive?"keep-alive":"close"
2147                    , w->origin
2148                    , content_type_string
2149                    , date
2150     );
2151
2152     if(unlikely(web_x_frame_options))
2153         buffer_sprintf(w->response.header_output, "X-Frame-Options: %s\r\n", web_x_frame_options);
2154
2155     if(w->cookie1[0] || w->cookie2[0]) {
2156         if(w->cookie1[0]) {
2157             buffer_sprintf(w->response.header_output,
2158                     "Set-Cookie: %s\r\n",
2159                     w->cookie1);
2160         }
2161
2162         if(w->cookie2[0]) {
2163             buffer_sprintf(w->response.header_output,
2164                     "Set-Cookie: %s\r\n",
2165                     w->cookie2);
2166         }
2167
2168         if(respect_web_browser_do_not_track_policy)
2169             buffer_sprintf(w->response.header_output,
2170                     "Tk: T;cookies\r\n");
2171     }
2172     else {
2173         if(respect_web_browser_do_not_track_policy) {
2174             if(w->tracking_required)
2175                 buffer_sprintf(w->response.header_output,
2176                         "Tk: T;cookies\r\n");
2177             else
2178                 buffer_sprintf(w->response.header_output,
2179                         "Tk: N\r\n");
2180         }
2181     }
2182
2183     if(w->mode == WEB_CLIENT_MODE_OPTIONS) {
2184         buffer_strcat(w->response.header_output,
2185                 "Access-Control-Allow-Methods: GET, OPTIONS\r\n"
2186                         "Access-Control-Allow-Headers: accept, x-requested-with, origin, content-type, cookie, pragma, cache-control\r\n"
2187                         "Access-Control-Max-Age: 1209600\r\n" // 86400 * 14
2188         );
2189     }
2190     else {
2191         buffer_sprintf(w->response.header_output,
2192                 "Cache-Control: %s\r\n"
2193                         "Expires: %s\r\n",
2194                 (w->response.data->options & WB_CONTENT_NO_CACHEABLE)?"no-cache":"public",
2195                 edate);
2196     }
2197
2198     // copy a possibly available custom header
2199     if(unlikely(buffer_strlen(w->response.header)))
2200         buffer_strcat(w->response.header_output, buffer_tostring(w->response.header));
2201
2202     // headers related to the transfer method
2203     if(likely(w->response.zoutput)) {
2204         buffer_strcat(w->response.header_output,
2205                 "Content-Encoding: gzip\r\n"
2206                         "Transfer-Encoding: chunked\r\n"
2207         );
2208     }
2209     else {
2210         if(likely((w->response.data->len || w->response.rlen))) {
2211             // we know the content length, put it
2212             buffer_sprintf(w->response.header_output, "Content-Length: %zu\r\n", w->response.data->len? w->response.data->len: w->response.rlen);
2213         }
2214         else {
2215             // we don't know the content length, disable keep-alive
2216             w->keepalive = 0;
2217         }
2218     }
2219
2220     // end of HTTP header
2221     buffer_strcat(w->response.header_output, "\r\n");
2222
2223     // sent the HTTP header
2224     debug(D_WEB_DATA, "%llu: Sending response HTTP header of size %zu: '%s'"
2225           , w->id
2226           , buffer_strlen(w->response.header_output)
2227           , buffer_tostring(w->response.header_output)
2228     );
2229
2230     web_client_crock_socket(w);
2231
2232     ssize_t bytes = send(w->ofd, buffer_tostring(w->response.header_output), buffer_strlen(w->response.header_output), 0);
2233     if(bytes != (ssize_t) buffer_strlen(w->response.header_output)) {
2234         if(bytes > 0)
2235             w->stats_sent_bytes += bytes;
2236
2237         debug(D_WEB_CLIENT, "%llu: HTTP Header failed to be sent (I sent %zu bytes but the system sent %zd bytes). Closing web client."
2238               , w->id
2239               , buffer_strlen(w->response.header_output)
2240               , bytes);
2241
2242         WEB_CLIENT_IS_DEAD(w);
2243         return;
2244     }
2245     else
2246         w->stats_sent_bytes += bytes;
2247 }
2248
2249 static inline int web_client_process_url(RRDHOST *host, struct web_client *w, char *url);
2250
2251 static inline int web_client_switch_host(RRDHOST *host, struct web_client *w, char *url) {
2252     static uint32_t hash_localhost = 0;
2253
2254     if(unlikely(!hash_localhost)) {
2255         hash_localhost = simple_hash("localhost");
2256     }
2257
2258     if(host != localhost) {
2259         buffer_flush(w->response.data);
2260         buffer_strcat(w->response.data, "Nesting of hosts is not allowed.");
2261         return 400;
2262     }
2263
2264     char *tok = mystrsep(&url, "/?&");
2265     if(tok && *tok) {
2266         debug(D_WEB_CLIENT, "%llu: Searching for host with name '%s'.", w->id, tok);
2267
2268         // copy the URL, we need it to serve files
2269         w->last_url[0] = '/';
2270         if(url && *url) strncpyz(&w->last_url[1], url, URL_MAX - 1);
2271         else w->last_url[1] = '\0';
2272
2273         uint32_t hash = simple_hash(tok);
2274
2275         if(unlikely(hash == hash_localhost && !strcmp(tok, "localhost")))
2276             return web_client_process_url(localhost, w, url);
2277
2278         rrd_rdlock();
2279         RRDHOST *h;
2280         rrdhost_foreach_read(h) {
2281             if(unlikely((hash == h->hash_hostname && !strcmp(tok, h->hostname)) ||
2282                         (hash == h->hash_machine_guid && !strcmp(tok, h->machine_guid)))) {
2283                 rrd_unlock();
2284                 return web_client_process_url(h, w, url);
2285             }
2286         }
2287         rrd_unlock();
2288     }
2289
2290     buffer_flush(w->response.data);
2291     buffer_strcat(w->response.data, "This netdata does not maintain a database for host: ");
2292     buffer_strcat_htmlescape(w->response.data, tok?tok:"");
2293     return 404;
2294 }
2295
2296 static inline int web_client_process_url(RRDHOST *host, struct web_client *w, char *url) {
2297     static uint32_t
2298             hash_api = 0,
2299             hash_netdata_conf = 0,
2300             hash_data = 0,
2301             hash_datasource = 0,
2302             hash_graph = 0,
2303             hash_list = 0,
2304             hash_all_json = 0,
2305             hash_host = 0;
2306
2307 #ifdef NETDATA_INTERNAL_CHECKS
2308     static uint32_t hash_exit = 0, hash_debug = 0, hash_mirror = 0;
2309 #endif
2310
2311     if(unlikely(!hash_api)) {
2312         hash_api = simple_hash("api");
2313         hash_netdata_conf = simple_hash("netdata.conf");
2314         hash_data = simple_hash(WEB_PATH_DATA);
2315         hash_datasource = simple_hash(WEB_PATH_DATASOURCE);
2316         hash_graph = simple_hash(WEB_PATH_GRAPH);
2317         hash_list = simple_hash("list");
2318         hash_all_json = simple_hash("all.json");
2319         hash_host = simple_hash("host");
2320 #ifdef NETDATA_INTERNAL_CHECKS
2321         hash_exit = simple_hash("exit");
2322         hash_debug = simple_hash("debug");
2323         hash_mirror = simple_hash("mirror");
2324 #endif
2325     }
2326
2327     char *tok = mystrsep(&url, "/?");
2328     if(likely(tok && *tok)) {
2329         uint32_t hash = simple_hash(tok);
2330         debug(D_WEB_CLIENT, "%llu: Processing command '%s'.", w->id, tok);
2331
2332         if(unlikely(hash == hash_api && strcmp(tok, "api") == 0)) {
2333             debug(D_WEB_CLIENT_ACCESS, "%llu: API request ...", w->id);
2334             return web_client_api_request(host, w, url);
2335         }
2336         else if(unlikely(hash == hash_host && strcmp(tok, "host") == 0)) {
2337             debug(D_WEB_CLIENT_ACCESS, "%llu: host switch request ...", w->id);
2338             return web_client_switch_host(host, w, url);
2339         }
2340         else if(unlikely(hash == hash_netdata_conf && strcmp(tok, "netdata.conf") == 0)) {
2341             debug(D_WEB_CLIENT_ACCESS, "%llu: Sending netdata.conf ...", w->id);
2342             w->response.data->contenttype = CT_TEXT_PLAIN;
2343             buffer_flush(w->response.data);
2344             config_generate(w->response.data, 0);
2345             return 200;
2346         }
2347         else if(unlikely(hash == hash_data && strcmp(tok, WEB_PATH_DATA) == 0)) { // "data"
2348             // the client is requesting rrd data -- OLD API
2349             return web_client_api_old_data_request(host, w, url, DATASOURCE_JSON);
2350         }
2351         else if(unlikely(hash == hash_datasource && strcmp(tok, WEB_PATH_DATASOURCE) == 0)) { // "datasource"
2352             // the client is requesting google datasource -- OLD API
2353             return web_client_api_old_data_request(host, w, url, DATASOURCE_DATATABLE_JSONP);
2354         }
2355         else if(unlikely(hash == hash_graph && strcmp(tok, WEB_PATH_GRAPH) == 0)) { // "graph"
2356             // the client is requesting an rrd graph -- OLD API
2357
2358             // get the name of the data to show
2359             tok = mystrsep(&url, "/?&");
2360             if(tok && *tok) {
2361                 debug(D_WEB_CLIENT, "%llu: Searching for RRD data with name '%s'.", w->id, tok);
2362
2363                 // do we have such a data set?
2364                 RRDSET *st = rrdset_find_byname(host, tok);
2365                 if(!st) st = rrdset_find(host, tok);
2366                 if(!st) {
2367                     // we don't have it
2368                     // try to send a file with that name
2369                     buffer_flush(w->response.data);
2370                     return mysendfile(w, tok);
2371                 }
2372
2373                 debug(D_WEB_CLIENT_ACCESS, "%llu: Sending %s.json of RRD_STATS...", w->id, st->name);
2374                 w->response.data->contenttype = CT_APPLICATION_JSON;
2375                 buffer_flush(w->response.data);
2376                 rrd_stats_graph_json(st, url, w->response.data);
2377                 return 200;
2378             }
2379
2380             buffer_flush(w->response.data);
2381             buffer_strcat(w->response.data, "Graph name?\r\n");
2382             return 400;
2383         }
2384         else if(unlikely(hash == hash_list && strcmp(tok, "list") == 0)) {
2385             // OLD API
2386             debug(D_WEB_CLIENT_ACCESS, "%llu: Sending list of RRD_STATS...", w->id);
2387
2388             buffer_flush(w->response.data);
2389             RRDSET *st;
2390
2391             rrdhost_rdlock(host);
2392             rrdset_foreach_read(st, host) buffer_sprintf(w->response.data, "%s\n", st->name);
2393             rrdhost_unlock(host);
2394
2395             return 200;
2396         }
2397         else if(unlikely(hash == hash_all_json && strcmp(tok, "all.json") == 0)) {
2398             // OLD API
2399             debug(D_WEB_CLIENT_ACCESS, "%llu: Sending JSON list of all monitors of RRD_STATS...", w->id);
2400
2401             w->response.data->contenttype = CT_APPLICATION_JSON;
2402             buffer_flush(w->response.data);
2403             rrd_stats_all_json(host, w->response.data);
2404             return 200;
2405         }
2406 #ifdef NETDATA_INTERNAL_CHECKS
2407         else if(unlikely(hash == hash_exit && strcmp(tok, "exit") == 0)) {
2408             w->response.data->contenttype = CT_TEXT_PLAIN;
2409             buffer_flush(w->response.data);
2410
2411             if(!netdata_exit)
2412                 buffer_strcat(w->response.data, "ok, will do...");
2413             else
2414                 buffer_strcat(w->response.data, "I am doing it already");
2415
2416             error("web request to exit received.");
2417             netdata_cleanup_and_exit(0);
2418             return 200;
2419         }
2420         else if(unlikely(hash == hash_debug && strcmp(tok, "debug") == 0)) {
2421             buffer_flush(w->response.data);
2422
2423             // get the name of the data to show
2424             tok = mystrsep(&url, "/?&");
2425             if(tok && *tok) {
2426                 debug(D_WEB_CLIENT, "%llu: Searching for RRD data with name '%s'.", w->id, tok);
2427
2428                 // do we have such a data set?
2429                 RRDSET *st = rrdset_find_byname(host, tok);
2430                 if(!st) st = rrdset_find(host, tok);
2431                 if(!st) {
2432                     buffer_strcat(w->response.data, "Chart is not found: ");
2433                     buffer_strcat_htmlescape(w->response.data, tok);
2434                     debug(D_WEB_CLIENT_ACCESS, "%llu: %s is not found.", w->id, tok);
2435                     return 404;
2436                 }
2437
2438                 debug_flags |= D_RRD_STATS;
2439
2440                 if(rrdset_flag_check(st, RRDSET_FLAG_DEBUG))
2441                     rrdset_flag_clear(st, RRDSET_FLAG_DEBUG);
2442                 else
2443                     rrdset_flag_set(st, RRDSET_FLAG_DEBUG);
2444
2445                 buffer_sprintf(w->response.data, "Chart has now debug %s: ", rrdset_flag_check(st, RRDSET_FLAG_DEBUG)?"enabled":"disabled");
2446                 buffer_strcat_htmlescape(w->response.data, tok);
2447                 debug(D_WEB_CLIENT_ACCESS, "%llu: debug for %s is %s.", w->id, tok, rrdset_flag_check(st, RRDSET_FLAG_DEBUG)?"enabled":"disabled");
2448                 return 200;
2449             }
2450
2451             buffer_flush(w->response.data);
2452             buffer_strcat(w->response.data, "debug which chart?\r\n");
2453             return 400;
2454         }
2455         else if(unlikely(hash == hash_mirror && strcmp(tok, "mirror") == 0)) {
2456             debug(D_WEB_CLIENT_ACCESS, "%llu: Mirroring...", w->id);
2457
2458             // replace the zero bytes with spaces
2459             buffer_char_replace(w->response.data, '\0', ' ');
2460
2461             // just leave the buffer as is
2462             // it will be copied back to the client
2463
2464             return 200;
2465         }
2466 #endif  /* NETDATA_INTERNAL_CHECKS */
2467     }
2468
2469     char filename[FILENAME_MAX+1];
2470     url = filename;
2471     strncpyz(filename, w->last_url, FILENAME_MAX);
2472     tok = mystrsep(&url, "?");
2473     buffer_flush(w->response.data);
2474     return mysendfile(w, (tok && *tok)?tok:"/");
2475 }
2476
2477 void web_client_process_request(struct web_client *w) {
2478
2479     // start timing us
2480     now_realtime_timeval(&w->tv_in);
2481
2482     switch(http_request_validate(w)) {
2483         case HTTP_VALIDATION_OK:
2484             if(unlikely(w->mode == WEB_CLIENT_MODE_OPTIONS)) {
2485                 w->response.data->contenttype = CT_TEXT_PLAIN;
2486                 buffer_flush(w->response.data);
2487                 buffer_strcat(w->response.data, "OK");
2488                 w->response.code = 200;
2489             }
2490             else if(unlikely(w->mode == WEB_CLIENT_MODE_STREAM)) {
2491                 w->response.code = web_client_stream_request(localhost, w, w->decoded_url);
2492                 return;
2493             }
2494             else
2495                 w->response.code = web_client_process_url(localhost, w, w->decoded_url);
2496             break;
2497
2498         case HTTP_VALIDATION_INCOMPLETE:
2499             if(w->response.data->len > TOO_BIG_REQUEST) {
2500                 strcpy(w->last_url, "too big request");
2501
2502                 debug(D_WEB_CLIENT_ACCESS, "%llu: Received request is too big (%zu bytes).", w->id, w->response.data->len);
2503
2504                 buffer_flush(w->response.data);
2505                 buffer_sprintf(w->response.data, "Received request is too big  (%zu bytes).\r\n", w->response.data->len);
2506                 w->response.code = 400;
2507             }
2508             else {
2509                 // wait for more data
2510                 return;
2511             }
2512             break;
2513
2514         case HTTP_VALIDATION_NOT_SUPPORTED:
2515             debug(D_WEB_CLIENT_ACCESS, "%llu: Cannot understand '%s'.", w->id, w->response.data->buffer);
2516
2517             buffer_flush(w->response.data);
2518             buffer_strcat(w->response.data, "I don't understand you...\r\n");
2519             w->response.code = 400;
2520             break;
2521     }
2522
2523     // keep track of the time we done processing
2524     now_realtime_timeval(&w->tv_ready);
2525
2526     w->response.sent = 0;
2527
2528     // set a proper last modified date
2529     if(unlikely(!w->response.data->date))
2530         w->response.data->date = w->tv_ready.tv_sec;
2531
2532     web_client_send_http_header(w);
2533
2534     // enable sending immediately if we have data
2535     if(w->response.data->len) w->wait_send = 1;
2536     else w->wait_send = 0;
2537
2538     switch(w->mode) {
2539         case WEB_CLIENT_MODE_STREAM:
2540             debug(D_WEB_CLIENT, "%llu: STREAM done.", w->id);
2541             break;
2542
2543         case WEB_CLIENT_MODE_OPTIONS:
2544             debug(D_WEB_CLIENT, "%llu: Done preparing the OPTIONS response. Sending data (%zu bytes) to client.", w->id, w->response.data->len);
2545             break;
2546
2547         case WEB_CLIENT_MODE_NORMAL:
2548             debug(D_WEB_CLIENT, "%llu: Done preparing the response. Sending data (%zu bytes) to client.", w->id, w->response.data->len);
2549             break;
2550
2551         case WEB_CLIENT_MODE_FILECOPY:
2552             if(w->response.rlen) {
2553                 debug(D_WEB_CLIENT, "%llu: Done preparing the response. Will be sending data file of %zu bytes to client.", w->id, w->response.rlen);
2554                 w->wait_receive = 1;
2555
2556                 /*
2557                 // utilize the kernel sendfile() for copying the file to the socket.
2558                 // this block of code can be commented, without anything missing.
2559                 // when it is commented, the program will copy the data using async I/O.
2560                 {
2561                     long len = sendfile(w->ofd, w->ifd, NULL, w->response.data->rbytes);
2562                     if(len != w->response.data->rbytes)
2563                         error("%llu: sendfile() should copy %ld bytes, but copied %ld. Falling back to manual copy.", w->id, w->response.data->rbytes, len);
2564                     else
2565                         web_client_reset(w);
2566                 }
2567                 */
2568             }
2569             else
2570                 debug(D_WEB_CLIENT, "%llu: Done preparing the response. Will be sending an unknown amount of bytes to client.", w->id);
2571             break;
2572
2573         default:
2574             fatal("%llu: Unknown client mode %u.", w->id, w->mode);
2575             break;
2576     }
2577 }
2578
2579 ssize_t web_client_send_chunk_header(struct web_client *w, size_t len)
2580 {
2581     debug(D_DEFLATE, "%llu: OPEN CHUNK of %zu bytes (hex: %zx).", w->id, len, len);
2582     char buf[24];
2583     sprintf(buf, "%zX\r\n", len);
2584     
2585     ssize_t bytes = send(w->ofd, buf, strlen(buf), 0);
2586     if(bytes > 0) {
2587         debug(D_DEFLATE, "%llu: Sent chunk header %zd bytes.", w->id, bytes);
2588         w->stats_sent_bytes += bytes;
2589     }
2590
2591     else if(bytes == 0) {
2592         debug(D_WEB_CLIENT, "%llu: Did not send chunk header to the client.", w->id);
2593         WEB_CLIENT_IS_DEAD(w);
2594     }
2595     else {
2596         debug(D_WEB_CLIENT, "%llu: Failed to send chunk header to client.", w->id);
2597         WEB_CLIENT_IS_DEAD(w);
2598     }
2599
2600     return bytes;
2601 }
2602
2603 ssize_t web_client_send_chunk_close(struct web_client *w)
2604 {
2605     //debug(D_DEFLATE, "%llu: CLOSE CHUNK.", w->id);
2606
2607     ssize_t bytes = send(w->ofd, "\r\n", 2, 0);
2608     if(bytes > 0) {
2609         debug(D_DEFLATE, "%llu: Sent chunk suffix %zd bytes.", w->id, bytes);
2610         w->stats_sent_bytes += bytes;
2611     }
2612
2613     else if(bytes == 0) {
2614         debug(D_WEB_CLIENT, "%llu: Did not send chunk suffix to the client.", w->id);
2615         WEB_CLIENT_IS_DEAD(w);
2616     }
2617     else {
2618         debug(D_WEB_CLIENT, "%llu: Failed to send chunk suffix to client.", w->id);
2619         WEB_CLIENT_IS_DEAD(w);
2620     }
2621
2622     return bytes;
2623 }
2624
2625 ssize_t web_client_send_chunk_finalize(struct web_client *w)
2626 {
2627     //debug(D_DEFLATE, "%llu: FINALIZE CHUNK.", w->id);
2628
2629     ssize_t bytes = send(w->ofd, "\r\n0\r\n\r\n", 7, 0);
2630     if(bytes > 0) {
2631         debug(D_DEFLATE, "%llu: Sent chunk suffix %zd bytes.", w->id, bytes);
2632         w->stats_sent_bytes += bytes;
2633     }
2634
2635     else if(bytes == 0) {
2636         debug(D_WEB_CLIENT, "%llu: Did not send chunk finalize suffix to the client.", w->id);
2637         WEB_CLIENT_IS_DEAD(w);
2638     }
2639     else {
2640         debug(D_WEB_CLIENT, "%llu: Failed to send chunk finalize suffix to client.", w->id);
2641         WEB_CLIENT_IS_DEAD(w);
2642     }
2643
2644     return bytes;
2645 }
2646
2647 #ifdef NETDATA_WITH_ZLIB
2648 ssize_t web_client_send_deflate(struct web_client *w)
2649 {
2650     ssize_t len = 0, t = 0;
2651
2652     // when using compression,
2653     // w->response.sent is the amount of bytes passed through compression
2654
2655     debug(D_DEFLATE, "%llu: web_client_send_deflate(): w->response.data->len = %zu, w->response.sent = %zu, w->response.zhave = %zu, w->response.zsent = %zu, w->response.zstream.avail_in = %u, w->response.zstream.avail_out = %u, w->response.zstream.total_in = %lu, w->response.zstream.total_out = %lu.",
2656         w->id, w->response.data->len, w->response.sent, w->response.zhave, w->response.zsent, w->response.zstream.avail_in, w->response.zstream.avail_out, w->response.zstream.total_in, w->response.zstream.total_out);
2657
2658     if(w->response.data->len - w->response.sent == 0 && w->response.zstream.avail_in == 0 && w->response.zhave == w->response.zsent && w->response.zstream.avail_out != 0) {
2659         // there is nothing to send
2660
2661         debug(D_WEB_CLIENT, "%llu: Out of output data.", w->id);
2662
2663         // finalize the chunk
2664         if(w->response.sent != 0) {
2665             t = web_client_send_chunk_finalize(w);
2666             if(t < 0) return t;
2667         }
2668
2669         if(w->mode == WEB_CLIENT_MODE_FILECOPY && w->wait_receive && w->response.rlen && w->response.rlen > w->response.data->len) {
2670             // we have to wait, more data will come
2671             debug(D_WEB_CLIENT, "%llu: Waiting for more data to become available.", w->id);
2672             w->wait_send = 0;
2673             return t;
2674         }
2675
2676         if(unlikely(!w->keepalive)) {
2677             debug(D_WEB_CLIENT, "%llu: Closing (keep-alive is not enabled). %zu bytes sent.", w->id, w->response.sent);
2678             WEB_CLIENT_IS_DEAD(w);
2679             return t;
2680         }
2681
2682         // reset the client
2683         web_client_reset(w);
2684         debug(D_WEB_CLIENT, "%llu: Done sending all data on socket.", w->id);
2685         return t;
2686     }
2687
2688     if(w->response.zhave == w->response.zsent) {
2689         // compress more input data
2690
2691         // close the previous open chunk
2692         if(w->response.sent != 0) {
2693             t = web_client_send_chunk_close(w);
2694             if(t < 0) return t;
2695         }
2696
2697         debug(D_DEFLATE, "%llu: Compressing %zu new bytes starting from %zu (and %u left behind).", w->id, (w->response.data->len - w->response.sent), w->response.sent, w->response.zstream.avail_in);
2698
2699         // give the compressor all the data not passed through the compressor yet
2700         if(w->response.data->len > w->response.sent) {
2701             w->response.zstream.next_in = (Bytef *)&w->response.data->buffer[w->response.sent - w->response.zstream.avail_in];
2702             w->response.zstream.avail_in += (uInt) (w->response.data->len - w->response.sent);
2703         }
2704
2705         // reset the compressor output buffer
2706         w->response.zstream.next_out = w->response.zbuffer;
2707         w->response.zstream.avail_out = ZLIB_CHUNK;
2708
2709         // ask for FINISH if we have all the input
2710         int flush = Z_SYNC_FLUSH;
2711         if(w->mode == WEB_CLIENT_MODE_NORMAL
2712             || (w->mode == WEB_CLIENT_MODE_FILECOPY && !w->wait_receive && w->response.data->len == w->response.rlen)) {
2713             flush = Z_FINISH;
2714             debug(D_DEFLATE, "%llu: Requesting Z_FINISH, if possible.", w->id);
2715         }
2716         else {
2717             debug(D_DEFLATE, "%llu: Requesting Z_SYNC_FLUSH.", w->id);
2718         }
2719
2720         // compress
2721         if(deflate(&w->response.zstream, flush) == Z_STREAM_ERROR) {
2722             error("%llu: Compression failed. Closing down client.", w->id);
2723             web_client_reset(w);
2724             return(-1);
2725         }
2726
2727         w->response.zhave = ZLIB_CHUNK - w->response.zstream.avail_out;
2728         w->response.zsent = 0;
2729
2730         // keep track of the bytes passed through the compressor
2731         w->response.sent = w->response.data->len;
2732
2733         debug(D_DEFLATE, "%llu: Compression produced %zu bytes.", w->id, w->response.zhave);
2734
2735         // open a new chunk
2736         ssize_t t2 = web_client_send_chunk_header(w, w->response.zhave);
2737         if(t2 < 0) return t2;
2738         t += t2;
2739     }
2740     
2741     debug(D_WEB_CLIENT, "%llu: Sending %zu bytes of data (+%zd of chunk header).", w->id, w->response.zhave - w->response.zsent, t);
2742
2743     len = send(w->ofd, &w->response.zbuffer[w->response.zsent], (size_t) (w->response.zhave - w->response.zsent), MSG_DONTWAIT);
2744     if(len > 0) {
2745         w->stats_sent_bytes += len;
2746         w->response.zsent += len;
2747         len += t;
2748         debug(D_WEB_CLIENT, "%llu: Sent %zd bytes.", w->id, len);
2749     }
2750     else if(len == 0) {
2751         debug(D_WEB_CLIENT, "%llu: Did not send any bytes to the client (zhave = %zu, zsent = %zu, need to send = %zu).",
2752             w->id, w->response.zhave, w->response.zsent, w->response.zhave - w->response.zsent);
2753
2754         WEB_CLIENT_IS_DEAD(w);
2755     }
2756     else {
2757         debug(D_WEB_CLIENT, "%llu: Failed to send data to client.", w->id);
2758         WEB_CLIENT_IS_DEAD(w);
2759     }
2760
2761     return(len);
2762 }
2763 #endif // NETDATA_WITH_ZLIB
2764
2765 ssize_t web_client_send(struct web_client *w) {
2766 #ifdef NETDATA_WITH_ZLIB
2767     if(likely(w->response.zoutput)) return web_client_send_deflate(w);
2768 #endif // NETDATA_WITH_ZLIB
2769
2770     ssize_t bytes;
2771
2772     if(unlikely(w->response.data->len - w->response.sent == 0)) {
2773         // there is nothing to send
2774
2775         debug(D_WEB_CLIENT, "%llu: Out of output data.", w->id);
2776
2777         // there can be two cases for this
2778         // A. we have done everything
2779         // B. we temporarily have nothing to send, waiting for the buffer to be filled by ifd
2780
2781         if(w->mode == WEB_CLIENT_MODE_FILECOPY && w->wait_receive && w->response.rlen && w->response.rlen > w->response.data->len) {
2782             // we have to wait, more data will come
2783             debug(D_WEB_CLIENT, "%llu: Waiting for more data to become available.", w->id);
2784             w->wait_send = 0;
2785             return 0;
2786         }
2787
2788         if(unlikely(!w->keepalive)) {
2789             debug(D_WEB_CLIENT, "%llu: Closing (keep-alive is not enabled). %zu bytes sent.", w->id, w->response.sent);
2790             WEB_CLIENT_IS_DEAD(w);
2791             return 0;
2792         }
2793
2794         web_client_reset(w);
2795         debug(D_WEB_CLIENT, "%llu: Done sending all data on socket. Waiting for next request on the same socket.", w->id);
2796         return 0;
2797     }
2798
2799     bytes = send(w->ofd, &w->response.data->buffer[w->response.sent], w->response.data->len - w->response.sent, MSG_DONTWAIT);
2800     if(likely(bytes > 0)) {
2801         w->stats_sent_bytes += bytes;
2802         w->response.sent += bytes;
2803         debug(D_WEB_CLIENT, "%llu: Sent %zd bytes.", w->id, bytes);
2804     }
2805     else if(likely(bytes == 0)) {
2806         debug(D_WEB_CLIENT, "%llu: Did not send any bytes to the client.", w->id);
2807         WEB_CLIENT_IS_DEAD(w);
2808     }
2809     else {
2810         debug(D_WEB_CLIENT, "%llu: Failed to send data to client.", w->id);
2811         WEB_CLIENT_IS_DEAD(w);
2812     }
2813
2814     return(bytes);
2815 }
2816
2817 ssize_t web_client_receive(struct web_client *w)
2818 {
2819     // do we have any space for more data?
2820     buffer_need_bytes(w->response.data, WEB_REQUEST_LENGTH);
2821
2822     ssize_t left = w->response.data->size - w->response.data->len;
2823     ssize_t bytes;
2824
2825     if(unlikely(w->mode == WEB_CLIENT_MODE_FILECOPY))
2826         bytes = read(w->ifd, &w->response.data->buffer[w->response.data->len], (size_t) (left - 1));
2827     else
2828         bytes = recv(w->ifd, &w->response.data->buffer[w->response.data->len], (size_t) (left - 1), MSG_DONTWAIT);
2829
2830     if(likely(bytes > 0)) {
2831         if(w->mode != WEB_CLIENT_MODE_FILECOPY)
2832             w->stats_received_bytes += bytes;
2833
2834         size_t old = w->response.data->len;
2835         w->response.data->len += bytes;
2836         w->response.data->buffer[w->response.data->len] = '\0';
2837
2838         debug(D_WEB_CLIENT, "%llu: Received %zd bytes.", w->id, bytes);
2839         debug(D_WEB_DATA, "%llu: Received data: '%s'.", w->id, &w->response.data->buffer[old]);
2840
2841         if(w->mode == WEB_CLIENT_MODE_FILECOPY) {
2842             w->wait_send = 1;
2843
2844             if(w->response.rlen && w->response.data->len >= w->response.rlen)
2845                 w->wait_receive = 0;
2846         }
2847     }
2848     else if(likely(bytes == 0)) {
2849         debug(D_WEB_CLIENT, "%llu: Out of input data.", w->id);
2850
2851         // if we cannot read, it means we have an error on input.
2852         // if however, we are copying a file from ifd to ofd, we should not return an error.
2853         // in this case, the error should be generated when the file has been sent to the client.
2854
2855         if(w->mode == WEB_CLIENT_MODE_FILECOPY) {
2856             // we are copying data from ifd to ofd
2857             // let it finish copying...
2858             w->wait_receive = 0;
2859
2860             debug(D_WEB_CLIENT, "%llu: Read the whole file.", w->id);
2861             if(w->ifd != w->ofd) close(w->ifd);
2862             w->ifd = w->ofd;
2863         }
2864         else {
2865             debug(D_WEB_CLIENT, "%llu: failed to receive data.", w->id);
2866             WEB_CLIENT_IS_DEAD(w);
2867         }
2868     }
2869     else {
2870         debug(D_WEB_CLIENT, "%llu: receive data failed.", w->id);
2871         WEB_CLIENT_IS_DEAD(w);
2872     }
2873
2874     return(bytes);
2875 }
2876
2877
2878 // --------------------------------------------------------------------------------------
2879 // the thread of a single client
2880
2881 // 1. waits for input and output, using async I/O
2882 // 2. it processes HTTP requests
2883 // 3. it generates HTTP responses
2884 // 4. it copies data from input to output if mode is FILECOPY
2885
2886 void *web_client_main(void *ptr)
2887 {
2888     if(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) != 0)
2889         error("Cannot set pthread cancel type to DEFERRED.");
2890
2891     if(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0)
2892         error("Cannot set pthread cancel state to ENABLE.");
2893
2894     struct web_client *w = ptr;
2895     struct pollfd fds[2], *ifd, *ofd;
2896     int retval, timeout;
2897     nfds_t fdmax = 0;
2898
2899     log_access("%llu: %s port %s connected on thread task id %d", w->id, w->client_ip, w->client_port, gettid());
2900
2901     for(;;) {
2902         if(unlikely(netdata_exit)) break;
2903
2904         if(unlikely(w->dead)) {
2905             debug(D_WEB_CLIENT, "%llu: client is dead.", w->id);
2906             break;
2907         }
2908         else if(unlikely(!w->wait_receive && !w->wait_send)) {
2909             debug(D_WEB_CLIENT, "%llu: client is not set for neither receiving nor sending data.", w->id);
2910             break;
2911         }
2912
2913         if(unlikely(w->ifd < 0 || w->ofd < 0)) {
2914             error("%llu: invalid file descriptor, ifd = %d, ofd = %d (required 0 <= fd", w->id, w->ifd, w->ofd);
2915             break;
2916         }
2917
2918         if(w->ifd == w->ofd) {
2919             fds[0].fd = w->ifd;
2920             fds[0].events = 0;
2921             fds[0].revents = 0;
2922
2923             if(w->wait_receive) fds[0].events |= POLLIN;
2924             if(w->wait_send)    fds[0].events |= POLLOUT;
2925
2926             fds[1].fd = -1;
2927             fds[1].events = 0;
2928             fds[1].revents = 0;
2929
2930             ifd = ofd = &fds[0];
2931
2932             fdmax = 1;
2933         }
2934         else {
2935             fds[0].fd = w->ifd;
2936             fds[0].events = 0;
2937             fds[0].revents = 0;
2938             if(w->wait_receive) fds[0].events |= POLLIN;
2939             ifd = &fds[0];
2940
2941             fds[1].fd = w->ofd;
2942             fds[1].events = 0;
2943             fds[1].revents = 0;
2944             if(w->wait_send)    fds[1].events |= POLLOUT;
2945             ofd = &fds[1];
2946
2947             fdmax = 2;
2948         }
2949
2950         debug(D_WEB_CLIENT, "%llu: Waiting socket async I/O for %s %s", w->id, w->wait_receive?"INPUT":"", w->wait_send?"OUTPUT":"");
2951         errno = 0;
2952         timeout = web_client_timeout * 1000;
2953         retval = poll(fds, fdmax, timeout);
2954
2955         if(unlikely(netdata_exit)) break;
2956
2957         if(unlikely(retval == -1)) {
2958             if(errno == EAGAIN || errno == EINTR) {
2959                 debug(D_WEB_CLIENT, "%llu: EAGAIN received.", w->id);
2960                 continue;
2961             }
2962
2963             debug(D_WEB_CLIENT, "%llu: LISTENER: poll() failed (input fd = %d, output fd = %d). Closing client.", w->id, w->ifd, w->ofd);
2964             break;
2965         }
2966         else if(unlikely(!retval)) {
2967             debug(D_WEB_CLIENT, "%llu: Timeout while waiting socket async I/O for %s %s", w->id, w->wait_receive?"INPUT":"", w->wait_send?"OUTPUT":"");
2968             break;
2969         }
2970
2971         if(unlikely(netdata_exit)) break;
2972
2973         int used = 0;
2974         if(w->wait_send && ofd->revents & POLLOUT) {
2975             used++;
2976             if(web_client_send(w) < 0) {
2977                 debug(D_WEB_CLIENT, "%llu: Cannot send data to client. Closing client.", w->id);
2978                 break;
2979             }
2980         }
2981
2982         if(unlikely(netdata_exit)) break;
2983
2984         if(w->wait_receive && (ifd->revents & POLLIN || ifd->revents & POLLPRI)) {
2985             used++;
2986             if(web_client_receive(w) < 0) {
2987                 debug(D_WEB_CLIENT, "%llu: Cannot receive data from client. Closing client.", w->id);
2988                 break;
2989             }
2990
2991             if(w->mode == WEB_CLIENT_MODE_NORMAL) {
2992                 debug(D_WEB_CLIENT, "%llu: Attempting to process received data.", w->id);
2993                 web_client_process_request(w);
2994
2995                 // if the sockets are closed, may have transferred this client
2996                 // to plugins.d
2997                 if(unlikely(w->mode == WEB_CLIENT_MODE_STREAM))
2998                     break;
2999             }
3000         }
3001
3002         if(unlikely(!used)) {
3003             debug(D_WEB_CLIENT_ACCESS, "%llu: Received error on socket.", w->id);
3004             break;
3005         }
3006     }
3007
3008     web_client_reset(w);
3009
3010     log_access("%llu: %s port %s disconnected from thread task id %d", w->id, w->client_ip, w->client_port, gettid());
3011     debug(D_WEB_CLIENT, "%llu: done...", w->id);
3012
3013     // close the sockets/files now
3014     // to free file descriptors
3015     if(w->ifd == w->ofd) {
3016         if(w->ifd != -1) close(w->ifd);
3017     }
3018     else {
3019         if(w->ifd != -1) close(w->ifd);
3020         if(w->ofd != -1) close(w->ofd);
3021     }
3022     w->ifd = -1;
3023     w->ofd = -1;
3024
3025     w->obsolete = 1;
3026
3027     pthread_exit(NULL);
3028     return NULL;
3029 }