]> arthur.barton.de Git - netdata.git/blob - src/web_client.c
Merge pull request #888 from rsanger/fix_hddtemp
[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_sprintf(w->response.data, "No chart id is given at the request.");
825         goto cleanup;
826     }
827
828     RRDSET *st = rrdset_find(chart);
829     if(!st) st = rrdset_find_byname(chart);
830     if(!st) {
831         buffer_svg(w->response.data, "chart not found", 0, "", NULL, NULL, 1, -1);
832         ret = 200;
833         goto cleanup;
834     }
835
836     RRDCALC *rc = NULL;
837     if(alarm) {
838         rc = rrdcalc_find(st, alarm);
839         if (!rc) {
840             buffer_svg(w->response.data, "alarm not found", 0, "", NULL, NULL, 1, -1);
841             ret = 200;
842             goto cleanup;
843         }
844     }
845
846     long long multiply  = (multiply_str  && *multiply_str )?atol(multiply_str):1;
847     long long divide    = (divide_str    && *divide_str   )?atol(divide_str):1;
848     long long before    = (before_str    && *before_str   )?atol(before_str):0;
849     long long after     = (after_str     && *after_str    )?atol(after_str):-st->update_every;
850     int       points    = (points_str    && *points_str   )?atoi(points_str):1;
851     int       precision = (precision_str && *precision_str)?atoi(precision_str):-1;
852
853     if(!multiply) multiply = 1;
854     if(!divide) divide = 1;
855
856     int refresh = 0;
857     if(refresh_str && *refresh_str) {
858         if(!strcmp(refresh_str, "auto")) {
859             if(rc) refresh = rc->update_every;
860             else if(options & RRDR_OPTION_NOT_ALIGNED)
861                 refresh = st->update_every;
862             else {
863                 refresh = (before - after);
864                 if(refresh < 0) refresh = -refresh;
865             }
866         }
867         else {
868             refresh = atoi(refresh_str);
869             if(refresh < 0) refresh = -refresh;
870         }
871     }
872
873     if(!label) {
874         if(alarm) {
875             char *s = (char *)alarm;
876             while(*s) {
877                 if(*s == '_') *s = ' ';
878                 s++;
879             }
880             label = alarm;
881         }
882         else if(dimensions) {
883             const char *dim = buffer_tostring(dimensions);
884             if(*dim == '|') dim++;
885             label = dim;
886         }
887         else
888             label = st->name;
889     }
890     if(!units) {
891         if(alarm) {
892             if(rc->units)
893                 units = rc->units;
894             else
895                 units = "";
896         }
897         else if(options & RRDR_OPTION_PERCENTAGE)
898             units = "%";
899         else
900             units = st->units;
901     }
902
903     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'"
904             , w->id
905             , chart
906             , alarm?alarm:""
907             , (dimensions)?buffer_tostring(dimensions):""
908             , after
909             , before
910             , points
911             , group
912             , options
913             );
914
915     if(rc) {
916         calculated_number n = rc->value;
917         if(isnan(n) || isinf(n)) n = 0;
918
919         if (refresh > 0)
920             buffer_sprintf(w->response.header, "Refresh: %d\r\n", refresh);
921
922         if(!value_color) {
923             switch(rc->status) {
924                 case RRDCALC_STATUS_CRITICAL:
925                     value_color = "red";
926                     break;
927
928                 case RRDCALC_STATUS_WARNING:
929                     value_color = "orange";
930                     break;
931
932                 case RRDCALC_STATUS_CLEAR:
933                     value_color = "brightgreen";
934                     break;
935
936                 case RRDCALC_STATUS_UNDEFINED:
937                     value_color = "lightgrey";
938                     break;
939
940                 case RRDCALC_STATUS_UNINITIALIZED:
941                     value_color = "#000";
942                     break;
943
944                 default:
945                     value_color = "grey";
946                     break;
947             }
948         }
949
950         buffer_svg(w->response.data, label, rc->value * multiply / divide, units, label_color, value_color, 0, precision);
951         ret = 200;
952     }
953     else {
954         time_t latest_timestamp = 0;
955         int value_is_null = 1;
956         calculated_number n = 0;
957         ret = 500;
958
959         // if the collected value is too old, don't calculate its value
960         if (rrdset_last_entry_t(st) >= (time(NULL) - (st->update_every * st->gap_when_lost_iterations_above)))
961             ret = rrd2value(st, w->response.data, &n, (dimensions) ? buffer_tostring(dimensions) : NULL, points, after,
962                             before, group, options, NULL, &latest_timestamp, &value_is_null);
963
964         // if the value cannot be calculated, show empty badge
965         if (ret != 200) {
966             value_is_null = 1;
967             n = 0;
968             ret = 200;
969         }
970         else if (refresh > 0)
971             buffer_sprintf(w->response.header, "Refresh: %d\r\n", refresh);
972
973         // render the badge
974         buffer_svg(w->response.data, label, n * multiply / divide, units, label_color, value_color, value_is_null,
975                    precision);
976     }
977
978 cleanup:
979     if(dimensions)
980         buffer_free(dimensions);
981     return ret;
982 }
983
984 // returns the HTTP code
985 int web_client_api_request_v1_data(struct web_client *w, char *url)
986 {
987     debug(D_WEB_CLIENT, "%llu: API v1 data with URL '%s'", w->id, url);
988
989     int ret = 400;
990     BUFFER *dimensions = NULL;
991
992     buffer_flush(w->response.data);
993
994     char    *google_version = "0.6",
995             *google_reqId = "0",
996             *google_sig = "0",
997             *google_out = "json",
998             *responseHandler = NULL,
999             *outFileName = NULL;
1000
1001     time_t last_timestamp_in_data = 0, google_timestamp = 0;
1002
1003     char *chart = NULL
1004             , *before_str = NULL
1005             , *after_str = NULL
1006             , *points_str = NULL;
1007
1008     int group = GROUP_AVERAGE;
1009     uint32_t format = DATASOURCE_JSON;
1010     uint32_t options = 0x00000000;
1011
1012     while(url) {
1013         char *value = mystrsep(&url, "?&");
1014         if(!value || !*value) continue;
1015
1016         char *name = mystrsep(&value, "=");
1017         if(!name || !*name) continue;
1018         if(!value || !*value) continue;
1019
1020         debug(D_WEB_CLIENT, "%llu: API v1 data query param '%s' with value '%s'", w->id, name, value);
1021
1022         // name and value are now the parameters
1023         // they are not null and not empty
1024
1025         if(!strcmp(name, "chart")) chart = value;
1026         else if(!strcmp(name, "dimension") || !strcmp(name, "dim") || !strcmp(name, "dimensions") || !strcmp(name, "dims")) {
1027             if(!dimensions) dimensions = buffer_create(100);
1028             buffer_strcat(dimensions, "|");
1029             buffer_strcat(dimensions, value);
1030         }
1031         else if(!strcmp(name, "after")) after_str = value;
1032         else if(!strcmp(name, "before")) before_str = value;
1033         else if(!strcmp(name, "points")) points_str = value;
1034         else if(!strcmp(name, "group")) {
1035             group = web_client_api_request_v1_data_group(value, GROUP_AVERAGE);
1036         }
1037         else if(!strcmp(name, "format")) {
1038             format = web_client_api_request_v1_data_format(value);
1039         }
1040         else if(!strcmp(name, "options")) {
1041             options |= web_client_api_request_v1_data_options(value);
1042         }
1043         else if(!strcmp(name, "callback")) {
1044             responseHandler = value;
1045         }
1046         else if(!strcmp(name, "filename")) {
1047             outFileName = value;
1048         }
1049         else if(!strcmp(name, "tqx")) {
1050             // parse Google Visualization API options
1051             // https://developers.google.com/chart/interactive/docs/dev/implementing_data_source
1052             char *tqx_name, *tqx_value;
1053
1054             while(value) {
1055                 tqx_value = mystrsep(&value, ";");
1056                 if(!tqx_value || !*tqx_value) continue;
1057
1058                 tqx_name = mystrsep(&tqx_value, ":");
1059                 if(!tqx_name || !*tqx_name) continue;
1060                 if(!tqx_value || !*tqx_value) continue;
1061
1062                 if(!strcmp(tqx_name, "version"))
1063                     google_version = tqx_value;
1064                 else if(!strcmp(tqx_name, "reqId"))
1065                     google_reqId = tqx_value;
1066                 else if(!strcmp(tqx_name, "sig")) {
1067                     google_sig = tqx_value;
1068                     google_timestamp = strtoul(google_sig, NULL, 0);
1069                 }
1070                 else if(!strcmp(tqx_name, "out")) {
1071                     google_out = tqx_value;
1072                     format = web_client_api_request_v1_data_google_format(google_out);
1073                 }
1074                 else if(!strcmp(tqx_name, "responseHandler"))
1075                     responseHandler = tqx_value;
1076                 else if(!strcmp(tqx_name, "outFileName"))
1077                     outFileName = tqx_value;
1078             }
1079         }
1080     }
1081
1082     if(!chart || !*chart) {
1083         buffer_sprintf(w->response.data, "No chart id is given at the request.");
1084         goto cleanup;
1085     }
1086
1087     RRDSET *st = rrdset_find(chart);
1088     if(!st) st = rrdset_find_byname(chart);
1089     if(!st) {
1090         buffer_sprintf(w->response.data, "Chart '%s' is not found.", chart);
1091         ret = 404;
1092         goto cleanup;
1093     }
1094
1095     long long before = (before_str && *before_str)?atol(before_str):0;
1096     long long after  = (after_str  && *after_str) ?atol(after_str):0;
1097     int       points = (points_str && *points_str)?atoi(points_str):0;
1098
1099     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'"
1100             , w->id
1101             , chart
1102             , (dimensions)?buffer_tostring(dimensions):""
1103             , after
1104             , before
1105             , points
1106             , group
1107             , format
1108             , options
1109             );
1110
1111     if(outFileName && *outFileName) {
1112         buffer_sprintf(w->response.header, "Content-Disposition: attachment; filename=\"%s\"\r\n", outFileName);
1113         debug(D_WEB_CLIENT, "%llu: generating outfilename header: '%s'", w->id, outFileName);
1114     }
1115
1116     if(format == DATASOURCE_DATATABLE_JSONP) {
1117         if(responseHandler == NULL)
1118             responseHandler = "google.visualization.Query.setResponse";
1119
1120         debug(D_WEB_CLIENT_ACCESS, "%llu: GOOGLE JSON/JSONP: version = '%s', reqId = '%s', sig = '%s', out = '%s', responseHandler = '%s', outFileName = '%s'",
1121                 w->id, google_version, google_reqId, google_sig, google_out, responseHandler, outFileName
1122             );
1123
1124         buffer_sprintf(w->response.data,
1125             "%s({version:'%s',reqId:'%s',status:'ok',sig:'%ld',table:",
1126             responseHandler, google_version, google_reqId, st->last_updated.tv_sec);
1127     }
1128     else if(format == DATASOURCE_JSONP) {
1129         if(responseHandler == NULL)
1130             responseHandler = "callback";
1131
1132         buffer_strcat(w->response.data, responseHandler);
1133         buffer_strcat(w->response.data, "(");
1134     }
1135
1136     ret = rrd2format(st, w->response.data, dimensions, format, points, after, before, group, options, &last_timestamp_in_data);
1137
1138     if(format == DATASOURCE_DATATABLE_JSONP) {
1139         if(google_timestamp < last_timestamp_in_data)
1140             buffer_strcat(w->response.data, "});");
1141
1142         else {
1143             // the client already has the latest data
1144             buffer_flush(w->response.data);
1145             buffer_sprintf(w->response.data,
1146                 "%s({version:'%s',reqId:'%s',status:'error',errors:[{reason:'not_modified',message:'Data not modified'}]});",
1147                 responseHandler, google_version, google_reqId);
1148         }
1149     }
1150     else if(format == DATASOURCE_JSONP)
1151         buffer_strcat(w->response.data, ");");
1152
1153 cleanup:
1154     if(dimensions) buffer_free(dimensions);
1155     return ret;
1156 }
1157
1158
1159 #define REGISTRY_VERIFY_COOKIES_GUID "give-me-back-this-cookie-now--please"
1160
1161 int web_client_api_request_v1_registry(struct web_client *w, char *url)
1162 {
1163     static uint32_t hash_action = 0, hash_access = 0, hash_hello = 0, hash_delete = 0, hash_search = 0,
1164             hash_switch = 0, hash_machine = 0, hash_url = 0, hash_name = 0, hash_delete_url = 0, hash_for = 0,
1165             hash_to = 0 /*, hash_redirects = 0 */;
1166
1167     if(unlikely(!hash_action)) {
1168         hash_action = simple_hash("action");
1169         hash_access = simple_hash("access");
1170         hash_hello = simple_hash("hello");
1171         hash_delete = simple_hash("delete");
1172         hash_search = simple_hash("search");
1173         hash_switch = simple_hash("switch");
1174         hash_machine = simple_hash("machine");
1175         hash_url = simple_hash("url");
1176         hash_name = simple_hash("name");
1177         hash_delete_url = simple_hash("delete_url");
1178         hash_for = simple_hash("for");
1179         hash_to = simple_hash("to");
1180 /*
1181         hash_redirects = simple_hash("redirects");
1182 */
1183     }
1184
1185     char person_guid[36 + 1] = "";
1186
1187     debug(D_WEB_CLIENT, "%llu: API v1 registry with URL '%s'", w->id, url);
1188
1189     // FIXME
1190     // The browser may send multiple cookies with our id
1191     
1192     char *cookie = strstr(w->response.data->buffer, NETDATA_REGISTRY_COOKIE_NAME "=");
1193     if(cookie)
1194         strncpyz(person_guid, &cookie[sizeof(NETDATA_REGISTRY_COOKIE_NAME)], 36);
1195
1196     char action = '\0';
1197     char *machine_guid = NULL,
1198             *machine_url = NULL,
1199             *url_name = NULL,
1200             *search_machine_guid = NULL,
1201             *delete_url = NULL,
1202             *to_person_guid = NULL;
1203 /*
1204     int redirects = 0;
1205 */
1206
1207     while(url) {
1208         char *value = mystrsep(&url, "?&");
1209         if (!value || !*value) continue;
1210
1211         char *name = mystrsep(&value, "=");
1212         if (!name || !*name) continue;
1213         if (!value || !*value) continue;
1214
1215         debug(D_WEB_CLIENT, "%llu: API v1 registry query param '%s' with value '%s'", w->id, name, value);
1216
1217         uint32_t hash = simple_hash(name);
1218
1219         if(hash == hash_action && !strcmp(name, "action")) {
1220             uint32_t vhash = simple_hash(value);
1221
1222             if(vhash == hash_access && !strcmp(value, "access")) action = 'A';
1223             else if(vhash == hash_hello && !strcmp(value, "hello")) action = 'H';
1224             else if(vhash == hash_delete && !strcmp(value, "delete")) action = 'D';
1225             else if(vhash == hash_search && !strcmp(value, "search")) action = 'S';
1226             else if(vhash == hash_switch && !strcmp(value, "switch")) action = 'W';
1227 #ifdef NETDATA_INTERNAL_CHECKS
1228             else error("unknown registry action '%s'", value);
1229 #endif /* NETDATA_INTERNAL_CHECKS */
1230         }
1231 /*
1232         else if(hash == hash_redirects && !strcmp(name, "redirects"))
1233             redirects = atoi(value);
1234 */
1235         else if(hash == hash_machine && !strcmp(name, "machine"))
1236             machine_guid = value;
1237
1238         else if(hash == hash_url && !strcmp(name, "url"))
1239             machine_url = value;
1240
1241         else if(action == 'A') {
1242             if(hash == hash_name && !strcmp(name, "name"))
1243                 url_name = value;
1244         }
1245         else if(action == 'D') {
1246             if(hash == hash_delete_url && !strcmp(name, "delete_url"))
1247                 delete_url = value;
1248         }
1249         else if(action == 'S') {
1250             if(hash == hash_for && !strcmp(name, "for"))
1251                 search_machine_guid = value;
1252         }
1253         else if(action == 'W') {
1254             if(hash == hash_to && !strcmp(name, "to"))
1255                 to_person_guid = value;
1256         }
1257 #ifdef NETDATA_INTERNAL_CHECKS
1258         else error("unused registry URL parameter '%s' with value '%s'", name, value);
1259 #endif /* NETDATA_INTERNAL_CHECKS */
1260     }
1261
1262     if(web_donotrack_comply && w->donottrack) {
1263         buffer_flush(w->response.data);
1264         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.");
1265         return 400;
1266     }
1267
1268     if(action == 'A' && (!machine_guid || !machine_url || !url_name)) {
1269         buffer_flush(w->response.data);
1270         buffer_sprintf(w->response.data, "Invalid registry request - access requires these parameters: machine ('%s'), url ('%s'), name ('%s')",
1271                        machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", url_name?url_name:"UNSET");
1272         return 400;
1273     }
1274     else if(action == 'D' && (!machine_guid || !machine_url || !delete_url)) {
1275         buffer_flush(w->response.data);
1276         buffer_sprintf(w->response.data, "Invalid registry request - delete requires these parameters: machine ('%s'), url ('%s'), delete_url ('%s')",
1277                        machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", delete_url?delete_url:"UNSET");
1278         return 400;
1279     }
1280     else if(action == 'S' && (!machine_guid || !machine_url || !search_machine_guid)) {
1281         buffer_flush(w->response.data);
1282         buffer_sprintf(w->response.data, "Invalid registry request - search requires these parameters: machine ('%s'), url ('%s'), for ('%s')",
1283                        machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", search_machine_guid?search_machine_guid:"UNSET");
1284         return 400;
1285     }
1286     else if(action == 'W' && (!machine_guid || !machine_url || !to_person_guid)) {
1287         buffer_flush(w->response.data);
1288         buffer_sprintf(w->response.data, "Invalid registry request - switching identity requires these parameters: machine ('%s'), url ('%s'), to ('%s')",
1289                        machine_guid?machine_guid:"UNSET", machine_url?machine_url:"UNSET", to_person_guid?to_person_guid:"UNSET");
1290         return 400;
1291     }
1292
1293     switch(action) {
1294         case 'A':
1295             w->tracking_required = 1;
1296             if(registry_verify_cookies_redirects() > 0 && (!cookie || !person_guid[0])) {
1297                 buffer_flush(w->response.data);
1298                 registry_set_cookie(w, REGISTRY_VERIFY_COOKIES_GUID);
1299                 w->response.data->contenttype = CT_APPLICATION_JSON;
1300                 buffer_sprintf(w->response.data, "{ \"status\": \"redirect\", \"registry\": \"%s\" }", registry_to_announce());
1301                 return 200;
1302
1303 /*
1304  * it seems that web browsers are ignoring 307 (Moved Temporarily)
1305  * under certain conditions, when using CORS
1306  * so this is commented and we use application level redirects instead
1307  *
1308                 redirects++;
1309
1310                 if(redirects > registry_verify_cookies_redirects()) {
1311                     buffer_flush(w->response.data);
1312                     buffer_sprintf(w->response.data, "Your browser does not support cookies");
1313                     return 400;
1314                 }
1315
1316                 char *encoded_url = url_encode(machine_url);
1317                 if(!encoded_url) {
1318                     error("%llu: Cannot URL encode string '%s'", w->id, machine_url);
1319                     return 500;
1320                 }
1321
1322                 char *encoded_name = url_encode(url_name);
1323                 if(!encoded_name) {
1324                     free(encoded_url);
1325                     error("%llu: Cannot URL encode string '%s'", w->id, url_name);
1326                     return 500;
1327                 }
1328
1329                 char *encoded_guid = url_encode(machine_guid);
1330                 if(!encoded_guid) {
1331                     free(encoded_url);
1332                     free(encoded_name);
1333                     error("%llu: Cannot URL encode string '%s'", w->id, machine_guid);
1334                     return 500;
1335                 }
1336
1337                 buffer_sprintf(w->response.header, "Location: %s/api/v1/registry?action=access&machine=%s&name=%s&url=%s&redirects=%d\r\n",
1338                                registry_to_announce(), encoded_guid, encoded_name, encoded_url, redirects);
1339
1340                 free(encoded_guid);
1341                 free(encoded_name);
1342                 free(encoded_url);
1343                 return 307
1344 */
1345             }
1346
1347             if(unlikely(cookie && person_guid[0] && !strcmp(person_guid, REGISTRY_VERIFY_COOKIES_GUID)))
1348                 person_guid[0] = '\0';
1349
1350             return registry_request_access_json(w, person_guid, machine_guid, machine_url, url_name, time(NULL));
1351
1352         case 'D':
1353             w->tracking_required = 1;
1354             return registry_request_delete_json(w, person_guid, machine_guid, machine_url, delete_url, time(NULL));
1355
1356         case 'S':
1357             w->tracking_required = 1;
1358             return registry_request_search_json(w, person_guid, machine_guid, machine_url, search_machine_guid, time(NULL));
1359
1360         case 'W':
1361             w->tracking_required = 1;
1362             return registry_request_switch_json(w, person_guid, machine_guid, machine_url, to_person_guid, time(NULL));
1363
1364         case 'H':
1365             return registry_request_hello_json(w);
1366
1367         default:
1368             buffer_flush(w->response.data);
1369             buffer_strcat(w->response.data, "Invalid registry request - you need to set an action: hello, access, delete, search");
1370             return 400;
1371     }
1372 }
1373
1374 int web_client_api_request_v1(struct web_client *w, char *url) {
1375     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;
1376
1377     if(unlikely(hash_data == 0)) {
1378         hash_data = simple_hash("data");
1379         hash_chart = simple_hash("chart");
1380         hash_charts = simple_hash("charts");
1381         hash_registry = simple_hash("registry");
1382         hash_badge = simple_hash("badge.svg");
1383         hash_alarms = simple_hash("alarms");
1384         hash_alarm_log = simple_hash("alarm_log");
1385     }
1386
1387     // get the command
1388     char *tok = mystrsep(&url, "/?&");
1389     if(tok && *tok) {
1390         debug(D_WEB_CLIENT, "%llu: Searching for API v1 command '%s'.", w->id, tok);
1391         uint32_t hash = simple_hash(tok);
1392
1393         if(hash == hash_data && !strcmp(tok, "data"))
1394             return web_client_api_request_v1_data(w, url);
1395
1396         else if(hash == hash_chart && !strcmp(tok, "chart"))
1397             return web_client_api_request_v1_chart(w, url);
1398
1399         else if(hash == hash_charts && !strcmp(tok, "charts"))
1400             return web_client_api_request_v1_charts(w, url);
1401
1402         else if(hash == hash_registry && !strcmp(tok, "registry"))
1403             return web_client_api_request_v1_registry(w, url);
1404
1405         else if(hash == hash_badge && !strcmp(tok, "badge.svg"))
1406             return web_client_api_request_v1_badge(w, url);
1407
1408         else if(hash == hash_alarms && !strcmp(tok, "alarms"))
1409             return web_client_api_request_v1_alarms(w, url);
1410
1411         else if(hash == hash_alarm_log && !strcmp(tok, "alarm_log"))
1412             return web_client_api_request_v1_alarm_log(w, url);
1413
1414         else {
1415             buffer_flush(w->response.data);
1416             buffer_sprintf(w->response.data, "Unsupported v1 API command: %s", tok);
1417             return 404;
1418         }
1419     }
1420     else {
1421         buffer_flush(w->response.data);
1422         buffer_sprintf(w->response.data, "API v1 command?");
1423         return 400;
1424     }
1425 }
1426
1427 int web_client_api_request(struct web_client *w, char *url)
1428 {
1429     // get the api version
1430     char *tok = mystrsep(&url, "/?&");
1431     if(tok && *tok) {
1432         debug(D_WEB_CLIENT, "%llu: Searching for API version '%s'.", w->id, tok);
1433         if(strcmp(tok, "v1") == 0)
1434             return web_client_api_request_v1(w, url);
1435         else {
1436             buffer_flush(w->response.data);
1437             buffer_sprintf(w->response.data, "Unsupported API version: %s", tok);
1438             return 404;
1439         }
1440     }
1441     else {
1442         buffer_flush(w->response.data);
1443         buffer_sprintf(w->response.data, "Which API version?");
1444         return 400;
1445     }
1446 }
1447
1448 int web_client_api_old_data_request(struct web_client *w, char *url, int datasource_type)
1449 {
1450     RRDSET *st = NULL;
1451
1452     char *args = strchr(url, '?');
1453     if(args) {
1454         *args='\0';
1455         args = &args[1];
1456     }
1457
1458     // get the name of the data to show
1459     char *tok = mystrsep(&url, "/");
1460     if(!tok) tok = "";
1461
1462     // do we have such a data set?
1463     if(*tok) {
1464         debug(D_WEB_CLIENT, "%llu: Searching for RRD data with name '%s'.", w->id, tok);
1465         st = rrdset_find_byname(tok);
1466         if(!st) st = rrdset_find(tok);
1467     }
1468
1469     if(!st) {
1470         // we don't have it
1471         // try to send a file with that name
1472         buffer_flush(w->response.data);
1473         return(mysendfile(w, tok));
1474     }
1475
1476     // we have it
1477     debug(D_WEB_CLIENT, "%llu: Found RRD data with name '%s'.", w->id, tok);
1478
1479     // how many entries does the client want?
1480     int lines = rrd_default_history_entries;
1481     int group_count = 1;
1482     time_t after = 0, before = 0;
1483     int group_method = GROUP_AVERAGE;
1484     int nonzero = 0;
1485
1486     if(url) {
1487         // parse the lines required
1488         tok = mystrsep(&url, "/");
1489         if(tok) lines = atoi(tok);
1490         if(lines < 1) lines = 1;
1491     }
1492     if(url) {
1493         // parse the group count required
1494         tok = mystrsep(&url, "/");
1495         if(tok && *tok) group_count = atoi(tok);
1496         if(group_count < 1) group_count = 1;
1497         //if(group_count > save_history / 20) group_count = save_history / 20;
1498     }
1499     if(url) {
1500         // parse the grouping method required
1501         tok = mystrsep(&url, "/");
1502         if(tok && *tok) {
1503             if(strcmp(tok, "max") == 0) group_method = GROUP_MAX;
1504             else if(strcmp(tok, "average") == 0) group_method = GROUP_AVERAGE;
1505             else if(strcmp(tok, "sum") == 0) group_method = GROUP_SUM;
1506             else debug(D_WEB_CLIENT, "%llu: Unknown group method '%s'", w->id, tok);
1507         }
1508     }
1509     if(url) {
1510         // parse after time
1511         tok = mystrsep(&url, "/");
1512         if(tok && *tok) after = strtoul(tok, NULL, 10);
1513         if(after < 0) after = 0;
1514     }
1515     if(url) {
1516         // parse before time
1517         tok = mystrsep(&url, "/");
1518         if(tok && *tok) before = strtoul(tok, NULL, 10);
1519         if(before < 0) before = 0;
1520     }
1521     if(url) {
1522         // parse nonzero
1523         tok = mystrsep(&url, "/");
1524         if(tok && *tok && strcmp(tok, "nonzero") == 0) nonzero = 1;
1525     }
1526
1527     w->response.data->contenttype = CT_APPLICATION_JSON;
1528     buffer_flush(w->response.data);
1529
1530     char *google_version = "0.6";
1531     char *google_reqId = "0";
1532     char *google_sig = "0";
1533     char *google_out = "json";
1534     char *google_responseHandler = "google.visualization.Query.setResponse";
1535     char *google_outFileName = NULL;
1536     time_t last_timestamp_in_data = 0;
1537     if(datasource_type == DATASOURCE_DATATABLE_JSON || datasource_type == DATASOURCE_DATATABLE_JSONP) {
1538
1539         w->response.data->contenttype = CT_APPLICATION_X_JAVASCRIPT;
1540
1541         while(args) {
1542             tok = mystrsep(&args, "&");
1543             if(tok && *tok) {
1544                 char *name = mystrsep(&tok, "=");
1545                 if(name && *name && strcmp(name, "tqx") == 0) {
1546                     char *key = mystrsep(&tok, ":");
1547                     char *value = mystrsep(&tok, ";");
1548                     if(key && value && *key && *value) {
1549                         if(strcmp(key, "version") == 0)
1550                             google_version = value;
1551
1552                         else if(strcmp(key, "reqId") == 0)
1553                             google_reqId = value;
1554
1555                         else if(strcmp(key, "sig") == 0)
1556                             google_sig = value;
1557
1558                         else if(strcmp(key, "out") == 0)
1559                             google_out = value;
1560
1561                         else if(strcmp(key, "responseHandler") == 0)
1562                             google_responseHandler = value;
1563
1564                         else if(strcmp(key, "outFileName") == 0)
1565                             google_outFileName = value;
1566                     }
1567                 }
1568             }
1569         }
1570
1571         debug(D_WEB_CLIENT_ACCESS, "%llu: GOOGLE JSONP: version = '%s', reqId = '%s', sig = '%s', out = '%s', responseHandler = '%s', outFileName = '%s'",
1572             w->id, google_version, google_reqId, google_sig, google_out, google_responseHandler, google_outFileName
1573             );
1574
1575         if(datasource_type == DATASOURCE_DATATABLE_JSONP) {
1576             last_timestamp_in_data = strtoul(google_sig, NULL, 0);
1577
1578             // check the client wants json
1579             if(strcmp(google_out, "json") != 0) {
1580                 buffer_sprintf(w->response.data,
1581                     "%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.'}]});",
1582                     google_responseHandler, google_version, google_reqId, google_out);
1583                     return 200;
1584             }
1585         }
1586     }
1587
1588     if(datasource_type == DATASOURCE_DATATABLE_JSONP) {
1589         buffer_sprintf(w->response.data,
1590             "%s({version:'%s',reqId:'%s',status:'ok',sig:'%ld',table:",
1591             google_responseHandler, google_version, google_reqId, st->last_updated.tv_sec);
1592     }
1593
1594     debug(D_WEB_CLIENT_ACCESS, "%llu: Sending RRD data '%s' (id %s, %d lines, %d group, %d group_method, %ld after, %ld before).",
1595         w->id, st->name, st->id, lines, group_count, group_method, after, before);
1596
1597     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);
1598
1599     if(datasource_type == DATASOURCE_DATATABLE_JSONP) {
1600         if(timestamp_in_data > last_timestamp_in_data)
1601             buffer_strcat(w->response.data, "});");
1602
1603         else {
1604             // the client already has the latest data
1605             buffer_flush(w->response.data);
1606             buffer_sprintf(w->response.data,
1607                 "%s({version:'%s',reqId:'%s',status:'error',errors:[{reason:'not_modified',message:'Data not modified'}]});",
1608                 google_responseHandler, google_version, google_reqId);
1609         }
1610     }
1611
1612     return 200;
1613 }
1614
1615 const char *web_content_type_to_string(uint8_t contenttype) {
1616     switch(contenttype) {
1617         case CT_TEXT_HTML:
1618             return "text/html; charset=utf-8";
1619
1620         case CT_APPLICATION_XML:
1621             return "application/xml; charset=utf-8";
1622
1623         case CT_APPLICATION_JSON:
1624             return "application/json; charset=utf-8";
1625
1626         case CT_APPLICATION_X_JAVASCRIPT:
1627             return "application/x-javascript; charset=utf-8";
1628
1629         case CT_TEXT_CSS:
1630             return "text/css; charset=utf-8";
1631
1632         case CT_TEXT_XML:
1633             return "text/xml; charset=utf-8";
1634
1635         case CT_TEXT_XSL:
1636             return "text/xsl; charset=utf-8";
1637
1638         case CT_APPLICATION_OCTET_STREAM:
1639             return "application/octet-stream";
1640
1641         case CT_IMAGE_SVG_XML:
1642             return "image/svg+xml";
1643
1644         case CT_APPLICATION_X_FONT_TRUETYPE:
1645             return "application/x-font-truetype";
1646
1647         case CT_APPLICATION_X_FONT_OPENTYPE:
1648             return "application/x-font-opentype";
1649
1650         case CT_APPLICATION_FONT_WOFF:
1651             return "application/font-woff";
1652
1653         case CT_APPLICATION_FONT_WOFF2:
1654             return "application/font-woff2";
1655
1656         case CT_APPLICATION_VND_MS_FONTOBJ:
1657             return "application/vnd.ms-fontobject";
1658
1659         case CT_IMAGE_PNG:
1660             return "image/png";
1661
1662         case CT_IMAGE_JPG:
1663             return "image/jpeg";
1664
1665         case CT_IMAGE_GIF:
1666             return "image/gif";
1667
1668         case CT_IMAGE_XICON:
1669             return "image/x-icon";
1670
1671         case CT_IMAGE_BMP:
1672             return "image/bmp";
1673
1674         case CT_IMAGE_ICNS:
1675             return "image/icns";
1676
1677         default:
1678         case CT_TEXT_PLAIN:
1679             return "text/plain; charset=utf-8";
1680     }
1681 }
1682
1683
1684 const char *web_response_code_to_string(int code) {
1685     switch(code) {
1686         case 200:
1687             return "OK";
1688
1689         case 307:
1690             return "Temporary Redirect";
1691
1692         case 400:
1693             return "Bad Request";
1694
1695         case 403:
1696             return "Forbidden";
1697
1698         case 404:
1699             return "Not Found";
1700
1701         case 412:
1702             return "Preconditions Failed";
1703
1704         default:
1705             if(code >= 100 && code < 200)
1706                 return "Informational";
1707
1708             if(code >= 200 && code < 300)
1709                 return "Successful";
1710
1711             if(code >= 300 && code < 400)
1712                 return "Redirection";
1713
1714             if(code >= 400 && code < 500)
1715                 return "Bad Request";
1716
1717             if(code >= 500 && code < 600)
1718                 return "Server Error";
1719
1720             return "Undefined Error";
1721     }
1722 }
1723
1724 static inline char *http_header_parse(struct web_client *w, char *s) {
1725     static uint32_t hash_origin = 0, hash_connection = 0, hash_accept_encoding = 0, hash_donottrack = 0;
1726
1727     if(unlikely(!hash_origin)) {
1728         hash_origin = simple_uhash("Origin");
1729         hash_connection = simple_uhash("Connection");
1730         hash_accept_encoding = simple_uhash("Accept-Encoding");
1731         hash_donottrack = simple_uhash("DNT");
1732     }
1733
1734     char *e = s;
1735
1736     // find the :
1737     while(*e && *e != ':') e++;
1738     if(!*e) return e;
1739
1740     // get the name
1741     *e = '\0';
1742
1743     // find the value
1744     char *v = e + 1, *ve;
1745
1746     // skip leading spaces from value
1747     while(*v == ' ') v++;
1748     ve = v;
1749
1750     // find the \r
1751     while(*ve && *ve != '\r') ve++;
1752     if(!*ve || ve[1] != '\n') {
1753         *e = ':';
1754         return ve;
1755     }
1756
1757     // terminate the value
1758     *ve = '\0';
1759
1760     // fprintf(stderr, "HEADER: '%s' = '%s'\n", s, v);
1761     uint32_t hash = simple_uhash(s);
1762
1763     if(hash == hash_origin && !strcasecmp(s, "Origin"))
1764         strncpyz(w->origin, v, ORIGIN_MAX);
1765
1766     else if(hash == hash_connection && !strcasecmp(s, "Connection")) {
1767         if(strcasestr(v, "keep-alive"))
1768             w->keepalive = 1;
1769     }
1770     else if(web_donotrack_comply && hash == hash_donottrack && !strcasecmp(s, "DNT")) {
1771         if(*v == '0') w->donottrack = 0;
1772         else if(*v == '1') w->donottrack = 1;
1773     }
1774 #ifdef NETDATA_WITH_ZLIB
1775     else if(hash == hash_accept_encoding && !strcasecmp(s, "Accept-Encoding")) {
1776         if(web_enable_gzip) {
1777             if(strcasestr(v, "gzip"))
1778                 web_client_enable_deflate(w, 1);
1779             //
1780             // does not seem to work
1781             // else if(strcasestr(v, "deflate"))
1782             //  web_client_enable_deflate(w, 0);
1783         }
1784     }
1785 #endif /* NETDATA_WITH_ZLIB */
1786
1787     *e = ':';
1788     *ve = '\r';
1789     return ve;
1790 }
1791
1792 // http_request_validate()
1793 // returns:
1794 // = 0 : all good, process the request
1795 // > 0 : request is not supported
1796 // < 0 : request is incomplete - wait for more data
1797
1798 static inline int http_request_validate(struct web_client *w) {
1799     char *s = w->response.data->buffer, *encoded_url = NULL;
1800
1801     // is is a valid request?
1802     if(!strncmp(s, "GET ", 4)) {
1803         encoded_url = s = &s[4];
1804         w->mode = WEB_CLIENT_MODE_NORMAL;
1805     }
1806     else if(!strncmp(s, "OPTIONS ", 8)) {
1807         encoded_url = s = &s[8];
1808         w->mode = WEB_CLIENT_MODE_OPTIONS;
1809     }
1810     else {
1811         w->wait_receive = 0;
1812         return 1;
1813     }
1814
1815     // find the SPACE + "HTTP/"
1816     while(*s) {
1817         // find the next space
1818         while (*s && *s != ' ') s++;
1819
1820         // is it SPACE + "HTTP/" ?
1821         if(*s && !strncmp(s, " HTTP/", 6)) break;
1822         else s++;
1823     }
1824
1825     // incomplete requests
1826     if(unlikely(!*s)) {
1827         w->wait_receive = 1;
1828         return -2;
1829     }
1830
1831     // we have the end of encoded_url - remember it
1832     char *ue = s;
1833
1834     // make sure we have complete request
1835     // complete requests contain: \r\n\r\n
1836     while(*s) {
1837         // find a line feed
1838         while(*s && *s++ != '\r');
1839
1840         // did we reach the end?
1841         if(unlikely(!*s)) break;
1842
1843         // is it \r\n ?
1844         if(likely(*s++ == '\n')) {
1845
1846             // is it again \r\n ? (header end)
1847             if(unlikely(*s == '\r' && s[1] == '\n')) {
1848                 // a valid complete HTTP request found
1849
1850                 *ue = '\0';
1851                 url_decode_r(w->decoded_url, encoded_url, URL_MAX + 1);
1852                 *ue = ' ';
1853                 
1854                 // copy the URL - we are going to overwrite parts of it
1855                 // FIXME -- we should avoid it
1856                 strncpyz(w->last_url, w->decoded_url, URL_MAX);
1857
1858                 w->wait_receive = 0;
1859                 return 0;
1860             }
1861
1862             // another header line
1863             s = http_header_parse(w, s);
1864         }
1865     }
1866
1867     // incomplete request
1868     w->wait_receive = 1;
1869     return -3;
1870 }
1871
1872 void web_client_process(struct web_client *w) {
1873     static uint32_t hash_api = 0, hash_netdata_conf = 0, hash_data = 0, hash_datasource = 0, hash_graph = 0,
1874             hash_list = 0, hash_all_json = 0, hash_exit = 0, hash_debug = 0, hash_mirror = 0;
1875
1876     // start timing us
1877     gettimeofday(&w->tv_in, NULL);
1878
1879     if(unlikely(!hash_api)) {
1880         hash_api = simple_hash("api");
1881         hash_netdata_conf = simple_hash("netdata.conf");
1882         hash_data = simple_hash(WEB_PATH_DATA);
1883         hash_datasource = simple_hash(WEB_PATH_DATASOURCE);
1884         hash_graph = simple_hash(WEB_PATH_GRAPH);
1885         hash_list = simple_hash("list");
1886         hash_all_json = simple_hash("all.json");
1887         hash_exit = simple_hash("exit");
1888         hash_debug = simple_hash("debug");
1889         hash_mirror = simple_hash("mirror");
1890     }
1891
1892     int code = 500;
1893     ssize_t bytes;
1894
1895     int what_to_do = http_request_validate(w);
1896
1897     // wait for more data
1898     if(what_to_do < 0) {
1899         if(w->response.data->len > TOO_BIG_REQUEST) {
1900             strcpy(w->last_url, "too big request");
1901
1902             debug(D_WEB_CLIENT_ACCESS, "%llu: Received request is too big (%zu bytes).", w->id, w->response.data->len);
1903
1904             code = 400;
1905             buffer_flush(w->response.data);
1906             buffer_sprintf(w->response.data, "Received request is too big  (%zu bytes).\r\n", w->response.data->len);
1907         }
1908         else {
1909             // wait for more data
1910             return;
1911         }
1912     }
1913     else if(what_to_do > 0) {
1914         // strcpy(w->last_url, "not a valid request");
1915
1916         debug(D_WEB_CLIENT_ACCESS, "%llu: Cannot understand '%s'.", w->id, w->response.data->buffer);
1917
1918         code = 500;
1919         buffer_flush(w->response.data);
1920         buffer_strcat(w->response.data, "I don't understand you...\r\n");
1921     }
1922     else { // what_to_do == 0
1923         if(w->mode == WEB_CLIENT_MODE_OPTIONS) {
1924             code = 200;
1925             w->response.data->contenttype = CT_TEXT_PLAIN;
1926             buffer_flush(w->response.data);
1927             buffer_strcat(w->response.data, "OK");
1928         }
1929         else {
1930             char *url = w->decoded_url;
1931             char *tok = mystrsep(&url, "/?");
1932             if(tok && *tok) {
1933                 uint32_t hash = simple_hash(tok);
1934                 debug(D_WEB_CLIENT, "%llu: Processing command '%s'.", w->id, tok);
1935
1936                 if(hash == hash_api && strcmp(tok, "api") == 0) {
1937                     // the client is requesting api access
1938                     code = web_client_api_request(w, url);
1939                 }
1940                 else if(hash == hash_netdata_conf && strcmp(tok, "netdata.conf") == 0) {
1941                     code = 200;
1942                     debug(D_WEB_CLIENT_ACCESS, "%llu: Sending netdata.conf ...", w->id);
1943
1944                     w->response.data->contenttype = CT_TEXT_PLAIN;
1945                     buffer_flush(w->response.data);
1946                     generate_config(w->response.data, 0);
1947                 }
1948                 else if(hash == hash_data && strcmp(tok, WEB_PATH_DATA) == 0) { // "data"
1949                     // the client is requesting rrd data -- OLD API
1950                     code = web_client_api_old_data_request(w, url, DATASOURCE_JSON);
1951                 }
1952                 else if(hash == hash_datasource && strcmp(tok, WEB_PATH_DATASOURCE) == 0) { // "datasource"
1953                     // the client is requesting google datasource -- OLD API
1954                     code = web_client_api_old_data_request(w, url, DATASOURCE_DATATABLE_JSONP);
1955                 }
1956                 else if(hash == hash_graph && strcmp(tok, WEB_PATH_GRAPH) == 0) { // "graph"
1957                     // the client is requesting an rrd graph -- OLD API
1958
1959                     // get the name of the data to show
1960                     tok = mystrsep(&url, "/?&");
1961                     if(tok && *tok) {
1962                         debug(D_WEB_CLIENT, "%llu: Searching for RRD data with name '%s'.", w->id, tok);
1963
1964                         // do we have such a data set?
1965                         RRDSET *st = rrdset_find_byname(tok);
1966                         if(!st) st = rrdset_find(tok);
1967                         if(!st) {
1968                             // we don't have it
1969                             // try to send a file with that name
1970                             buffer_flush(w->response.data);
1971                             code = mysendfile(w, tok);
1972                         }
1973                         else {
1974                             code = 200;
1975                             debug(D_WEB_CLIENT_ACCESS, "%llu: Sending %s.json of RRD_STATS...", w->id, st->name);
1976                             w->response.data->contenttype = CT_APPLICATION_JSON;
1977                             buffer_flush(w->response.data);
1978                             rrd_stats_graph_json(st, url, w->response.data);
1979                         }
1980                     }
1981                     else {
1982                         code = 400;
1983                         buffer_flush(w->response.data);
1984                         buffer_strcat(w->response.data, "Graph name?\r\n");
1985                     }
1986                 }
1987                 else if(hash == hash_list && strcmp(tok, "list") == 0) {
1988                     // OLD API
1989                     code = 200;
1990
1991                     debug(D_WEB_CLIENT_ACCESS, "%llu: Sending list of RRD_STATS...", w->id);
1992
1993                     buffer_flush(w->response.data);
1994                     RRDSET *st = localhost.rrdset_root;
1995
1996                     for ( ; st ; st = st->next )
1997                         buffer_sprintf(w->response.data, "%s\n", st->name);
1998                 }
1999                 else if(hash == hash_all_json && strcmp(tok, "all.json") == 0) {
2000                     // OLD API
2001                     code = 200;
2002                     debug(D_WEB_CLIENT_ACCESS, "%llu: Sending JSON list of all monitors of RRD_STATS...", w->id);
2003
2004                     w->response.data->contenttype = CT_APPLICATION_JSON;
2005                     buffer_flush(w->response.data);
2006                     rrd_stats_all_json(w->response.data);
2007                 }
2008 #ifdef NETDATA_INTERNAL_CHECKS
2009                 else if(hash == hash_exit && strcmp(tok, "exit") == 0) {
2010                     code = 200;
2011                     w->response.data->contenttype = CT_TEXT_PLAIN;
2012                     buffer_flush(w->response.data);
2013
2014                     if(!netdata_exit)
2015                         buffer_strcat(w->response.data, "ok, will do...");
2016                     else
2017                         buffer_strcat(w->response.data, "I am doing it already");
2018
2019                     error("web request to exit received.");
2020                     netdata_cleanup_and_exit(0);
2021                     netdata_exit = 1;
2022                 }
2023                 else if(hash == hash_debug && strcmp(tok, "debug") == 0) {
2024                     buffer_flush(w->response.data);
2025
2026                     // get the name of the data to show
2027                     tok = mystrsep(&url, "/?&");
2028                     if(tok && *tok) {
2029                         debug(D_WEB_CLIENT, "%llu: Searching for RRD data with name '%s'.", w->id, tok);
2030
2031                         // do we have such a data set?
2032                         RRDSET *st = rrdset_find_byname(tok);
2033                         if(!st) st = rrdset_find(tok);
2034                         if(!st) {
2035                             code = 404;
2036                             buffer_sprintf(w->response.data, "Chart %s is not found.\r\n", tok);
2037                             debug(D_WEB_CLIENT_ACCESS, "%llu: %s is not found.", w->id, tok);
2038                         }
2039                         else {
2040                             code = 200;
2041                             debug_flags |= D_RRD_STATS;
2042                             st->debug = !st->debug;
2043                             buffer_sprintf(w->response.data, "Chart %s has now debug %s.\r\n", tok, st->debug?"enabled":"disabled");
2044                             debug(D_WEB_CLIENT_ACCESS, "%llu: debug for %s is %s.", w->id, tok, st->debug?"enabled":"disabled");
2045                         }
2046                     }
2047                     else {
2048                         code = 500;
2049                         buffer_flush(w->response.data);
2050                         buffer_strcat(w->response.data, "debug which chart?\r\n");
2051                     }
2052                 }
2053                 else if(hash == hash_mirror && strcmp(tok, "mirror") == 0) {
2054                     code = 200;
2055
2056                     debug(D_WEB_CLIENT_ACCESS, "%llu: Mirroring...", w->id);
2057
2058                     // replace the zero bytes with spaces
2059                     buffer_char_replace(w->response.data, '\0', ' ');
2060
2061                     // just leave the buffer as is
2062                     // it will be copied back to the client
2063                 }
2064 #endif  /* NETDATA_INTERNAL_CHECKS */
2065                 else {
2066                     char filename[FILENAME_MAX+1];
2067                     url = filename;
2068                     strncpyz(filename, w->last_url, FILENAME_MAX);
2069                     tok = mystrsep(&url, "?");
2070                     buffer_flush(w->response.data);
2071                     code = mysendfile(w, (tok && *tok)?tok:"/");
2072                 }
2073             }
2074             else {
2075                 char filename[FILENAME_MAX+1];
2076                 url = filename;
2077                 strncpyz(filename, w->last_url, FILENAME_MAX);
2078                 tok = mystrsep(&url, "?");
2079                 buffer_flush(w->response.data);
2080                 code = mysendfile(w, (tok && *tok)?tok:"/");
2081             }
2082         }
2083     }
2084
2085     gettimeofday(&w->tv_ready, NULL);
2086     w->response.sent = 0;
2087     w->response.code = code;
2088
2089     // set a proper last modified date
2090     if(unlikely(!w->response.data->date))
2091         w->response.data->date = w->tv_ready.tv_sec;
2092
2093     // set a proper expiration date, if not already set
2094     if(unlikely(!w->response.data->expires)) {
2095         if(w->response.data->options & WB_CONTENT_NO_CACHEABLE)
2096             w->response.data->expires = w->tv_ready.tv_sec + rrd_update_every;
2097         else
2098             w->response.data->expires = w->tv_ready.tv_sec + 86400;
2099     }
2100
2101     // prepare the HTTP response header
2102     debug(D_WEB_CLIENT, "%llu: Generating HTTP header with response %d.", w->id, code);
2103
2104     const char *content_type_string = web_content_type_to_string(w->response.data->contenttype);
2105     const char *code_msg = web_response_code_to_string(code);
2106
2107     // prepare the last modified and expiration dates
2108     char date[32], edate[32];
2109     {
2110         struct tm tmbuf, *tm;
2111
2112         tm = gmtime_r(&w->response.data->date, &tmbuf);
2113         strftime(date, sizeof(date), "%a, %d %b %Y %H:%M:%S %Z", tm);
2114
2115         tm = gmtime_r(&w->response.data->expires, &tmbuf);
2116         strftime(edate, sizeof(edate), "%a, %d %b %Y %H:%M:%S %Z", tm);
2117     }
2118
2119     buffer_sprintf(w->response.header_output,
2120         "HTTP/1.1 %d %s\r\n"
2121         "Connection: %s\r\n"
2122         "Server: NetData Embedded HTTP Server\r\n"
2123         "Access-Control-Allow-Origin: %s\r\n"
2124         "Access-Control-Allow-Credentials: true\r\n"
2125         "Content-Type: %s\r\n"
2126         "Date: %s\r\n"
2127         , code, code_msg
2128         , w->keepalive?"keep-alive":"close"
2129         , w->origin
2130         , content_type_string
2131         , date
2132         );
2133
2134     if(w->cookie1[0] || w->cookie2[0]) {
2135         if(w->cookie1[0]) {
2136             buffer_sprintf(w->response.header_output,
2137                "Set-Cookie: %s\r\n",
2138                w->cookie1);
2139         }
2140
2141         if(w->cookie2[0]) {
2142             buffer_sprintf(w->response.header_output,
2143                "Set-Cookie: %s\r\n",
2144                w->cookie2);
2145         }
2146
2147         if(web_donotrack_comply)
2148             buffer_sprintf(w->response.header_output,
2149                "Tk: T;cookies\r\n");
2150     }
2151     else {
2152         if(web_donotrack_comply) {
2153             if(w->tracking_required)
2154                 buffer_sprintf(w->response.header_output,
2155                    "Tk: T;cookies\r\n");
2156             else
2157                 buffer_sprintf(w->response.header_output,
2158                    "Tk: N\r\n");
2159         }
2160     }
2161
2162     if(w->mode == WEB_CLIENT_MODE_OPTIONS) {
2163         buffer_strcat(w->response.header_output,
2164             "Access-Control-Allow-Methods: GET, OPTIONS\r\n"
2165             "Access-Control-Allow-Headers: accept, x-requested-with, origin, content-type, cookie\r\n"
2166             "Access-Control-Max-Age: 1209600\r\n" // 86400 * 14
2167             );
2168     }
2169     else {
2170         buffer_sprintf(w->response.header_output,
2171             "Cache-Control: %s\r\n"
2172             "Expires: %s\r\n",
2173             (w->response.data->options & WB_CONTENT_NO_CACHEABLE)?"no-cache":"public",
2174             edate);
2175     }
2176
2177     // copy a possibly available custom header
2178     if(unlikely(buffer_strlen(w->response.header)))
2179         buffer_strcat(w->response.header_output, buffer_tostring(w->response.header));
2180
2181     // headers related to the transfer method
2182     if(likely(w->response.zoutput)) {
2183         buffer_strcat(w->response.header_output,
2184             "Content-Encoding: gzip\r\n"
2185             "Transfer-Encoding: chunked\r\n"
2186             );
2187     }
2188     else {
2189         if(likely((w->response.data->len || w->response.rlen))) {
2190             // we know the content length, put it
2191             buffer_sprintf(w->response.header_output, "Content-Length: %zu\r\n", w->response.data->len? w->response.data->len: w->response.rlen);
2192         }
2193         else {
2194             // we don't know the content length, disable keep-alive
2195             w->keepalive = 0;
2196         }
2197     }
2198
2199     // end of HTTP header
2200     buffer_strcat(w->response.header_output, "\r\n");
2201
2202     // sent the HTTP header
2203     debug(D_WEB_DATA, "%llu: Sending response HTTP header of size %zu: '%s'"
2204             , w->id
2205             , buffer_strlen(w->response.header_output)
2206             , buffer_tostring(w->response.header_output)
2207             );
2208
2209     web_client_crock_socket(w);
2210
2211     bytes = send(w->ofd, buffer_tostring(w->response.header_output), buffer_strlen(w->response.header_output), 0);
2212     if(bytes != (ssize_t) buffer_strlen(w->response.header_output)) {
2213         if(bytes > 0)
2214             w->stats_sent_bytes += bytes;
2215
2216         debug(D_WEB_CLIENT, "%llu: HTTP Header failed to be sent (I sent %zu bytes but the system sent %zd bytes). Closing web client."
2217             , w->id
2218             , buffer_strlen(w->response.header_output)
2219             , bytes);
2220
2221         WEB_CLIENT_IS_DEAD(w);
2222         return;
2223     }
2224     else 
2225         w->stats_sent_bytes += bytes;
2226
2227     // enable sending immediately if we have data
2228     if(w->response.data->len) w->wait_send = 1;
2229     else w->wait_send = 0;
2230
2231     // pretty logging
2232     switch(w->mode) {
2233         case WEB_CLIENT_MODE_OPTIONS:
2234             debug(D_WEB_CLIENT, "%llu: Done preparing the OPTIONS response. Sending data (%zu bytes) to client.", w->id, w->response.data->len);
2235             break;
2236
2237         case WEB_CLIENT_MODE_NORMAL:
2238             debug(D_WEB_CLIENT, "%llu: Done preparing the response. Sending data (%zu bytes) to client.", w->id, w->response.data->len);
2239             break;
2240
2241         case WEB_CLIENT_MODE_FILECOPY:
2242             if(w->response.rlen) {
2243                 debug(D_WEB_CLIENT, "%llu: Done preparing the response. Will be sending data file of %zu bytes to client.", w->id, w->response.rlen);
2244                 w->wait_receive = 1;
2245
2246                 /*
2247                 // utilize the kernel sendfile() for copying the file to the socket.
2248                 // this block of code can be commented, without anything missing.
2249                 // when it is commented, the program will copy the data using async I/O.
2250                 {
2251                     long len = sendfile(w->ofd, w->ifd, NULL, w->response.data->rbytes);
2252                     if(len != w->response.data->rbytes)
2253                         error("%llu: sendfile() should copy %ld bytes, but copied %ld. Falling back to manual copy.", w->id, w->response.data->rbytes, len);
2254                     else
2255                         web_client_reset(w);
2256                 }
2257                 */
2258             }
2259             else
2260                 debug(D_WEB_CLIENT, "%llu: Done preparing the response. Will be sending an unknown amount of bytes to client.", w->id);
2261             break;
2262
2263         default:
2264             fatal("%llu: Unknown client mode %d.", w->id, w->mode);
2265             break;
2266     }
2267 }
2268
2269 ssize_t web_client_send_chunk_header(struct web_client *w, size_t len)
2270 {
2271     debug(D_DEFLATE, "%llu: OPEN CHUNK of %zu bytes (hex: %zx).", w->id, len, len);
2272     char buf[24];
2273     sprintf(buf, "%zX\r\n", len);
2274     
2275     ssize_t bytes = send(w->ofd, buf, strlen(buf), 0);
2276     if(bytes > 0) {
2277         debug(D_DEFLATE, "%llu: Sent chunk header %zd bytes.", w->id, bytes);
2278         w->stats_sent_bytes += bytes;
2279     }
2280
2281     else if(bytes == 0) {
2282         debug(D_WEB_CLIENT, "%llu: Did not send chunk header to the client.", w->id);
2283         WEB_CLIENT_IS_DEAD(w);
2284     }
2285     else {
2286         debug(D_WEB_CLIENT, "%llu: Failed to send chunk header to client.", w->id);
2287         WEB_CLIENT_IS_DEAD(w);
2288     }
2289
2290     return bytes;
2291 }
2292
2293 ssize_t web_client_send_chunk_close(struct web_client *w)
2294 {
2295     //debug(D_DEFLATE, "%llu: CLOSE CHUNK.", w->id);
2296
2297     ssize_t bytes = send(w->ofd, "\r\n", 2, 0);
2298     if(bytes > 0) {
2299         debug(D_DEFLATE, "%llu: Sent chunk suffix %zd bytes.", w->id, bytes);
2300         w->stats_sent_bytes += bytes;
2301     }
2302
2303     else if(bytes == 0) {
2304         debug(D_WEB_CLIENT, "%llu: Did not send chunk suffix to the client.", w->id);
2305         WEB_CLIENT_IS_DEAD(w);
2306     }
2307     else {
2308         debug(D_WEB_CLIENT, "%llu: Failed to send chunk suffix to client.", w->id);
2309         WEB_CLIENT_IS_DEAD(w);
2310     }
2311
2312     return bytes;
2313 }
2314
2315 ssize_t web_client_send_chunk_finalize(struct web_client *w)
2316 {
2317     //debug(D_DEFLATE, "%llu: FINALIZE CHUNK.", w->id);
2318
2319     ssize_t bytes = send(w->ofd, "\r\n0\r\n\r\n", 7, 0);
2320     if(bytes > 0) {
2321         debug(D_DEFLATE, "%llu: Sent chunk suffix %zd bytes.", w->id, bytes);
2322         w->stats_sent_bytes += bytes;
2323     }
2324
2325     else if(bytes == 0) {
2326         debug(D_WEB_CLIENT, "%llu: Did not send chunk finalize suffix to the client.", w->id);
2327         WEB_CLIENT_IS_DEAD(w);
2328     }
2329     else {
2330         debug(D_WEB_CLIENT, "%llu: Failed to send chunk finalize suffix to client.", w->id);
2331         WEB_CLIENT_IS_DEAD(w);
2332     }
2333
2334     return bytes;
2335 }
2336
2337 #ifdef NETDATA_WITH_ZLIB
2338 ssize_t web_client_send_deflate(struct web_client *w)
2339 {
2340     ssize_t len = 0, t = 0;
2341
2342     // when using compression,
2343     // w->response.sent is the amount of bytes passed through compression
2344
2345     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.",
2346         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);
2347
2348     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) {
2349         // there is nothing to send
2350
2351         debug(D_WEB_CLIENT, "%llu: Out of output data.", w->id);
2352
2353         // finalize the chunk
2354         if(w->response.sent != 0) {
2355             t = web_client_send_chunk_finalize(w);
2356             if(t < 0) return t;
2357         }
2358
2359         if(w->mode == WEB_CLIENT_MODE_FILECOPY && w->wait_receive && w->response.rlen && w->response.rlen > w->response.data->len) {
2360             // we have to wait, more data will come
2361             debug(D_WEB_CLIENT, "%llu: Waiting for more data to become available.", w->id);
2362             w->wait_send = 0;
2363             return t;
2364         }
2365
2366         if(unlikely(!w->keepalive)) {
2367             debug(D_WEB_CLIENT, "%llu: Closing (keep-alive is not enabled). %zu bytes sent.", w->id, w->response.sent);
2368             WEB_CLIENT_IS_DEAD(w);
2369             return t;
2370         }
2371
2372         // reset the client
2373         web_client_reset(w);
2374         debug(D_WEB_CLIENT, "%llu: Done sending all data on socket.", w->id);
2375         return t;
2376     }
2377
2378     if(w->response.zhave == w->response.zsent) {
2379         // compress more input data
2380
2381         // close the previous open chunk
2382         if(w->response.sent != 0) {
2383             t = web_client_send_chunk_close(w);
2384             if(t < 0) return t;
2385         }
2386
2387         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);
2388
2389         // give the compressor all the data not passed through the compressor yet
2390         if(w->response.data->len > w->response.sent) {
2391             w->response.zstream.next_in = (Bytef *)&w->response.data->buffer[w->response.sent - w->response.zstream.avail_in];
2392             w->response.zstream.avail_in += (uInt) (w->response.data->len - w->response.sent);
2393         }
2394
2395         // reset the compressor output buffer
2396         w->response.zstream.next_out = w->response.zbuffer;
2397         w->response.zstream.avail_out = ZLIB_CHUNK;
2398
2399         // ask for FINISH if we have all the input
2400         int flush = Z_SYNC_FLUSH;
2401         if(w->mode == WEB_CLIENT_MODE_NORMAL
2402             || (w->mode == WEB_CLIENT_MODE_FILECOPY && !w->wait_receive && w->response.data->len == w->response.rlen)) {
2403             flush = Z_FINISH;
2404             debug(D_DEFLATE, "%llu: Requesting Z_FINISH, if possible.", w->id);
2405         }
2406         else {
2407             debug(D_DEFLATE, "%llu: Requesting Z_SYNC_FLUSH.", w->id);
2408         }
2409
2410         // compress
2411         if(deflate(&w->response.zstream, flush) == Z_STREAM_ERROR) {
2412             error("%llu: Compression failed. Closing down client.", w->id);
2413             web_client_reset(w);
2414             return(-1);
2415         }
2416
2417         w->response.zhave = ZLIB_CHUNK - w->response.zstream.avail_out;
2418         w->response.zsent = 0;
2419
2420         // keep track of the bytes passed through the compressor
2421         w->response.sent = w->response.data->len;
2422
2423         debug(D_DEFLATE, "%llu: Compression produced %zu bytes.", w->id, w->response.zhave);
2424
2425         // open a new chunk
2426         ssize_t t2 = web_client_send_chunk_header(w, w->response.zhave);
2427         if(t2 < 0) return t2;
2428         t += t2;
2429     }
2430     
2431     debug(D_WEB_CLIENT, "%llu: Sending %zu bytes of data (+%zd of chunk header).", w->id, w->response.zhave - w->response.zsent, t);
2432
2433     len = send(w->ofd, &w->response.zbuffer[w->response.zsent], (size_t) (w->response.zhave - w->response.zsent), MSG_DONTWAIT);
2434     if(len > 0) {
2435         w->stats_sent_bytes += len;
2436         w->response.zsent += len;
2437         len += t;
2438         debug(D_WEB_CLIENT, "%llu: Sent %zd bytes.", w->id, len);
2439     }
2440     else if(len == 0) {
2441         debug(D_WEB_CLIENT, "%llu: Did not send any bytes to the client (zhave = %zu, zsent = %zu, need to send = %zu).",
2442             w->id, w->response.zhave, w->response.zsent, w->response.zhave - w->response.zsent);
2443
2444         WEB_CLIENT_IS_DEAD(w);
2445     }
2446     else {
2447         debug(D_WEB_CLIENT, "%llu: Failed to send data to client.", w->id);
2448         WEB_CLIENT_IS_DEAD(w);
2449     }
2450
2451     return(len);
2452 }
2453 #endif // NETDATA_WITH_ZLIB
2454
2455 ssize_t web_client_send(struct web_client *w) {
2456 #ifdef NETDATA_WITH_ZLIB
2457     if(likely(w->response.zoutput)) return web_client_send_deflate(w);
2458 #endif // NETDATA_WITH_ZLIB
2459
2460     ssize_t bytes;
2461
2462     if(unlikely(w->response.data->len - w->response.sent == 0)) {
2463         // there is nothing to send
2464
2465         debug(D_WEB_CLIENT, "%llu: Out of output data.", w->id);
2466
2467         // there can be two cases for this
2468         // A. we have done everything
2469         // B. we temporarily have nothing to send, waiting for the buffer to be filled by ifd
2470
2471         if(w->mode == WEB_CLIENT_MODE_FILECOPY && w->wait_receive && w->response.rlen && w->response.rlen > w->response.data->len) {
2472             // we have to wait, more data will come
2473             debug(D_WEB_CLIENT, "%llu: Waiting for more data to become available.", w->id);
2474             w->wait_send = 0;
2475             return 0;
2476         }
2477
2478         if(unlikely(!w->keepalive)) {
2479             debug(D_WEB_CLIENT, "%llu: Closing (keep-alive is not enabled). %zu bytes sent.", w->id, w->response.sent);
2480             WEB_CLIENT_IS_DEAD(w);
2481             return 0;
2482         }
2483
2484         web_client_reset(w);
2485         debug(D_WEB_CLIENT, "%llu: Done sending all data on socket. Waiting for next request on the same socket.", w->id);
2486         return 0;
2487     }
2488
2489     bytes = send(w->ofd, &w->response.data->buffer[w->response.sent], w->response.data->len - w->response.sent, MSG_DONTWAIT);
2490     if(likely(bytes > 0)) {
2491         w->stats_sent_bytes += bytes;
2492         w->response.sent += bytes;
2493         debug(D_WEB_CLIENT, "%llu: Sent %zd bytes.", w->id, bytes);
2494     }
2495     else if(likely(bytes == 0)) {
2496         debug(D_WEB_CLIENT, "%llu: Did not send any bytes to the client.", w->id);
2497         WEB_CLIENT_IS_DEAD(w);
2498     }
2499     else {
2500         debug(D_WEB_CLIENT, "%llu: Failed to send data to client.", w->id);
2501         WEB_CLIENT_IS_DEAD(w);
2502     }
2503
2504     return(bytes);
2505 }
2506
2507 ssize_t web_client_receive(struct web_client *w)
2508 {
2509     // do we have any space for more data?
2510     buffer_need_bytes(w->response.data, WEB_REQUEST_LENGTH);
2511
2512     ssize_t left = w->response.data->size - w->response.data->len;
2513     ssize_t bytes;
2514
2515     if(unlikely(w->mode == WEB_CLIENT_MODE_FILECOPY))
2516         bytes = read(w->ifd, &w->response.data->buffer[w->response.data->len], (size_t) (left - 1));
2517     else
2518         bytes = recv(w->ifd, &w->response.data->buffer[w->response.data->len], (size_t) (left - 1), MSG_DONTWAIT);
2519
2520     if(likely(bytes > 0)) {
2521         if(w->mode != WEB_CLIENT_MODE_FILECOPY)
2522             w->stats_received_bytes += bytes;
2523
2524         size_t old = w->response.data->len;
2525         w->response.data->len += bytes;
2526         w->response.data->buffer[w->response.data->len] = '\0';
2527
2528         debug(D_WEB_CLIENT, "%llu: Received %zd bytes.", w->id, bytes);
2529         debug(D_WEB_DATA, "%llu: Received data: '%s'.", w->id, &w->response.data->buffer[old]);
2530
2531         if(w->mode == WEB_CLIENT_MODE_FILECOPY) {
2532             w->wait_send = 1;
2533
2534             if(w->response.rlen && w->response.data->len >= w->response.rlen)
2535                 w->wait_receive = 0;
2536         }
2537     }
2538     else if(likely(bytes == 0)) {
2539         debug(D_WEB_CLIENT, "%llu: Out of input data.", w->id);
2540
2541         // if we cannot read, it means we have an error on input.
2542         // if however, we are copying a file from ifd to ofd, we should not return an error.
2543         // in this case, the error should be generated when the file has been sent to the client.
2544
2545         if(w->mode == WEB_CLIENT_MODE_FILECOPY) {
2546             // we are copying data from ifd to ofd
2547             // let it finish copying...
2548             w->wait_receive = 0;
2549
2550             debug(D_WEB_CLIENT, "%llu: Read the whole file.", w->id);
2551             if(w->ifd != w->ofd) close(w->ifd);
2552             w->ifd = w->ofd;
2553         }
2554         else {
2555             debug(D_WEB_CLIENT, "%llu: failed to receive data.", w->id);
2556             WEB_CLIENT_IS_DEAD(w);
2557         }
2558     }
2559     else {
2560         debug(D_WEB_CLIENT, "%llu: receive data failed.", w->id);
2561         WEB_CLIENT_IS_DEAD(w);
2562     }
2563
2564     return(bytes);
2565 }
2566
2567
2568 // --------------------------------------------------------------------------------------
2569 // the thread of a single client
2570
2571 // 1. waits for input and output, using async I/O
2572 // 2. it processes HTTP requests
2573 // 3. it generates HTTP responses
2574 // 4. it copies data from input to output if mode is FILECOPY
2575
2576 void *web_client_main(void *ptr)
2577 {
2578     if(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) != 0)
2579         error("Cannot set pthread cancel type to DEFERRED.");
2580
2581     if(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0)
2582         error("Cannot set pthread cancel state to ENABLE.");
2583
2584     struct web_client *w = ptr;
2585     struct pollfd fds[2], *ifd, *ofd;
2586     int retval, fdmax = 0, timeout;
2587
2588     log_access("%llu: %s port %s connected on thread task id %d", w->id, w->client_ip, w->client_port, gettid());
2589
2590     for(;;) {
2591         if(unlikely(w->dead)) {
2592             debug(D_WEB_CLIENT, "%llu: client is dead.", w->id);
2593             break;
2594         }
2595         else if(unlikely(!w->wait_receive && !w->wait_send)) {
2596             debug(D_WEB_CLIENT, "%llu: client is not set for neither receiving nor sending data.", w->id);
2597             break;
2598         }
2599
2600         if(unlikely(w->ifd < 0 || w->ofd < 0)) {
2601             error("%llu: invalid file descriptor, ifd = %d, ofd = %d (required 0 <= fd", w->id, w->ifd, w->ofd);
2602             break;
2603         }
2604
2605         if(w->ifd == w->ofd) {
2606             fds[0].fd = w->ifd;
2607             fds[0].events = 0;
2608             fds[0].revents = 0;
2609
2610             if(w->wait_receive) fds[0].events |= POLLIN;
2611             if(w->wait_send)    fds[0].events |= POLLOUT;
2612
2613             fds[1].fd = -1;
2614             fds[1].events = 0;
2615             fds[1].revents = 0;
2616
2617             ifd = ofd = &fds[0];
2618
2619             fdmax = 1;
2620         }
2621         else {
2622             fds[0].fd = w->ifd;
2623             fds[0].events = 0;
2624             fds[0].revents = 0;
2625             if(w->wait_receive) fds[0].events |= POLLIN;
2626             ifd = &fds[0];
2627
2628             fds[1].fd = w->ofd;
2629             fds[1].events = 0;
2630             fds[1].revents = 0;
2631             if(w->wait_send)    fds[1].events |= POLLOUT;
2632             ofd = &fds[1];
2633
2634             fdmax = 2;
2635         }
2636
2637         debug(D_WEB_CLIENT, "%llu: Waiting socket async I/O for %s %s", w->id, w->wait_receive?"INPUT":"", w->wait_send?"OUTPUT":"");
2638         errno = 0;
2639         timeout = web_client_timeout * 1000;
2640         retval = poll(fds, fdmax, timeout);
2641
2642         if(unlikely(retval == -1)) {
2643             if(errno == EAGAIN || errno == EINTR) {
2644                 debug(D_WEB_CLIENT, "%llu: EAGAIN received.", w->id);
2645                 continue;
2646             }
2647
2648             debug(D_WEB_CLIENT, "%llu: LISTENER: poll() failed (input fd = %d, output fd = %d). Closing client.", w->id, w->ifd, w->ofd);
2649             break;
2650         }
2651         else if(unlikely(!retval)) {
2652             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":"");
2653             break;
2654         }
2655
2656         int used = 0;
2657         if(w->wait_send && ofd->revents & POLLOUT) {
2658             used++;
2659             if(web_client_send(w) < 0) {
2660                 debug(D_WEB_CLIENT, "%llu: Cannot send data to client. Closing client.", w->id);
2661                 break;
2662             }
2663         }
2664
2665         if(w->wait_receive && (ifd->revents & POLLIN || ifd->revents & POLLPRI)) {
2666             used++;
2667             if(web_client_receive(w) < 0) {
2668                 debug(D_WEB_CLIENT, "%llu: Cannot receive data from client. Closing client.", w->id);
2669                 break;
2670             }
2671
2672             if(w->mode == WEB_CLIENT_MODE_NORMAL) {
2673                 debug(D_WEB_CLIENT, "%llu: Attempting to process received data.", w->id);
2674                 web_client_process(w);
2675             }
2676         }
2677
2678         if(unlikely(!used)) {
2679             debug(D_WEB_CLIENT_ACCESS, "%llu: Received error on socket.", w->id);
2680             break;
2681         }
2682     }
2683
2684     web_client_reset(w);
2685
2686     log_access("%llu: %s port %s disconnected from thread task id %d", w->id, w->client_ip, w->client_port, gettid());
2687     debug(D_WEB_CLIENT, "%llu: done...", w->id);
2688
2689     // close the sockets/files now
2690     // to free file descriptors
2691     if(w->ifd == w->ofd) {
2692         if(w->ifd != -1) close(w->ifd);
2693     }
2694     else {
2695         if(w->ifd != -1) close(w->ifd);
2696         if(w->ofd != -1) close(w->ofd);
2697     }
2698     w->ifd = -1;
2699     w->ofd = -1;
2700
2701     w->obsolete = 1;
2702
2703     pthread_exit(NULL);
2704     return NULL;
2705 }