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