]> git.sur5r.net Git - i3/i3status/blob - i3status.c
Implement %essid and %signal for wireless on OpenBSD.
[i3/i3status] / i3status.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3status – Generates a status line for dzen2 or xmobar
5  *
6  * Copyright © 2008-2012 Michael Stapelberg and contributors
7  * Copyright © 2009 Thorsten Toepper <atsutane at freethoughts dot de>
8  * Copyright © 2010 Axel Wagner <mail at merovius dot de>
9  * Copyright © 2010 Fernando Tarlá Cardoso Lemos <fernandotcl at gmail dot com>
10  *
11  * See file LICENSE for license information.
12  *
13  */
14 #include <string.h>
15 #include <stdio.h>
16 #include <stdbool.h>
17 #include <unistd.h>
18 #include <stdlib.h>
19 #include <sys/socket.h>
20 #include <netinet/in.h>
21 #include <getopt.h>
22 #include <signal.h>
23 #include <confuse.h>
24 #include <glob.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include <time.h>
28 #include <sys/time.h>
29 #include <locale.h>
30
31 #include <yajl/yajl_gen.h>
32 #include <yajl/yajl_version.h>
33
34 #include "i3status.h"
35
36 #define exit_if_null(pointer, ...) { if (pointer == NULL) die(__VA_ARGS__); }
37
38 /* socket file descriptor for general purposes */
39 int general_socket;
40
41 cfg_t *cfg, *cfg_general;
42
43 /*
44  * Exit upon SIGPIPE because when we have nowhere to write to, gathering
45  * system information is pointless.
46  *
47  */
48 void sigpipe(int signum) {
49         fprintf(stderr, "Received SIGPIPE, exiting\n");
50         exit(1);
51 }
52
53 /*
54  * Checks if the given path exists by calling stat().
55  *
56  */
57 static bool path_exists(const char *path) {
58         struct stat buf;
59         return (stat(path, &buf) == 0);
60 }
61
62 static void *scalloc(size_t size) {
63         void *result = calloc(size, 1);
64         exit_if_null(result, "Error: out of memory (calloc(%zd))\n", size);
65         return result;
66 }
67
68 static char *sstrdup(const char *str) {
69         char *result = strdup(str);
70         exit_if_null(result, "Error: out of memory (strdup())\n");
71         return result;
72 }
73
74
75 /*
76  * Validates a color in "#RRGGBB" format
77  *
78  */
79 static int valid_color(const char *value)
80 {
81         if (strlen(value) != 7) return 0;
82         if (value[0] != '#') return 0;
83         for (int i = 1; i < 7; ++i) {
84                 if (value[i] >= '0' && value[i] <= '9') continue;
85                 if (value[i] >= 'a' && value[i] <= 'f') continue;
86                 if (value[i] >= 'A' && value[i] <= 'F') continue;
87                 return 0;
88         }
89         return 1;
90 }
91
92 /*
93  * This function resolves ~ in pathnames.
94  * It may resolve wildcards in the first part of the path, but if no match
95  * or multiple matches are found, it just returns a copy of path as given.
96  *
97  */
98 static char *resolve_tilde(const char *path) {
99         static glob_t globbuf;
100         char *head, *tail, *result = NULL;
101
102         tail = strchr(path, '/');
103         head = strndup(path, tail ? (size_t)(tail - path) : strlen(path));
104
105         int res = glob(head, GLOB_TILDE, NULL, &globbuf);
106         free(head);
107         /* no match, or many wildcard matches are bad */
108         if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
109                 result = sstrdup(path);
110         else if (res != 0) {
111                 die("glob() failed");
112         } else {
113                 head = globbuf.gl_pathv[0];
114                 result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1);
115                 strncpy(result, head, strlen(head));
116                 if (tail)
117                         strncat(result, tail, strlen(tail));
118         }
119         globfree(&globbuf);
120
121         return result;
122 }
123
124 static char *get_config_path(void) {
125         char *xdg_config_home, *xdg_config_dirs, *config_path;
126
127         /* 1: check the traditional path under the home directory */
128         config_path = resolve_tilde("~/.i3status.conf");
129         if (path_exists(config_path))
130                 return config_path;
131
132         /* 2: check for $XDG_CONFIG_HOME/i3status/config */
133         if ((xdg_config_home = getenv("XDG_CONFIG_HOME")) == NULL)
134                 xdg_config_home = "~/.config";
135
136         xdg_config_home = resolve_tilde(xdg_config_home);
137         if (asprintf(&config_path, "%s/i3status/config", xdg_config_home) == -1)
138                 die("asprintf() failed");
139         free(xdg_config_home);
140
141         if (path_exists(config_path))
142                 return config_path;
143         free(config_path);
144
145         /* 3: check the traditional path under /etc */
146         config_path = SYSCONFDIR "/i3status.conf";
147         if (path_exists(config_path))
148             return sstrdup(config_path);
149
150         /* 4: check for $XDG_CONFIG_DIRS/i3status/config */
151         if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)
152                 xdg_config_dirs = "/etc/xdg";
153
154         char *buf = strdup(xdg_config_dirs);
155         char *tok = strtok(buf, ":");
156         while (tok != NULL) {
157                 tok = resolve_tilde(tok);
158                 if (asprintf(&config_path, "%s/i3status/config", tok) == -1)
159                         die("asprintf() failed");
160                 free(tok);
161                 if (path_exists(config_path)) {
162                         free(buf);
163                         return config_path;
164                 }
165                 free(config_path);
166                 tok = strtok(NULL, ":");
167         }
168         free(buf);
169
170         die("Unable to find the configuration file (looked at "
171                 "~/.i3status.conf, $XDG_CONFIG_HOME/i3status/config, "
172                 "/etc/i3status.conf and $XDG_CONFIG_DIRS/i3status/config)");
173         return NULL;
174 }
175
176 int main(int argc, char *argv[]) {
177         unsigned int j;
178
179         cfg_opt_t general_opts[] = {
180                 CFG_STR("output_format", "auto", CFGF_NONE),
181                 CFG_BOOL("colors", 1, CFGF_NONE),
182                 CFG_STR("color_good", "#00FF00", CFGF_NONE),
183                 CFG_STR("color_degraded", "#FFFF00", CFGF_NONE),
184                 CFG_STR("color_bad", "#FF0000", CFGF_NONE),
185                 CFG_STR("color_separator", "#333333", CFGF_NONE),
186                 CFG_INT("interval", 1, CFGF_NONE),
187                 CFG_END()
188         };
189
190         cfg_opt_t run_watch_opts[] = {
191                 CFG_STR("pidfile", NULL, CFGF_NONE),
192                 CFG_STR("format", "%title: %status", CFGF_NONE),
193                 CFG_END()
194         };
195
196         cfg_opt_t wireless_opts[] = {
197                 CFG_STR("format_up", "W: (%quality at %essid, %bitrate) %ip", CFGF_NONE),
198                 CFG_STR("format_down", "W: down", CFGF_NONE),
199                 CFG_END()
200         };
201
202         cfg_opt_t ethernet_opts[] = {
203                 CFG_STR("format_up", "E: %ip (%speed)", CFGF_NONE),
204                 CFG_STR("format_down", "E: down", CFGF_NONE),
205                 CFG_END()
206         };
207
208         cfg_opt_t ipv6_opts[] = {
209                 CFG_STR("format_up", "%ip", CFGF_NONE),
210                 CFG_STR("format_down", "no IPv6", CFGF_NONE),
211                 CFG_END()
212         };
213
214         cfg_opt_t battery_opts[] = {
215                 CFG_STR("format", "%status %percentage %remaining", CFGF_NONE),
216                 CFG_STR("path", "/sys/class/power_supply/BAT%d/uevent", CFGF_NONE),
217                 CFG_INT("low_threshold", 30, CFGF_NONE),
218                 CFG_STR("threshold_type", "time", CFGF_NONE),
219                 CFG_BOOL("last_full_capacity", false, CFGF_NONE),
220                 CFG_END()
221         };
222
223         cfg_opt_t time_opts[] = {
224                 CFG_STR("format", "%d.%m.%Y %H:%M:%S", CFGF_NONE),
225                 CFG_END()
226         };
227
228         cfg_opt_t ddate_opts[] = {
229                 CFG_STR("format", "%{%a, %b %d%}, %Y%N - %H", CFGF_NONE),
230                 CFG_END()
231         };
232
233         cfg_opt_t load_opts[] = {
234                 CFG_STR("format", "%1min %5min %15min", CFGF_NONE),
235                 CFG_END()
236         };
237
238         cfg_opt_t usage_opts[] = {
239                 CFG_STR("format", "%usage", CFGF_NONE),
240                 CFG_END()
241         };
242
243         cfg_opt_t temp_opts[] = {
244                 CFG_STR("format", "%degrees C", CFGF_NONE),
245                 CFG_STR("path", NULL, CFGF_NONE),
246                 CFG_END()
247         };
248
249         cfg_opt_t disk_opts[] = {
250                 CFG_STR("format", "%free", CFGF_NONE),
251                 CFG_END()
252         };
253
254         cfg_opt_t volume_opts[] = {
255                 CFG_STR("format", "♪: %volume", CFGF_NONE),
256                 CFG_STR("device", "default", CFGF_NONE),
257                 CFG_STR("mixer", "Master", CFGF_NONE),
258                 CFG_INT("mixer_idx", 0, CFGF_NONE),
259                 CFG_END()
260         };
261
262         cfg_opt_t opts[] = {
263                 CFG_STR_LIST("order", "{}", CFGF_NONE),
264                 CFG_SEC("general", general_opts, CFGF_NONE),
265                 CFG_SEC("run_watch", run_watch_opts, CFGF_TITLE | CFGF_MULTI),
266                 CFG_SEC("wireless", wireless_opts, CFGF_TITLE | CFGF_MULTI),
267                 CFG_SEC("ethernet", ethernet_opts, CFGF_TITLE | CFGF_MULTI),
268                 CFG_SEC("battery", battery_opts, CFGF_TITLE | CFGF_MULTI),
269                 CFG_SEC("cpu_temperature", temp_opts, CFGF_TITLE | CFGF_MULTI),
270                 CFG_SEC("disk", disk_opts, CFGF_TITLE | CFGF_MULTI),
271                 CFG_SEC("volume", volume_opts, CFGF_TITLE | CFGF_MULTI),
272                 CFG_SEC("ipv6", ipv6_opts, CFGF_NONE),
273                 CFG_SEC("time", time_opts, CFGF_NONE),
274                 CFG_SEC("ddate", ddate_opts, CFGF_NONE),
275                 CFG_SEC("load", load_opts, CFGF_NONE),
276                 CFG_SEC("cpu_usage", usage_opts, CFGF_NONE),
277                 CFG_END()
278         };
279
280         char *configfile = NULL;
281         int o, option_index = 0;
282         struct option long_options[] = {
283                 {"config", required_argument, 0, 'c'},
284                 {"help", no_argument, 0, 'h'},
285                 {"version", no_argument, 0, 'v'},
286                 {0, 0, 0, 0}
287         };
288
289         struct sigaction action;
290         memset(&action, 0, sizeof(struct sigaction));
291         action.sa_handler = sigpipe;
292         sigaction(SIGPIPE, &action, NULL);
293
294         if (setlocale(LC_ALL, "") == NULL)
295                 die("Could not set locale. Please make sure all your LC_* / LANG settings are correct.");
296
297         while ((o = getopt_long(argc, argv, "c:hv", long_options, &option_index)) != -1)
298                 if ((char)o == 'c')
299                         configfile = optarg;
300                 else if ((char)o == 'h') {
301                         printf("i3status " VERSION " © 2008-2012 Michael Stapelberg and contributors\n"
302                                 "Syntax: %s [-c <configfile>] [-h] [-v]\n", argv[0]);
303                         return 0;
304                 } else if ((char)o == 'v') {
305                         printf("i3status " VERSION " © 2008-2012 Michael Stapelberg and contributors\n");
306                         return 0;
307                 }
308
309
310         if (configfile == NULL)
311                 configfile = get_config_path();
312
313         cfg = cfg_init(opts, CFGF_NOCASE);
314         if (cfg_parse(cfg, configfile) == CFG_PARSE_ERROR)
315                 return EXIT_FAILURE;
316
317         if (cfg_size(cfg, "order") == 0)
318                 die("Your 'order' array is empty. Please fix your config.\n");
319
320         cfg_general = cfg_getsec(cfg, "general");
321         if (cfg_general == NULL)
322                 die("Could not get section \"general\"\n");
323
324         char *output_str = cfg_getstr(cfg_general, "output_format");
325         if (strcasecmp(output_str, "auto") == 0) {
326                 fprintf(stderr, "i3status: trying to auto-detect output_format setting\n");
327                 output_str = auto_detect_format();
328                 if (!output_str) {
329                         output_str = "none";
330                         fprintf(stderr, "i3status: falling back to \"none\"\n");
331                 } else {
332                         fprintf(stderr, "i3status: auto-detected \"%s\"\n", output_str);
333                 }
334         }
335
336         if (strcasecmp(output_str, "dzen2") == 0)
337                 output_format = O_DZEN2;
338         else if (strcasecmp(output_str, "xmobar") == 0)
339                 output_format = O_XMOBAR;
340         else if (strcasecmp(output_str, "i3bar") == 0)
341                 output_format = O_I3BAR;
342         else if (strcasecmp(output_str, "none") == 0)
343                 output_format = O_NONE;
344         else die("Unknown output format: \"%s\"\n", output_str);
345
346         if (!valid_color(cfg_getstr(cfg_general, "color_good"))
347                         || !valid_color(cfg_getstr(cfg_general, "color_degraded"))
348                         || !valid_color(cfg_getstr(cfg_general, "color_bad"))
349                         || !valid_color(cfg_getstr(cfg_general, "color_separator")))
350                die("Bad color format");
351
352 #if YAJL_MAJOR >= 2
353         yajl_gen json_gen = yajl_gen_alloc(NULL);
354 #else
355         yajl_gen json_gen = yajl_gen_alloc(NULL, NULL);
356 #endif
357
358         if (output_format == O_I3BAR) {
359                 /* Initialize the i3bar protocol. See i3/docs/i3bar-protocol
360                  * for details. */
361                 printf("{\"version\":1}\n[\n");
362                 fflush(stdout);
363                 yajl_gen_array_open(json_gen);
364                 yajl_gen_clear(json_gen);
365         }
366
367         if ((general_socket = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
368                 die("Could not create socket\n");
369
370         int interval = cfg_getint(cfg_general, "interval");
371
372         /* One memory page which each plugin can use to buffer output.
373          * Even though it’s unclean, we just assume that the user will not
374          * specify a format string which expands to something longer than 4096
375          * bytes — given that the output of i3status is used to display
376          * information on screen, more than 1024 characters for the full line
377          * (!), not individual plugins, seem very unlikely. */
378         char buffer[4096];
379
380         struct tm tm;
381         while (1) {
382                 struct timeval tv;
383                 gettimeofday(&tv, NULL);
384                 time_t current_time = tv.tv_sec;
385                 struct tm *current_tm = NULL;
386                 if (current_time != (time_t) -1) {
387                         localtime_r(&current_time, &tm);
388                         current_tm = &tm;
389                 }
390                 if (output_format == O_I3BAR)
391                         yajl_gen_array_open(json_gen);
392                 for (j = 0; j < cfg_size(cfg, "order"); j++) {
393                         if (j > 0)
394                                 print_seperator();
395
396                         const char *current = cfg_getnstr(cfg, "order", j);
397
398                         CASE_SEC("ipv6") {
399                                 SEC_OPEN_MAP("ipv6");
400                                 print_ipv6_info(json_gen, buffer, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
401                                 SEC_CLOSE_MAP;
402                         }
403
404                         CASE_SEC_TITLE("wireless") {
405                                 SEC_OPEN_MAP("wireless");
406                                 print_wireless_info(json_gen, buffer, title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
407                                 SEC_CLOSE_MAP;
408                         }
409
410                         CASE_SEC_TITLE("ethernet") {
411                                 SEC_OPEN_MAP("ethernet");
412                                 print_eth_info(json_gen, buffer, title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
413                                 SEC_CLOSE_MAP;
414                         }
415
416                         CASE_SEC_TITLE("battery") {
417                                 SEC_OPEN_MAP("battery");
418                                 print_battery_info(json_gen, buffer, atoi(title), cfg_getstr(sec, "path"), cfg_getstr(sec, "format"), cfg_getint(sec, "low_threshold"), cfg_getstr(sec, "threshold_type"), cfg_getbool(sec, "last_full_capacity"));
419                                 SEC_CLOSE_MAP;
420                         }
421
422                         CASE_SEC_TITLE("run_watch") {
423                                 SEC_OPEN_MAP("run_watch");
424                                 print_run_watch(json_gen, buffer, title, cfg_getstr(sec, "pidfile"), cfg_getstr(sec, "format"));
425                                 SEC_CLOSE_MAP;
426                         }
427
428                         CASE_SEC_TITLE("disk") {
429                                 SEC_OPEN_MAP("disk_info");
430                                 print_disk_info(json_gen, buffer, title, cfg_getstr(sec, "format"));
431                                 SEC_CLOSE_MAP;
432                         }
433
434                         CASE_SEC("load") {
435                                 SEC_OPEN_MAP("load");
436                                 print_load(json_gen, buffer, cfg_getstr(sec, "format"));
437                                 SEC_CLOSE_MAP;
438                         }
439
440                         CASE_SEC("time") {
441                                 SEC_OPEN_MAP("time");
442                                 print_time(json_gen, buffer, cfg_getstr(sec, "format"), current_tm);
443                                 SEC_CLOSE_MAP;
444                         }
445
446                         CASE_SEC("ddate") {
447                                 SEC_OPEN_MAP("ddate");
448                                 print_ddate(json_gen, buffer, cfg_getstr(sec, "format"), current_tm);
449                                 SEC_CLOSE_MAP;
450                         }
451
452                         CASE_SEC_TITLE("volume") {
453                                 SEC_OPEN_MAP("volume");
454                                 print_volume(json_gen, buffer, cfg_getstr(sec, "format"),
455                                              cfg_getstr(sec, "device"),
456                                              cfg_getstr(sec, "mixer"),
457                                              cfg_getint(sec, "mixer_idx"));
458                                 SEC_CLOSE_MAP;
459                         }
460
461                         CASE_SEC_TITLE("cpu_temperature") {
462                                 SEC_OPEN_MAP("cpu_temperature");
463                                 print_cpu_temperature_info(json_gen, buffer, atoi(title), cfg_getstr(sec, "path"), cfg_getstr(sec, "format"));
464                                 SEC_CLOSE_MAP;
465                         }
466
467                         CASE_SEC("cpu_usage") {
468                                 SEC_OPEN_MAP("cpu_usage");
469                                 print_cpu_usage(json_gen, buffer, cfg_getstr(sec, "format"));
470                                 SEC_CLOSE_MAP;
471                         }
472                 }
473                 if (output_format == O_I3BAR) {
474                         yajl_gen_array_close(json_gen);
475                         const unsigned char *buf;
476 #if YAJL_MAJOR >= 2
477                         size_t len;
478 #else
479                         unsigned int len;
480 #endif
481                         yajl_gen_get_buf(json_gen, &buf, &len);
482                         write(STDOUT_FILENO, buf, len);
483                         yajl_gen_clear(json_gen);
484                 }
485
486                 printf("\n");
487                 fflush(stdout);
488
489                 /* To provide updates on every full second (as good as possible)
490                  * we don’t use sleep(interval) but we sleep until the next
491                  * second (with microsecond precision) plus (interval-1)
492                  * seconds. */
493                 struct timeval current_timeval;
494                 gettimeofday(&current_timeval, NULL);
495                 struct timespec ts = {interval - 1, (10e5 - current_timeval.tv_usec) * 1000};
496                 nanosleep(&ts, NULL);
497         }
498 }