compilation with missing sysinfo fct
[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
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 #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 #include "cpu.h"
42 #endif
43
44 #include "psensor_json.h"
45 #include "url.h"
46 #include "p_io.h"
47 #include "server.h"
48
49 static const char *program_name;
50
51 #define DEFAULT_PORT 3131
52
53 #define PAGE_NOT_FOUND (_("<html><body><p>"\
54 "Page not found - Go to <a href='/'>Main page</a></p></body>"))
55
56 static struct option long_options[] = {
57         {"version", no_argument, 0, 'v'},
58         {"help", no_argument, 0, 'h'},
59         {"port", required_argument, 0, 'p'},
60         {"wdir", required_argument, 0, 'w'},
61         {"debug", no_argument, 0, 'd'},
62         {0, 0, 0, 0}
63 };
64
65 static struct server_data server_data;
66
67 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
68
69 static int debug;
70
71 static int server_stop_requested;
72
73 void print_version()
74 {
75         printf("psensor-server %s\n", VERSION);
76         printf(_("Copyright (C) %s jeanfi@gmail.com\n"
77                  "License GPLv2: GNU GPL version 2 or later "
78                  "<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
79                  "This is free software: you are free to change and redistribute it.\n"
80                  "There is NO WARRANTY, to the extent permitted by law.\n"),
81                "2010-2011");
82 }
83
84 void print_help()
85 {
86         printf(_("Usage: %s [OPTION]...\n"), program_name);
87
88         puts(_("psensor-server is an HTTP server "
89                "for monitoring hardware sensors remotely."));
90
91         puts("");
92         puts("Options:");
93         puts(_("  -h, --help            display this help and exit\n"
94                "  -v, --version         display version information and exit"));
95
96         puts("");
97
98         puts(_("  -d,--debug            run in debug mode\n"
99                "  -p,--port=PORT        webserver port\n"
100                "  -w,--wdir=DIR         directory containing webserver pages"));
101
102         puts("");
103
104         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
105         puts("");
106         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
107 }
108
109 /*
110   Returns the file path corresponding to a given URL
111 */
112 char *get_path(const char *url, const char *www_dir)
113 {
114         const char *p;
115         char *res;
116
117         if (!strlen(url) || !strcmp(url, ".") || !strcmp(url, "/"))
118                 p = "/index.html";
119         else
120                 p = url;
121
122         res = malloc(strlen(www_dir)+strlen(p)+1);
123
124         strcpy(res, www_dir);
125         strcat(res, p);
126
127         return res;
128 }
129
130 #if MHD_VERSION >= 0x00090200
131 static ssize_t
132 file_reader(void *cls, uint64_t pos, char *buf, size_t max)
133 #else
134 static int
135 file_reader(void *cls, uint64_t pos, char *buf, int max)
136 #endif
137 {
138         FILE *file = cls;
139
140         fseek(file, pos, SEEK_SET);
141         return fread(buf, 1, max, file);
142 }
143
144 struct MHD_Response *
145 create_response_api(const char *nurl,
146                     const char *method,
147                     unsigned int *rp_code)
148 {
149         struct MHD_Response *resp;
150         struct psensor *s;
151         char *page = NULL;
152
153         if (!strcmp(nurl, URL_BASE_API_1_0_SENSORS))  {
154
155                 page = sensors_to_json_string(server_data.sensors);
156
157 #ifdef HAVE_GTOP
158 #ifdef HAVE_SYSINFO_FCT
159         } else if (!strcmp(nurl, URL_API_1_0_SYSINFO)) {
160
161                 page = sysinfo_to_json_string(&server_data.psysinfo);
162 #endif
163         } else if (!strcmp(nurl, URL_API_1_0_CPU_USAGE)) {
164                 page = sensor_to_json_string(server_data.cpu_usage);
165 #endif
166         } else if (!strncmp(nurl, URL_BASE_API_1_0_SENSORS,
167                             strlen(URL_BASE_API_1_0_SENSORS))
168                    && nurl[strlen(URL_BASE_API_1_0_SENSORS)] == '/') {
169
170                 const char *sid = nurl + strlen(URL_BASE_API_1_0_SENSORS) + 1;
171
172                 s = psensor_list_get_by_id(server_data.sensors, sid);
173
174                 if (s)
175                         page = sensor_to_json_string(s);
176
177         } else if (debug && !strcmp(nurl, URL_API_1_0_SERVER_STOP)) {
178
179                 server_stop_requested = 1;
180                 page = strdup(_("<html><body><p>"
181                                 "Server stop requested</p></body></html>"));
182         }
183
184         if (page) {
185                 *rp_code = MHD_HTTP_OK;
186
187                 resp = MHD_create_response_from_data(strlen(page), page,
188                                                      MHD_YES, MHD_NO);
189
190                 MHD_add_response_header(resp, MHD_HTTP_HEADER_CONTENT_TYPE,
191                                         "application/json");
192
193                 return resp;
194         }
195
196         return NULL;
197 }
198
199 struct MHD_Response *
200 create_response_file(const char *nurl,
201                      const char *method,
202                      unsigned int *rp_code,
203                      const char *fpath)
204 {
205         struct stat st;
206         int ret;
207         FILE *file;
208
209         ret = stat(fpath, &st);
210
211         if (!ret && (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))) {
212                 file = fopen(fpath, "rb");
213
214                 if (file) {
215                         *rp_code = MHD_HTTP_OK;
216
217                         if (!st.st_size) {
218                                 fclose(file);
219                                 return MHD_create_response_from_data
220                                         (0, NULL, MHD_NO, MHD_NO);
221                         }
222
223                         return MHD_create_response_from_callback
224                                 (st.st_size,
225                                  32 * 1024,
226                                  &file_reader,
227                                  file,
228                                  (MHD_ContentReaderFreeCallback)&fclose);
229
230                 } else {
231                         log_printf(LOG_ERR, "Failed to open: %s\n", fpath);
232                 }
233         }
234
235         return NULL;
236 }
237
238 struct MHD_Response *
239 create_response(const char *nurl, const char *method, unsigned int *rp_code)
240 {
241         struct MHD_Response *resp = NULL;
242
243         if (!strncmp(nurl, URL_BASE_API_1_0, strlen(URL_BASE_API_1_0))) {
244                 resp = create_response_api(nurl, method, rp_code);
245         } else {
246                 char *fpath = get_path(nurl, server_data.www_dir);
247
248                 resp = create_response_file(nurl, method, rp_code, fpath);
249
250                 free(fpath);
251         }
252
253         if (resp) {
254                 return resp;
255         } else {
256                 char *page = strdup(PAGE_NOT_FOUND);
257                 *rp_code = MHD_HTTP_NOT_FOUND;
258
259                 return MHD_create_response_from_data
260                         (strlen(page), page, MHD_YES, MHD_NO);
261         }
262 }
263
264 static int
265 cbk_http_request(void *cls,
266                  struct MHD_Connection *connection,
267                  const char *url,
268                  const char *method,
269                  const char *version,
270                  const char *upload_data,
271                  size_t *upload_data_size, void **ptr)
272 {
273         static int dummy;
274         struct MHD_Response *response;
275         int ret;
276         char *nurl;
277         unsigned int resp_code;
278
279         if (strcmp(method, "GET"))
280                 return MHD_NO;
281
282         if (&dummy != *ptr) {
283                 /* The first time only the headers are valid, do not
284                    respond in the first round... */
285                 *ptr = &dummy;
286                 return MHD_YES;
287         }
288
289         if (*upload_data_size)
290                 return MHD_NO;
291
292         *ptr = NULL;            /* clear context pointer */
293
294         if (debug)
295                 printf(_("HTTP Request: %s\n"), url);
296
297         nurl = url_normalize(url);
298
299         pthread_mutex_lock(&mutex);
300         response = create_response(nurl, method, &resp_code);
301         pthread_mutex_unlock(&mutex);
302
303         ret = MHD_queue_response(connection, resp_code, response);
304         MHD_destroy_response(response);
305
306         free(nurl);
307
308         return ret;
309 }
310
311 int main(int argc, char *argv[])
312 {
313         struct MHD_Daemon *d;
314         int port = DEFAULT_PORT;
315         int optc;
316         int cmdok = 1;
317
318         program_name = argv[0];
319
320         setlocale(LC_ALL, "");
321
322 #if ENABLE_NLS
323         bindtextdomain(PACKAGE, LOCALEDIR);
324         textdomain(PACKAGE);
325 #endif
326
327         server_data.www_dir = DEFAULT_WWW_DIR;
328         server_data.psysinfo.interfaces = NULL;
329
330         while ((optc = getopt_long(argc, argv,
331                                    "vhp:w:d", long_options, NULL)) != -1) {
332                 switch (optc) {
333                 case 'w':
334                         if (optarg)
335                                 server_data.www_dir = strdup(optarg);
336                         break;
337                 case 'p':
338                         if (optarg)
339                                 port = atoi(optarg);
340                         break;
341                 case 'h':
342                         print_help();
343                         exit(EXIT_SUCCESS);
344                 case 'v':
345                         print_version();
346                         exit(EXIT_SUCCESS);
347                 case 'd':
348                         debug = 1;
349                         break;
350                 default:
351                         cmdok = 0;
352                         break;
353                 }
354         }
355
356         if (!cmdok || optind != argc) {
357                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
358                         program_name);
359                 exit(EXIT_FAILURE);
360         }
361
362         psensor_init();
363
364         server_data.sensors = get_all_sensors(600);
365
366 #ifdef HAVE_GTOP
367         server_data.cpu_usage = create_cpu_usage_sensor(600);
368 #endif
369
370         if (!*server_data.sensors)
371                 fprintf(stderr, _("ERROR: no sensors detected\n"));
372
373         d = MHD_start_daemon(MHD_USE_THREAD_PER_CONNECTION,
374                              port,
375                              NULL, NULL, &cbk_http_request, server_data.sensors,
376                              MHD_OPTION_END);
377         if (!d) {
378                 fprintf(stderr, _("ERROR: Fail to create web server\n"));
379                 exit(EXIT_FAILURE);
380         }
381
382         log_printf(LOG_INFO, _("Web server started on port: %d"), port);
383         log_printf(LOG_INFO, _("WWW directory: %s"), server_data.www_dir);
384         log_printf(LOG_INFO, _("URL: http://localhost:%d"), port);
385
386         while (!server_stop_requested) {
387                 pthread_mutex_lock(&mutex);
388
389 #ifdef HAVE_GTOP
390 #ifdef HAVE_SYSINFO_FCT
391                 sysinfo_update(&server_data.psysinfo);
392 #endif
393                 cpu_usage_sensor_update(server_data.cpu_usage);
394 #endif
395                 psensor_list_update_measures(server_data.sensors);
396
397                 pthread_mutex_unlock(&mutex);
398                 sleep(5);
399         }
400
401         MHD_stop_daemon(d);
402
403         /* sanity cleanup for valgrind */
404         psensor_list_free(server_data.sensors);
405 #ifdef HAVE_GTOP
406         psensor_free(server_data.cpu_usage);
407 #endif
408         free(server_data.www_dir);
409         sensors_cleanup();
410
411 #ifdef HAVE_GTOP
412 #ifdef HAVE_SYSINFO_FCT
413         sysinfo_cleanup();
414 #endif
415         cpu_cleanup();
416 #endif
417
418         return EXIT_SUCCESS;
419 }