fixed coredump when there are no sensors
[psensor.git] / src / server / server.c
1 /*
2  * Copyright (C) 2010-2014 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * 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 #define _LARGEFILE_SOURCE 1
20 #include "config.h"
21
22 #include <locale.h>
23 #include <libintl.h>
24 #define _(str) gettext(str)
25
26 #include <limits.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 #include <sys/select.h>
34 #include <sys/socket.h>
35 #include <getopt.h>
36 #include <stdint.h>
37 #include <pthread.h>
38 #include <unistd.h>
39 #include <microhttpd.h>
40
41 #ifdef HAVE_GTOP
42 #include "sysinfo.h"
43 #include <pgtop2.h>
44 #endif
45
46 #include <hdd.h>
47 #include <lmsensor.h>
48 #include <plog.h>
49 #include "psensor_json.h"
50 #include <pmutex.h>
51 #include "url.h"
52 #include "server.h"
53 #include "slog.h"
54
55 static const char *DEFAULT_LOG_FILE = "/var/log/psensor-server.log";
56
57 #define HTML_STOP_REQUESTED \
58 (_("<html><body><p>Server stop requested</p></body></html>"))
59
60 static const char *program_name;
61
62 static const int DEFAULT_PORT = 3131;
63
64 #define PAGE_NOT_FOUND (_("<html><body><p>"\
65 "Page not found - Go to <a href='/'>Main page</a></p></body>"))
66
67 static struct option long_options[] = {
68         {"version", no_argument, NULL, 'v'},
69         {"help", no_argument, NULL, 'h'},
70         {"port", required_argument, NULL, 'p'},
71         {"wdir", required_argument, NULL, 'w'},
72         {"debug", required_argument, NULL, 'd'},
73         {"log-file", required_argument, NULL, 'l'},
74         {"sensor-log-file", required_argument, NULL, 0},
75         {"sensor-log-interval", required_argument, NULL, 0},
76         {NULL, 0, NULL, 0}
77 };
78
79 static struct server_data server_data;
80
81 static pthread_mutex_t mutex;
82
83 static int server_stop_requested;
84
85 static void print_version(void)
86 {
87         printf("psensor-server %s\n", VERSION);
88         printf(_("Copyright (C) %s jeanfi@gmail.com\n"
89                  "License GPLv2: GNU GPL version 2 or later "
90                  "<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
91                  "This is free software: you are free to change and redistribute it.\n"
92                  "There is NO WARRANTY, to the extent permitted by law.\n"),
93                "2010-2012");
94 }
95
96 static void print_help(void)
97 {
98         printf(_("Usage: %s [OPTION]...\n"), program_name);
99
100         puts(_("psensor-server is an HTTP server for monitoring hardware "
101                "sensors remotely."));
102
103         puts("");
104         puts("Options:");
105         puts(_("  -h, --help            display this help and exit\n"
106                "  -v, --version         display version information and exit"));
107
108         puts("");
109         puts(_("  -p,--port=PORT        webserver port\n"
110                "  -w,--wdir=DIR         directory containing webserver pages"));
111
112         puts("");
113         puts(_("  -d, --debug=LEVEL     "
114                "set the debug level, integer between 0 and 3"));
115         puts(_("  -l, --log-file=PATH   set the log file to PATH"));
116         puts(_("  --sensor-log-file=PATH set the sensor log file to PATH"));
117         puts(_("  --sensor-log-interval=S "
118                "set the sensor log interval to S (seconds)"));
119
120         puts("");
121         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
122         puts("");
123         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
124 }
125
126 /*
127  * Returns the file path corresponding to a given URL
128  */
129 static char *get_path(const char *url, const char *www_dir)
130 {
131         const char *p;
132         char *res;
133
134         if (!strlen(url) || !strcmp(url, ".") || !strcmp(url, "/"))
135                 p = "/index.html";
136         else
137                 p = url;
138
139         res = malloc(strlen(www_dir)+strlen(p)+1);
140
141         strcpy(res, www_dir);
142         strcat(res, p);
143
144         return res;
145 }
146
147 #if MHD_VERSION >= 0x00090200
148 static ssize_t
149 file_reader(void *cls, uint64_t pos, char *buf, size_t max)
150 #else
151 static int
152 file_reader(void *cls, uint64_t pos, char *buf, int max)
153 #endif
154 {
155         FILE *file = cls;
156
157         fseeko(file, pos, SEEK_SET);
158         return fread(buf, 1, max, file);
159 }
160
161 static struct MHD_Response *
162 create_response_api(const char *nurl, const char *method, unsigned int *rp_code)
163 {
164         struct MHD_Response *resp;
165         struct psensor *s;
166         char *page = NULL;
167
168         if (!strcmp(nurl, URL_BASE_API_1_1_SENSORS))  {
169                 page = sensors_to_json_string(server_data.sensors);
170 #ifdef HAVE_GTOP
171         } else if (!strcmp(nurl, URL_API_1_1_SYSINFO)) {
172                 page = sysinfo_to_json_string(&server_data.psysinfo);
173         } else if (!strcmp(nurl, URL_API_1_1_CPU_USAGE)) {
174                 page = sensor_to_json_string(server_data.cpu_usage);
175 #endif
176         } else if (!strncmp(nurl, URL_BASE_API_1_1_SENSORS,
177                             strlen(URL_BASE_API_1_1_SENSORS))
178                    && nurl[strlen(URL_BASE_API_1_1_SENSORS)] == '/') {
179
180                 const char *sid = nurl + strlen(URL_BASE_API_1_1_SENSORS) + 1;
181
182                 s = psensor_list_get_by_id(server_data.sensors, sid);
183
184                 if (s)
185                         page = sensor_to_json_string(s);
186
187         } else if (!strcmp(nurl, URL_API_1_1_SERVER_STOP)) {
188
189                 server_stop_requested = 1;
190                 page = strdup(HTML_STOP_REQUESTED);
191         }
192
193         if (page) {
194                 *rp_code = MHD_HTTP_OK;
195
196                 resp = MHD_create_response_from_buffer(strlen(page),
197                                                        page,
198                                                        MHD_RESPMEM_MUST_FREE);
199
200                 MHD_add_response_header(resp, MHD_HTTP_HEADER_CONTENT_TYPE,
201                                         "application/json");
202
203                 return resp;
204         }
205
206         return NULL;
207 }
208
209 static struct MHD_Response *create_response_file(const char *nurl,
210                                                  const char *method,
211                                                  unsigned int *rp_code,
212                                                  const char *fpath)
213 {
214         struct stat st;
215         int ret;
216         FILE *file;
217
218         ret = stat(fpath, &st);
219
220         if (!ret && (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))) {
221                 file = fopen(fpath, "rb");
222
223                 if (file) {
224                         *rp_code = MHD_HTTP_OK;
225
226                         if (!st.st_size) {
227                                 fclose(file);
228                                 return MHD_create_response_from_buffer
229                                         (0, NULL, 0);
230                         }
231
232                         return MHD_create_response_from_callback
233                                 (st.st_size,
234                                  32 * 1024,
235                                  &file_reader,
236                                  file,
237                                  (MHD_ContentReaderFreeCallback)&fclose);
238
239                 } else {
240                         log_err("Failed to open: %s.", fpath);
241                 }
242         }
243
244         return NULL;
245 }
246
247 static struct MHD_Response *
248 create_response(const char *nurl, const char *method, unsigned int *rp_code)
249 {
250         char *page, *fpath, *rpath;
251         struct MHD_Response *resp = NULL;
252         int n;
253
254         if (!strncmp(nurl, URL_BASE_API_1_1, strlen(URL_BASE_API_1_1))) {
255                 resp = create_response_api(nurl, method, rp_code);
256         } else {
257                 fpath = get_path(nurl, server_data.www_dir);
258
259                 rpath = realpath(fpath, NULL);
260                 if (rpath) {
261                         n = strlen(server_data.www_dir);
262                         if (!strncmp(server_data.www_dir, rpath, n))
263                                 resp = create_response_file(nurl,
264                                                             method,
265                                                             rp_code,
266                                                             fpath);
267                         free(rpath);
268                 }
269
270                 free(fpath);
271         }
272
273         if (resp)
274                 return resp;
275
276         page = strdup(PAGE_NOT_FOUND);
277         *rp_code = MHD_HTTP_NOT_FOUND;
278
279         return MHD_create_response_from_buffer(strlen(page),
280                                                page,
281                                                MHD_RESPMEM_MUST_FREE);
282 }
283
284 static int cbk_http_request(void *cls,
285                             struct MHD_Connection *connection,
286                             const char *url,
287                             const char *method,
288                             const char *version,
289                             const char *upload_data,
290                             size_t *upload_data_size,
291                             void **ptr)
292 {
293         static int dummy;
294         struct MHD_Response *response;
295         int ret;
296         char *nurl;
297         unsigned int resp_code;
298
299         if (strcmp(method, "GET"))
300                 return MHD_NO;
301
302         if (&dummy != *ptr) {
303                 /* The first time only the headers are valid, do not
304                  * respond in the first round...
305                  */
306                 *ptr = &dummy;
307                 return MHD_YES;
308         }
309
310         if (*upload_data_size)
311                 return MHD_NO;
312
313         *ptr = NULL;            /* clear context pointer */
314
315         log_debug(_("HTTP Request: %s"), url);
316
317         nurl = url_normalize(url);
318
319         pmutex_lock(&mutex);
320         response = create_response(nurl, method, &resp_code);
321         pmutex_unlock(&mutex);
322
323         ret = MHD_queue_response(connection, resp_code, response);
324         MHD_destroy_response(response);
325
326         free(nurl);
327
328         return ret;
329 }
330
331 int main(int argc, char *argv[])
332 {
333         struct MHD_Daemon *d;
334         int port, opti, optc, cmdok, ret, slog_interval;
335         char *log_file, *slog_file;
336
337         program_name = argv[0];
338
339         setlocale(LC_ALL, "");
340
341 #if ENABLE_NLS
342         bindtextdomain(PACKAGE, LOCALEDIR);
343         textdomain(PACKAGE);
344 #endif
345
346         server_data.www_dir = NULL;
347 #ifdef HAVE_GTOP
348         server_data.psysinfo.interfaces = NULL;
349 #endif
350         log_file = NULL;
351         slog_file = NULL;
352         slog_interval = 300;
353         port = DEFAULT_PORT;
354         cmdok = 1;
355
356         while ((optc = getopt_long(argc,
357                                    argv,
358                                    "vhp:w:d:l:",
359                                    long_options,
360                                    &opti)) != -1) {
361                 switch (optc) {
362                 case 'w':
363                         if (optarg)
364                                 server_data.www_dir = realpath(optarg, NULL);
365                         break;
366                 case 'p':
367                         if (optarg)
368                                 port = atoi(optarg);
369                         break;
370                 case 'h':
371                         print_help();
372                         exit(EXIT_SUCCESS);
373                 case 'v':
374                         print_version();
375                         exit(EXIT_SUCCESS);
376                 case 'd':
377                         log_level = atoi(optarg);
378                         log_info(_("Enables debug mode: %d"), log_level);
379                         break;
380                 case 'l':
381                         if (optarg)
382                                 log_file = strdup(optarg);
383                         break;
384                 case 0:
385                         if (!strcmp(long_options[opti].name, "sensor-log-file"))
386                                 slog_file = strdup(optarg);
387                         else if (!strcmp(long_options[opti].name,
388                                          "sensor-log-interval"))
389                                 slog_interval = atoi(optarg);
390                         break;
391                 default:
392                         cmdok = 0;
393                         break;
394                 }
395         }
396
397         if (!cmdok || optind != argc) {
398                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
399                         program_name);
400                 exit(EXIT_FAILURE);
401         }
402
403         if (!server_data.www_dir) {
404                 server_data.www_dir = realpath(DEFAULT_WWW_DIR, NULL);
405                 if (!server_data.www_dir) {
406                         fprintf(stderr,
407                                 _("Webserver directory does not exist.\n"));
408                         exit(EXIT_FAILURE);
409                 }
410         }
411
412         if (!log_file)
413                 log_file = strdup(DEFAULT_LOG_FILE);
414
415         pmutex_init(&mutex);
416
417         log_open(log_file);
418
419         hddtemp_psensor_list_append(&server_data.sensors, 600);
420
421         lmsensor_psensor_list_append(&server_data.sensors, 600);
422
423 #ifdef HAVE_GTOP
424         server_data.cpu_usage = create_cpu_usage_sensor(600);
425 #endif
426
427         if (!server_data.sensors || !*server_data.sensors)
428                 log_err(_("No sensors detected."));
429
430         d = MHD_start_daemon(MHD_USE_THREAD_PER_CONNECTION,
431                              port,
432                              NULL, NULL, &cbk_http_request, server_data.sensors,
433                              MHD_OPTION_END);
434         if (!d) {
435                 log_err(_("Failed to create Web server."));
436                 exit(EXIT_FAILURE);
437         }
438
439         log_info(_("Web server started on port: %d"), port);
440         log_info(_("WWW directory: %s"), server_data.www_dir);
441         log_info(_("URL: http://localhost:%d"), port);
442
443         if (slog_file) {
444                 if (slog_interval <= 0)
445                         slog_interval = 300;
446                 ret = slog_activate(slog_file,
447                                     server_data.sensors,
448                                     &mutex,
449                                     slog_interval);
450                 if (!ret)
451                         log_err(_("Failed to activate logging of sensors."));
452         }
453
454         while (!server_stop_requested) {
455                 pmutex_lock(&mutex);
456
457 #ifdef HAVE_GTOP
458                 sysinfo_update(&server_data.psysinfo);
459                 cpu_usage_sensor_update(server_data.cpu_usage);
460 #endif
461
462 #ifdef HAVE_ATASMART
463                 atasmart_psensor_list_update(server_data.sensors);
464 #endif
465
466                 hddtemp_psensor_list_update(server_data.sensors);
467
468                 lmsensor_psensor_list_update(server_data.sensors);
469
470                 psensor_log_measures(server_data.sensors);
471
472                 pmutex_unlock(&mutex);
473                 sleep(5);
474         }
475
476         slog_close();
477
478         MHD_stop_daemon(d);
479
480         /* sanity cleanup for valgrind */
481         psensor_list_free(server_data.sensors);
482 #ifdef HAVE_GTOP
483         psensor_free(server_data.cpu_usage);
484 #endif
485         free(server_data.www_dir);
486         lmsensor_cleanup();
487
488 #ifdef HAVE_GTOP
489         sysinfo_cleanup();
490 #endif
491
492         if (log_file != DEFAULT_LOG_FILE)
493                 free(log_file);
494
495         return EXIT_SUCCESS;
496 }