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