/* * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * i3-nagbar is a utility which displays a nag message, for example in the case * when the user has an error in their configuration file. * */ #include #include "libi3.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include xcb_visualtype_t *visual_type = NULL; #define SN_API_NOT_YET_FROZEN 1 #include #define MSG_PADDING logical_px(8) #define BTN_PADDING logical_px(3) #define BTN_BORDER logical_px(3) #define BTN_GAP logical_px(20) #define CLOSE_BTN_GAP logical_px(15) #define BAR_BORDER logical_px(2) #define xmacro(atom) xcb_atom_t A_##atom; #include "atoms.xmacro" #undef xmacro #define die(...) errx(EXIT_FAILURE, __VA_ARGS__); static char *argv0 = NULL; typedef struct { i3String *label; char *action; int16_t x; uint16_t width; bool terminal; } button_t; static xcb_window_t win; static surface_t bar; static i3Font font; static i3String *prompt; static button_t btn_close; static button_t *buttons; static int buttoncnt; /* Result of get_colorpixel() for the various colors. */ static color_t color_background; /* background of the bar */ static color_t color_button_background; /* background for buttons */ static color_t color_border; /* color of the button border */ static color_t color_border_bottom; /* color of the bottom border */ static color_t color_text; /* color of the text */ xcb_window_t root; xcb_connection_t *conn; xcb_screen_t *root_screen; /* * Having verboselog(), errorlog() and debuglog() is necessary when using libi3. * */ void verboselog(char *fmt, ...) { va_list args; va_start(args, fmt); vfprintf(stderr, fmt, args); va_end(args); } void errorlog(char *fmt, ...) { va_list args; va_start(args, fmt); vfprintf(stderr, fmt, args); va_end(args); } void debuglog(char *fmt, ...) { } /* * Starts the given application by passing it through a shell. We use double * fork to avoid zombie processes. As the started application’s parent exits * (immediately), the application is reparented to init (process-id 1), which * correctly handles children, so we don’t have to do it :-). */ static void start_application(const char *command) { printf("executing: %s\n", command); if (fork() == 0) { /* Child process */ setsid(); if (fork() == 0) { /* This is the child */ execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, NULL); /* not reached */ } exit(0); } wait(0); } static button_t *get_button_at(int16_t x, int16_t y) { for (int c = 0; c < buttoncnt; c++) if (x >= (buttons[c].x) && x <= (buttons[c].x + buttons[c].width)) return &buttons[c]; return NULL; } static void handle_button_press(xcb_connection_t *conn, xcb_button_press_event_t *event) { printf("button pressed on x = %d, y = %d\n", event->event_x, event->event_y); /* TODO: set a flag for the button, re-render */ } /* * Called when the user releases the mouse button. Checks whether the * coordinates are over a button and executes the appropriate action. * */ static void handle_button_release(xcb_connection_t *conn, xcb_button_release_event_t *event) { printf("button released on x = %d, y = %d\n", event->event_x, event->event_y); /* If the user hits the close button, we exit(0) */ if (event->event_x >= btn_close.x && event->event_x < btn_close.x + btn_close.width) exit(0); button_t *button = get_button_at(event->event_x, event->event_y); if (!button) return; /* We need to create a custom script containing our actual command * since not every terminal emulator which is contained in * i3-sensible-terminal supports -e with multiple arguments (and not * all of them support -e with one quoted argument either). * * NB: The paths need to be unique, that is, don’t assume users close * their nagbars at any point in time (and they still need to work). * */ char *script_path = get_process_filename("nagbar-cmd"); int fd = open(script_path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); if (fd == -1) { warn("Could not create temporary script to store the nagbar command"); return; } FILE *script = fdopen(fd, "w"); if (script == NULL) { warn("Could not fdopen() temporary script to store the nagbar command"); return; } fprintf(script, "#!%s\nrm %s\n%s", _PATH_BSHELL, script_path, button->action); /* Also closes fd */ fclose(script); char *link_path; char *exe_path = get_exe_path(argv0); sasprintf(&link_path, "%s.nagbar_cmd", script_path); if (symlink(exe_path, link_path) == -1) { err(EXIT_FAILURE, "Failed to symlink %s to %s", link_path, exe_path); } char *terminal_cmd; if (button->terminal) { sasprintf(&terminal_cmd, "i3-sensible-terminal -e %s", link_path); } else { terminal_cmd = sstrdup(link_path); } printf("argv0 = %s\n", argv0); printf("terminal_cmd = %s\n", terminal_cmd); start_application(terminal_cmd); free(link_path); free(terminal_cmd); free(script_path); free(exe_path); /* TODO: unset flag, re-render */ } /* * Draws a button and returns its width * */ static int button_draw(button_t *button, int position) { int text_width = predict_text_width(button->label); button->width = text_width + 2 * BTN_PADDING + 2 * BTN_BORDER; button->x = position - button->width; /* draw border */ draw_util_rectangle(&bar, color_border, position - button->width, MSG_PADDING - BTN_PADDING - BTN_BORDER, button->width, font.height + 2 * BTN_PADDING + 2 * BTN_BORDER); /* draw background */ draw_util_rectangle(&bar, color_button_background, position - button->width + BTN_BORDER, MSG_PADDING - BTN_PADDING, text_width + 2 * BTN_PADDING, font.height + 2 * BTN_PADDING); /* draw label */ draw_util_text(button->label, &bar, color_text, color_button_background, position - button->width + BTN_BORDER + BTN_PADDING, MSG_PADDING, 200); return button->width; } /* * Handles expose events (redraws of the window) and rendering in general. Will * be called from the code with event == NULL or from X with event != NULL. * */ static int handle_expose(xcb_connection_t *conn, xcb_expose_event_t *event) { /* draw background */ draw_util_clear_surface(&bar, color_background); /* draw message */ draw_util_text(prompt, &bar, color_text, color_background, MSG_PADDING, MSG_PADDING, bar.width - 2 * MSG_PADDING); int position = bar.width - (MSG_PADDING - BTN_BORDER - BTN_PADDING); /* render close button */ position -= button_draw(&btn_close, position); position -= CLOSE_BTN_GAP; /* render custom buttons */ for (int i = 0; i < buttoncnt; i++) { position -= BTN_GAP; position -= button_draw(&buttons[i], position); } /* border line at the bottom */ draw_util_rectangle(&bar, color_border_bottom, 0, bar.height - BAR_BORDER, bar.width, BAR_BORDER); xcb_flush(conn); return 1; } /** * Return the position and size the i3-nagbar window should use. * This will be the primary output or a fallback if it cannot be determined. */ static xcb_rectangle_t get_window_position(void) { /* Default values if we cannot determine the primary output or its CRTC info. */ xcb_rectangle_t result = (xcb_rectangle_t){50, 50, 500, font.height + 2 * MSG_PADDING + BAR_BORDER}; xcb_randr_get_screen_resources_current_cookie_t rcookie = xcb_randr_get_screen_resources_current(conn, root); xcb_randr_get_output_primary_cookie_t pcookie = xcb_randr_get_output_primary(conn, root); xcb_randr_get_output_primary_reply_t *primary = NULL; xcb_randr_get_screen_resources_current_reply_t *res = NULL; if ((primary = xcb_randr_get_output_primary_reply(conn, pcookie, NULL)) == NULL) { LOG("Could not determine the primary output.\n"); goto free_resources; } if ((res = xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL)) == NULL) { LOG("Could not query screen resources.\n"); goto free_resources; } xcb_randr_get_output_info_reply_t *output = xcb_randr_get_output_info_reply(conn, xcb_randr_get_output_info(conn, primary->output, res->config_timestamp), NULL); if (output == NULL || output->crtc == XCB_NONE) { LOG("Could not query primary screen.\n"); goto free_resources; } xcb_randr_get_crtc_info_reply_t *crtc = xcb_randr_get_crtc_info_reply(conn, xcb_randr_get_crtc_info(conn, output->crtc, res->config_timestamp), NULL); if (crtc == NULL) { LOG("Could not get CRTC.\n"); goto free_resources; } LOG("Found primary output on position x = %i / y = %i / w = %i / h = %i.\n", crtc->x, crtc->y, crtc->width, crtc->height); if (crtc->width == 0 || crtc->height == 0) { LOG("Primary output is not active, ignoring it.\n"); goto free_resources; } result.x = crtc->x; result.y = crtc->y; goto free_resources; free_resources: free(res); free(primary); return result; } int main(int argc, char *argv[]) { /* The following lines are a terribly horrible kludge. Because terminal * emulators have different ways of interpreting the -e command line * argument (some need -e "less /etc/fstab", others need -e less * /etc/fstab), we need to write commands to a script and then just run * that script. However, since on some machines, $XDG_RUNTIME_DIR and * $TMPDIR are mounted with noexec, we cannot directly execute the script * either. * * Initially, we tried to pass the command via the environment variable * _I3_NAGBAR_CMD. But turns out that some terminal emulators such as * xfce4-terminal run all windows from a single master process and only * pass on the command (not the environment) to that master process. * * Therefore, we symlink i3-nagbar (which MUST reside on an executable * filesystem) with a special name and run that symlink. When i3-nagbar * recognizes it’s started as a binary ending in .nagbar_cmd, it strips off * the .nagbar_cmd suffix and runs /bin/sh on argv[0]. That way, we can run * a shell script on a noexec filesystem. * * From a security point of view, i3-nagbar is just an alias to /bin/sh in * certain circumstances. This should not open any new security issues, I * hope. */ char *cmd = NULL; const size_t argv0_len = strlen(argv[0]); if (argv0_len > strlen(".nagbar_cmd") && strcmp(argv[0] + argv0_len - strlen(".nagbar_cmd"), ".nagbar_cmd") == 0) { unlink(argv[0]); cmd = sstrdup(argv[0]); *(cmd + argv0_len - strlen(".nagbar_cmd")) = '\0'; execl(_PATH_BSHELL, _PATH_BSHELL, cmd, NULL); err(EXIT_FAILURE, "execl(%s, %s, %s)", _PATH_BSHELL, _PATH_BSHELL, cmd); } argv0 = argv[0]; char *pattern = sstrdup("pango:monospace 8"); int o, option_index = 0; enum { TYPE_ERROR = 0, TYPE_WARNING = 1 } bar_type = TYPE_ERROR; static struct option long_options[] = { {"version", no_argument, 0, 'v'}, {"font", required_argument, 0, 'f'}, {"button", required_argument, 0, 'b'}, {"button-no-terminal", required_argument, 0, 'B'}, {"help", no_argument, 0, 'h'}, {"message", required_argument, 0, 'm'}, {"type", required_argument, 0, 't'}, {0, 0, 0, 0}}; char *options_string = "b:B:f:m:t:vh"; prompt = i3string_from_utf8("Please do not run this program."); while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) { switch (o) { case 'v': free(pattern); printf("i3-nagbar " I3_VERSION "\n"); return 0; case 'f': free(pattern); pattern = sstrdup(optarg); break; case 'm': i3string_free(prompt); prompt = i3string_from_utf8(optarg); break; case 't': bar_type = (strcasecmp(optarg, "warning") == 0 ? TYPE_WARNING : TYPE_ERROR); break; case 'h': free(pattern); printf("i3-nagbar " I3_VERSION "\n"); printf("i3-nagbar [-m ] [-b