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