Fix Rootdir redirect for static files
[src/app-framework-binder.git] / src / http-svc.c
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  *
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.
9  *
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.
14  *
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/>.
17  * 
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.
24
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
30  */
31
32
33 #include <microhttpd.h>
34
35 #include <sys/stat.h>
36 #include "../include/local-def.h"
37
38 // let's compute fixed URL length only once
39 static apiUrlLen=0;
40 static baseUrlLen=0;
41 static rootUrlLen=0;
42
43 // proto missing from GCC
44 char *strcasestr(const char *haystack, const char *needle);
45
46 static int rqtcount = 0;  // dummy request rqtcount to make each message be different
47 static int postcount = 0;
48
49 // try to open libmagic to handle mime types
50 static AFB_error initLibMagic (AFB_session *session) {
51   
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");
54   
55     session->magic = magic_open(MAGIC_MIME_TYPE);
56     if (session->magic == NULL) {
57         fprintf(stderr,"ERROR: unable to initialize magic library\n");
58         return AFB_FAIL;
59     }
60     
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);
65         return AFB_FAIL;
66     }
67
68     return AFB_SUCCESS;
69 }
70
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_HttpPost *posthandle = *con_cls;
74
75   // if post handle was used let's free everything
76   if (posthandle) {
77      if (verbose) fprintf (stderr, "End Post Request UID=%d\n", posthandle->uid);
78      free (posthandle->data);
79      free (posthandle);
80   }
81 }
82
83
84 // Create check etag value
85 STATIC void computeEtag(char *etag, int maxlen, struct stat *sbuf) {
86     int time;
87     time = sbuf->st_mtim.tv_sec;
88     snprintf(etag, maxlen, "%d", time);
89 }
90
91 STATIC int servFile (struct MHD_Connection *connection, AFB_session *session, const char *url, AFB_staticfile *staticfile) {
92     const char *etagCache, *mimetype; 
93     char etagValue[15];
94     struct MHD_Response *response;
95     struct stat sbuf; 
96     int ret;
97
98     if (fstat (staticfile->fd, &sbuf) != 0) {
99         fprintf(stderr, "Fail to stat file: [%s] error:%s\n", staticfile->path, strerror(errno));
100         goto abortRequest;
101     }
102        
103     // if url is a directory let's add index.html and redirect client
104     if (S_ISDIR (sbuf.st_mode)) {
105         close (staticfile->fd); // close directory check for Index
106        
107         // No trailing '/'. Let's add one and redirect for relative paths to work
108         if (url [strlen (url) -1] != '/') {
109             response = MHD_create_response_from_buffer(0,"", MHD_RESPMEM_PERSISTENT);
110             strncpy(staticfile->path, url, sizeof (staticfile->path));
111             strncat(staticfile->path, "/", sizeof (staticfile->path));
112             MHD_add_response_header (response, "Location", staticfile->path);
113             MHD_queue_response (connection, MHD_HTTP_MOVED_PERMANENTLY, response);
114             if (verbose) fprintf (stderr,"Adding trailing '/' [%s]\n",staticfile->path);      
115             goto sendRequest;
116         }
117         
118         strncat (staticfile->path, OPA_INDEX, sizeof (staticfile->path));
119         if (-1 == (staticfile->fd = open(staticfile->path, O_RDONLY)) || (fstat (staticfile->fd, &sbuf) != 0)) {
120            fprintf(stderr, "No Index.html in direcory [%s]\n", staticfile->path);
121            goto abortRequest;  
122         } 
123     } else if (! S_ISREG (sbuf.st_mode)) { // only standard file any other one including symbolic links are refused.
124         close (staticfile->fd); // nothing useful to do with this file
125         fprintf (stderr, "Fail file: [%s] is not a regular file\n", staticfile->path);
126         const char *errorstr = "<html><body>Application Framework Binder Invalid file type</body></html>";
127         response = MHD_create_response_from_buffer (strlen (errorstr),
128                      (void *) errorstr,  MHD_RESPMEM_PERSISTENT);
129         MHD_queue_response (connection, MHD_HTTP_INTERNAL_SERVER_ERROR, response);
130         goto sendRequest;
131     } 
132     
133     // https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching?hl=fr
134     // ftp://ftp.heanet.ie/disk1/www.gnu.org/software/libmicrohttpd/doxygen/dc/d0c/microhttpd_8h.html
135
136     // Check etag value and load file only when modification date changes
137     etagCache = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_IF_NONE_MATCH);
138     computeEtag(etagValue, sizeof (etagValue), &sbuf);
139
140     if (etagCache != NULL && strcmp(etagValue, etagCache) == 0) {
141         close(staticfile->fd); // file did not change since last upload
142         if (verbose) fprintf(stderr, "Not Modify: [%s]\n", staticfile->path);
143         response = MHD_create_response_from_buffer(0, "", MHD_RESPMEM_PERSISTENT);
144         MHD_add_response_header(response, MHD_HTTP_HEADER_CACHE_CONTROL, session->cacheTimeout); // default one hour cache
145         MHD_add_response_header(response, MHD_HTTP_HEADER_ETAG, etagValue);
146         MHD_queue_response(connection, MHD_HTTP_NOT_MODIFIED, response);
147
148     } else { // it's a new file, we need to upload it to client
149         // if we have magic let's try to guest mime type
150         if (session->magic) {          
151            mimetype= magic_descriptor(session->magic, staticfile->fd);
152            if (mimetype != NULL)  MHD_add_response_header (response, MHD_HTTP_HEADER_CONTENT_TYPE, mimetype);
153         } else mimetype="application/unknown";
154         
155         if (verbose) fprintf(stderr, "Serving: [%s] mime=%s\n", staticfile->path, mimetype);
156         response = MHD_create_response_from_fd(sbuf.st_size, staticfile->fd);
157         MHD_add_response_header(response, MHD_HTTP_HEADER_CACHE_CONTROL, session->cacheTimeout); // default one hour cache
158         MHD_add_response_header(response, MHD_HTTP_HEADER_ETAG, etagValue);
159         MHD_queue_response(connection, MHD_HTTP_OK, response);
160     }
161     
162 sendRequest:    
163     MHD_destroy_response(response);
164     return (MHD_YES);
165
166 abortRequest:
167     return (FAILED);
168 }
169
170
171 // this function return either Index.htlm or a redirect to /#!route to make angular happy
172 STATIC int redirectHTML5(struct MHD_Connection *connection, AFB_session *session, const char* url) {
173
174     int fd;
175     int ret;
176     struct MHD_Response *response;
177     AFB_staticfile staticfile;
178
179     // Url match /opa/xxxx should redirect to "/opa/#!page" to force index.html reload
180     strncpy(staticfile.path, session->config->rootbase, sizeof (staticfile.path));
181     strncat(staticfile.path, "/#!", sizeof (staticfile.path));
182     strncat(staticfile.path, &url[1], sizeof (staticfile.path));
183     response = MHD_create_response_from_buffer(0,"", MHD_RESPMEM_PERSISTENT);
184     MHD_add_response_header (response, "Location", staticfile.path);
185     MHD_queue_response (connection, MHD_HTTP_MOVED_PERMANENTLY, response);
186     if (verbose) fprintf (stderr,"checkHTML5 redirect to [%s]\n",staticfile.path);
187     return (MHD_YES);
188 }
189
190
191 // minimal httpd file server for static HTML,JS,CSS,etc...
192 STATIC int requestFile(struct MHD_Connection *connection, AFB_session *session, const char* url) {
193     int fd, ret, idx;
194     AFB_staticfile staticfile;
195     char *requestdir, *requesturl;
196    
197     // default search for file is rootdir base
198     requestdir= session->config->rootdir;
199     requesturl=(char*)url;
200     
201     // Check for optional aliases
202     for (idx=0; session->config->aliasdir[idx].url != NULL; idx++) {
203         if (0 == strncmp(url, session->config->aliasdir[idx].url, session->config->aliasdir[idx].len)) {
204              requestdir = session->config->aliasdir[idx].path;
205              requesturl=(char*)&url[session->config->aliasdir[idx].len];
206              break;
207         }
208     }
209     
210     // build full path from rootdir + url
211     strncpy(staticfile.path, requestdir, sizeof (staticfile.path));   
212     strncat(staticfile.path, requesturl, sizeof (staticfile.path));
213
214     // try to open file and get its size
215     if (-1 == (staticfile.fd = open(staticfile.path, O_RDONLY))) {
216         fprintf(stderr, "Fail to open file: [%s] error:%s\n", staticfile.path, strerror(errno));
217         return (FAILED);
218     }
219     // open file is OK let use it
220     ret = servFile (connection, session, url, &staticfile);
221     return ret;
222 }
223
224 // Check and Dispatch HTTP request
225 STATIC int newRequest(void *cls,
226         struct MHD_Connection *connection,
227         const char *url,
228         const char *method,
229         const char *version,
230         const char *upload_data, size_t *upload_data_size, void **con_cls) {
231
232     AFB_session *session = cls;
233     struct MHD_Response *response;
234     int ret;
235     
236     // this is a REST API let's check for plugins
237     if (0 == strncmp(url, session->config->rootapi, apiUrlLen)) {
238         ret = doRestApi(connection, session, &url[apiUrlLen+1], method, upload_data, upload_data_size, con_cls);
239         return ret;
240     }
241     
242     // From here only accept get request
243     if (0 != strcmp(method, MHD_HTTP_METHOD_GET)) return MHD_NO; /* unexpected method */
244    
245     // If a static file exist serve it now
246     ret = requestFile(connection, session, url);
247     if (ret != FAILED) return ret;
248     
249     // no static was served let's try HTML5 OPA redirect
250     if (0 == strncmp(url, session->config->rootbase, baseUrlLen)) {
251         ret = redirectHTML5(connection, session, &url[baseUrlLen]);
252         return ret;
253     }
254
255      // Nothing respond to this request Files, API, Angular Base
256     const char *errorstr = "<html><body>Alsa-Json-Gateway Unknown or Not readable file</body></html>";
257     response = MHD_create_response_from_buffer(strlen(errorstr), (void*)errorstr, MHD_RESPMEM_PERSISTENT);
258     ret = MHD_queue_response(connection, MHD_HTTP_INTERNAL_SERVER_ERROR, response);
259     return (MHD_YES);
260 }
261
262 STATIC int newClient(void *cls, const struct sockaddr * addr, socklen_t addrlen) {
263     // check if client is coming from an acceptable IP
264     return (MHD_YES); // MHD_NO
265 }
266
267
268 PUBLIC AFB_error httpdStart(AFB_session *session) {
269     
270     // compute fixed URL length at startup time
271     apiUrlLen = strlen (session->config->rootapi);
272     baseUrlLen= strlen (session->config->rootbase);
273     rootUrlLen= strlen (session->config->rootdir);
274      
275     // TBD open libmagic cache [fail to pass EFENCE check]
276     // initLibMagic (session);
277     
278     
279     if (verbose) {
280         printf("AFB:notice Waiting port=%d rootdir=%s\n", session->config->httpdPort, session->config->rootdir);
281         printf("AFB:notice Browser URL= http://localhost:%d\n", session->config->httpdPort);
282     }
283
284     session->httpd = (void*) MHD_start_daemon(
285             MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, // use request and not threads
286             session->config->httpdPort, // port
287             &newClient, NULL, // Tcp Accept call back + extra attribute
288             &newRequest, session, // Http Request Call back + extra attribute
289             MHD_OPTION_NOTIFY_COMPLETED, &endRequest, NULL,
290             MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 15, MHD_OPTION_END); // 15s + options-end
291     // TBD: MHD_OPTION_SOCK_ADDR
292
293     if (session->httpd == NULL) {
294         printf("Error: httpStart invalid httpd port: %d", session->config->httpdPort);
295         return AFB_FATAL;
296     }
297     return AFB_SUCCESS;
298 }
299
300 // infinite loop
301 PUBLIC AFB_error httpdLoop(AFB_session *session) {
302     static int  count = 0;
303
304     if (verbose) fprintf(stderr, "AFB:notice entering httpd waiting loop\n");
305     if (session->foreground) {
306
307         while (TRUE) {
308             fprintf(stderr, "AFB:notice Use Ctrl-C to quit\n");
309             (void) getc(stdin);
310         }
311     } else {
312         while (TRUE) {
313             sleep(3600);
314             if (verbose) fprintf(stderr, "AFB:notice httpd alive [%d]\n", count++);
315         }
316     }
317
318     // should never return from here
319     return AFB_FATAL;
320 }
321
322 PUBLIC int httpdStatus(AFB_session *session) {
323     return (MHD_run(session->httpd));
324 }
325
326 PUBLIC void httpdStop(AFB_session *session) {
327     MHD_stop_daemon(session->httpd);
328 }