2 #define I3__FILE__ "sighandler.c"
4 * vim:ts=4:sw=4:expandtab
6 * i3 - an improved dynamic tiling window manager
7 * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
8 * © 2009-2010 Jan-Erik Rediger
10 * sighandler.c: Interactive crash dialog upon SIGSEGV/SIGABRT/SIGFPE (offers
11 * to restart inplace).
21 #include <xcb/xcb_event.h>
23 #include <X11/keysym.h>
25 static void open_popups(void);
27 static xcb_gcontext_t pixmap_gc;
28 static xcb_pixmap_t pixmap;
29 static int raised_signal;
31 static char *crash_text[] = {
33 "To debug this problem, either attach gdb now",
35 "- 'b' to save a backtrace (needs GDB),",
36 "- 'r' to restart i3 in-place or",
37 "- 'f' to forget the current layout and restart"
39 static int crash_text_longest = 5;
40 static int backtrace_string_index = 3;
41 static int backtrace_done = 0;
44 * Attach gdb to pid_parent and dump a backtrace to i3-backtrace.$pid in the
47 static int backtrace(void) {
48 char *tmpdir = getenv("TMPDIR");
52 pid_t pid_parent = getpid();
54 char *filename = NULL;
57 /* Find a unique filename for the backtrace (since the PID of i3 stays the
58 * same), so that we don’t overwrite earlier backtraces. */
61 sasprintf(&filename, "%s/i3-backtrace.%d.%d.txt", tmpdir, pid_parent, suffix);
63 } while (stat(filename, &bt) == 0);
65 pid_t pid_gdb = fork();
67 DLOG("Failed to fork for GDB\n");
69 } else if (pid_gdb == 0) {
77 /* close standard streams in case i3 is started from a terminal; gdb
78 * needs to run without controlling terminal for it to work properly in
84 /* We provide pipe file descriptors for stdin/stdout because gdb < 7.5
85 * crashes otherwise, see
86 * http://sourceware.org/bugzilla/show_bug.cgi?id=14114 */
87 dup2(stdin_pipe[0], STDIN_FILENO);
88 dup2(stdout_pipe[1], STDOUT_FILENO);
90 char *pid_s, *gdb_log_cmd;
91 sasprintf(&pid_s, "%d", pid_parent);
92 sasprintf(&gdb_log_cmd, "set logging file %s", filename);
102 "-ex", "set logging on",
107 execvp(args[0], args);
108 DLOG("Failed to exec GDB\n");
113 waitpid(pid_gdb, &status, 0);
115 /* see if the backtrace was succesful or not */
116 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
117 DLOG("GDB did not run properly\n");
119 } else if (stat(filename, &bt) == -1) {
120 DLOG("GDB executed succesfully, but no backtrace was generated\n");
127 * Draw the window containing the info text
130 static int sig_draw_window(xcb_window_t win, int width, int height, int font_height, i3String **crash_text_i3strings) {
131 /* re-draw the background */
132 xcb_rectangle_t border = { 0, 0, width, height},
133 inner = { 2, 2, width - 4, height - 4};
134 xcb_change_gc(conn, pixmap_gc, XCB_GC_FOREGROUND, (uint32_t[]){ get_colorpixel("#FF0000") });
135 xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
136 xcb_change_gc(conn, pixmap_gc, XCB_GC_FOREGROUND, (uint32_t[]){ get_colorpixel("#000000") });
137 xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &inner);
139 /* restore font color */
140 set_font_colors(pixmap_gc, get_colorpixel("#FFFFFF"), get_colorpixel("#000000"));
142 char *bt_colour = "#FFFFFF";
143 if (backtrace_done < 0)
144 bt_colour = "#AA0000";
145 else if (backtrace_done > 0)
146 bt_colour = "#00AA00";
148 for (int i = 0; crash_text_i3strings[i] != NULL; ++i) {
149 /* fix the colour for the backtrace line when it finished */
150 if (i == backtrace_string_index)
151 set_font_colors(pixmap_gc, get_colorpixel(bt_colour), get_colorpixel("#000000"));
153 draw_text(crash_text_i3strings[i], pixmap, pixmap_gc,
154 8, 5 + i * font_height, width - 16);
156 /* and reset the colour again for other lines */
157 if (i == backtrace_string_index)
158 set_font_colors(pixmap_gc, get_colorpixel("#FFFFFF"), get_colorpixel("#000000"));
161 /* Copy the contents of the pixmap to the real window */
162 xcb_copy_area(conn, pixmap, win, pixmap_gc, 0, 0, 0, 0, width, height);
169 * Handles keypresses of 'b', 'r' and 'f' to get a backtrace or restart i3
172 static int sig_handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
173 uint16_t state = event->state;
175 /* Apparantly, after activating numlock once, the numlock modifier
176 * stays turned on (use xev(1) to verify). So, to resolve useful
177 * keysyms, we remove the numlock flag from the event state */
178 state &= ~xcb_numlock_mask;
180 xcb_keysym_t sym = xcb_key_press_lookup_keysym(keysyms, event, state);
183 DLOG("User issued core-dump command.\n");
185 /* fork and exec/attach GDB to the parent to get a backtrace in the
187 backtrace_done = backtrace();
189 /* re-open the windows to indicate that it's finished */
203 * Opens the window we use for input/output and maps it
206 static xcb_window_t open_input_window(xcb_connection_t *conn, Rect screen_rect, uint32_t width, uint32_t height) {
207 xcb_window_t win = xcb_generate_id(conn);
212 mask |= XCB_CW_BACK_PIXEL;
215 mask |= XCB_CW_OVERRIDE_REDIRECT;
218 /* center each popup on the specified screen */
219 uint32_t x = screen_rect.x + ((screen_rect.width / 2) - (width / 2)),
220 y = screen_rect.y + ((screen_rect.height / 2) - (height / 2));
222 xcb_create_window(conn,
223 XCB_COPY_FROM_PARENT,
224 win, /* the window id */
225 root, /* parent == root */
226 x, y, width, height, /* dimensions */
227 0, /* border = 0, we draw our own */
228 XCB_WINDOW_CLASS_INPUT_OUTPUT,
229 XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
233 /* Map the window (= make it visible) */
234 xcb_map_window(conn, win);
239 static void open_popups() {
240 /* width and height of the popup window, so that the text fits in */
241 int crash_text_num = sizeof(crash_text) / sizeof(char*);
242 int height = 13 + (crash_text_num * config.font.height);
244 int crash_text_length = sizeof(crash_text) / sizeof(char*);
245 i3String **crash_text_i3strings = smalloc(sizeof(i3String *) * (crash_text_length + 1));
246 /* Pre-compute i3Strings for our text */
247 for (int i = 0; i < crash_text_length; ++i) {
248 crash_text_i3strings[i] = i3string_from_utf8(crash_text[i]);
250 crash_text_i3strings[crash_text_length] = NULL;
251 /* calculate width for longest text */
252 int font_width = predict_text_width(crash_text_i3strings[crash_text_longest]);
253 int width = font_width + 20;
255 /* Open a popup window on each virtual screen */
258 TAILQ_FOREACH(screen, &outputs, outputs) {
261 win = open_input_window(conn, screen->rect, width, height);
264 pixmap = xcb_generate_id(conn);
265 pixmap_gc = xcb_generate_id(conn);
266 xcb_create_pixmap(conn, root_depth, pixmap, win, width, height);
267 xcb_create_gc(conn, pixmap_gc, pixmap, 0, 0);
269 /* Grab the keyboard to get all input */
270 xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
272 /* Grab the cursor inside the popup */
273 xcb_grab_pointer(conn, false, win, XCB_NONE, XCB_GRAB_MODE_ASYNC,
274 XCB_GRAB_MODE_ASYNC, win, XCB_NONE, XCB_CURRENT_TIME);
276 sig_draw_window(win, width, height, config.font.height, crash_text_i3strings);
283 * It creates a window asking the user to restart in-place
284 * or exit to generate a core dump
287 void handle_signal(int sig, siginfo_t *info, void *data) {
288 DLOG("i3 crashed. SIG: %d\n", sig);
290 struct sigaction action;
291 action.sa_handler = SIG_DFL;
292 sigaction(sig, &action, NULL);
297 xcb_generic_event_t *event;
298 /* Yay, more own eventhandlers… */
299 while ((event = xcb_wait_for_event(conn))) {
300 /* Strip off the highest bit (set if the event is generated) */
301 int type = (event->response_type & 0x7F);
302 if (type == XCB_KEY_PRESS) {
303 sig_handle_key_press(NULL, conn, (xcb_key_press_event_t*)event);
310 * Setup signal handlers to safely handle SIGSEGV and SIGFPE
313 void setup_signal_handler(void) {
314 struct sigaction action;
316 action.sa_sigaction = handle_signal;
317 action.sa_flags = SA_NODEFER | SA_RESETHAND | SA_SIGINFO;
318 sigemptyset(&action.sa_mask);
320 /* Catch all signals with default action "Core", see signal(7) */
321 if (sigaction(SIGQUIT, &action, NULL) == -1 ||
322 sigaction(SIGILL, &action, NULL) == -1 ||
323 sigaction(SIGABRT, &action, NULL) == -1 ||
324 sigaction(SIGFPE, &action, NULL) == -1 ||
325 sigaction(SIGSEGV, &action, NULL) == -1)
326 ELOG("Could not setup signal handler");