work in progress, session handling
[src/app-framework-binder.git] / src / http-svc.c
1 /*
2  * Copyright 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 <stdio.h>
21 #include <string.h>
22 #include <assert.h>
23 #include <poll.h>
24 #include <fcntl.h>
25 #include <sys/stat.h>
26
27 #include <microhttpd.h>
28
29 #include "local-def.h"
30 #include "afb-method.h"
31 #include "afb-hreq.h"
32 #include "afb-websock.h"
33 #include "afb-apis.h"
34 #include "afb-req-itf.h"
35
36 #define JSON_CONTENT  "application/json"
37 #define FORM_CONTENT  MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA
38
39
40 struct afb_hsrv_handler {
41         struct afb_hsrv_handler *next;
42         const char *prefix;
43         size_t length;
44         int (*handler) (struct afb_hreq *, void *);
45         void *data;
46         int priority;
47 };
48
49 struct afb_diralias {
50         const char *alias;
51         const char *directory;
52         size_t lendir;
53         int dirfd;
54 };
55
56 int afb_hreq_one_page_api_redirect(
57                 struct afb_hreq *hreq,
58                 void *data)
59 {
60         size_t plen;
61         char *url;
62
63         if (hreq->lentail >= 2 && hreq->tail[1] == '#')
64                 return 0;
65         /*
66          * Here we have for example:
67          *    url  = "/pre/dir/page"   lenurl = 13
68          *    tail =     "/dir/page"   lentail = 9
69          *
70          * We will produce "/pre/#!dir/page"
71          *
72          * Let compute plen that include the / at end (for "/pre/")
73          */
74         plen = hreq->lenurl - hreq->lentail + 1;
75         url = alloca(hreq->lenurl + 3);
76         memcpy(url, hreq->url, plen);
77         url[plen++] = '#';
78         url[plen++] = '!';
79         memcpy(&url[plen], &hreq->tail[1], hreq->lentail);
80         return afb_hreq_redirect_to(hreq, url);
81 }
82
83 static struct afb_hsrv_handler *new_handler(
84                 struct afb_hsrv_handler *head,
85                 const char *prefix,
86                 int (*handler) (struct afb_hreq *, void *),
87                 void *data,
88                 int priority)
89 {
90         struct afb_hsrv_handler *link, *iter, *previous;
91         size_t length;
92
93         /* get the length of the prefix without its leading / */
94         length = strlen(prefix);
95         while (length && prefix[length - 1] == '/')
96                 length--;
97
98         /* allocates the new link */
99         link = malloc(sizeof *link);
100         if (link == NULL)
101                 return NULL;
102
103         /* initialize it */
104         link->prefix = prefix;
105         link->length = length;
106         link->handler = handler;
107         link->data = data;
108         link->priority = priority;
109
110         /* adds it */
111         previous = NULL;
112         iter = head;
113         while (iter && (priority < iter->priority || (priority == iter->priority && length <= iter->length))) {
114                 previous = iter;
115                 iter = iter->next;
116         }
117         link->next = iter;
118         if (previous == NULL)
119                 return link;
120         previous->next = link;
121         return head;
122 }
123
124 int afb_hsrv_add_handler(
125                 AFB_session * session,
126                 const char *prefix,
127                 int (*handler) (struct afb_hreq *, void *),
128                 void *data,
129                 int priority)
130 {
131         struct afb_hsrv_handler *head;
132
133         head = new_handler(session->handlers, prefix, handler, data, priority);
134         if (head == NULL)
135                 return 0;
136         session->handlers = head;
137         return 1;
138 }
139
140 static int afb_hreq_websocket_switch(struct afb_hreq *hreq, void *data)
141 {
142         int later;
143
144         afb_hreq_context(hreq);
145         if (hreq->lentail != 0 || !afb_websock_check(hreq, &later))
146                 return 0;
147
148         if (!later) {
149                 struct afb_websock *ws = afb_websock_create(hreq->connection);
150                 if (ws == NULL) {
151                         /* TODO */
152                 } else {
153                         /* TODO */
154                 }
155         }
156         return 1;
157 }
158
159 static int afb_hreq_rest_api(struct afb_hreq *hreq, void *data)
160 {
161         const char *api, *verb;
162         size_t lenapi, lenverb;
163         struct AFB_clientCtx *context;
164
165         api = &hreq->tail[strspn(hreq->tail, "/")];
166         lenapi = strcspn(api, "/");
167         verb = &api[lenapi];
168         verb = &verb[strspn(verb, "/")];
169         lenverb = strcspn(verb, "/");
170
171         if (!(*api && *verb && lenapi && lenverb))
172                 return 0;
173
174         context = afb_hreq_context(hreq);
175         return afb_apis_handle(afb_hreq_to_req(hreq), context, api, lenapi, verb, lenverb);
176 }
177
178 static int handle_alias(struct afb_hreq *hreq, void *data)
179 {
180         struct afb_diralias *da = data;
181
182         if (hreq->method != afb_method_get) {
183                 afb_hreq_reply_error(hreq, MHD_HTTP_METHOD_NOT_ALLOWED);
184                 return 1;
185         }
186
187         if (!afb_hreq_valid_tail(hreq)) {
188                 afb_hreq_reply_error(hreq, MHD_HTTP_FORBIDDEN);
189                 return 1;
190         }
191
192         return afb_hreq_reply_file(hreq, da->dirfd, &hreq->tail[1]);
193 }
194
195 int afb_hsrv_add_alias(AFB_session * session, const char *prefix, const char *alias, int priority)
196 {
197         struct afb_diralias *da;
198         int dirfd;
199
200         dirfd = open(alias, O_PATH|O_DIRECTORY);
201         if (dirfd < 0) {
202                 /* TODO message */
203                 return 0;
204         }
205         da = malloc(sizeof *da);
206         if (da != NULL) {
207                 da->alias = prefix;
208                 da->directory = alias;
209                 da->lendir = strlen(da->directory);
210                 da->dirfd = dirfd;
211                 if (afb_hsrv_add_handler(session, prefix, handle_alias, da, priority))
212                         return 1;
213                 free(da);
214         }
215         close(dirfd);
216         return 0;
217 }
218
219 void afb_hsrv_reply_error(struct MHD_Connection *connection, unsigned int status)
220 {
221         char *buffer;
222         int length;
223         struct MHD_Response *response;
224
225         length = asprintf(&buffer, "<html><body>error %u</body></html>", status);
226         if (length > 0)
227                 response = MHD_create_response_from_buffer((unsigned)length, buffer, MHD_RESPMEM_MUST_FREE);
228         else {
229                 buffer = "<html><body>error</body></html>";
230                 response = MHD_create_response_from_buffer(strlen(buffer), buffer, MHD_RESPMEM_PERSISTENT);
231         }
232         if (!MHD_queue_response(connection, status, response))
233                 fprintf(stderr, "Failed to reply error code %u", status);
234         MHD_destroy_response(response);
235 }
236
237 static int postproc(void *cls,
238                     enum MHD_ValueKind kind,
239                     const char *key,
240                     const char *filename,
241                     const char *content_type,
242                     const char *transfer_encoding,
243                     const char *data,
244                     uint64_t off,
245                     size_t size)
246 {
247         struct afb_hreq *hreq = cls;
248         if (filename != NULL)
249                 return afb_hreq_post_add_file(hreq, key, filename, data, size);
250         else
251                 return afb_hreq_post_add(hreq, key, data, size);
252 }
253
254 static int access_handler(
255                 void *cls,
256                 struct MHD_Connection *connection,
257                 const char *url,
258                 const char *methodstr,
259                 const char *version,
260                 const char *upload_data,
261                 size_t *upload_data_size,
262                 void **recordreq)
263 {
264         int rc;
265         struct afb_hreq *hreq;
266         enum afb_method method;
267         AFB_session *session;
268         struct afb_hsrv_handler *iter;
269         const char *type;
270
271         session = cls;
272         hreq = *recordreq;
273         if (hreq == NULL) {
274                 /* create the request */
275                 hreq = calloc(1, sizeof *hreq);
276                 if (hreq == NULL)
277                         goto internal_error;
278                 *recordreq = hreq;
279
280                 /* get the method */
281                 method = get_method(methodstr);
282                 method &= afb_method_get | afb_method_post;
283                 if (method == afb_method_none)
284                         goto bad_request;
285
286                 /* init the request */
287                 hreq->session = cls;
288                 hreq->connection = connection;
289                 hreq->method = method;
290                 hreq->version = version;
291                 hreq->tail = hreq->url = url;
292                 hreq->lentail = hreq->lenurl = strlen(url);
293
294                 /* init the post processing */
295                 if (method == afb_method_post) {
296                         type = afb_hreq_get_header(hreq, MHD_HTTP_HEADER_CONTENT_TYPE);
297                         if (type == NULL) {
298                                 /* an empty post, let's process it as a get */
299                                 hreq->method = afb_method_get;
300                         } else if (strcasestr(type, FORM_CONTENT) != NULL) {
301                                 hreq->postform = MHD_create_post_processor (connection, 65500, postproc, hreq);
302                                 if (hreq->postform == NULL)
303                                         goto internal_error;
304                         } else if (strcasestr(type, JSON_CONTENT) == NULL) {
305                                 afb_hsrv_reply_error(connection, MHD_HTTP_UNSUPPORTED_MEDIA_TYPE);
306                                 return MHD_YES;
307                         }
308                 }
309         }
310
311         /* process further data */
312         if (*upload_data_size) {
313                 if (hreq->postform != NULL) {
314                         if (!MHD_post_process (hreq->postform, upload_data, *upload_data_size))
315                                 goto internal_error;
316                 } else {
317                         if (!afb_hreq_post_add(hreq, NULL, upload_data, *upload_data_size))
318                                 goto internal_error;
319                 }
320                 *upload_data_size = 0;
321                 return MHD_YES;         
322         }
323
324         /* flush the data */
325         afb_hreq_post_end(hreq);
326         if (hreq->postform != NULL) {
327                 rc = MHD_destroy_post_processor(hreq->postform);
328                 hreq->postform = NULL;
329                 if (rc == MHD_NO)
330                         goto bad_request;
331         }
332
333         /* search an handler for the request */
334         iter = session->handlers;
335         while (iter) {
336                 if (afb_hreq_unprefix(hreq, iter->prefix, iter->length)) {
337                         if (iter->handler(hreq, iter->data))
338                                 return MHD_YES;
339                         hreq->tail = hreq->url;
340                         hreq->lentail = hreq->lenurl;
341                 }
342                 iter = iter->next;
343         }
344
345         /* no handler */
346         afb_hreq_reply_error(hreq, MHD_HTTP_NOT_FOUND);
347         return MHD_YES;
348
349 bad_request:
350         afb_hsrv_reply_error(connection, MHD_HTTP_BAD_REQUEST);
351         return MHD_YES;
352
353 internal_error:
354         afb_hsrv_reply_error(connection, MHD_HTTP_INTERNAL_SERVER_ERROR);
355         return MHD_YES;
356 }
357
358 /* Because of POST call multiple time requestApi we need to free POST handle here */
359 static void end_handler(void *cls, struct MHD_Connection *connection, void **recordreq,
360                         enum MHD_RequestTerminationCode toe)
361 {
362         struct afb_hreq *hreq;
363
364         hreq = *recordreq;
365
366         afb_hreq_free(hreq);
367 }
368
369 static int new_client_handler(void *cls, const struct sockaddr *addr, socklen_t addrlen)
370 {
371         return MHD_YES;
372 }
373
374 #if defined(USE_MAGIC_MIME_TYPE)
375
376 #if !defined(MAGIC_DB)
377 #define MAGIC_DB "/usr/share/misc/magic.mgc"
378 #endif
379
380 static int init_lib_magic (AFB_session *session)
381 {
382         /* MAGIC_MIME tells magic to return a mime of the file, but you can specify different things */
383         if (verbose)
384                 printf("Loading mimetype default magic database\n");
385
386         session->magic = magic_open(MAGIC_MIME_TYPE);
387         if (session->magic == NULL) {
388                 fprintf(stderr,"ERROR: unable to initialize magic library\n");
389                 return 0;
390         }
391
392         /* Warning: should not use NULL for DB [libmagic bug wont pass efence check] */
393         if (magic_load(session->magic, MAGIC_DB) != 0) {
394                 fprintf(stderr,"cannot load magic database - %s\n", magic_error(session->magic));
395                 magic_close(session->magic);
396                 session->magic = NULL;
397                 return 0;
398         }
399
400         return 1;
401 }
402 #endif
403
404 static int my_default_init(AFB_session * session)
405 {
406         int idx;
407
408         if (!afb_hsrv_add_handler(session, session->config->rootapi, afb_hreq_websocket_switch, NULL, 20))
409                 return 0;
410
411         if (!afb_hsrv_add_handler(session, session->config->rootapi, afb_hreq_rest_api, NULL, 10))
412                 return 0;
413
414         for (idx = 0; session->config->aliasdir[idx].url != NULL; idx++)
415                 if (!afb_hsrv_add_alias (session, session->config->aliasdir[idx].url, session->config->aliasdir[idx].path, 0))
416                         return 0;
417
418         if (!afb_hsrv_add_alias(session, "", session->config->rootdir, -10))
419                 return 0;
420
421         if (!afb_hsrv_add_handler(session, session->config->rootbase, afb_hreq_one_page_api_redirect, NULL, -20))
422                 return 0;
423
424         return 1;
425 }
426
427 AFB_error httpdStart(AFB_session * session)
428 {
429         if (!my_default_init(session)) {
430                 printf("Error: initialisation of httpd failed");
431                 return AFB_FATAL;
432         }
433
434 #if defined(USE_MAGIC_MIME_TYPE)
435         /*TBD open libmagic cache [fail to pass EFENCE check (allocating 0 bytes)] */
436         init_lib_magic (session);
437 #endif
438
439         if (verbose) {
440                 printf("AFB:notice Waiting port=%d rootdir=%s\n", session->config->httpdPort, session->config->rootdir);
441                 printf("AFB:notice Browser URL= http:/*localhost:%d\n", session->config->httpdPort);
442         }
443
444         session->httpd = MHD_start_daemon(
445                 MHD_USE_EPOLL_LINUX_ONLY | MHD_USE_TCP_FASTOPEN | MHD_USE_DEBUG | MHD_USE_SUSPEND_RESUME,
446                 (uint16_t) session->config->httpdPort,  /* port */
447                 new_client_handler, NULL,       /* Tcp Accept call back + extra attribute */
448                 access_handler, session,        /* Http Request Call back + extra attribute */
449                 MHD_OPTION_NOTIFY_COMPLETED, end_handler, session,
450                 MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int)15,        /* 15 seconds */
451                 MHD_OPTION_END);        /* options-end */
452
453         if (session->httpd == NULL) {
454                 printf("Error: httpStart invalid httpd port: %d", session->config->httpdPort);
455                 return AFB_FATAL;
456         }
457         return AFB_SUCCESS;
458 }
459
460 /* infinite loop */
461 AFB_error httpdLoop(AFB_session * session)
462 {
463         int count = 0;
464         const union MHD_DaemonInfo *info;
465         struct pollfd pfd;
466
467         info = MHD_get_daemon_info(session->httpd, MHD_DAEMON_INFO_EPOLL_FD_LINUX_ONLY);
468         if (info == NULL) {
469                 printf("Error: httpLoop no pollfd");
470                 goto error;
471         }
472         pfd.fd = info->listen_fd;
473         pfd.events = POLLIN;
474
475         if (verbose)
476                 fprintf(stderr, "AFB:notice entering httpd waiting loop\n");
477         while (TRUE) {
478                 if (verbose)
479                         fprintf(stderr, "AFB:notice httpd alive [%d]\n", count++);
480                 poll(&pfd, 1, 15000);   /* 15 seconds (as above timeout when starting) */
481                 MHD_run(session->httpd);
482         }
483
484  error:
485         /* should never return from here */
486         return AFB_FATAL;
487 }
488
489 int httpdStatus(AFB_session * session)
490 {
491         return MHD_run(session->httpd);
492 }
493
494 void httpdStop(AFB_session * session)
495 {
496         MHD_stop_daemon(session->httpd);
497 }