]> git.sur5r.net Git - i3/i3/blob - src/main.c
Merge branch 'master' into next
[i3/i3] / src / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  */
4 #include <ev.h>
5 #include <fcntl.h>
6 #include "all.h"
7
8 #include "sd-daemon.h"
9
10 static int xkb_event_base;
11
12 int xkb_current_group;
13
14 extern Con *focused;
15
16 char **start_argv;
17
18 xcb_connection_t *conn;
19
20 xcb_screen_t *root_screen;
21 xcb_window_t root;
22 uint8_t root_depth;
23
24 struct ev_loop *main_loop;
25
26 xcb_key_symbols_t *keysyms;
27
28 /* Those are our connections to X11 for use with libXcursor and XKB */
29 Display *xlibdpy, *xkbdpy;
30
31 /* The list of key bindings */
32 struct bindings_head *bindings;
33
34 /* The list of exec-lines */
35 struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
36
37 /* The list of exec_always lines */
38 struct autostarts_always_head autostarts_always = TAILQ_HEAD_INITIALIZER(autostarts_always);
39
40 /* The list of assignments */
41 struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
42
43 /* The list of workspace assignments (which workspace should end up on which
44  * output) */
45 struct ws_assignments_head ws_assignments = TAILQ_HEAD_INITIALIZER(ws_assignments);
46
47 /* We hope that those are supported and set them to true */
48 bool xcursor_supported = true;
49 bool xkb_supported = true;
50
51 /*
52  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
53  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
54  *
55  */
56 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
57     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
58 }
59
60 /*
61  * Flush before blocking (and waiting for new events)
62  *
63  */
64 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
65     xcb_flush(conn);
66 }
67
68 /*
69  * Instead of polling the X connection socket we leave this to
70  * xcb_poll_for_event() which knows better than we can ever know.
71  *
72  */
73 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
74     xcb_generic_event_t *event;
75
76     while ((event = xcb_poll_for_event(conn)) != NULL) {
77         if (event->response_type == 0) {
78             if (event_is_ignored(event->sequence, 0))
79                 DLOG("Expected X11 Error received for sequence %x\n", event->sequence);
80             else {
81                 xcb_generic_error_t *error = (xcb_generic_error_t*)event;
82                 ELOG("X11 Error received! sequence 0x%x, error_code = %d\n",
83                      error->sequence, error->error_code);
84             }
85             free(event);
86             continue;
87         }
88
89         /* Strip off the highest bit (set if the event is generated) */
90         int type = (event->response_type & 0x7F);
91
92         handle_event(type, event);
93
94         free(event);
95     }
96 }
97
98
99 /*
100  * When using xmodmap to change the keyboard mapping, this event
101  * is only sent via XKB. Therefore, we need this special handler.
102  *
103  */
104 static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
105     DLOG("Handling XKB event\n");
106     XkbEvent ev;
107
108     /* When using xmodmap, every change (!) gets an own event.
109      * Therefore, we just read all events and only handle the
110      * mapping_notify once. */
111     bool mapping_changed = false;
112     while (XPending(xkbdpy)) {
113         XNextEvent(xkbdpy, (XEvent*)&ev);
114         /* While we should never receive a non-XKB event,
115          * better do sanity checking */
116         if (ev.type != xkb_event_base)
117             continue;
118
119         if (ev.any.xkb_type == XkbMapNotify) {
120             mapping_changed = true;
121             continue;
122         }
123
124         if (ev.any.xkb_type != XkbStateNotify) {
125             ELOG("Unknown XKB event received (type %d)\n", ev.any.xkb_type);
126             continue;
127         }
128
129         /* See The XKB Extension: Library Specification, section 14.1 */
130         /* We check if the current group (each group contains
131          * two levels) has been changed. Mode_switch activates
132          * group XkbGroup2Index */
133         if (xkb_current_group == ev.state.group)
134             continue;
135
136         xkb_current_group = ev.state.group;
137
138         if (ev.state.group == XkbGroup2Index) {
139             DLOG("Mode_switch enabled\n");
140             grab_all_keys(conn, true);
141         }
142
143         if (ev.state.group == XkbGroup1Index) {
144             DLOG("Mode_switch disabled\n");
145             ungrab_all_keys(conn);
146             grab_all_keys(conn, false);
147         }
148     }
149
150     if (!mapping_changed)
151         return;
152
153     DLOG("Keyboard mapping changed, updating keybindings\n");
154     xcb_key_symbols_free(keysyms);
155     keysyms = xcb_key_symbols_alloc(conn);
156
157     xcb_get_numlock_mask(conn);
158
159     ungrab_all_keys(conn);
160     DLOG("Re-grabbing...\n");
161     translate_keysyms();
162     grab_all_keys(conn, (xkb_current_group == XkbGroup2Index));
163     DLOG("Done\n");
164 }
165
166 /*
167  * Exit handler which destroys the main_loop. Will trigger cleanup handlers.
168  *
169  */
170 static void i3_exit() {
171     ev_loop_destroy(main_loop);
172 }
173
174 int main(int argc, char *argv[]) {
175     //parse_cmd("[ foo ] attach, attach ; focus");
176     int screens;
177     char *override_configpath = NULL;
178     bool autostart = true;
179     char *layout_path = NULL;
180     bool delete_layout_path = false;
181     bool only_check_config = false;
182     bool force_xinerama = false;
183     bool disable_signalhandler = false;
184     static struct option long_options[] = {
185         {"no-autostart", no_argument, 0, 'a'},
186         {"config", required_argument, 0, 'c'},
187         {"version", no_argument, 0, 'v'},
188         {"help", no_argument, 0, 'h'},
189         {"layout", required_argument, 0, 'L'},
190         {"restart", required_argument, 0, 0},
191         {"force-xinerama", no_argument, 0, 0},
192         {"disable-signalhandler", no_argument, 0, 0},
193         {0, 0, 0, 0}
194     };
195     int option_index = 0, opt;
196
197     setlocale(LC_ALL, "");
198
199     /* Disable output buffering to make redirects in .xsession actually useful for debugging */
200     if (!isatty(fileno(stdout)))
201         setbuf(stdout, NULL);
202
203     init_logging();
204
205     start_argv = argv;
206
207     while ((opt = getopt_long(argc, argv, "c:CvaL:hld:V", long_options, &option_index)) != -1) {
208         switch (opt) {
209             case 'a':
210                 LOG("Autostart disabled using -a\n");
211                 autostart = false;
212                 break;
213             case 'L':
214                 FREE(layout_path);
215                 layout_path = sstrdup(optarg);
216                 delete_layout_path = false;
217                 break;
218             case 'c':
219                 FREE(override_configpath);
220                 override_configpath = sstrdup(optarg);
221                 break;
222             case 'C':
223                 LOG("Checking configuration file only (-C)\n");
224                 only_check_config = true;
225                 break;
226             case 'v':
227                 printf("i3 version " I3_VERSION " © 2009-2011 Michael Stapelberg and contributors\n");
228                 exit(EXIT_SUCCESS);
229             case 'V':
230                 set_verbosity(true);
231                 break;
232             case 'd':
233                 LOG("Enabling debug loglevel %s\n", optarg);
234                 add_loglevel(optarg);
235                 break;
236             case 'l':
237                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
238                 break;
239             case 0:
240                 if (strcmp(long_options[option_index].name, "force-xinerama") == 0) {
241                     force_xinerama = true;
242                     ELOG("Using Xinerama instead of RandR. This option should be "
243                          "avoided at all cost because it does not refresh the list "
244                          "of screens, so you cannot configure displays at runtime. "
245                          "Please check if your driver really does not support RandR "
246                          "and disable this option as soon as you can.\n");
247                     break;
248                 } else if (strcmp(long_options[option_index].name, "disable-signalhandler") == 0) {
249                     disable_signalhandler = true;
250                     break;
251                 } else if (strcmp(long_options[option_index].name, "restart") == 0) {
252                     FREE(layout_path);
253                     layout_path = sstrdup(optarg);
254                     delete_layout_path = true;
255                     break;
256                 }
257                 /* fall-through */
258             default:
259                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
260                 fprintf(stderr, "\n");
261                 fprintf(stderr, "-a: disable autostart\n");
262                 fprintf(stderr, "-L <layoutfile>: load the layout from <layoutfile>\n");
263                 fprintf(stderr, "-v: display version and exit\n");
264                 fprintf(stderr, "-V: enable verbose mode\n");
265                 fprintf(stderr, "-d <loglevel>: enable debug loglevel <loglevel>\n");
266                 fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
267                 fprintf(stderr, "-C: check configuration file and exit\n");
268                 fprintf(stderr, "--force-xinerama: Use Xinerama instead of RandR. This "
269                                 "option should only be used if you are stuck with the "
270                                 "nvidia closed source driver which does not support RandR.\n");
271                 exit(EXIT_FAILURE);
272         }
273     }
274
275     LOG("i3 (tree) version " I3_VERSION " starting\n");
276
277     conn = xcb_connect(NULL, &screens);
278     if (xcb_connection_has_error(conn))
279         errx(EXIT_FAILURE, "Cannot open display\n");
280
281     /* Initialize the libev event loop. This needs to be done before loading
282      * the config file because the parser will install an ev_child watcher
283      * for the nagbar when config errors are found. */
284     main_loop = EV_DEFAULT;
285     if (main_loop == NULL)
286             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
287
288     root_screen = xcb_aux_get_screen(conn, screens);
289     root = root_screen->root;
290     root_depth = root_screen->root_depth;
291     xcb_get_geometry_cookie_t gcookie = xcb_get_geometry(conn, root);
292     xcb_query_pointer_cookie_t pointercookie = xcb_query_pointer(conn, root);
293
294     load_configuration(conn, override_configpath, false);
295     if (only_check_config) {
296         LOG("Done checking configuration file. Exiting.\n");
297         exit(0);
298     }
299
300     if (config.ipc_socket_path == NULL) {
301         /* Fall back to a file name in /tmp/ based on the PID */
302         if ((config.ipc_socket_path = getenv("I3SOCK")) == NULL)
303             config.ipc_socket_path = get_process_filename("ipc-socket");
304         else
305             config.ipc_socket_path = sstrdup(config.ipc_socket_path);
306     }
307
308     uint32_t mask = XCB_CW_EVENT_MASK;
309     uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
310                           XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
311                                                                            projector), the root window gets a
312                                                                            ConfigureNotify */
313                           XCB_EVENT_MASK_POINTER_MOTION |
314                           XCB_EVENT_MASK_PROPERTY_CHANGE |
315                           XCB_EVENT_MASK_ENTER_WINDOW };
316     xcb_void_cookie_t cookie;
317     cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
318     check_error(conn, cookie, "Another window manager seems to be running");
319
320     xcb_get_geometry_reply_t *greply = xcb_get_geometry_reply(conn, gcookie, NULL);
321     if (greply == NULL) {
322         ELOG("Could not get geometry of the root window, exiting\n");
323         return 1;
324     }
325     DLOG("root geometry reply: (%d, %d) %d x %d\n", greply->x, greply->y, greply->width, greply->height);
326
327     /* Place requests for the atoms we need as soon as possible */
328     #define xmacro(atom) \
329         xcb_intern_atom_cookie_t atom ## _cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
330     #include "atoms.xmacro"
331     #undef xmacro
332
333     /* Initialize the Xlib connection */
334     xlibdpy = xkbdpy = XOpenDisplay(NULL);
335
336     /* Try to load the X cursors and initialize the XKB extension */
337     if (xlibdpy == NULL) {
338         ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
339         xcursor_supported = false;
340         xkb_supported = false;
341     } else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
342         ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
343         return 1;
344     } else {
345         xcursor_load_cursors();
346         /*init_xkb();*/
347     }
348
349     /* Set a cursor for the root window (otherwise the root window will show no
350        cursor until the first client is launched). */
351     if (xcursor_supported) {
352         xcursor_set_root_cursor();
353     } else {
354         xcb_cursor_t cursor_id = xcb_generate_id(conn);
355         i3Font cursor_font = load_font("cursor", false);
356         int xcb_cursor = xcursor_get_xcb_cursor(XCURSOR_CURSOR_POINTER);
357         xcb_create_glyph_cursor(conn, cursor_id, cursor_font.id, cursor_font.id,
358                 xcb_cursor, xcb_cursor + 1, 0, 0, 0, 65535, 65535, 65535);
359         xcb_change_window_attributes(conn, root, XCB_CW_CURSOR, &cursor_id);
360         xcb_free_cursor(conn, cursor_id);
361     }
362
363     if (xkb_supported) {
364         int errBase,
365             major = XkbMajorVersion,
366             minor = XkbMinorVersion;
367
368         if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
369             fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
370             return 1;
371         }
372
373         int i1;
374         if (!XkbQueryExtension(xkbdpy,&i1,&xkb_event_base,&errBase,&major,&minor)) {
375             fprintf(stderr, "XKB not supported by X-server\n");
376             return 1;
377         }
378         /* end of ugliness */
379
380         if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd,
381                              XkbMapNotifyMask | XkbStateNotifyMask,
382                              XkbMapNotifyMask | XkbStateNotifyMask)) {
383             fprintf(stderr, "Could not set XKB event mask\n");
384             return 1;
385         }
386     }
387
388     /* Setup NetWM atoms */
389     #define xmacro(name) \
390         do { \
391             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name ## _cookie, NULL); \
392             if (!reply) { \
393                 ELOG("Could not get atom " #name "\n"); \
394                 exit(-1); \
395             } \
396             A_ ## name = reply->atom; \
397             free(reply); \
398         } while (0);
399     #include "atoms.xmacro"
400     #undef xmacro
401
402     property_handlers_init();
403
404     /* Set up the atoms we support */
405     xcb_atom_t supported_atoms[] = {
406 #define xmacro(atom) A_ ## atom,
407 #include "atoms.xmacro"
408 #undef xmacro
409     };
410     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, XCB_ATOM_ATOM, 32, 16, supported_atoms);
411     /* Set up the window manager’s name */
412     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 32, 1, &root);
413     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
414
415     keysyms = xcb_key_symbols_alloc(conn);
416
417     xcb_get_numlock_mask(conn);
418
419     translate_keysyms();
420     grab_all_keys(conn, false);
421
422     bool needs_tree_init = true;
423     if (layout_path) {
424         LOG("Trying to restore the layout from %s...", layout_path);
425         needs_tree_init = !tree_restore(layout_path, greply);
426         if (delete_layout_path)
427             unlink(layout_path);
428         free(layout_path);
429     }
430     if (needs_tree_init)
431         tree_init(greply);
432
433     free(greply);
434
435     /* Force Xinerama (for drivers which don't support RandR yet, esp. the
436      * nVidia binary graphics driver), when specified either in the config
437      * file or on command-line */
438     if (force_xinerama || config.force_xinerama) {
439         xinerama_init();
440     } else {
441         DLOG("Checking for XRandR...\n");
442         randr_init(&randr_base);
443     }
444
445     xcb_query_pointer_reply_t *pointerreply;
446     Output *output = NULL;
447     if (!(pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL))) {
448         ELOG("Could not query pointer position, using first screen\n");
449         output = get_first_output();
450     } else {
451         DLOG("Pointer at %d, %d\n", pointerreply->root_x, pointerreply->root_y);
452         output = get_output_containing(pointerreply->root_x, pointerreply->root_y);
453         if (!output) {
454             ELOG("ERROR: No screen at (%d, %d), starting on the first screen\n",
455                  pointerreply->root_x, pointerreply->root_y);
456             output = get_first_output();
457         }
458
459         con_focus(con_descend_focused(output_get_content(output->con)));
460     }
461
462     tree_render();
463
464     /* Create the UNIX domain socket for IPC */
465     int ipc_socket = ipc_create_socket(config.ipc_socket_path);
466     if (ipc_socket == -1) {
467         ELOG("Could not create the IPC socket, IPC disabled\n");
468     } else {
469         free(config.ipc_socket_path);
470         struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
471         ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
472         ev_io_start(main_loop, ipc_io);
473     }
474
475     /* Also handle the UNIX domain sockets passed via socket activation */
476     int fds = sd_listen_fds(1);
477     if (fds < 0)
478         ELOG("socket activation: Error in sd_listen_fds\n");
479     else if (fds == 0)
480         DLOG("socket activation: no sockets passed\n");
481     else {
482         for (int fd = SD_LISTEN_FDS_START; fd < (SD_LISTEN_FDS_START + fds); fd++) {
483             DLOG("socket activation: also listening on fd %d\n", fd);
484             struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
485             ev_io_init(ipc_io, ipc_new_client, fd, EV_READ);
486             ev_io_start(main_loop, ipc_io);
487         }
488     }
489
490     /* Set up i3 specific atoms like I3_SOCKET_PATH and I3_CONFIG_PATH */
491     x_set_i3_atoms();
492
493     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
494     struct ev_io *xkb = scalloc(sizeof(struct ev_io));
495     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
496     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
497
498     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
499     ev_io_start(main_loop, xcb_watcher);
500
501
502     if (xkb_supported) {
503         ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
504         ev_io_start(main_loop, xkb);
505
506         /* Flush the buffer so that libev can properly get new events */
507         XFlush(xkbdpy);
508     }
509
510     ev_check_init(xcb_check, xcb_check_cb);
511     ev_check_start(main_loop, xcb_check);
512
513     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
514     ev_prepare_start(main_loop, xcb_prepare);
515
516     xcb_flush(conn);
517
518     manage_existing_windows(root);
519
520     if (!disable_signalhandler)
521         setup_signal_handler();
522
523     /* Ignore SIGPIPE to survive errors when an IPC client disconnects
524      * while we are sending him a message */
525     signal(SIGPIPE, SIG_IGN);
526
527     /* Autostarting exec-lines */
528     if (autostart) {
529         struct Autostart *exec;
530         TAILQ_FOREACH(exec, &autostarts, autostarts) {
531             LOG("auto-starting %s\n", exec->command);
532             start_application(exec->command);
533         }
534     }
535
536     /* Autostarting exec_always-lines */
537     struct Autostart *exec_always;
538     TAILQ_FOREACH(exec_always, &autostarts_always, autostarts_always) {
539         LOG("auto-starting (always!) %s\n", exec_always->command);
540         start_application(exec_always->command);
541     }
542
543     /* Make sure to destroy the event loop to invoke the cleeanup callbacks
544      * when calling exit() */
545     atexit(i3_exit);
546
547     ev_loop(main_loop, 0);
548 }