15 #include <sys/socket.h>
20 #include <yajl/yajl_gen.h>
21 #include <yajl/yajl_parse.h>
35 int flags = fcntl(sockfd, F_GETFL, 0);
36 if (flags & O_NONBLOCK) {
40 if (fcntl(sockfd, F_SETFL, flags) < 0)
41 err(-1,
"Could not set O_NONBLOCK");
83 struct ev_timer *timeout =
scalloc(1,
sizeof(
struct ev_timer));
85 timeout->data = client;
87 ev_set_priority(timeout, EV_MINPRI);
89 }
else if (result > 0) {
113 const i3_ipc_header_t
header = {
114 .magic = {
'i',
'3',
'-',
'i',
'p',
'c'},
116 .type = message_type};
117 const size_t header_size =
sizeof(i3_ipc_header_t);
118 const size_t message_size = header_size + size;
132 if (client->
fd != exempt_fd) {
133 DLOG(
"Disconnecting client on fd %d\n", client->
fd);
148 for (
int i = 0; i < client->
num_events; i++) {
161 void ipc_send_event(
const char *event, uint32_t message_type,
const char *payload) {
164 for (
int i = 0; i < current->
num_events; i++) {
165 if (strcasecmp(current->
events[i], event) == 0) {
190 const unsigned char *payload;
193 y(get_buf, &payload, &length);
194 ipc_send_event(
"shutdown", I3_IPC_EVENT_SHUTDOWN, (
const char *)payload);
212 if (current->
fd != exempt_fd) {
213 shutdown(current->
fd, SHUT_RDWR);
227 char *command =
sstrndup((
const char *)message, message_size);
228 LOG(
"IPC: received: *%s*\n", command);
229 yajl_gen gen = yajl_gen_alloc(NULL);
239 const unsigned char *reply;
241 yajl_gen_get_buf(gen, &reply, &length);
244 (
const uint8_t *)reply);
272 y(integer, gaps.
top);
275 y(integer, gaps.
top);
281 y(integer, gaps.
left);
287 for (
int i = 0; i < 20; i++) {
290 case XCB_KEY_BUT_MASK_SHIFT:
293 case XCB_KEY_BUT_MASK_LOCK:
296 case XCB_KEY_BUT_MASK_CONTROL:
299 case XCB_KEY_BUT_MASK_MOD_1:
302 case XCB_KEY_BUT_MASK_MOD_2:
305 case XCB_KEY_BUT_MASK_MOD_3:
308 case XCB_KEY_BUT_MASK_MOD_4:
311 case XCB_KEY_BUT_MASK_MOD_5:
314 case XCB_KEY_BUT_MASK_BUTTON_1:
317 case XCB_KEY_BUT_MASK_BUTTON_2:
320 case XCB_KEY_BUT_MASK_BUTTON_3:
323 case XCB_KEY_BUT_MASK_BUTTON_4:
326 case XCB_KEY_BUT_MASK_BUTTON_5:
369 ystr(
"event_state_mask");
378 y(integer, (uintptr_t)con);
391 case CT_FLOATING_CON:
392 ystr(
"floating_con");
413 ystr(
"scratchpad_state");
414 switch (con->scratchpad_state) {
415 case SCRATCHPAD_NONE:
418 case SCRATCHPAD_FRESH:
421 case SCRATCHPAD_CHANGED:
427 if (con->percent == 0.0)
430 y(
double, con->percent);
433 y(
bool, con->urgent);
450 if (con->type != CT_ROOT && con->type != CT_OUTPUT) {
456 switch (con->layout) {
458 DLOG(
"About to dump layout=default, this is a bug in the code.\n");
481 ystr(
"workspace_layout");
482 switch (con->workspace_layout) {
493 DLOG(
"About to dump workspace_layout=%d (none of default/stacked/tabbed), this is a bug.\n", con->workspace_layout);
498 ystr(
"last_split_layout");
499 switch (con->layout) {
509 switch (con->border_style) {
521 ystr(
"current_border_width");
522 y(integer, con->current_border_width);
525 dump_rect(gen,
"deco_rect", con->deco_rect);
526 dump_rect(gen,
"window_rect", con->window_rect);
527 dump_rect(gen,
"geometry", con->geometry);
530 if (con->window && con->window->name)
532 else if (con->name != NULL)
537 if (con->title_format != NULL) {
538 ystr(
"title_format");
539 ystr(con->title_format);
542 if (con->type == CT_WORKSPACE) {
544 y(integer, con->num);
551 y(integer, con->window->id);
557 if (con->window->window_type == A__NET_WM_WINDOW_TYPE_NORMAL) {
559 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_DOCK) {
561 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_DIALOG) {
563 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_UTILITY) {
565 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_TOOLBAR) {
567 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_SPLASH) {
569 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_MENU) {
571 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_DROPDOWN_MENU) {
572 ystr(
"dropdown_menu");
573 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_POPUP_MENU) {
575 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_TOOLTIP) {
577 }
else if (con->window->window_type == A__NET_WM_WINDOW_TYPE_NOTIFICATION) {
578 ystr(
"notification");
585 if (con->window && !inplace_restart) {
589 ystr(
"window_properties");
592 #define DUMP_PROPERTY(key, prop_name) \
594 if (con->window->prop_name != NULL) { \
596 ystr(con->window->prop_name); \
604 if (con->window->name != NULL) {
609 ystr(
"transient_for");
610 if (con->window->transient_for == XCB_NONE)
613 y(integer, con->window->transient_for);
621 if (con->type != CT_DOCKAREA || !inplace_restart) {
628 ystr(
"floating_nodes");
630 TAILQ_FOREACH(node, &(con->floating_head), floating_windows) {
638 y(integer, (uintptr_t)node);
642 ystr(
"fullscreen_mode");
643 y(integer, con->fullscreen_mode);
646 y(
bool, con->sticky);
649 switch (con->floating) {
650 case FLOATING_AUTO_OFF:
653 case FLOATING_AUTO_ON:
656 case FLOATING_USER_OFF:
659 case FLOATING_USER_ON:
673 if (match->
dock != M_DONTCHECK) {
675 y(integer, match->
dock);
676 ystr(
"insert_where");
680 #define DUMP_REGEX(re_name) \
682 if (match->re_name != NULL) { \
684 ystr(match->re_name->pattern); \
697 if (inplace_restart) {
698 if (con->window != NULL) {
701 y(integer, con->window->id);
702 ystr(
"restart_mode");
709 if (inplace_restart && con->window != NULL) {
711 y(integer, con->depth);
715 ystr(
"previous_workspace_name");
738 y(
bool, current->
release == B_UPON_KEYRELEASE);
748 if (strcasecmp(name,
"primary") == 0) {
761 if (
config->num_outputs > 0) {
764 for (
int c = 0; c <
config->num_outputs; c++) {
775 ystr(
"tray_outputs");
786 #define YSTR_IF_SET(name) \
788 if (config->name) { \
790 ystr(config->name); \
794 ystr(
"tray_padding");
795 y(integer,
config->tray_padding);
813 ystr(
"hidden_state");
814 switch (
config->hidden_state) {
830 if (
config->position == P_BOTTOM)
840 y(integer,
config->bar_height);
843 if (
config->separator_symbol) {
844 ystr(
"separator_symbol");
848 ystr(
"workspace_buttons");
849 y(
bool, !
config->hide_workspace_buttons);
851 ystr(
"workspace_min_width");
852 y(integer,
config->workspace_min_width);
854 ystr(
"strip_workspace_numbers");
855 y(
bool,
config->strip_workspace_numbers);
857 ystr(
"strip_workspace_name");
858 y(
bool,
config->strip_workspace_name);
860 ystr(
"binding_mode_indicator");
861 y(
bool, !
config->hide_binding_mode_indicator);
867 #define YSTR_IF_SET(name) \
869 if (config->colors.name) { \
871 ystr(config->colors.name); \
905 setlocale(LC_NUMERIC,
"C");
908 setlocale(LC_NUMERIC,
"");
910 const unsigned char *payload;
912 y(get_buf, &payload, &length);
935 assert(ws->
type == CT_WORKSPACE);
939 y(integer, (uintptr_t)ws);
951 y(
bool, ws == focused_ws);
956 y(integer, ws->rect.x);
958 y(integer, ws->rect.y);
960 y(integer, ws->rect.width);
962 y(integer, ws->rect.height);
977 const unsigned char *payload;
979 y(get_buf, &payload, &length);
1014 y(integer,
output->rect.width);
1016 y(integer,
output->rect.height);
1019 ystr(
"current_workspace");
1031 const unsigned char *payload;
1033 y(get_buf, &payload, &length);
1058 const unsigned char *payload;
1060 y(get_buf, &payload, &length);
1075 y(integer, MAJOR_VERSION);
1078 y(integer, MINOR_VERSION);
1081 y(integer, PATCH_VERSION);
1083 ystr(
"human_readable");
1086 ystr(
"loaded_config_file_name");
1091 const unsigned char *payload;
1093 y(get_buf, &payload, &length);
1108 if (message_size == 0) {
1116 const unsigned char *payload;
1118 y(get_buf, &payload, &length);
1127 char *bar_id = NULL;
1128 sasprintf(&bar_id,
"%.*s", message_size, message);
1129 LOG(
"IPC: looking for config for bar ID \"%s\"\n", bar_id);
1132 if (strcmp(current->
id, bar_id) != 0)
1153 const unsigned char *payload;
1155 y(get_buf, &payload, &length);
1175 const unsigned char *payload;
1177 y(get_buf, &payload, &length);
1191 DLOG(
"should add subscription to extra %p, sub %.*s\n", client, (
int)len, s);
1199 memcpy(client->
events[event], s, len);
1201 DLOG(
"client is now subscribed to:\n");
1202 for (
int i = 0; i < client->
num_events; i++) {
1220 static yajl_callbacks callbacks = {
1224 p =
yalloc(&callbacks, (
void *)client);
1225 stat = yajl_parse(p, (
const unsigned char *)message, message_size);
1226 if (stat != yajl_status_ok) {
1228 err = yajl_get_error(p,
true, (
const unsigned char *)message,
1230 ELOG(
"YAJL parse error: %s\n", err);
1231 yajl_free_error(p, err);
1233 const char *reply =
"{\"success\":false}";
1239 const char *reply =
"{\"success\":true}";
1242 if (client->first_tick_sent) {
1246 bool is_tick =
false;
1247 for (
int i = 0; i < client->num_events; i++) {
1248 if (strcmp(client->events[i],
"tick") == 0) {
1257 client->first_tick_sent =
true;
1258 const char *payload =
"{\"first\":true,\"payload\":\"\"}";
1275 const unsigned char *payload;
1277 y(get_buf, &payload, &length);
1296 yajl_gen_string(gen, (
unsigned char *)message, message_size);
1300 const unsigned char *payload;
1302 y(get_buf, &payload, &length);
1304 ipc_send_event(
"tick", I3_IPC_EVENT_TICK, (
const char *)payload);
1307 const char *reply =
"{\"success\":true}";
1309 DLOG(
"Sent tick event\n");
1322 memcpy(
state->last_key, val, len);
1328 if (strcasecmp(
state->last_key,
"rnd") == 0) {
1330 }
else if (strcasecmp(
state->last_key,
"window") == 0) {
1331 state->window = (xcb_window_t)val;
1341 static yajl_callbacks callbacks = {
1349 stat = yajl_parse(p, (
const unsigned char *)message, message_size);
1351 if (stat != yajl_status_ok) {
1353 err = yajl_get_error(p,
true, (
const unsigned char *)message,
1355 ELOG(
"YAJL parse error: %s\n", err);
1356 yajl_free_error(p, err);
1358 const char *reply =
"{\"success\":false}";
1365 DLOG(
"received IPC sync request (rnd = %d, window = 0x%08x)\n",
state.rnd,
state.window);
1367 const char *reply =
"{\"success\":true}";
1375 handle_get_workspaces,
1380 handle_get_bar_config,
1382 handle_get_binding_modes,
1399 uint32_t message_type;
1400 uint32_t message_length;
1401 uint8_t *message = NULL;
1403 assert(client->
fd == w->fd);
1405 int ret =
ipc_recv_message(w->fd, &message_type, &message_length, &message);
1409 if (ret == -1 && errno == EAGAIN) {
1422 DLOG(
"Unhandled message type: %d\n", message_type);
1425 h(client, message, 0, message_length, message_type);
1436 char *cmdline = NULL;
1437 #
if defined(__linux__) && defined(SO_PEERCRED)
1438 struct ucred peercred;
1439 socklen_t so_len =
sizeof(peercred);
1440 if (getsockopt(client->
fd, SOL_SOCKET, SO_PEERCRED, &peercred, &so_len) != 0) {
1444 sasprintf(&exepath,
"/proc/%d/cmdline", peercred.pid);
1446 int fd = open(exepath, O_RDONLY);
1451 char buf[512] = {
'\0'};
1452 const ssize_t n = read(fd, buf,
sizeof(buf));
1457 for (
char *walk = buf; walk < buf + n - 1; walk++) {
1458 if (*walk ==
'\0') {
1465 ELOG(
"client %p with pid %d and cmdline '%s' on fd %d timed out, killing\n", client, peercred.pid, cmdline, client->
fd);
1471 ELOG(
"client %p on fd %d timed out, killing\n", client, client->
fd);
1478 DLOG(
"fd %d writeable\n", w->fd);
1483 assert(client->
timeout != NULL);
1495 struct sockaddr_un peer;
1496 socklen_t len =
sizeof(
struct sockaddr_un);
1498 if ((fd = accept(w->fd, (
struct sockaddr *)&peer, &len)) < 0) {
1499 if (errno != EINTR) {
1506 (void)fcntl(fd, F_SETFD, FD_CLOEXEC);
1534 DLOG(
"IPC: new client connected on fd %d\n", fd);
1550 DLOG(
"Creating IPC-socket at %s\n", resolved);
1551 char *copy =
sstrdup(resolved);
1552 const char *dir = dirname(copy);
1560 if ((sockfd = socket(AF_LOCAL, SOCK_STREAM, 0)) < 0) {
1566 (void)fcntl(sockfd, F_SETFD, FD_CLOEXEC);
1568 struct sockaddr_un addr;
1569 memset(&addr, 0,
sizeof(
struct sockaddr_un));
1570 addr.sun_family = AF_LOCAL;
1571 strncpy(addr.sun_path, resolved,
sizeof(addr.sun_path) - 1);
1572 if (bind(sockfd, (
struct sockaddr *)&addr,
sizeof(
struct sockaddr_un)) < 0) {
1580 if (listen(sockfd, 5) < 0) {
1595 setlocale(LC_NUMERIC,
"C");
1604 if (current == NULL)
1617 setlocale(LC_NUMERIC,
"");
1630 const unsigned char *payload;
1632 y(get_buf, &payload, &length);
1634 ipc_send_event(
"workspace", I3_IPC_EVENT_WORKSPACE, (
const char *)payload);
1644 DLOG(
"Issue IPC window %s event (con = %p, window = 0x%08x)\n",
1645 property, con, (con->
window ? con->
window->
id : XCB_WINDOW_NONE));
1647 setlocale(LC_NUMERIC,
"C");
1660 const unsigned char *payload;
1662 y(get_buf, &payload, &length);
1664 ipc_send_event(
"window", I3_IPC_EVENT_WINDOW, (
const char *)payload);
1666 setlocale(LC_NUMERIC,
"");
1673 DLOG(
"Issue barconfig_update event for id = %s\n", barconfig->
id);
1674 setlocale(LC_NUMERIC,
"C");
1679 const unsigned char *payload;
1681 y(get_buf, &payload, &length);
1683 ipc_send_event(
"barconfig_update", I3_IPC_EVENT_BARCONFIG_UPDATE, (
const char *)payload);
1685 setlocale(LC_NUMERIC,
"");
1692 DLOG(
"Issue IPC binding %s event (sym = %s, code = %d)\n", event_type, bind->
symbol, bind->
keycode);
1694 setlocale(LC_NUMERIC,
"C");
1708 const unsigned char *payload;
1710 y(get_buf, &payload, &length);
1712 ipc_send_event(
"binding", I3_IPC_EVENT_BINDING, (
const char *)payload);
1715 setlocale(LC_NUMERIC,
"");
1722 DLOG(
"ipc_confirm_restart(fd %d)\n", client->
fd);
1723 static const char *reply =
"[{\"success\":true}]";
1725 client, strlen(reply), I3_IPC_REPLY_TYPE_COMMAND,
1726 (
const uint8_t *)reply);