2 * Copyright (C) 2015 "IoT.bzh"
3 * Author "Fulup Ar Foll"
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * Handle standard HTTP request
19 * Features/Restriction:
20 - handle ETAG to limit upload to modified/new files [cache default 3600s]
21 - handles redirect to index.htlm when path is a directory [code 301]
22 - only support GET method
23 - does not follow link.
25 References: https://www.gnu.org/software/libmicrohttpd/manual/html_node/index.html#Top
26 http://libmicrohttpd.sourcearchive.com/documentation/0.4.2/microhttpd_8h.html
27 https://gnunet.org/svn/libmicrohttpd/src/examples/fileserver_example_external_select.c
28 https://github.com/json-c/json-c
29 POST https://www.gnu.org/software/libmicrohttpd/manual/html_node/microhttpd_002dpost.html#microhttpd_002dpost
33 #include <microhttpd.h>
36 #include "../include/local-def.h"
38 // let's compute fixed URL length only once
43 // proto missing from GCC
44 char *strcasestr(const char *haystack, const char *needle);
46 static int rqtcount = 0; // dummy request rqtcount to make each message be different
47 static int postcount = 0;
49 // try to open libmagic to handle mime types
50 static AFB_error initLibMagic (AFB_session *session) {
52 /*MAGIC_MIME tells magic to return a mime of the file, but you can specify different things*/
53 if (verbose) printf("Loading mimetype default magic database\n");
55 session->magic = magic_open(MAGIC_MIME_TYPE);
56 if (session->magic == NULL) {
57 fprintf(stderr,"ERROR: unable to initialize magic library\n");
61 // Warning: should not use NULL for DB [libmagic bug wont pass efence check]
62 if (magic_load(session->magic, MAGIC_DB) != 0) {
63 fprintf(stderr,"cannot load magic database - %s\n", magic_error(session->magic));
64 magic_close(session->magic);
71 // Because of POST call multiple time requestApi we need to free POST handle here
72 static void endRequest (void *cls, struct MHD_Connection *connection, void **con_cls, enum MHD_RequestTerminationCode toe) {
73 AFB_PostHandle *posthandle = *con_cls;
75 // if post handle was used let's free everything
76 if (posthandle != NULL) endPostRequest (posthandle);
80 // Create check etag value
81 STATIC void computeEtag(char *etag, int maxlen, struct stat *sbuf) {
83 time = sbuf->st_mtim.tv_sec;
84 snprintf(etag, maxlen, "%d", time);
87 STATIC int servFile (struct MHD_Connection *connection, AFB_session *session, const char *url, AFB_staticfile *staticfile) {
88 const char *etagCache, *mimetype;
90 struct MHD_Response *response;
94 if (fstat (staticfile->fd, &sbuf) != 0) {
95 fprintf(stderr, "Fail to stat file: [%s] error:%s\n", staticfile->path, strerror(errno));
99 // if url is a directory let's add index.html and redirect client
100 if (S_ISDIR (sbuf.st_mode)) {
101 close (staticfile->fd); // close directory check for Index
103 // No trailing '/'. Let's add one and redirect for relative paths to work
104 if (url [strlen (url) -1] != '/') {
105 response = MHD_create_response_from_buffer(0,"", MHD_RESPMEM_PERSISTENT);
106 strncpy(staticfile->path, url, sizeof (staticfile->path));
107 strncat(staticfile->path, "/", sizeof (staticfile->path));
108 MHD_add_response_header (response, "Location", staticfile->path);
109 MHD_queue_response (connection, MHD_HTTP_MOVED_PERMANENTLY, response);
110 if (verbose) fprintf (stderr,"Adding trailing '/' [%s]\n",staticfile->path);
114 strncat (staticfile->path, OPA_INDEX, sizeof (staticfile->path));
115 if (-1 == (staticfile->fd = open(staticfile->path, O_RDONLY)) || (fstat (staticfile->fd, &sbuf) != 0)) {
116 fprintf(stderr, "No Index.html in direcory [%s]\n", staticfile->path);
119 } else if (! S_ISREG (sbuf.st_mode)) { // only standard file any other one including symbolic links are refused.
120 close (staticfile->fd); // nothing useful to do with this file
121 fprintf (stderr, "Fail file: [%s] is not a regular file\n", staticfile->path);
122 const char *errorstr = "<html><body>Application Framework Binder Invalid file type</body></html>";
123 response = MHD_create_response_from_buffer (strlen (errorstr),
124 (void *) errorstr, MHD_RESPMEM_PERSISTENT);
125 MHD_queue_response (connection, MHD_HTTP_INTERNAL_SERVER_ERROR, response);
129 // https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching?hl=fr
130 // ftp://ftp.heanet.ie/disk1/www.gnu.org/software/libmicrohttpd/doxygen/dc/d0c/microhttpd_8h.html
132 // Check etag value and load file only when modification date changes
133 etagCache = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_IF_NONE_MATCH);
134 computeEtag(etagValue, sizeof (etagValue), &sbuf);
136 if (etagCache != NULL && strcmp(etagValue, etagCache) == 0) {
137 close(staticfile->fd); // file did not change since last upload
138 if (verbose) fprintf(stderr, "Not Modify: [%s]\n", staticfile->path);
139 response = MHD_create_response_from_buffer(0, "", MHD_RESPMEM_PERSISTENT);
140 MHD_add_response_header(response, MHD_HTTP_HEADER_CACHE_CONTROL, session->cacheTimeout); // default one hour cache
141 MHD_add_response_header(response, MHD_HTTP_HEADER_ETAG, etagValue);
142 MHD_queue_response(connection, MHD_HTTP_NOT_MODIFIED, response);
144 } else { // it's a new file, we need to upload it to client
145 // if we have magic let's try to guest mime type
146 if (session->magic) {
147 mimetype= magic_descriptor(session->magic, staticfile->fd);
148 if (mimetype != NULL) MHD_add_response_header (response, MHD_HTTP_HEADER_CONTENT_TYPE, mimetype);
149 } else mimetype="application/unknown";
151 if (verbose) fprintf(stderr, "Serving: [%s] mime=%s\n", staticfile->path, mimetype);
152 response = MHD_create_response_from_fd(sbuf.st_size, staticfile->fd);
153 MHD_add_response_header(response, MHD_HTTP_HEADER_CACHE_CONTROL, session->cacheTimeout); // default one hour cache
154 MHD_add_response_header(response, MHD_HTTP_HEADER_ETAG, etagValue);
155 MHD_queue_response(connection, MHD_HTTP_OK, response);
159 MHD_destroy_response(response);
167 // this function return either Index.htlm or a redirect to /#!route to make angular happy
168 STATIC int redirectHTML5(struct MHD_Connection *connection, AFB_session *session, const char* url) {
172 struct MHD_Response *response;
173 AFB_staticfile staticfile;
175 // Url match /opa/xxxx should redirect to "/opa/#!page" to force index.html reload
176 strncpy(staticfile.path, session->config->rootbase, sizeof (staticfile.path));
177 strncat(staticfile.path, "/#!", sizeof (staticfile.path));
178 strncat(staticfile.path, &url[1], sizeof (staticfile.path));
179 response = MHD_create_response_from_buffer(0,"", MHD_RESPMEM_PERSISTENT);
180 MHD_add_response_header (response, "Location", staticfile.path);
181 MHD_queue_response (connection, MHD_HTTP_MOVED_PERMANENTLY, response);
182 if (verbose) fprintf (stderr,"checkHTML5 redirect to [%s]\n",staticfile.path);
187 // minimal httpd file server for static HTML,JS,CSS,etc...
188 STATIC int requestFile(struct MHD_Connection *connection, AFB_session *session, const char* url) {
190 AFB_staticfile staticfile;
191 char *requestdir, *requesturl;
193 // default search for file is rootdir base
194 requestdir= session->config->rootdir;
195 requesturl=(char*)url;
197 // Check for optional aliases
198 for (idx=0; session->config->aliasdir[idx].url != NULL; idx++) {
199 if (0 == strncmp(url, session->config->aliasdir[idx].url, session->config->aliasdir[idx].len)) {
200 requestdir = session->config->aliasdir[idx].path;
201 requesturl=(char*)&url[session->config->aliasdir[idx].len];
206 // build full path from rootdir + url
207 strncpy(staticfile.path, requestdir, sizeof (staticfile.path));
208 strncat(staticfile.path, requesturl, sizeof (staticfile.path));
210 // try to open file and get its size
211 if (-1 == (staticfile.fd = open(staticfile.path, O_RDONLY))) {
212 fprintf(stderr, "Fail to open file: [%s] error:%s\n", staticfile.path, strerror(errno));
215 // open file is OK let use it
216 ret = servFile (connection, session, url, &staticfile);
220 // Check and Dispatch HTTP request
221 STATIC int newRequest(void *cls,
222 struct MHD_Connection *connection,
226 const char *upload_data, size_t *upload_data_size, void **con_cls) {
228 AFB_session *session = cls;
229 struct MHD_Response *response;
232 // this is a REST API let's check for plugins
233 if (0 == strncmp(url, session->config->rootapi, apiUrlLen)) {
234 ret = doRestApi(connection, session, &url[apiUrlLen+1], method, upload_data, upload_data_size, con_cls);
238 // From here only accept get request
239 if (0 != strcmp(method, MHD_HTTP_METHOD_GET)) return MHD_NO; /* unexpected method */
241 // If a static file exist serve it now
242 ret = requestFile(connection, session, url);
243 if (ret != FAILED) return ret;
245 // no static was served let's try HTML5 OPA redirect
246 if (0 == strncmp(url, session->config->rootbase, baseUrlLen)) {
247 ret = redirectHTML5(connection, session, &url[baseUrlLen]);
251 // Nothing respond to this request Files, API, Angular Base
252 const char *errorstr = "<html><body>AFB-Daemon File Not Find file</body></html>";
253 response = MHD_create_response_from_buffer(strlen(errorstr), (void*)errorstr, MHD_RESPMEM_PERSISTENT);
254 ret = MHD_queue_response(connection, MHD_HTTP_INTERNAL_SERVER_ERROR, response);
258 STATIC int newClient(void *cls, const struct sockaddr * addr, socklen_t addrlen) {
259 // check if client is coming from an acceptable IP
260 return (MHD_YES); // MHD_NO
264 PUBLIC AFB_error httpdStart(AFB_session *session) {
266 // compute fixed URL length at startup time
267 apiUrlLen = strlen (session->config->rootapi);
268 baseUrlLen= strlen (session->config->rootbase);
269 rootUrlLen= strlen (session->config->rootdir);
271 // Initialise Client Session Hash Table
272 ctxStoreInit (CTX_NBCLIENTS);
274 //TBD open libmagic cache [fail to pass EFENCE check (allocating 0 bytes)]
275 //initLibMagic (session);
279 printf("AFB:notice Waiting port=%d rootdir=%s\n", session->config->httpdPort, session->config->rootdir);
280 printf("AFB:notice Browser URL= http://localhost:%d\n", session->config->httpdPort);
283 session->httpd = (void*) MHD_start_daemon(
284 MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, // use request and not threads
285 session->config->httpdPort, // port
286 &newClient, NULL, // Tcp Accept call back + extra attribute
287 &newRequest, session, // Http Request Call back + extra attribute
288 MHD_OPTION_NOTIFY_COMPLETED, &endRequest, NULL,
289 MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 15, MHD_OPTION_END); // 15s + options-end
290 // TBD: MHD_OPTION_SOCK_ADDR
292 if (session->httpd == NULL) {
293 printf("Error: httpStart invalid httpd port: %d", session->config->httpdPort);
300 PUBLIC AFB_error httpdLoop(AFB_session *session) {
302 if (verbose) fprintf(stderr, "AFB:notice entering httpd waiting loop\n");
305 if (verbose) fprintf(stderr, "AFB:notice httpd alive [%d]\n", count++);
308 // should never return from here
312 PUBLIC int httpdStatus(AFB_session *session) {
313 return (MHD_run(session->httpd));
316 PUBLIC void httpdStop(AFB_session *session) {
317 MHD_stop_daemon(session->httpd);