Optimisation of xreq
[src/app-framework-binder.git] / src / afb-hreq.c
1 /*
2  * Copyright (C) 2016, 2017 "IoT.bzh"
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define _GNU_SOURCE
19
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <assert.h>
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <sys/stat.h>
27
28 #include <microhttpd.h>
29 #include <json-c/json.h>
30
31 #if defined(USE_MAGIC_MIME_TYPE)
32 #include <magic.h>
33 #endif
34
35 #include "afb-method.h"
36 #include <afb/afb-req-itf.h>
37 #include "afb-msg-json.h"
38 #include "afb-context.h"
39 #include "afb-hreq.h"
40 #include "afb-subcall.h"
41 #include "afb-session.h"
42 #include "verbose.h"
43 #include "locale-root.h"
44
45 #define SIZE_RESPONSE_BUFFER   8192
46
47 static int global_reqids = 0;
48
49 static char empty_string[] = "";
50
51 static const char long_key_for_uuid[] = "x-afb-uuid";
52 static const char short_key_for_uuid[] = "uuid";
53
54 static const char long_key_for_token[] = "x-afb-token";
55 static const char short_key_for_token[] = "token";
56
57 static const char long_key_for_reqid[] = "x-afb-reqid";
58 static const char short_key_for_reqid[] = "reqid";
59
60 static char *cookie_name = NULL;
61 static char *cookie_setter = NULL;
62 static char *tmp_pattern = NULL;
63
64 /*
65  * Structure for storing key/values read from POST requests
66  */
67 struct hreq_data {
68         struct hreq_data *next; /* chain to next data */
69         char *key;              /* key name */
70         size_t length;          /* length of the value (used for appending) */
71         char *value;            /* the value (or original filename) */
72         char *path;             /* path of the file saved */
73 };
74
75 static struct json_object *req_json(struct afb_xreq *xreq);
76 static struct afb_arg req_get(struct afb_xreq *xreq, const char *name);
77 static void req_fail(struct afb_xreq *xreq, const char *status, const char *info);
78 static void req_success(struct afb_xreq *xreq, json_object *obj, const char *info);
79 static void req_destroy(struct afb_xreq *xreq);
80
81 const struct afb_xreq_query_itf afb_hreq_xreq_query_itf = {
82         .json = req_json,
83         .get = req_get,
84         .success = req_success,
85         .fail = req_fail,
86         .unref = req_destroy
87 };
88
89 static struct hreq_data *get_data(struct afb_hreq *hreq, const char *key, int create)
90 {
91         struct hreq_data *data = hreq->data;
92         while (data != NULL) {
93                 if (!strcasecmp(data->key, key))
94                         return data;
95                 data = data->next;
96         }
97         if (create) {
98                 data = calloc(1, sizeof *data);
99                 if (data != NULL) {
100                         data->key = strdup(key);
101                         if (data->key == NULL) {
102                                 free(data);
103                                 data = NULL;
104                         } else {
105                                 data->next = hreq->data;
106                                 hreq->data = data;
107                         }
108                 }
109         }
110         return data;
111 }
112
113 /* a valid subpath is a relative path not looking deeper than root using .. */
114 static int validsubpath(const char *subpath)
115 {
116         int l = 0, i = 0;
117
118         while (subpath[i]) {
119                 switch (subpath[i++]) {
120                 case '.':
121                         if (!subpath[i])
122                                 break;
123                         if (subpath[i] == '/') {
124                                 i++;
125                                 break;
126                         }
127                         if (subpath[i++] == '.') {
128                                 if (!subpath[i]) {
129                                         if (--l < 0)
130                                                 return 0;
131                                         break;
132                                 }
133                                 if (subpath[i++] == '/') {
134                                         if (--l < 0)
135                                                 return 0;
136                                         break;
137                                 }
138                         }
139                 default:
140                         while (subpath[i] && subpath[i] != '/')
141                                 i++;
142                         l++;
143                 case '/':
144                         break;
145                 }
146         }
147         return 1;
148 }
149
150 static void afb_hreq_reply_v(struct afb_hreq *hreq, unsigned status, struct MHD_Response *response, va_list args)
151 {
152         char *cookie;
153         const char *k, *v;
154
155         if (hreq->replied != 0)
156                 return;
157
158         k = va_arg(args, const char *);
159         while (k != NULL) {
160                 v = va_arg(args, const char *);
161                 MHD_add_response_header(response, k, v);
162                 k = va_arg(args, const char *);
163         }
164         v = afb_context_sent_uuid(&hreq->xreq.context);
165         if (v != NULL && asprintf(&cookie, cookie_setter, v) > 0) {
166                 MHD_add_response_header(response, MHD_HTTP_HEADER_SET_COOKIE, cookie);
167                 free(cookie);
168         }
169         MHD_queue_response(hreq->connection, status, response);
170         MHD_destroy_response(response);
171
172         hreq->replied = 1;
173         if (hreq->suspended != 0) {
174                 extern void run_micro_httpd(struct afb_hsrv *hsrv);
175                 MHD_resume_connection (hreq->connection);
176                 hreq->suspended = 0;
177                 run_micro_httpd(hreq->hsrv);
178         }
179 }
180
181 void afb_hreq_reply(struct afb_hreq *hreq, unsigned status, struct MHD_Response *response, ...)
182 {
183         va_list args;
184         va_start(args, response);
185         afb_hreq_reply_v(hreq, status, response, args);
186         va_end(args);
187 }
188
189 void afb_hreq_reply_empty(struct afb_hreq *hreq, unsigned status, ...)
190 {
191         va_list args;
192         va_start(args, status);
193         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer(0, NULL, MHD_RESPMEM_PERSISTENT), args);
194         va_end(args);
195 }
196
197 void afb_hreq_reply_static(struct afb_hreq *hreq, unsigned status, size_t size, const char *buffer, ...)
198 {
199         va_list args;
200         va_start(args, buffer);
201         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer((unsigned)size, (char*)buffer, MHD_RESPMEM_PERSISTENT), args);
202         va_end(args);
203 }
204
205 void afb_hreq_reply_copy(struct afb_hreq *hreq, unsigned status, size_t size, const char *buffer, ...)
206 {
207         va_list args;
208         va_start(args, buffer);
209         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer((unsigned)size, (char*)buffer, MHD_RESPMEM_MUST_COPY), args);
210         va_end(args);
211 }
212
213 void afb_hreq_reply_free(struct afb_hreq *hreq, unsigned status, size_t size, char *buffer, ...)
214 {
215         va_list args;
216         va_start(args, buffer);
217         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer((unsigned)size, buffer, MHD_RESPMEM_MUST_FREE), args);
218         va_end(args);
219 }
220
221 #if defined(USE_MAGIC_MIME_TYPE)
222
223 #if !defined(MAGIC_DB)
224 #define MAGIC_DB "/usr/share/misc/magic.mgc"
225 #endif
226
227 static magic_t lazy_libmagic()
228 {
229         static int done = 0;
230         static magic_t result = NULL;
231
232         if (!done) {
233                 done = 1;
234                 /* MAGIC_MIME tells magic to return a mime of the file,
235                          but you can specify different things */
236                 INFO("Loading mimetype default magic database");
237                 result = magic_open(MAGIC_MIME_TYPE);
238                 if (result == NULL) {
239                         ERROR("unable to initialize magic library");
240                 }
241                 /* Warning: should not use NULL for DB
242                                 [libmagic bug wont pass efence check] */
243                 else if (magic_load(result, MAGIC_DB) != 0) {
244                         ERROR("cannot load magic database: %s", magic_error(result));
245                         magic_close(result);
246                         result = NULL;
247                 }
248         }
249
250         return result;
251 }
252
253 static const char *magic_mimetype_fd(int fd)
254 {
255         magic_t lib = lazy_libmagic();
256         return lib ? magic_descriptor(lib, fd) : NULL;
257 }
258
259 #endif
260
261 static const char *mimetype_fd_name(int fd, const char *filename)
262 {
263         const char *result = NULL;
264
265 #if defined(INFER_EXTENSION)
266         /*
267          * Set some well-known extensions
268          * Note that it is mandatory for example for css files in order to provide
269          * right mimetype that must be text/css (otherwise chrome browser will not
270          * load correctly css file) while libmagic returns text/plain.
271          */
272         const char *extension = strrchr(filename, '.');
273         if (extension) {
274                 static const char *const known[][2] = {
275                         { ".js",   "text/javascript" },
276                         { ".html", "text/html" },
277                         { ".css",  "text/css" },
278                         { ".ico",  "image/x-icon"},
279                         { ".png",  "image/png" },
280                         { ".svg",  "image/svg+xml" },
281                         { ".ttf",  "application/x-font-ttf"},
282                         { NULL, NULL }
283                 };
284                 int i = 0;
285                 while (known[i][0]) {
286                         if (!strcasecmp(extension, known[i][0])) {
287                                 result = known[i][1];
288                                 break;
289                         }
290                         i++;
291                 }
292         }
293 #endif
294 #if defined(USE_MAGIC_MIME_TYPE)
295         if (result == NULL)
296                 result = magic_mimetype_fd(fd);
297 #endif
298         return result;
299 }
300
301 static void req_destroy(struct afb_xreq *xreq)
302 {
303         struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq);
304         struct hreq_data *data;
305
306         if (hreq->postform != NULL)
307                 MHD_destroy_post_processor(hreq->postform);
308         for (data = hreq->data; data; data = hreq->data) {
309                 hreq->data = data->next;
310                 if (data->path) {
311                         unlink(data->path);
312                         free(data->path);
313                 }
314                 free(data->key);
315                 free(data->value);
316                 free(data);
317         }
318         afb_context_disconnect(&hreq->xreq.context);
319         json_object_put(hreq->json);
320         free((char*)hreq->xreq.api);
321         free((char*)hreq->xreq.verb);
322         free(hreq);
323 }
324
325 void afb_hreq_addref(struct afb_hreq *hreq)
326 {
327         afb_xreq_addref(&hreq->xreq);
328 }
329
330 void afb_hreq_unref(struct afb_hreq *hreq)
331 {
332         afb_xreq_unref(&hreq->xreq);
333 }
334
335 /*
336  * Removes the 'prefix' of 'length' from the tail of 'hreq'
337  * if and only if the prefix exists and is terminated by a leading
338  * slash
339  */
340 int afb_hreq_unprefix(struct afb_hreq *hreq, const char *prefix, size_t length)
341 {
342         /* check the prefix ? */
343         if (length > hreq->lentail || (hreq->tail[length] && hreq->tail[length] != '/')
344             || strncasecmp(prefix, hreq->tail, length))
345                 return 0;
346
347         /* removes successives / */
348         while (length < hreq->lentail && hreq->tail[length + 1] == '/')
349                 length++;
350
351         /* update the tail */
352         hreq->lentail -= length;
353         hreq->tail += length;
354         return 1;
355 }
356
357 int afb_hreq_valid_tail(struct afb_hreq *hreq)
358 {
359         return validsubpath(hreq->tail);
360 }
361
362 void afb_hreq_reply_error(struct afb_hreq *hreq, unsigned int status)
363 {
364         afb_hreq_reply_empty(hreq, status, NULL);
365 }
366
367 int afb_hreq_redirect_to_ending_slash_if_needed(struct afb_hreq *hreq)
368 {
369         char *tourl;
370
371         if (hreq->url[hreq->lenurl - 1] == '/')
372                 return 0;
373
374         /* the redirect is needed for reliability of relative path */
375         tourl = alloca(hreq->lenurl + 2);
376         memcpy(tourl, hreq->url, hreq->lenurl);
377         tourl[hreq->lenurl] = '/';
378         tourl[hreq->lenurl + 1] = 0;
379         afb_hreq_redirect_to(hreq, tourl, 1);
380         return 1;
381 }
382
383 int afb_hreq_reply_file_if_exist(struct afb_hreq *hreq, int dirfd, const char *filename)
384 {
385         int rc;
386         int fd;
387         unsigned int status;
388         struct stat st;
389         char etag[1 + 2 * 8];
390         const char *inm;
391         struct MHD_Response *response;
392         const char *mimetype;
393
394         /* Opens the file or directory */
395         if (filename[0]) {
396                 fd = openat(dirfd, filename, O_RDONLY);
397                 if (fd < 0) {
398                         if (errno == ENOENT)
399                                 return 0;
400                         afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
401                         return 1;
402                 }
403         } else {
404                 fd = dup(dirfd);
405                 if (fd < 0) {
406                         afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
407                         return 1;
408                 }
409         }
410
411         /* Retrieves file's status */
412         if (fstat(fd, &st) != 0) {
413                 close(fd);
414                 afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
415                 return 1;
416         }
417
418         /* serve directory */
419         if (S_ISDIR(st.st_mode)) {
420                 rc = afb_hreq_redirect_to_ending_slash_if_needed(hreq);
421                 if (rc == 0) {
422                         static const char *indexes[] = { "index.html", NULL };
423                         int i = 0;
424                         while (indexes[i] != NULL) {
425                                 if (faccessat(fd, indexes[i], R_OK, 0) == 0) {
426                                         rc = afb_hreq_reply_file_if_exist(hreq, fd, indexes[i]);
427                                         break;
428                                 }
429                                 i++;
430                         }
431                 }
432                 close(fd);
433                 return rc;
434         }
435
436         /* Don't serve special files */
437         if (!S_ISREG(st.st_mode)) {
438                 close(fd);
439                 afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
440                 return 1;
441         }
442
443         /* Check the method */
444         if ((hreq->method & (afb_method_get | afb_method_head)) == 0) {
445                 close(fd);
446                 afb_hreq_reply_error(hreq, MHD_HTTP_METHOD_NOT_ALLOWED);
447                 return 1;
448         }
449
450         /* computes the etag */
451         sprintf(etag, "%08X%08X", ((int)(st.st_mtim.tv_sec) ^ (int)(st.st_mtim.tv_nsec)), (int)(st.st_size));
452
453         /* checks the etag */
454         inm = MHD_lookup_connection_value(hreq->connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_IF_NONE_MATCH);
455         if (inm && 0 == strcmp(inm, etag)) {
456                 /* etag ok, return NOT MODIFIED */
457                 close(fd);
458                 DEBUG("Not Modified: [%s]", filename);
459                 response = MHD_create_response_from_buffer(0, empty_string, MHD_RESPMEM_PERSISTENT);
460                 status = MHD_HTTP_NOT_MODIFIED;
461         } else {
462                 /* check the size */
463                 if (st.st_size != (off_t) (size_t) st.st_size) {
464                         close(fd);
465                         afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
466                         return 1;
467                 }
468
469                 /* create the response */
470                 response = MHD_create_response_from_fd((size_t) st.st_size, fd);
471                 status = MHD_HTTP_OK;
472
473                 /* set the type */
474                 mimetype = mimetype_fd_name(fd, filename);
475                 if (mimetype != NULL)
476                         MHD_add_response_header(response, MHD_HTTP_HEADER_CONTENT_TYPE, mimetype);
477         }
478
479         /* fills the value and send */
480         afb_hreq_reply(hreq, status, response,
481                         MHD_HTTP_HEADER_CACHE_CONTROL, hreq->cacheTimeout,
482                         MHD_HTTP_HEADER_ETAG, etag,
483                         NULL);
484         return 1;
485 }
486
487 int afb_hreq_reply_file(struct afb_hreq *hreq, int dirfd, const char *filename)
488 {
489         int rc = afb_hreq_reply_file_if_exist(hreq, dirfd, filename);
490         if (rc == 0)
491                 afb_hreq_reply_error(hreq, MHD_HTTP_NOT_FOUND);
492         return 1;
493 }
494
495 int afb_hreq_reply_locale_file_if_exist(struct afb_hreq *hreq, struct locale_search *search, const char *filename)
496 {
497         int rc;
498         int fd;
499         unsigned int status;
500         struct stat st;
501         char etag[1 + 2 * 8];
502         const char *inm;
503         struct MHD_Response *response;
504         const char *mimetype;
505
506         /* Opens the file or directory */
507         fd = locale_search_open(search, filename[0] ? filename : ".", O_RDONLY);
508         if (fd < 0) {
509                 if (errno == ENOENT)
510                         return 0;
511                 afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
512                 return 1;
513         }
514
515         /* Retrieves file's status */
516         if (fstat(fd, &st) != 0) {
517                 close(fd);
518                 afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
519                 return 1;
520         }
521
522         /* serve directory */
523         if (S_ISDIR(st.st_mode)) {
524                 rc = afb_hreq_redirect_to_ending_slash_if_needed(hreq);
525                 if (rc == 0) {
526                         static const char *indexes[] = { "index.html", NULL };
527                         int i = 0;
528                         size_t length = strlen(filename);
529                         char *extname = alloca(length + 30); /* 30 is enough to old data of indexes */
530                         memcpy(extname, filename, length);
531                         if (length && extname[length - 1] != '/')
532                                 extname[length++] = '/';
533                         while (rc == 0 && indexes[i] != NULL) {
534                                 strcpy(extname + length, indexes[i++]);
535                                 rc = afb_hreq_reply_locale_file_if_exist(hreq, search, extname);
536                         }
537                 }
538                 close(fd);
539                 return rc;
540         }
541
542         /* Don't serve special files */
543         if (!S_ISREG(st.st_mode)) {
544                 close(fd);
545                 afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
546                 return 1;
547         }
548
549         /* Check the method */
550         if ((hreq->method & (afb_method_get | afb_method_head)) == 0) {
551                 close(fd);
552                 afb_hreq_reply_error(hreq, MHD_HTTP_METHOD_NOT_ALLOWED);
553                 return 1;
554         }
555
556         /* computes the etag */
557         sprintf(etag, "%08X%08X", ((int)(st.st_mtim.tv_sec) ^ (int)(st.st_mtim.tv_nsec)), (int)(st.st_size));
558
559         /* checks the etag */
560         inm = MHD_lookup_connection_value(hreq->connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_IF_NONE_MATCH);
561         if (inm && 0 == strcmp(inm, etag)) {
562                 /* etag ok, return NOT MODIFIED */
563                 close(fd);
564                 DEBUG("Not Modified: [%s]", filename);
565                 response = MHD_create_response_from_buffer(0, empty_string, MHD_RESPMEM_PERSISTENT);
566                 status = MHD_HTTP_NOT_MODIFIED;
567         } else {
568                 /* check the size */
569                 if (st.st_size != (off_t) (size_t) st.st_size) {
570                         close(fd);
571                         afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
572                         return 1;
573                 }
574
575                 /* create the response */
576                 response = MHD_create_response_from_fd((size_t) st.st_size, fd);
577                 status = MHD_HTTP_OK;
578
579                 /* set the type */
580                 mimetype = mimetype_fd_name(fd, filename);
581                 if (mimetype != NULL)
582                         MHD_add_response_header(response, MHD_HTTP_HEADER_CONTENT_TYPE, mimetype);
583         }
584
585         /* fills the value and send */
586         afb_hreq_reply(hreq, status, response,
587                         MHD_HTTP_HEADER_CACHE_CONTROL, hreq->cacheTimeout,
588                         MHD_HTTP_HEADER_ETAG, etag,
589                         NULL);
590         return 1;
591 }
592
593 int afb_hreq_reply_locale_file(struct afb_hreq *hreq, struct locale_search *search, const char *filename)
594 {
595         int rc = afb_hreq_reply_locale_file_if_exist(hreq, search, filename);
596         if (rc == 0)
597                 afb_hreq_reply_error(hreq, MHD_HTTP_NOT_FOUND);
598         return 1;
599 }
600
601 struct _mkq_ {
602         int count;
603         size_t length;
604         size_t alloc;
605         char *text;
606 };
607
608 static void _mkq_add_(struct _mkq_ *mkq, char value)
609 {
610         char *text = mkq->text;
611         if (text != NULL) {
612                 if (mkq->length == mkq->alloc) {
613                         mkq->alloc += 100;
614                         text = realloc(text, mkq->alloc);
615                         if (text == NULL) {
616                                 free(mkq->text);
617                                 mkq->text = NULL;
618                                 return;
619                         }
620                         mkq->text = text;
621                 }
622                 text[mkq->length++] = value;
623         }
624 }
625
626 static void _mkq_add_hex_(struct _mkq_ *mkq, char value)
627 {
628         _mkq_add_(mkq, (char)(value < 10 ? value + '0' : value + 'A' - 10));
629 }
630
631 static void _mkq_add_esc_(struct _mkq_ *mkq, char value)
632 {
633         _mkq_add_(mkq, '%');
634         _mkq_add_hex_(mkq, (char)((value >> 4) & 15));
635         _mkq_add_hex_(mkq, (char)(value & 15));
636 }
637
638 static void _mkq_add_char_(struct _mkq_ *mkq, char value)
639 {
640         if (value <= ' ' || value >= 127)
641                 _mkq_add_esc_(mkq, value);
642         else
643                 switch(value) {
644                 case '=':
645                 case '&':
646                 case '%':
647                         _mkq_add_esc_(mkq, value);
648                         break;
649                 default:
650                         _mkq_add_(mkq, value);
651                 }
652 }
653
654 static void _mkq_append_(struct _mkq_ *mkq, const char *value)
655 {
656         while(*value)
657                 _mkq_add_char_(mkq, *value++);
658 }
659
660 static int _mkquery_(struct _mkq_ *mkq, enum MHD_ValueKind kind, const char *key, const char *value)
661 {
662         _mkq_add_(mkq, mkq->count++ ? '&' : '?');
663         _mkq_append_(mkq, key);
664         if (value != NULL) {
665                 _mkq_add_(mkq, '=');
666                 _mkq_append_(mkq, value);
667         }
668         return 1;
669 }
670
671 static char *url_with_query(struct afb_hreq *hreq, const char *url)
672 {
673         struct _mkq_ mkq;
674
675         mkq.count = 0;
676         mkq.length = strlen(url);
677         mkq.alloc = mkq.length + 1000;
678         mkq.text = malloc(mkq.alloc);
679         if (mkq.text != NULL) {
680                 strcpy(mkq.text, url);
681                 MHD_get_connection_values(hreq->connection, MHD_GET_ARGUMENT_KIND, (void*)_mkquery_, &mkq);
682                 _mkq_add_(&mkq, 0);
683         }
684         return mkq.text;
685 }
686
687 void afb_hreq_redirect_to(struct afb_hreq *hreq, const char *url, int add_query_part)
688 {
689         const char *to;
690         char *wqp;
691
692         wqp = add_query_part ? url_with_query(hreq, url) : NULL;
693         to = wqp ? : url;
694         afb_hreq_reply_static(hreq, MHD_HTTP_MOVED_PERMANENTLY, 0, NULL,
695                         MHD_HTTP_HEADER_LOCATION, to, NULL);
696         DEBUG("redirect from [%s] to [%s]", hreq->url, url);
697         free(wqp);
698 }
699
700 const char *afb_hreq_get_cookie(struct afb_hreq *hreq, const char *name)
701 {
702         return MHD_lookup_connection_value(hreq->connection, MHD_COOKIE_KIND, name);
703 }
704
705 const char *afb_hreq_get_argument(struct afb_hreq *hreq, const char *name)
706 {
707         struct hreq_data *data = get_data(hreq, name, 0);
708         return data ? data->value : MHD_lookup_connection_value(hreq->connection, MHD_GET_ARGUMENT_KIND, name);
709 }
710
711 const char *afb_hreq_get_header(struct afb_hreq *hreq, const char *name)
712 {
713         return MHD_lookup_connection_value(hreq->connection, MHD_HEADER_KIND, name);
714 }
715
716 int afb_hreq_post_add(struct afb_hreq *hreq, const char *key, const char *data, size_t size)
717 {
718         void *p;
719         struct hreq_data *hdat = get_data(hreq, key, 1);
720         if (hdat->path != NULL) {
721                 return 0;
722         }
723         p = realloc(hdat->value, hdat->length + size + 1);
724         if (p == NULL) {
725                 return 0;
726         }
727         hdat->value = p;
728         memcpy(&hdat->value[hdat->length], data, size);
729         hdat->length += size;
730         hdat->value[hdat->length] = 0;
731         return 1;
732 }
733
734 int afb_hreq_init_download_path(const char *directory)
735 {
736         struct stat st;
737         size_t n;
738         char *p;
739
740         if (access(directory, R_OK|W_OK)) {
741                 /* no read/write access */
742                 return -1;
743         }
744         if (stat(directory, &st)) {
745                 /* can't get info */
746                 return -1;
747         }
748         if (!S_ISDIR(st.st_mode)) {
749                 /* not a directory */
750                 errno = ENOTDIR;
751                 return -1;
752         }
753         n = strlen(directory);
754         while(n > 1 && directory[n-1] == '/') n--;
755         p = malloc(n + 8);
756         if (p == NULL) {
757                 /* can't allocate memory */
758                 errno = ENOMEM;
759                 return -1;
760         }
761         memcpy(p, directory, n);
762         p[n++] = '/';
763         p[n++] = 'X';
764         p[n++] = 'X';
765         p[n++] = 'X';
766         p[n++] = 'X';
767         p[n++] = 'X';
768         p[n++] = 'X';
769         p[n] = 0;
770         free(tmp_pattern);
771         tmp_pattern = p;
772         return 0;
773 }
774
775 static int opentempfile(char **path)
776 {
777         int fd;
778         char *fname;
779
780         fname = strdup(tmp_pattern ? : "XXXXXX"); /* TODO improve the path */
781         if (fname == NULL)
782                 return -1;
783
784         fd = mkostemp(fname, O_CLOEXEC|O_WRONLY);
785         if (fd < 0)
786                 free(fname);
787         else
788                 *path = fname;
789         return fd;
790 }
791
792 int afb_hreq_post_add_file(struct afb_hreq *hreq, const char *key, const char *file, const char *data, size_t size)
793 {
794         int fd;
795         ssize_t sz;
796         struct hreq_data *hdat = get_data(hreq, key, 1);
797
798         if (hdat->value == NULL) {
799                 hdat->value = strdup(file);
800                 if (hdat->value == NULL)
801                         return 0;
802                 fd = opentempfile(&hdat->path);
803         } else if (strcmp(hdat->value, file) || hdat->path == NULL) {
804                 return 0;
805         } else {
806                 fd = open(hdat->path, O_WRONLY|O_APPEND);
807         }
808         if (fd < 0)
809                 return 0;
810         while (size) {
811                 sz = write(fd, data, size);
812                 if (sz >= 0) {
813                         hdat->length += (size_t)sz;
814                         size -= (size_t)sz;
815                         data += sz;
816                 } else if (errno != EINTR)
817                         break;
818         }
819         close(fd);
820         return !size;
821 }
822
823 static struct afb_arg req_get(struct afb_xreq *xreq, const char *name)
824 {
825         const char *value;
826         struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq);
827         struct hreq_data *hdat = get_data(hreq, name, 0);
828         if (hdat)
829                 return (struct afb_arg){
830                         .name = hdat->key,
831                         .value = hdat->value,
832                         .path = hdat->path
833                 };
834
835         value = MHD_lookup_connection_value(hreq->connection, MHD_GET_ARGUMENT_KIND, name);
836         return (struct afb_arg){
837                 .name = value == NULL ? NULL : name,
838                 .value = value,
839                 .path = NULL
840         };
841 }
842
843 static int _iterargs_(struct json_object *obj, enum MHD_ValueKind kind, const char *key, const char *value)
844 {
845         json_object_object_add(obj, key, value ? json_object_new_string(value) : NULL);
846         return 1;
847 }
848
849 static struct json_object *req_json(struct afb_xreq *xreq)
850 {
851         struct hreq_data *hdat;
852         struct json_object *obj, *val;
853         struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq);
854
855         obj = hreq->json;
856         if (obj == NULL) {
857                 hreq->json = obj = json_object_new_object();
858                 if (obj == NULL) {
859                 } else {
860                         MHD_get_connection_values (hreq->connection, MHD_GET_ARGUMENT_KIND, (void*)_iterargs_, obj);
861                         for (hdat = hreq->data ; hdat ; hdat = hdat->next) {
862                                 if (hdat->path == NULL)
863                                         val = hdat->value ? json_object_new_string(hdat->value) : NULL;
864                                 else {
865                                         val = json_object_new_object();
866                                         if (val == NULL) {
867                                         } else {
868                                                 json_object_object_add(val, "file", json_object_new_string(hdat->value));
869                                                 json_object_object_add(val, "path", json_object_new_string(hdat->path));
870                                         }
871                                 }
872                                 json_object_object_add(obj, hdat->key, val);
873                         }
874                 }
875         }
876         return obj;
877 }
878
879 static ssize_t send_json_cb(json_object *obj, uint64_t pos, char *buf, size_t max)
880 {
881         ssize_t len = stpncpy(buf, json_object_to_json_string_ext(obj, JSON_C_TO_STRING_PLAIN)+pos, max) - buf;
882         return len ? : (ssize_t)MHD_CONTENT_READER_END_OF_STREAM;
883 }
884
885 static void req_reply(struct afb_hreq *hreq, unsigned retcode, const char *status, const char *info, json_object *resp)
886 {
887         struct json_object *reply;
888         const char *reqid;
889         struct MHD_Response *response;
890
891         reqid = afb_hreq_get_argument(hreq, long_key_for_reqid);
892         if (reqid == NULL)
893                 reqid = afb_hreq_get_argument(hreq, short_key_for_reqid);
894
895         reply = afb_msg_json_reply(status, info, resp, &hreq->xreq.context, reqid);
896
897         response = MHD_create_response_from_callback((uint64_t)strlen(json_object_to_json_string_ext(reply, JSON_C_TO_STRING_PLAIN)), SIZE_RESPONSE_BUFFER, (void*)send_json_cb, reply, (void*)json_object_put);
898         afb_hreq_reply(hreq, retcode, response, NULL);
899 }
900
901 static void req_fail(struct afb_xreq *xreq, const char *status, const char *info)
902 {
903         struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq);
904         req_reply(hreq, MHD_HTTP_OK, status, info, NULL);
905 }
906
907 static void req_success(struct afb_xreq *xreq, json_object *obj, const char *info)
908 {
909         struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq);
910         req_reply(hreq, MHD_HTTP_OK, "success", info, obj);
911 }
912
913 int afb_hreq_init_req_call(struct afb_hreq *hreq, const char *api, size_t lenapi, const char *verb, size_t lenverb)
914 {
915         hreq->xreq.api = strndup(api, lenapi);
916         hreq->xreq.verb = strndup(verb, lenverb);
917         if (hreq->xreq.api == NULL || hreq->xreq.verb == NULL) {
918                 ERROR("Out of memory");
919                 errno = ENOMEM;
920                 return -1;
921         }
922         return afb_hreq_init_context(hreq);
923 }
924
925 int afb_hreq_init_context(struct afb_hreq *hreq)
926 {
927         const char *uuid;
928         const char *token;
929
930         if (hreq->xreq.context.session != NULL)
931                 return 0;
932
933         uuid = afb_hreq_get_header(hreq, long_key_for_uuid);
934         if (uuid == NULL)
935                 uuid = afb_hreq_get_argument(hreq, long_key_for_uuid);
936         if (uuid == NULL)
937                 uuid = afb_hreq_get_cookie(hreq, cookie_name);
938         if (uuid == NULL)
939                 uuid = afb_hreq_get_argument(hreq, short_key_for_uuid);
940
941         token = afb_hreq_get_header(hreq, long_key_for_token);
942         if (token == NULL)
943                 token = afb_hreq_get_argument(hreq, long_key_for_token);
944         if (token == NULL)
945                 token = afb_hreq_get_argument(hreq, short_key_for_token);
946
947         return afb_context_connect(&hreq->xreq.context, uuid, token);
948 }
949
950 int afb_hreq_init_cookie(int port, const char *path, int maxage)
951 {
952         int rc;
953
954         free(cookie_name);
955         free(cookie_setter);
956         cookie_name = NULL;
957         cookie_setter = NULL;
958
959         path = path ? : "/";
960         rc = asprintf(&cookie_name, "%s-%d", long_key_for_uuid, port);
961         if (rc < 0)
962                 return 0;
963         rc = asprintf(&cookie_setter, "%s=%%s; Path=%s; Max-Age=%d; HttpOnly",
964                         cookie_name, path, maxage);
965         if (rc < 0)
966                 return 0;
967         return 1;
968 }
969
970 struct afb_xreq *afb_hreq_to_xreq(struct afb_hreq *hreq)
971 {
972         return &hreq->xreq;
973 }
974
975 struct afb_hreq *afb_hreq_create()
976 {
977         struct afb_hreq *hreq = calloc(1, sizeof *hreq);
978         if (hreq) {
979                 /* init the request */
980                 afb_xreq_init(&hreq->xreq, &afb_hreq_xreq_query_itf);
981                 hreq->reqid = ++global_reqids;
982         }
983         return hreq;
984 }
985