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