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