Make possible to call a method from a binding
[src/app-framework-binder.git] / src / afb-hreq.c
1 /*
2  * Copyright (C) 2016 "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 "session.h"
42 #include "verbose.h"
43
44 #define SIZE_RESPONSE_BUFFER   8192
45
46 static char empty_string[] = "";
47
48 static const char long_key_for_uuid[] = "x-afb-uuid";
49 static const char short_key_for_uuid[] = "uuid";
50
51 static const char long_key_for_token[] = "x-afb-token";
52 static const char short_key_for_token[] = "token";
53
54 static const char long_key_for_reqid[] = "x-afb-reqid";
55 static const char short_key_for_reqid[] = "reqid";
56
57 static char *cookie_name = NULL;
58 static char *cookie_setter = NULL;
59 static char *tmp_pattern = NULL;
60
61 /*
62  * Structure for storing key/values read from POST requests
63  */
64 struct hreq_data {
65         struct hreq_data *next; /* chain to next data */
66         char *key;              /* key name */
67         size_t length;          /* length of the value (used for appending) */
68         char *value;            /* the value (or original filename) */
69         char *path;             /* path of the file saved */
70 };
71
72 static struct json_object *req_json(struct afb_hreq *hreq);
73 static struct afb_arg req_get(struct afb_hreq *hreq, const char *name);
74 static void req_fail(struct afb_hreq *hreq, const char *status, const char *info);
75 static void req_success(struct afb_hreq *hreq, json_object *obj, const char *info);
76 static const char *req_raw(struct afb_hreq *hreq, size_t *size);
77 static void req_send(struct afb_hreq *hreq, const char *buffer, size_t size);
78 static int req_subscribe_unsubscribe_error(struct afb_hreq *hreq, struct afb_event event);
79 static void req_subcall(struct afb_hreq *hreq, const char *api, const char *verb, struct json_object *args, void (*callback)(void*, int, struct json_object*), void *closure);
80
81 const struct afb_req_itf afb_hreq_req_itf = {
82         .json = (void*)req_json,
83         .get = (void*)req_get,
84         .success = (void*)req_success,
85         .fail = (void*)req_fail,
86         .raw = (void*)req_raw,
87         .send = (void*)req_send,
88         .context_get = (void*)afb_context_get,
89         .context_set = (void*)afb_context_set,
90         .addref = (void*)afb_hreq_addref,
91         .unref = (void*)afb_hreq_unref,
92         .session_close = (void*)afb_context_close,
93         .session_set_LOA = (void*)afb_context_change_loa,
94         .subscribe = (void*)req_subscribe_unsubscribe_error,
95         .unsubscribe = (void*)req_subscribe_unsubscribe_error,
96         .subcall = (void*)req_subcall
97 };
98
99 static struct hreq_data *get_data(struct afb_hreq *hreq, const char *key, int create)
100 {
101         struct hreq_data *data = hreq->data;
102         while (data != NULL) {
103                 if (!strcasecmp(data->key, key))
104                         return data;
105                 data = data->next;
106         }
107         if (create) {
108                 data = calloc(1, sizeof *data);
109                 if (data != NULL) {
110                         data->key = strdup(key);
111                         if (data->key == NULL) {
112                                 free(data);
113                                 data = NULL;
114                         } else {
115                                 data->next = hreq->data;
116                                 hreq->data = data;
117                         }
118                 }
119         }
120         return data;
121 }
122
123 /* a valid subpath is a relative path not looking deeper than root using .. */
124 static int validsubpath(const char *subpath)
125 {
126         int l = 0, i = 0;
127
128         while (subpath[i]) {
129                 switch (subpath[i++]) {
130                 case '.':
131                         if (!subpath[i])
132                                 break;
133                         if (subpath[i] == '/') {
134                                 i++;
135                                 break;
136                         }
137                         if (subpath[i++] == '.') {
138                                 if (!subpath[i]) {
139                                         if (--l < 0)
140                                                 return 0;
141                                         break;
142                                 }
143                                 if (subpath[i++] == '/') {
144                                         if (--l < 0)
145                                                 return 0;
146                                         break;
147                                 }
148                         }
149                 default:
150                         while (subpath[i] && subpath[i] != '/')
151                                 i++;
152                         l++;
153                 case '/':
154                         break;
155                 }
156         }
157         return 1;
158 }
159
160 static void afb_hreq_reply_v(struct afb_hreq *hreq, unsigned status, struct MHD_Response *response, va_list args)
161 {
162         char *cookie;
163         const char *k, *v;
164
165         if (hreq->replied != 0)
166                 return;
167
168         k = va_arg(args, const char *);
169         while (k != NULL) {
170                 v = va_arg(args, const char *);
171                 MHD_add_response_header(response, k, v);
172                 k = va_arg(args, const char *);
173         }
174         v = afb_context_sent_uuid(&hreq->context);
175         if (v != NULL && asprintf(&cookie, cookie_setter, v) > 0) {
176                 MHD_add_response_header(response, MHD_HTTP_HEADER_SET_COOKIE, cookie);
177                 free(cookie);
178         }
179         MHD_queue_response(hreq->connection, status, response);
180         MHD_destroy_response(response);
181
182         hreq->replied = 1;
183         if (hreq->suspended != 0) {
184                 extern void run_micro_httpd(struct afb_hsrv *hsrv);
185                 MHD_resume_connection (hreq->connection);
186                 hreq->suspended = 0;
187                 run_micro_httpd(hreq->hsrv);
188         }
189 }
190
191 void afb_hreq_reply(struct afb_hreq *hreq, unsigned status, struct MHD_Response *response, ...)
192 {
193         va_list args;
194         va_start(args, response);
195         afb_hreq_reply_v(hreq, status, response, args);
196         va_end(args);
197 }
198
199 void afb_hreq_reply_empty(struct afb_hreq *hreq, unsigned status, ...)
200 {
201         va_list args;
202         va_start(args, status);
203         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer(0, NULL, MHD_RESPMEM_PERSISTENT), args);
204         va_end(args);
205 }
206
207 void afb_hreq_reply_static(struct afb_hreq *hreq, unsigned status, size_t size, const char *buffer, ...)
208 {
209         va_list args;
210         va_start(args, buffer);
211         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer((unsigned)size, (char*)buffer, MHD_RESPMEM_PERSISTENT), args);
212         va_end(args);
213 }
214
215 void afb_hreq_reply_copy(struct afb_hreq *hreq, unsigned status, size_t size, const char *buffer, ...)
216 {
217         va_list args;
218         va_start(args, buffer);
219         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer((unsigned)size, (char*)buffer, MHD_RESPMEM_MUST_COPY), args);
220         va_end(args);
221 }
222
223 void afb_hreq_reply_free(struct afb_hreq *hreq, unsigned status, size_t size, char *buffer, ...)
224 {
225         va_list args;
226         va_start(args, buffer);
227         afb_hreq_reply_v(hreq, status, MHD_create_response_from_buffer((unsigned)size, buffer, MHD_RESPMEM_MUST_FREE), args);
228         va_end(args);
229 }
230
231 #if defined(USE_MAGIC_MIME_TYPE)
232
233 #if !defined(MAGIC_DB)
234 #define MAGIC_DB "/usr/share/misc/magic.mgc"
235 #endif
236
237 static magic_t lazy_libmagic()
238 {
239         static int done = 0;
240         static magic_t result = NULL;
241
242         if (!done) {
243                 done = 1;
244                 /* MAGIC_MIME tells magic to return a mime of the file,
245                          but you can specify different things */
246                 INFO("Loading mimetype default magic database");
247                 result = magic_open(MAGIC_MIME_TYPE);
248                 if (result == NULL) {
249                         ERROR("unable to initialize magic library");
250                 }
251                 /* Warning: should not use NULL for DB
252                                 [libmagic bug wont pass efence check] */
253                 else if (magic_load(result, MAGIC_DB) != 0) {
254                         ERROR("cannot load magic database: %s", magic_error(result));
255                         magic_close(result);
256                         result = NULL;
257                 }
258         }
259
260         return result;
261 }
262
263 static const char *magic_mimetype_fd(int fd)
264 {
265         magic_t lib = lazy_libmagic();
266         return lib ? magic_descriptor(lib, fd) : NULL;
267 }
268
269 #endif
270
271 static const char *mimetype_fd_name(int fd, const char *filename)
272 {
273         const char *result = NULL;
274
275 #if defined(INFER_EXTENSION)
276         const char *extension = strrchr(filename, '.');
277         if (extension) {
278                 static const char *const known[][2] = {
279                         { ".js",   "text/javascript" },
280                         { ".html", "text/html" },
281                         { ".css",  "text/css" },
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 void afb_hreq_addref(struct afb_hreq *hreq)
302 {
303         hreq->refcount++;
304 }
305
306 void afb_hreq_unref(struct afb_hreq *hreq)
307 {
308         struct hreq_data *data;
309
310         if (hreq == NULL || --hreq->refcount)
311                 return;
312
313         if (hreq->postform != NULL)
314                 MHD_destroy_post_processor(hreq->postform);
315         for (data = hreq->data; data; data = hreq->data) {
316                 hreq->data = data->next;
317                 if (data->path) {
318                         unlink(data->path);
319                         free(data->path);
320                 }
321                 free(data->key);
322                 free(data->value);
323                 free(data);
324         }
325         afb_context_disconnect(&hreq->context);
326         json_object_put(hreq->json);
327         free(hreq);
328 }
329
330 /*
331  * Removes the 'prefix' of 'length' from the tail of 'hreq'
332  * if and only if the prefix exists and is terminated by a leading
333  * slash
334  */
335 int afb_hreq_unprefix(struct afb_hreq *hreq, const char *prefix, size_t length)
336 {
337         /* check the prefix ? */
338         if (length > hreq->lentail || (hreq->tail[length] && hreq->tail[length] != '/')
339             || strncasecmp(prefix, hreq->tail, length))
340                 return 0;
341
342         /* removes successives / */
343         while (length < hreq->lentail && hreq->tail[length + 1] == '/')
344                 length++;
345
346         /* update the tail */
347         hreq->lentail -= length;
348         hreq->tail += length;
349         return 1;
350 }
351
352 int afb_hreq_valid_tail(struct afb_hreq *hreq)
353 {
354         return validsubpath(hreq->tail);
355 }
356
357 void afb_hreq_reply_error(struct afb_hreq *hreq, unsigned int status)
358 {
359         afb_hreq_reply_empty(hreq, status, NULL);
360 }
361
362 int afb_hreq_reply_file_if_exist(struct afb_hreq *hreq, int dirfd, const char *filename)
363 {
364         int rc;
365         int fd;
366         unsigned int status;
367         struct stat st;
368         char etag[1 + 2 * 8];
369         const char *inm;
370         struct MHD_Response *response;
371         const char *mimetype;
372
373         /* Opens the file or directory */
374         if (filename[0]) {
375                 fd = openat(dirfd, filename, O_RDONLY);
376                 if (fd < 0) {
377                         if (errno == ENOENT)
378                                 return 0;
379                         afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
380                         return 1;
381                 }
382         } else {
383                 fd = dup(dirfd);
384                 if (fd < 0) {
385                         afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
386                         return 1;
387                 }
388         }
389
390         /* Retrieves file's status */
391         if (fstat(fd, &st) != 0) {
392                 close(fd);
393                 afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
394                 return 1;
395         }
396
397         /* serve directory */
398         if (S_ISDIR(st.st_mode)) {
399                 if (hreq->url[hreq->lenurl - 1] != '/') {
400                         /* the redirect is needed for reliability of relative path */
401                         char *tourl = alloca(hreq->lenurl + 2);
402                         memcpy(tourl, hreq->url, hreq->lenurl);
403                         tourl[hreq->lenurl] = '/';
404                         tourl[hreq->lenurl + 1] = 0;
405                         rc = afb_hreq_redirect_to(hreq, tourl, 1);
406                 } else {
407                         static const char *indexes[] = { "index.html", NULL };
408                         int i = 0;
409                         rc = 0;
410                         while (indexes[i] != NULL) {
411                                 if (faccessat(fd, indexes[i], R_OK, 0) == 0) {
412                                         rc = afb_hreq_reply_file_if_exist(hreq, fd, indexes[i]);
413                                         break;
414                                 }
415                                 i++;
416                         }
417                 }
418                 close(fd);
419                 return rc;
420         }
421
422         /* Don't serve special files */
423         if (!S_ISREG(st.st_mode)) {
424                 close(fd);
425                 afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
426                 return 1;
427         }
428
429         /* Check the method */
430         if ((hreq->method & (afb_method_get | afb_method_head)) == 0) {
431                 close(fd);
432                 afb_hreq_reply_error(hreq, MHD_HTTP_METHOD_NOT_ALLOWED);
433                 return 1;
434         }
435
436         /* computes the etag */
437         sprintf(etag, "%08X%08X", ((int)(st.st_mtim.tv_sec) ^ (int)(st.st_mtim.tv_nsec)), (int)(st.st_size));
438
439         /* checks the etag */
440         inm = MHD_lookup_connection_value(hreq->connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_IF_NONE_MATCH);
441         if (inm && 0 == strcmp(inm, etag)) {
442                 /* etag ok, return NOT MODIFIED */
443                 close(fd);
444                 DEBUG("Not Modified: [%s]", filename);
445                 response = MHD_create_response_from_buffer(0, empty_string, MHD_RESPMEM_PERSISTENT);
446                 status = MHD_HTTP_NOT_MODIFIED;
447         } else {
448                 /* check the size */
449                 if (st.st_size != (off_t) (size_t) st.st_size) {
450                         close(fd);
451                         afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
452                         return 1;
453                 }
454
455                 /* create the response */
456                 response = MHD_create_response_from_fd((size_t) st.st_size, fd);
457                 status = MHD_HTTP_OK;
458
459                 /* set the type */
460                 mimetype = mimetype_fd_name(fd, filename);
461                 if (mimetype != NULL)
462                         MHD_add_response_header(response, MHD_HTTP_HEADER_CONTENT_TYPE, mimetype);
463         }
464
465         /* fills the value and send */
466         afb_hreq_reply(hreq, status, response,
467                         MHD_HTTP_HEADER_CACHE_CONTROL, hreq->cacheTimeout,
468                         MHD_HTTP_HEADER_ETAG, etag,
469                         NULL);
470         return 1;
471 }
472
473 int afb_hreq_reply_file(struct afb_hreq *hreq, int dirfd, const char *filename)
474 {
475         int rc = afb_hreq_reply_file_if_exist(hreq, dirfd, filename);
476         if (rc == 0)
477                 afb_hreq_reply_error(hreq, MHD_HTTP_NOT_FOUND);
478         return 1;
479 }
480
481 struct _mkq_ {
482         int count;
483         size_t length;
484         size_t alloc;
485         char *text;
486 };
487
488 static void _mkq_add_(struct _mkq_ *mkq, char value)
489 {
490         char *text = mkq->text;
491         if (text != NULL) {
492                 if (mkq->length == mkq->alloc) {
493                         mkq->alloc += 100;
494                         text = realloc(text, mkq->alloc);
495                         if (text == NULL) {
496                                 free(mkq->text);
497                                 mkq->text = NULL;
498                                 return;
499                         }
500                         mkq->text = text;
501                 }
502                 text[mkq->length++] = value;
503         }
504 }
505
506 static void _mkq_add_hex_(struct _mkq_ *mkq, char value)
507 {
508         _mkq_add_(mkq, (char)(value < 10 ? value + '0' : value + 'A' - 10));
509 }
510
511 static void _mkq_add_esc_(struct _mkq_ *mkq, char value)
512 {
513         _mkq_add_(mkq, '%');
514         _mkq_add_hex_(mkq, (char)((value >> 4) & 15));
515         _mkq_add_hex_(mkq, (char)(value & 15));
516 }
517
518 static void _mkq_add_char_(struct _mkq_ *mkq, char value)
519 {
520         if (value <= ' ' || value >= 127)
521                 _mkq_add_esc_(mkq, value);
522         else
523                 switch(value) {
524                 case '=':
525                 case '&':
526                 case '%':
527                         _mkq_add_esc_(mkq, value);
528                         break;
529                 default:
530                         _mkq_add_(mkq, value);
531                 }
532 }
533
534 static void _mkq_append_(struct _mkq_ *mkq, const char *value)
535 {
536         while(*value)
537                 _mkq_add_char_(mkq, *value++);
538 }
539
540 static int _mkquery_(struct _mkq_ *mkq, enum MHD_ValueKind kind, const char *key, const char *value)
541 {
542         _mkq_add_(mkq, mkq->count++ ? '&' : '?');
543         _mkq_append_(mkq, key);
544         if (value != NULL) {
545                 _mkq_add_(mkq, '=');
546                 _mkq_append_(mkq, value);
547         }
548         return 1;
549 }
550
551 static char *url_with_query(struct afb_hreq *hreq, const char *url)
552 {
553         struct _mkq_ mkq;
554
555         mkq.count = 0;
556         mkq.length = strlen(url);
557         mkq.alloc = mkq.length + 1000;
558         mkq.text = malloc(mkq.alloc);
559         if (mkq.text != NULL) {
560                 strcpy(mkq.text, url);
561                 MHD_get_connection_values(hreq->connection, MHD_GET_ARGUMENT_KIND, (void*)_mkquery_, &mkq);
562                 _mkq_add_(&mkq, 0);
563         }
564         return mkq.text;
565 }
566
567 int afb_hreq_redirect_to(struct afb_hreq *hreq, const char *url, int add_query_part)
568 {
569         const char *to;
570         char *wqp;
571
572         wqp = add_query_part ? url_with_query(hreq, url) : NULL;
573         to = wqp ? : url;
574         afb_hreq_reply_static(hreq, MHD_HTTP_MOVED_PERMANENTLY, 0, NULL,
575                         MHD_HTTP_HEADER_LOCATION, to, NULL);
576         DEBUG("redirect from [%s] to [%s]", hreq->url, url);
577         free(wqp);
578         return 1;
579 }
580
581 const char *afb_hreq_get_cookie(struct afb_hreq *hreq, const char *name)
582 {
583         return MHD_lookup_connection_value(hreq->connection, MHD_COOKIE_KIND, name);
584 }
585
586 const char *afb_hreq_get_argument(struct afb_hreq *hreq, const char *name)
587 {
588         struct hreq_data *data = get_data(hreq, name, 0);
589         return data ? data->value : MHD_lookup_connection_value(hreq->connection, MHD_GET_ARGUMENT_KIND, name);
590 }
591
592 const char *afb_hreq_get_header(struct afb_hreq *hreq, const char *name)
593 {
594         return MHD_lookup_connection_value(hreq->connection, MHD_HEADER_KIND, name);
595 }
596
597 int afb_hreq_post_add(struct afb_hreq *hreq, const char *key, const char *data, size_t size)
598 {
599         void *p;
600         struct hreq_data *hdat = get_data(hreq, key, 1);
601         if (hdat->path != NULL) {
602                 return 0;
603         }
604         p = realloc(hdat->value, hdat->length + size + 1);
605         if (p == NULL) {
606                 return 0;
607         }
608         hdat->value = p;
609         memcpy(&hdat->value[hdat->length], data, size);
610         hdat->length += size;
611         hdat->value[hdat->length] = 0;
612         return 1;
613 }
614
615 int afb_hreq_init_download_path(const char *directory)
616 {
617         struct stat st;
618         size_t n;
619         char *p;
620
621         if (access(directory, R_OK|W_OK)) {
622                 /* no read/write access */
623                 return -1;
624         }
625         if (stat(directory, &st)) {
626                 /* can't get info */
627                 return -1;
628         }
629         if (!S_ISDIR(st.st_mode)) {
630                 /* not a directory */
631                 errno = ENOTDIR;
632                 return -1;
633         }
634         n = strlen(directory);
635         while(n > 1 && directory[n-1] == '/') n--;
636         p = malloc(n + 8);
637         if (p == NULL) {
638                 /* can't allocate memory */
639                 errno = ENOMEM;
640                 return -1;
641         }
642         memcpy(p, directory, n);
643         p[n++] = '/';
644         p[n++] = 'X';
645         p[n++] = 'X';
646         p[n++] = 'X';
647         p[n++] = 'X';
648         p[n++] = 'X';
649         p[n++] = 'X';
650         p[n] = 0;
651         free(tmp_pattern);
652         tmp_pattern = p;
653         return 0;
654 }
655
656 static int opentempfile(char **path)
657 {
658         int fd;
659         char *fname;
660
661         fname = strdup(tmp_pattern ? : "XXXXXX"); /* TODO improve the path */
662         if (fname == NULL)
663                 return -1;
664
665         fd = mkostemp(fname, O_CLOEXEC|O_WRONLY);
666         if (fd < 0)
667                 free(fname);
668         else
669                 *path = fname;
670         return fd;
671 }
672
673 int afb_hreq_post_add_file(struct afb_hreq *hreq, const char *key, const char *file, const char *data, size_t size)
674 {
675         int fd;
676         ssize_t sz;
677         struct hreq_data *hdat = get_data(hreq, key, 1);
678
679         if (hdat->value == NULL) {
680                 hdat->value = strdup(file);
681                 if (hdat->value == NULL)
682                         return 0;
683                 fd = opentempfile(&hdat->path);
684         } else if (strcmp(hdat->value, file) || hdat->path == NULL) {
685                 return 0;
686         } else {
687                 fd = open(hdat->path, O_WRONLY|O_APPEND);
688         }
689         if (fd < 0)
690                 return 0;
691         while (size) {
692                 sz = write(fd, data, size);
693                 if (sz >= 0) {
694                         hdat->length += (size_t)sz;
695                         size -= (size_t)sz;
696                         data += sz;
697                 } else if (errno != EINTR)
698                         break;
699         }
700         close(fd);
701         return !size;
702 }
703
704 struct afb_req afb_hreq_to_req(struct afb_hreq *hreq)
705 {
706         return (struct afb_req){ .itf = &afb_hreq_req_itf, .closure = hreq };
707 }
708
709 static struct afb_arg req_get(struct afb_hreq *hreq, const char *name)
710 {
711         const char *value;
712         struct hreq_data *hdat = get_data(hreq, name, 0);
713         if (hdat)
714                 return (struct afb_arg){
715                         .name = hdat->key,
716                         .value = hdat->value,
717                         .path = hdat->path
718                 };
719
720         value = MHD_lookup_connection_value(hreq->connection, MHD_GET_ARGUMENT_KIND, name);
721         return (struct afb_arg){
722                 .name = value == NULL ? NULL : name,
723                 .value = value,
724                 .path = NULL
725         };
726 }
727
728 static int _iterargs_(struct json_object *obj, enum MHD_ValueKind kind, const char *key, const char *value)
729 {
730         json_object_object_add(obj, key, value ? json_object_new_string(value) : NULL);
731         return 1;
732 }
733
734 static struct json_object *req_json(struct afb_hreq *hreq)
735 {
736         struct hreq_data *hdat;
737         struct json_object *obj, *val;
738
739         obj = hreq->json;
740         if (obj == NULL) {
741                 hreq->json = obj = json_object_new_object();
742                 if (obj == NULL) {
743                 } else {
744                         MHD_get_connection_values (hreq->connection, MHD_GET_ARGUMENT_KIND, (void*)_iterargs_, obj);
745                         for (hdat = hreq->data ; hdat ; hdat = hdat->next) {
746                                 if (hdat->path == NULL)
747                                         val = hdat->value ? json_object_new_string(hdat->value) : NULL;
748                                 else {
749                                         val = json_object_new_object();
750                                         if (val == NULL) {
751                                         } else {
752                                                 json_object_object_add(val, "file", json_object_new_string(hdat->value));
753                                                 json_object_object_add(val, "path", json_object_new_string(hdat->path));
754                                         }
755                                 }
756                                 json_object_object_add(obj, hdat->key, val);
757                         }
758                 }
759         }
760         return obj;
761 }
762
763 static const char *req_raw(struct afb_hreq *hreq, size_t *size)
764 {
765         const char *result = json_object_get_string(req_json(hreq));
766         *size = result ? strlen(result) : 0;
767         return result;
768 }
769
770 static void req_send(struct afb_hreq *hreq, const char *buffer, size_t size)
771 {
772         afb_hreq_reply_copy(hreq, MHD_HTTP_OK, size, buffer, NULL);
773 }
774
775 static ssize_t send_json_cb(json_object *obj, uint64_t pos, char *buf, size_t max)
776 {
777         ssize_t len = stpncpy(buf, json_object_to_json_string_ext(obj, JSON_C_TO_STRING_PLAIN)+pos, max) - buf;
778         return len ? : (ssize_t)MHD_CONTENT_READER_END_OF_STREAM;
779 }
780
781 static void req_reply(struct afb_hreq *hreq, unsigned retcode, const char *status, const char *info, json_object *resp)
782 {
783         struct json_object *reply;
784         const char *reqid;
785         struct MHD_Response *response;
786
787         reqid = afb_hreq_get_argument(hreq, long_key_for_reqid);
788         if (reqid == NULL)
789                 reqid = afb_hreq_get_argument(hreq, short_key_for_reqid);
790
791         reply = afb_msg_json_reply(status, info, resp, &hreq->context, reqid);
792
793         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);
794         afb_hreq_reply(hreq, retcode, response, NULL);
795 }
796
797 static void req_fail(struct afb_hreq *hreq, const char *status, const char *info)
798 {
799         req_reply(hreq, MHD_HTTP_OK, status, info, NULL);
800 }
801
802 static void req_success(struct afb_hreq *hreq, json_object *obj, const char *info)
803 {
804         req_reply(hreq, MHD_HTTP_OK, "success", info, obj);
805 }
806
807 static int req_subscribe_unsubscribe_error(struct afb_hreq *hreq, struct afb_event event)
808 {
809         errno = EINVAL;
810         return -1;
811 }
812
813 static void req_subcall(struct afb_hreq *hreq, const char *api, const char *verb, struct json_object *args, void (*callback)(void*, int, struct json_object*), void *closure)
814 {
815         afb_subcall(&hreq->context, api, verb, args, callback, closure, (struct afb_req){ .itf = &afb_hreq_req_itf, .closure = hreq });
816 }
817
818 int afb_hreq_init_context(struct afb_hreq *hreq)
819 {
820         const char *uuid;
821         const char *token;
822
823         if (hreq->context.session != NULL)
824                 return 0;
825
826         uuid = afb_hreq_get_header(hreq, long_key_for_uuid);
827         if (uuid == NULL)
828                 uuid = afb_hreq_get_argument(hreq, long_key_for_uuid);
829         if (uuid == NULL)
830                 uuid = afb_hreq_get_cookie(hreq, cookie_name);
831         if (uuid == NULL)
832                 uuid = afb_hreq_get_argument(hreq, short_key_for_uuid);
833
834         token = afb_hreq_get_header(hreq, long_key_for_token);
835         if (token == NULL)
836                 token = afb_hreq_get_argument(hreq, long_key_for_token);
837         if (token == NULL)
838                 token = afb_hreq_get_argument(hreq, short_key_for_token);
839
840         return afb_context_connect(&hreq->context, uuid, token);
841 }
842
843 int afb_hreq_init_cookie(int port, const char *path, int maxage)
844 {
845         int rc;
846
847         free(cookie_name);
848         free(cookie_setter);
849         cookie_name = NULL;
850         cookie_setter = NULL;
851
852         path = path ? : "/";
853         rc = asprintf(&cookie_name, "%s-%d", long_key_for_uuid, port);
854         if (rc < 0)
855                 return 0;
856         rc = asprintf(&cookie_setter, "%s=%%s; Path=%s; Max-Age=%d; HttpOnly",
857                         cookie_name, path, maxage);
858         if (rc < 0)
859                 return 0;
860         return 1;
861 }
862
863