2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
7 * ipc.c: UNIX domain socket IPC (initialization, client handling, protocol).
12 #include <sys/socket.h>
17 #include <yajl/yajl_gen.h>
18 #include <yajl/yajl_parse.h>
19 #include <yajl/yajl_version.h>
21 char *current_socketpath = NULL;
23 /* Shorter names for all those yajl_gen_* functions */
24 #define y(x, ...) yajl_gen_ ## x (gen, ##__VA_ARGS__)
25 #define ystr(str) yajl_gen_string(gen, (unsigned char*)str, strlen(str))
27 TAILQ_HEAD(ipc_client_head, ipc_client) all_clients = TAILQ_HEAD_INITIALIZER(all_clients);
30 * Puts the given socket file descriptor into non-blocking mode or dies if
31 * setting O_NONBLOCK failed. Non-blocking sockets are a good idea for our
32 * IPC model because we should by no means block the window manager.
35 static void set_nonblock(int sockfd) {
36 int flags = fcntl(sockfd, F_GETFL, 0);
38 if (fcntl(sockfd, F_SETFL, flags) < 0)
39 err(-1, "Could not set O_NONBLOCK");
43 * Emulates mkdir -p (creates any missing folders)
46 static bool mkdirp(const char *path) {
47 if (mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == 0)
49 if (errno != ENOENT) {
50 ELOG("mkdir(%s) failed: %s\n", path, strerror(errno));
53 char *copy = strdup(path);
54 /* strip trailing slashes, if any */
55 while (copy[strlen(copy)-1] == '/')
56 copy[strlen(copy)-1] = '\0';
58 char *sep = strrchr(copy, '/');
66 result = mkdirp(path);
73 * Sends the specified event to all IPC clients which are currently connected
74 * and subscribed to this kind of event.
77 void ipc_send_event(const char *event, uint32_t message_type, const char *payload) {
79 TAILQ_FOREACH(current, &all_clients, clients) {
80 /* see if this client is interested in this event */
81 bool interested = false;
82 for (int i = 0; i < current->num_events; i++) {
83 if (strcasecmp(current->events[i], event) != 0)
91 ipc_send_message(current->fd, strlen(payload), message_type, (const uint8_t*)payload);
96 * Calls shutdown() on each socket and closes it. This function to be called
97 * when exiting or restarting only!
100 void ipc_shutdown(void) {
102 while (!TAILQ_EMPTY(&all_clients)) {
103 current = TAILQ_FIRST(&all_clients);
104 shutdown(current->fd, SHUT_RDWR);
106 TAILQ_REMOVE(&all_clients, current, clients);
112 * Executes the command and returns whether it could be successfully parsed
113 * or not (at the moment, always returns true).
116 IPC_HANDLER(command) {
117 /* To get a properly terminated buffer, we copy
118 * message_size bytes out of the buffer */
119 char *command = scalloc(message_size + 1);
120 strncpy(command, (const char*)message, message_size);
121 LOG("IPC: received: *%s*\n", command);
122 struct CommandResult *command_output = parse_command((const char*)command);
125 if (command_output->needs_tree_render)
128 const unsigned char *reply;
134 yajl_gen_get_buf(command_output->json_gen, &reply, &length);
136 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_COMMAND,
137 (const uint8_t*)reply);
139 yajl_gen_free(command_output->json_gen);
142 static void dump_rect(yajl_gen gen, const char *name, Rect r) {
152 y(integer, r.height);
156 void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
159 y(integer, (long int)con);
162 y(integer, con->type);
164 /* provided for backwards compatibility only. */
169 if (con_orientation(con) == HORIZ)
171 else ystr("vertical");
174 ystr("scratchpad_state");
175 switch (con->scratchpad_state) {
176 case SCRATCHPAD_NONE:
179 case SCRATCHPAD_FRESH:
182 case SCRATCHPAD_CHANGED:
188 if (con->percent == 0.0)
190 else y(double, con->percent);
193 y(bool, con->urgent);
195 if (con->mark != NULL) {
201 y(bool, (con == focused));
207 switch (con->layout) {
209 DLOG("About to dump layout=default, this is a bug in the code.\n");
232 ystr("last_split_layout");
233 switch (con->layout) {
243 switch (con->border_style) {
255 dump_rect(gen, "rect", con->rect);
256 dump_rect(gen, "window_rect", con->window_rect);
257 dump_rect(gen, "geometry", con->geometry);
260 if (con->window && con->window->name_json)
261 ystr(con->window->name_json);
265 if (con->type == CT_WORKSPACE) {
267 y(integer, con->num);
272 y(integer, con->window->id);
278 if (con->type != CT_DOCKAREA || !inplace_restart) {
279 TAILQ_FOREACH(node, &(con->nodes_head), nodes) {
280 dump_node(gen, node, inplace_restart);
285 ystr("floating_nodes");
287 TAILQ_FOREACH(node, &(con->floating_head), floating_windows) {
288 dump_node(gen, node, inplace_restart);
294 TAILQ_FOREACH(node, &(con->focus_head), focused) {
295 y(integer, (long int)node);
299 ystr("fullscreen_mode");
300 y(integer, con->fullscreen_mode);
303 switch (con->floating) {
304 case FLOATING_AUTO_OFF:
307 case FLOATING_AUTO_ON:
310 case FLOATING_USER_OFF:
313 case FLOATING_USER_ON:
321 TAILQ_FOREACH(match, &(con->swallow_head), matches) {
322 if (match->dock != -1) {
325 y(integer, match->dock);
326 ystr("insert_where");
327 y(integer, match->insert_where);
331 /* TODO: the other swallow keys */
334 if (inplace_restart) {
335 if (con->window != NULL) {
338 y(integer, con->window->id);
339 ystr("restart_mode");
350 setlocale(LC_NUMERIC, "C");
352 yajl_gen gen = yajl_gen_alloc(NULL);
354 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
356 dump_node(gen, croot, false);
357 setlocale(LC_NUMERIC, "");
359 const unsigned char *payload;
365 y(get_buf, &payload, &length);
367 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_TREE, payload);
373 * Formats the reply message for a GET_WORKSPACES request and sends it to the
377 IPC_HANDLER(get_workspaces) {
379 yajl_gen gen = yajl_gen_alloc(NULL);
381 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
385 Con *focused_ws = con_get_workspace(focused);
388 TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
389 if (output->name[0] == '_' && output->name[1] == '_')
392 TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
393 assert(ws->type == CT_WORKSPACE);
399 else y(integer, ws->num);
405 y(bool, workspace_is_visible(ws));
408 y(bool, ws == focused_ws);
413 y(integer, ws->rect.x);
415 y(integer, ws->rect.y);
417 y(integer, ws->rect.width);
419 y(integer, ws->rect.height);
434 const unsigned char *payload;
440 y(get_buf, &payload, &length);
442 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_WORKSPACES, payload);
447 * Formats the reply message for a GET_OUTPUTS request and sends it to the
451 IPC_HANDLER(get_outputs) {
453 yajl_gen gen = yajl_gen_alloc(NULL);
455 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
460 TAILQ_FOREACH(output, &outputs, outputs) {
467 y(bool, output->active);
470 y(bool, output->primary);
475 y(integer, output->rect.x);
477 y(integer, output->rect.y);
479 y(integer, output->rect.width);
481 y(integer, output->rect.height);
484 ystr("current_workspace");
486 if (output->con && (ws = con_get_fullscreen_con(output->con, CF_OUTPUT)))
495 const unsigned char *payload;
501 y(get_buf, &payload, &length);
503 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_OUTPUTS, payload);
508 * Formats the reply message for a GET_MARKS request and sends it to the
512 IPC_HANDLER(get_marks) {
514 yajl_gen gen = yajl_gen_alloc(NULL);
516 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
521 TAILQ_FOREACH(con, &all_cons, all_cons)
522 if (con->mark != NULL)
527 const unsigned char *payload;
533 y(get_buf, &payload, &length);
535 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_MARKS, payload);
540 * Formats the reply message for a GET_BAR_CONFIG request and sends it to the
544 IPC_HANDLER(get_bar_config) {
546 yajl_gen gen = yajl_gen_alloc(NULL);
548 yajl_gen gen = yajl_gen_alloc(NULL, NULL);
551 /* If no ID was passed, we return a JSON array with all IDs */
552 if (message_size == 0) {
555 TAILQ_FOREACH(current, &barconfigs, configs) {
560 const unsigned char *payload;
566 y(get_buf, &payload, &length);
568 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_BAR_CONFIG, payload);
573 /* To get a properly terminated buffer, we copy
574 * message_size bytes out of the buffer */
575 char *bar_id = scalloc(message_size + 1);
576 strncpy(bar_id, (const char*)message, message_size);
577 LOG("IPC: looking for config for bar ID \"%s\"\n", bar_id);
578 Barconfig *current, *config = NULL;
579 TAILQ_FOREACH(current, &barconfigs, configs) {
580 if (strcmp(current->id, bar_id) != 0)
590 /* If we did not find a config for the given ID, the reply will contain
591 * a null 'id' field. */
598 if (config->num_outputs > 0) {
601 for (int c = 0; c < config->num_outputs; c++)
602 ystr(config->outputs[c]);
606 #define YSTR_IF_SET(name) \
608 if (config->name) { \
610 ystr(config->name); \
614 YSTR_IF_SET(tray_output);
615 YSTR_IF_SET(socket_path);
618 if (config->mode == M_HIDE)
623 switch (config->modifier) {
653 if (config->position == P_BOTTOM)
657 YSTR_IF_SET(status_command);
660 ystr("workspace_buttons");
661 y(bool, !config->hide_workspace_buttons);
664 y(bool, config->verbose);
667 #define YSTR_IF_SET(name) \
669 if (config->colors.name) { \
671 ystr(config->colors.name); \
677 YSTR_IF_SET(background);
678 YSTR_IF_SET(statusline);
679 YSTR_IF_SET(focused_workspace_border);
680 YSTR_IF_SET(focused_workspace_bg);
681 YSTR_IF_SET(focused_workspace_text);
682 YSTR_IF_SET(active_workspace_border);
683 YSTR_IF_SET(active_workspace_bg);
684 YSTR_IF_SET(active_workspace_text);
685 YSTR_IF_SET(inactive_workspace_border);
686 YSTR_IF_SET(inactive_workspace_bg);
687 YSTR_IF_SET(inactive_workspace_text);
688 YSTR_IF_SET(urgent_workspace_border);
689 YSTR_IF_SET(urgent_workspace_bg);
690 YSTR_IF_SET(urgent_workspace_text);
698 const unsigned char *payload;
704 y(get_buf, &payload, &length);
706 ipc_send_message(fd, length, I3_IPC_REPLY_TYPE_BAR_CONFIG, payload);
711 * Callback for the YAJL parser (will be called when a string is parsed).
715 static int add_subscription(void *extra, const unsigned char *s,
718 static int add_subscription(void *extra, const unsigned char *s,
721 ipc_client *client = extra;
723 DLOG("should add subscription to extra %p, sub %.*s\n", client, len, s);
724 int event = client->num_events;
726 client->num_events++;
727 client->events = realloc(client->events, client->num_events * sizeof(char*));
728 /* We copy the string because it is not null-terminated and strndup()
729 * is missing on some BSD systems */
730 client->events[event] = scalloc(len+1);
731 memcpy(client->events[event], s, len);
733 DLOG("client is now subscribed to:\n");
734 for (int i = 0; i < client->num_events; i++)
735 DLOG("event %s\n", client->events[i]);
742 * Subscribes this connection to the event types which were given as a JSON
743 * serialized array in the payload field of the message.
746 IPC_HANDLER(subscribe) {
748 yajl_callbacks callbacks;
750 ipc_client *current, *client = NULL;
752 /* Search the ipc_client structure for this connection */
753 TAILQ_FOREACH(current, &all_clients, clients) {
754 if (current->fd != fd)
761 if (client == NULL) {
762 ELOG("Could not find ipc_client data structure for fd %d\n", fd);
766 /* Setup the JSON parser */
767 memset(&callbacks, 0, sizeof(yajl_callbacks));
768 callbacks.yajl_string = add_subscription;
771 p = yajl_alloc(&callbacks, NULL, (void*)client);
773 p = yajl_alloc(&callbacks, NULL, NULL, (void*)client);
775 stat = yajl_parse(p, (const unsigned char*)message, message_size);
776 if (stat != yajl_status_ok) {
778 err = yajl_get_error(p, true, (const unsigned char*)message,
780 ELOG("YAJL parse error: %s\n", err);
781 yajl_free_error(p, err);
783 const char *reply = "{\"success\":false}";
784 ipc_send_message(fd, strlen(reply), I3_IPC_REPLY_TYPE_SUBSCRIBE, (const uint8_t*)reply);
789 const char *reply = "{\"success\":true}";
790 ipc_send_message(fd, strlen(reply), I3_IPC_REPLY_TYPE_SUBSCRIBE, (const uint8_t*)reply);
793 /* The index of each callback function corresponds to the numeric
794 * value of the message type (see include/i3/ipc.h) */
795 handler_t handlers[7] = {
797 handle_get_workspaces,
802 handle_get_bar_config,
806 * Handler for activity on a client connection, receives a message from a
809 * For now, the maximum message size is 2048. I’m not sure for what the
810 * IPC interface will be used in the future, thus I’m not implementing a
811 * mechanism for arbitrarily long messages, as it seems like overkill
815 static void ipc_receive_message(EV_P_ struct ev_io *w, int revents) {
817 int n = read(w->fd, buf, sizeof(buf));
819 /* On error or an empty message, we close the connection */
822 /* FIXME: I get these when closing a client socket,
823 * therefore we just treat them as an error. Is this
825 if (errno == EAGAIN || errno == EWOULDBLOCK)
829 /* If not, there was some kind of error. We don’t bother
830 * and close the connection */
833 /* Delete the client from the list of clients */
835 TAILQ_FOREACH(current, &all_clients, clients) {
836 if (current->fd != w->fd)
839 for (int i = 0; i < current->num_events; i++)
840 free(current->events[i]);
841 /* We can call TAILQ_REMOVE because we break out of the
842 * TAILQ_FOREACH afterwards */
843 TAILQ_REMOVE(&all_clients, current, clients);
851 DLOG("IPC: client disconnected\n");
855 /* Terminate the message correctly */
858 /* Check if the message starts with the i3 IPC magic code */
859 if (n < strlen(I3_IPC_MAGIC)) {
860 DLOG("IPC: message too short, ignoring\n");
864 if (strncmp(buf, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC)) != 0) {
865 DLOG("IPC: message does not start with the IPC magic\n");
869 uint8_t *message = (uint8_t*)buf;
871 DLOG("IPC: n = %d\n", n);
872 message += strlen(I3_IPC_MAGIC);
873 n -= strlen(I3_IPC_MAGIC);
875 /* The next 32 bit after the magic are the message size */
876 uint32_t message_size;
877 memcpy(&message_size, (uint32_t*)message, sizeof(uint32_t));
878 message += sizeof(uint32_t);
879 n -= sizeof(uint32_t);
881 if (message_size > n) {
882 DLOG("IPC: Either the message size was wrong or the message was not read completely, dropping\n");
886 /* The last 32 bits of the header are the message type */
887 uint32_t message_type;
888 memcpy(&message_type, (uint32_t*)message, sizeof(uint32_t));
889 message += sizeof(uint32_t);
890 n -= sizeof(uint32_t);
892 if (message_type >= (sizeof(handlers) / sizeof(handler_t)))
893 DLOG("Unhandled message type: %d\n", message_type);
895 handler_t h = handlers[message_type];
896 h(w->fd, message, n, message_size, message_type);
899 message += message_size;
904 * Handler for activity on the listening socket, meaning that a new client
905 * has just connected and we should accept() him. Sets up the event handler
906 * for activity on the new connection and inserts the file descriptor into
907 * the list of clients.
910 void ipc_new_client(EV_P_ struct ev_io *w, int revents) {
911 struct sockaddr_un peer;
912 socklen_t len = sizeof(struct sockaddr_un);
914 if ((client = accept(w->fd, (struct sockaddr*)&peer, &len)) < 0) {
917 else perror("accept()");
921 /* Close this file descriptor on exec() */
922 (void)fcntl(client, F_SETFD, FD_CLOEXEC);
924 set_nonblock(client);
926 struct ev_io *package = scalloc(sizeof(struct ev_io));
927 ev_io_init(package, ipc_receive_message, client, EV_READ);
928 ev_io_start(EV_A_ package);
930 DLOG("IPC: new client connected on fd %d\n", w->fd);
932 ipc_client *new = scalloc(sizeof(ipc_client));
935 TAILQ_INSERT_TAIL(&all_clients, new, clients);
939 * Creates the UNIX domain socket at the given path, sets it to non-blocking
940 * mode, bind()s and listen()s on it.
943 int ipc_create_socket(const char *filename) {
946 FREE(current_socketpath);
948 char *resolved = resolve_tilde(filename);
949 DLOG("Creating IPC-socket at %s\n", resolved);
950 char *copy = sstrdup(resolved);
951 const char *dir = dirname(copy);
952 if (!path_exists(dir))
956 /* Unlink the unix domain socket before */
959 if ((sockfd = socket(AF_LOCAL, SOCK_STREAM, 0)) < 0) {
965 (void)fcntl(sockfd, F_SETFD, FD_CLOEXEC);
967 struct sockaddr_un addr;
968 memset(&addr, 0, sizeof(struct sockaddr_un));
969 addr.sun_family = AF_LOCAL;
970 strncpy(addr.sun_path, resolved, sizeof(addr.sun_path) - 1);
971 if (bind(sockfd, (struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0) {
977 set_nonblock(sockfd);
979 if (listen(sockfd, 5) < 0) {
985 current_socketpath = resolved;