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