added application/json mime type for json http response
[psensor.git] / src / server / server.c
1 /*
2     Copyright (C) 2010-2011 jeanfi@gmail.com
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17     02110-1301 USA
18 */
19 #include <locale.h>
20 #include <libintl.h>
21 #define _(str) gettext(str)
22
23 #include "config.h"
24
25 #include <stdarg.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31 #include <sys/select.h>
32 #include <sys/socket.h>
33 #include <getopt.h>
34 #include <stdint.h>
35 #include <pthread.h>
36 #include <unistd.h>
37 #include <microhttpd.h>
38
39 #ifdef HAVE_GTOP
40 #include "sysinfo.h"
41 #endif
42
43 #ifdef HAVE_LUA
44 #include "server_lua.h"
45 #endif
46
47 #include "psensor_json.h"
48 #include "plib/url.h"
49 #include "plib/plib_io.h"
50 #include "server.h"
51
52 static const char *program_name;
53
54 #define DEFAULT_PORT 3131
55
56 #define PAGE_NOT_FOUND (_("<html><body><p>\
57 Page not found - Go to <a href='/'>Main page</a>\
58 </p></body>"))
59
60 static struct option long_options[] = {
61         {"version", no_argument, 0, 'v'},
62         {"help", no_argument, 0, 'h'},
63         {"port", required_argument, 0, 'p'},
64         {"wdir", required_argument, 0, 'w'},
65         {"debug", no_argument, 0, 'd'},
66         {0, 0, 0, 0}
67 };
68
69 static struct server_data server_data;
70
71 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
72
73 static int debug;
74
75 static int server_stop_requested;
76
77 void print_version()
78 {
79         printf("psensor-server %s\n", VERSION);
80         printf(_("Copyright (C) %s jeanfi@gmail.com\n\
81 License GPLv2: GNU GPL version 2 or later \
82 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n\
83 This is free software: you are free to change and redistribute it.\n\
84 There is NO WARRANTY, to the extent permitted by law.\n"),
85                "2010-2011");
86 }
87
88 void print_help()
89 {
90         printf(_("Usage: %s [OPTION]...\n"), program_name);
91
92         puts(_("psensor-server is an HTTP server "
93                "for monitoring hardware sensors remotely."));
94
95         puts("");
96         puts("Options:");
97         puts(_("\
98   -h, --help          display this help and exit\n\
99   -v, --version       display version information and exit"));
100
101         puts("");
102
103         puts(_("\
104   -d,--debug     run in debug mode\n\
105   -p,--port=PORT webserver port\n\
106   -w,--wdir=DIR  directory containing webserver pages"));
107
108         puts("");
109
110         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
111         puts("");
112         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
113 }
114
115 /*
116   Returns '1' if the path denotates a Lua file, otherwise returns 0.
117  */
118 int is_path_lua(const char *path)
119 {
120         char *dot = rindex(path, '.');
121
122         if (dot && !strcasecmp(dot, ".lua"))
123                 return 1;
124
125         return 0;
126 }
127
128 /*
129   Returns the file path corresponding to a given URL
130 */
131 char *get_path(const char *url, const char *www_dir)
132 {
133         const char *p;
134         char *res;
135
136         if (!strlen(url) || !strcmp(url, ".") || !strcmp(url, "/"))
137                 p = "/index.lua";
138         else
139                 p = url;
140
141         res = malloc(strlen(www_dir)+strlen(p)+1);
142
143         strcpy(res, www_dir);
144         strcat(res, p);
145
146         return res;
147 }
148
149 static int
150 file_reader(void *cls, uint64_t pos, char *buf, int max)
151 {
152         FILE *file = cls;
153
154         fseek(file, pos, SEEK_SET);
155         return fread(buf, 1, max, file);
156 }
157
158 struct MHD_Response *
159 create_response_api(const char *nurl,
160                     const char *method,
161                     unsigned int *rp_code)
162 {
163         struct MHD_Response *resp;
164         struct psensor *s;
165         char *page = NULL;
166
167         if (!strcmp(nurl, URL_BASE_API_1_0_SENSORS))  {
168
169                 page = sensors_to_json_string(server_data.sensors);
170
171         } else if (!strncmp(nurl, URL_BASE_API_1_0_SENSORS,
172                             strlen(URL_BASE_API_1_0_SENSORS))
173                    && nurl[strlen(URL_BASE_API_1_0_SENSORS)] == '/') {
174
175                 const char *sid = nurl + strlen(URL_BASE_API_1_0_SENSORS) + 1;
176
177                 s = psensor_list_get_by_id(server_data.sensors, sid);
178
179                 if (s)
180                         page = sensor_to_json_string(s);
181
182         } else if (debug && !strcmp(nurl, URL_API_1_0_SERVER_STOP)) {
183
184                 server_stop_requested = 1;
185                 page = strdup(_("<html><body><p>"
186                                 "Server stop requested</p></body></html>"));
187         }
188
189         if (page) {
190                 *rp_code = MHD_HTTP_OK;
191
192                 resp = MHD_create_response_from_data(strlen(page), page,
193                                                      MHD_YES, MHD_NO);
194                 
195                 MHD_add_response_header(resp, MHD_HTTP_HEADER_CONTENT_TYPE,
196                                         "application/json");
197                 
198                 return resp;
199         }
200
201         return NULL;
202 }
203
204 struct MHD_Response *
205 create_response_lua(const char *nurl,
206                     const char *method,
207                     unsigned int *rp_code,
208                     const char *fpath)
209 {
210 #ifdef HAVE_LUA
211         char *page = lua_to_html_page(&server_data, fpath);
212
213         if (page) {
214                 *rp_code = MHD_HTTP_OK;
215
216                 return MHD_create_response_from_data
217                         (strlen(page), page, MHD_YES, MHD_NO);
218         }
219 #endif
220
221         return NULL;
222 }
223
224 struct MHD_Response *
225 create_response_file(const char *nurl,
226                      const char *method,
227                      unsigned int *rp_code,
228                      const char *fpath)
229 {
230         if (is_file(fpath)) {
231                 FILE *file = fopen(fpath, "rb");
232
233                 if (file) {
234                         struct stat buf;
235
236                         stat(fpath, &buf);
237                         *rp_code = MHD_HTTP_OK;
238
239                         if (!buf.st_size) {
240                                 fclose(file);
241                                 return MHD_create_response_from_data
242                                         (0, NULL, MHD_NO, MHD_NO);
243                         }
244
245                         return MHD_create_response_from_callback
246                                 (buf.st_size,
247                                  32 * 1024,
248                                  &file_reader,
249                                  file,
250                                  (MHD_ContentReaderFreeCallback)&fclose);
251
252                 }
253         }
254
255         return NULL;
256 }
257
258 struct MHD_Response *
259 create_response(const char *nurl, const char *method, unsigned int *rp_code)
260 {
261         struct MHD_Response *resp = NULL;
262
263         if (!strncmp(nurl, URL_BASE_API_1_0, strlen(URL_BASE_API_1_0))) {
264                 resp = create_response_api(nurl, method, rp_code);
265         } else {
266                 char *fpath = get_path(nurl, server_data.www_dir);
267
268                 if (is_path_lua(fpath))
269                         resp = create_response_lua
270                                 (nurl, method, rp_code, fpath);
271                 else
272                         resp = create_response_file
273                                 (nurl, method, rp_code, fpath);
274
275                 free(fpath);
276         }
277
278         if (resp) {
279                 return resp;
280         } else {
281                 char *page = strdup(PAGE_NOT_FOUND);
282                 *rp_code = MHD_HTTP_NOT_FOUND;
283
284                 return MHD_create_response_from_data
285                         (strlen(page), page, MHD_YES, MHD_NO);
286         }
287 }
288
289 static int
290 cbk_http_request(void *cls,
291                  struct MHD_Connection *connection,
292                  const char *url,
293                  const char *method,
294                  const char *version,
295                  const char *upload_data,
296                  size_t *upload_data_size, void **ptr)
297 {
298         static int dummy;
299         struct MHD_Response *response;
300         int ret;
301         char *nurl;
302         unsigned int resp_code;
303         char *page = NULL;
304
305         if (strcmp(method, "GET"))
306                 return MHD_NO;
307
308         if (&dummy != *ptr) {
309                 /* The first time only the headers are valid, do not
310                    respond in the first round... */
311                 *ptr = &dummy;
312                 return MHD_YES;
313         }
314
315         if (*upload_data_size)
316                 return MHD_NO;
317
318         *ptr = NULL;            /* clear context pointer */
319
320         if (debug)
321                 printf(_("HTTP Request: %s\n"), url);
322
323         nurl = url_normalize(url);
324
325         pthread_mutex_lock(&mutex);
326         response = create_response(nurl, method, &resp_code);
327         pthread_mutex_unlock(&mutex);
328
329         ret = MHD_queue_response(connection, resp_code, response);
330         MHD_destroy_response(response);
331
332         free(nurl);
333
334         return ret;
335 }
336
337 int main(int argc, char *argv[])
338 {
339         struct MHD_Daemon *d;
340         int port = DEFAULT_PORT;
341         int optc;
342         int cmdok = 1;
343
344         program_name = argv[0];
345
346         setlocale(LC_ALL, "");
347
348 #if ENABLE_NLS
349         bindtextdomain(PACKAGE, LOCALEDIR);
350         textdomain(PACKAGE);
351 #endif
352
353         server_data.www_dir = DEFAULT_WWW_DIR;
354
355         while ((optc = getopt_long(argc, argv,
356                                    "vhp:w:d", long_options, NULL)) != -1) {
357                 switch (optc) {
358                 case 'w':
359                         if (optarg)
360                                 server_data.www_dir = strdup(optarg);
361                         break;
362                 case 'p':
363                         if (optarg)
364                                 port = atoi(optarg);
365                         break;
366                 case 'h':
367                         print_help();
368                         exit(EXIT_SUCCESS);
369                 case 'v':
370                         print_version();
371                         exit(EXIT_SUCCESS);
372                 case 'd':
373                         debug = 1;
374                         break;
375                 default:
376                         cmdok = 0;
377                         break;
378                 }
379         }
380
381         if (!cmdok || optind != argc) {
382                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
383                         program_name);
384                 exit(EXIT_FAILURE);
385         }
386
387         if (!lmsensor_init()) {
388                 fprintf(stderr, _("ERROR: failed to init lm-sensors\n"));
389                 exit(EXIT_FAILURE);
390         }
391
392         server_data.sensors = get_all_sensors(1);
393
394         if (!*server_data.sensors)
395                 fprintf(stderr, _("ERROR: no sensors detected\n"));
396
397         d = MHD_start_daemon(MHD_USE_THREAD_PER_CONNECTION,
398                              port,
399                              NULL, NULL, &cbk_http_request, server_data.sensors,
400                              MHD_OPTION_END);
401         if (!d) {
402                 fprintf(stderr, _("ERROR: Fail to create web server\n"));
403                 exit(EXIT_FAILURE);
404         }
405
406         printf(_("Web server started on port: %d\n"), port);
407         printf(_("WWW directory: %s\n"), server_data.www_dir);
408         printf(_("URL: http://localhost:%d\n"), port);
409
410         while (!server_stop_requested) {
411                 pthread_mutex_lock(&mutex);
412
413 #ifdef HAVE_GTOP
414                 sysinfo_update(&server_data.psysinfo);
415 #endif
416                 psensor_list_update_measures(server_data.sensors);
417
418                 pthread_mutex_unlock(&mutex);
419                 sleep(5);
420         }
421
422         MHD_stop_daemon(d);
423
424         /* sanity cleanup for valgrind */
425         psensor_list_free(server_data.sensors);
426         free(server_data.www_dir);
427         sensors_cleanup();
428
429 #ifdef HAVE_GTOP
430         sysinfo_cleanup();
431 #endif
432
433         return EXIT_SUCCESS;
434 }