4 * i3 - an improved dynamic tiling window manager
6 * © 2009-2010 Michael Stapelberg and contributors
7 * © 2009-2010 Jan-Erik Rediger
9 * See file LICENSE for license information.
11 * sighandler.c: contains all functions for signal handling
23 #include <xcb/xcb_aux.h>
24 #include <xcb/xcb_event.h>
25 #include <xcb/xcb_keysyms.h>
27 #include <X11/keysym.h>
36 static xcb_gcontext_t pixmap_gc;
37 static xcb_pixmap_t pixmap;
38 static int raised_signal;
40 static char *crash_text[] = {
42 "To debug this problem, either attach gdb now",
43 "or press 'e' to exit and get a core-dump.",
44 "If you want to keep your session,",
45 "press 'r' to restart i3 in-place."
47 static int crash_text_longest = 1;
50 * Draw the window containing the info text
53 static int sig_draw_window(xcb_connection_t *conn, xcb_window_t win, int width, int height, int font_height) {
54 /* re-draw the background */
55 xcb_rectangle_t border = { 0, 0, width, height},
56 inner = { 2, 2, width - 4, height - 4};
57 xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FF0000"));
58 xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
59 xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
60 xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &inner);
62 /* restore font color */
63 xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FFFFFF"));
65 for (int i = 0; i < sizeof(crash_text) / sizeof(char*); i++) {
66 int text_len = strlen(crash_text[i]);
67 char *full_text = convert_utf8_to_ucs2(crash_text[i], &text_len);
68 xcb_image_text_16(conn, text_len, pixmap, pixmap_gc, 8 /* X */,
69 3 + (i + 1) * font_height /* Y = baseline of font */,
70 (xcb_char2b_t*)full_text);
74 /* Copy the contents of the pixmap to the real window */
75 xcb_copy_area(conn, pixmap, win, pixmap_gc, 0, 0, 0, 0, width, height);
82 * Handles keypresses of 'e' or 'r' to exit or restart i3
85 static int sig_handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
86 uint16_t state = event->state;
88 /* Apparantly, after activating numlock once, the numlock modifier
89 * stays turned on (use xev(1) to verify). So, to resolve useful
90 * keysyms, we remove the numlock flag from the event state */
91 state &= ~xcb_numlock_mask;
93 xcb_keysym_t sym = xcb_key_press_lookup_keysym(keysyms, event, state);
96 DLOG("User issued exit-command, raising error again.\n");
108 * Opens the window we use for input/output and maps it
111 static xcb_window_t open_input_window(xcb_connection_t *conn, Rect screen_rect, uint32_t width, uint32_t height) {
112 xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
113 xcb_window_t win = xcb_generate_id(conn);
118 mask |= XCB_CW_BACK_PIXEL;
121 mask |= XCB_CW_OVERRIDE_REDIRECT;
124 /* center each popup on the specified screen */
125 uint32_t x = screen_rect.x + ((screen_rect.width / 2) - (width / 2)),
126 y = screen_rect.y + ((screen_rect.height / 2) - (height / 2));
128 xcb_create_window(conn,
129 XCB_COPY_FROM_PARENT,
130 win, /* the window id */
131 root, /* parent == root */
132 x, y, width, height, /* dimensions */
133 0, /* border = 0, we draw our own */
134 XCB_WINDOW_CLASS_INPUT_OUTPUT,
135 XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
139 /* Map the window (= make it visible) */
140 xcb_map_window(conn, win);
147 * It creates a window asking the user to restart in-place
148 * or exit to generate a core dump
151 void handle_signal(int sig, siginfo_t *info, void *data) {
152 DLOG("i3 crashed. SIG: %d\n", sig);
154 struct sigaction action;
155 action.sa_handler = SIG_DFL;
156 sigaction(sig, &action, NULL);
159 xcb_connection_t *conn = global_conn;
161 /* setup event handler for key presses */
162 xcb_event_handlers_t sig_evenths;
163 memset(&sig_evenths, 0, sizeof(xcb_event_handlers_t));
164 xcb_event_handlers_init(conn, &sig_evenths);
165 xcb_event_set_key_press_handler(&sig_evenths, sig_handle_key_press, NULL);
167 i3Font *font = load_font(conn, config.font);
169 /* width and height of the popup window, so that the text fits in */
170 int crash_text_num = sizeof(crash_text) / sizeof(char*);
171 int height = 13 + (crash_text_num * font->height);
173 /* calculate width for longest text */
174 int text_len = strlen(crash_text[crash_text_longest]);
175 char *longest_text = convert_utf8_to_ucs2(crash_text[crash_text_longest], &text_len);
176 int font_width = predict_text_width(conn, config.font, longest_text, text_len);
177 int width = font_width + 20;
179 /* Open a popup window on each virtual screen */
182 TAILQ_FOREACH(screen, &outputs, outputs) {
185 win = open_input_window(conn, screen->rect, width, height);
188 pixmap = xcb_generate_id(conn);
189 pixmap_gc = xcb_generate_id(conn);
190 xcb_create_pixmap(conn, root_depth, pixmap, win, width, height);
191 xcb_create_gc(conn, pixmap_gc, pixmap, 0, 0);
193 /* Create graphics context */
194 xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FONT, font->id);
196 /* Grab the keyboard to get all input */
197 xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
199 /* Grab the cursor inside the popup */
200 xcb_grab_pointer(conn, false, win, XCB_NONE, XCB_GRAB_MODE_ASYNC,
201 XCB_GRAB_MODE_ASYNC, win, XCB_NONE, XCB_CURRENT_TIME);
203 sig_draw_window(conn, win, width, height, font->height);
207 xcb_event_wait_for_event_loop(&sig_evenths);
211 * Setup signal handlers to safely handle SIGSEGV and SIGFPE
214 void setup_signal_handler() {
215 struct sigaction action;
217 action.sa_sigaction = handle_signal;
218 action.sa_flags = SA_NODEFER | SA_RESETHAND | SA_SIGINFO;
219 sigemptyset(&action.sa_mask);
221 if (sigaction(SIGSEGV, &action, NULL) == -1 ||
222 sigaction(SIGFPE, &action, NULL) == -1)
223 ELOG("Could not setup signal handler");