Imported Upstream version 1.1.5
[psensor-pkg-debian.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, 0, 'v'},
69         {"help", no_argument, 0, 'h'},
70         {"port", required_argument, 0, 'p'},
71         {"wdir", required_argument, 0, 'w'},
72         {"debug", required_argument, 0, 'd'},
73         {"log-file", required_argument, 0, 'l'},
74         {"sensor-log-file", required_argument, 0, 0},
75         {"sensor-log-interval", required_argument, 0, 0},
76         {0, 0, 0, 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()
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()
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, void **ptr)
291 {
292         static int dummy;
293         struct MHD_Response *response;
294         int ret;
295         char *nurl;
296         unsigned int resp_code;
297
298         if (strcmp(method, "GET"))
299                 return MHD_NO;
300
301         if (&dummy != *ptr) {
302                 /* The first time only the headers are valid, do not
303                    respond in the first round... */
304                 *ptr = &dummy;
305                 return MHD_YES;
306         }
307
308         if (*upload_data_size)
309                 return MHD_NO;
310
311         *ptr = NULL;            /* clear context pointer */
312
313         log_debug(_("HTTP Request: %s"), url);
314
315         nurl = url_normalize(url);
316
317         pmutex_lock(&mutex);
318         response = create_response(nurl, method, &resp_code);
319         pmutex_unlock(&mutex);
320
321         ret = MHD_queue_response(connection, resp_code, response);
322         MHD_destroy_response(response);
323
324         free(nurl);
325
326         return ret;
327 }
328
329 int main(int argc, char *argv[])
330 {
331         struct MHD_Daemon *d;
332         int port, opti, optc, cmdok, ret, slog_interval;
333         char *log_file, *slog_file;
334
335         program_name = argv[0];
336
337         setlocale(LC_ALL, "");
338
339 #if ENABLE_NLS
340         bindtextdomain(PACKAGE, LOCALEDIR);
341         textdomain(PACKAGE);
342 #endif
343
344         server_data.www_dir = NULL;
345 #ifdef HAVE_GTOP
346         server_data.psysinfo.interfaces = NULL;
347 #endif
348         log_file = NULL;
349         slog_file = NULL;
350         slog_interval = 300;
351         port = DEFAULT_PORT;
352         cmdok = 1;
353
354         while ((optc = getopt_long(argc,
355                                    argv,
356                                    "vhp:w:d:l:",
357                                    long_options,
358                                    &opti)) != -1) {
359                 switch (optc) {
360                 case 'w':
361                         if (optarg)
362                                 server_data.www_dir = realpath(optarg, NULL);
363                         break;
364                 case 'p':
365                         if (optarg)
366                                 port = atoi(optarg);
367                         break;
368                 case 'h':
369                         print_help();
370                         exit(EXIT_SUCCESS);
371                 case 'v':
372                         print_version();
373                         exit(EXIT_SUCCESS);
374                 case 'd':
375                         log_level = atoi(optarg);
376                         log_info(_("Enables debug mode: %d"), log_level);
377                         break;
378                 case 'l':
379                         if (optarg)
380                                 log_file = strdup(optarg);
381                         break;
382                 case 0:
383                         if (!strcmp(long_options[opti].name, "sensor-log-file"))
384                                 slog_file = strdup(optarg);
385                         else if (!strcmp(long_options[opti].name,
386                                          "sensor-log-interval"))
387                                 slog_interval = atoi(optarg);
388                         break;
389                 default:
390                         cmdok = 0;
391                         break;
392                 }
393         }
394
395         if (!cmdok || optind != argc) {
396                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
397                         program_name);
398                 exit(EXIT_FAILURE);
399         }
400
401         if (!server_data.www_dir) {
402                 server_data.www_dir = realpath(DEFAULT_WWW_DIR, NULL);
403                 if (!server_data.www_dir) {
404                         fprintf(stderr,
405                                 _("Webserver directory does not exist.\n"));
406                         exit(EXIT_FAILURE);
407                 }
408         }
409
410         if (!log_file)
411                 log_file = strdup(DEFAULT_LOG_FILE);
412
413         pmutex_init(&mutex);
414
415         log_open(log_file);
416
417         hddtemp_psensor_list_append(&server_data.sensors, 600);
418
419         lmsensor_psensor_list_append(&server_data.sensors, 600);
420
421 #ifdef HAVE_GTOP
422         server_data.cpu_usage = create_cpu_usage_sensor(600);
423 #endif
424
425         if (!*server_data.sensors)
426                 log_err(_("No sensors detected."));
427
428         d = MHD_start_daemon(MHD_USE_THREAD_PER_CONNECTION,
429                              port,
430                              NULL, NULL, &cbk_http_request, server_data.sensors,
431                              MHD_OPTION_END);
432         if (!d) {
433                 log_err(_("Failed to create Web server."));
434                 exit(EXIT_FAILURE);
435         }
436
437         log_info(_("Web server started on port: %d"), port);
438         log_info(_("WWW directory: %s"), server_data.www_dir);
439         log_info(_("URL: http://localhost:%d"), port);
440
441         if (slog_file) {
442                 if (slog_interval <= 0)
443                         slog_interval = 300;
444                 ret = slog_activate(slog_file,
445                                     server_data.sensors,
446                                     &mutex,
447                                     slog_interval);
448                 if (!ret)
449                         log_err(_("Failed to activate logging of sensors."));
450         }
451
452         while (!server_stop_requested) {
453                 pmutex_lock(&mutex);
454
455 #ifdef HAVE_GTOP
456                 sysinfo_update(&server_data.psysinfo);
457                 cpu_usage_sensor_update(server_data.cpu_usage);
458 #endif
459
460 #ifdef HAVE_ATASMART
461                 atasmart_psensor_list_update(server_data.sensors);
462 #endif
463
464                 hddtemp_psensor_list_update(server_data.sensors);
465
466                 lmsensor_psensor_list_update(server_data.sensors);
467
468                 psensor_log_measures(server_data.sensors);
469
470                 pmutex_unlock(&mutex);
471                 sleep(5);
472         }
473
474         slog_close();
475
476         MHD_stop_daemon(d);
477
478         /* sanity cleanup for valgrind */
479         psensor_list_free(server_data.sensors);
480 #ifdef HAVE_GTOP
481         psensor_free(server_data.cpu_usage);
482 #endif
483         free(server_data.www_dir);
484         sensors_cleanup();
485
486 #ifdef HAVE_GTOP
487         sysinfo_cleanup();
488 #endif
489
490         if (log_file != DEFAULT_LOG_FILE)
491                 free(log_file);
492
493         return EXIT_SUCCESS;
494 }