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