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