2009-07-28 20:51:29 +02:00
|
|
|
|
/*
|
2010-11-21 22:03:55 +01:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-07-28 20:51:29 +02:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
2011-04-27 19:52:53 +02:00
|
|
|
|
* © 2009-2011 Michael Stapelberg and contributors
|
2009-07-28 20:51:29 +02:00
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
|
|
|
|
* ipc.c: Everything about the UNIX domain sockets for IPC
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
#include <fcntl.h>
|
2010-11-15 02:01:04 +01:00
|
|
|
|
#include <libgen.h>
|
2009-07-28 20:51:29 +02:00
|
|
|
|
#include <ev.h>
|
2010-03-11 15:58:39 +01:00
|
|
|
|
#include <yajl/yajl_gen.h>
|
2010-03-12 21:05:05 +01:00
|
|
|
|
#include <yajl/yajl_parse.h>
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#include <yajl/yajl_version.h>
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#include "all.h"
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
2011-03-20 15:34:34 +01:00
|
|
|
|
char *current_socketpath = NULL;
|
|
|
|
|
|
2010-03-11 15:58:39 +01:00
|
|
|
|
/* Shorter names for all those yajl_gen_* functions */
|
|
|
|
|
#define y(x, ...) yajl_gen_ ## x (gen, ##__VA_ARGS__)
|
|
|
|
|
#define ystr(str) yajl_gen_string(gen, (unsigned char*)str, strlen(str))
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
|
|
|
|
TAILQ_HEAD(ipc_client_head, ipc_client) all_clients = TAILQ_HEAD_INITIALIZER(all_clients);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Puts the given socket file descriptor into non-blocking mode or dies if
|
|
|
|
|
* setting O_NONBLOCK failed. Non-blocking sockets are a good idea for our
|
|
|
|
|
* IPC model because we should by no means block the window manager.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void set_nonblock(int sockfd) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
int flags = fcntl(sockfd, F_GETFL, 0);
|
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
|
if (fcntl(sockfd, F_SETFL, flags) < 0)
|
|
|
|
|
err(-1, "Could not set O_NONBLOCK");
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 02:01:04 +01:00
|
|
|
|
/*
|
|
|
|
|
* Emulates mkdir -p (creates any missing folders)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static bool mkdirp(const char *path) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
if (mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == 0)
|
|
|
|
|
return true;
|
|
|
|
|
if (errno != ENOENT) {
|
|
|
|
|
ELOG("mkdir(%s) failed: %s\n", path, strerror(errno));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
char *copy = strdup(path);
|
|
|
|
|
/* strip trailing slashes, if any */
|
|
|
|
|
while (copy[strlen(copy)-1] == '/')
|
|
|
|
|
copy[strlen(copy)-1] = '\0';
|
|
|
|
|
|
|
|
|
|
char *sep = strrchr(copy, '/');
|
|
|
|
|
if (sep == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
*sep = '\0';
|
|
|
|
|
bool result = false;
|
|
|
|
|
if (mkdirp(copy))
|
|
|
|
|
result = mkdirp(path);
|
|
|
|
|
free(copy);
|
|
|
|
|
|
|
|
|
|
return result;
|
2010-11-15 02:01:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-11 15:58:39 +01:00
|
|
|
|
static void ipc_send_message(int fd, const unsigned char *payload,
|
|
|
|
|
int message_type, int message_size) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
int buffer_size = strlen("i3-ipc") + sizeof(uint32_t) +
|
|
|
|
|
sizeof(uint32_t) + message_size;
|
|
|
|
|
char msg[buffer_size];
|
|
|
|
|
char *walk = msg;
|
|
|
|
|
|
2011-07-23 22:22:36 +02:00
|
|
|
|
strncpy(walk, "i3-ipc", buffer_size - 1);
|
2010-11-21 22:03:55 +01:00
|
|
|
|
walk += strlen("i3-ipc");
|
|
|
|
|
memcpy(walk, &message_size, sizeof(uint32_t));
|
|
|
|
|
walk += sizeof(uint32_t);
|
|
|
|
|
memcpy(walk, &message_type, sizeof(uint32_t));
|
|
|
|
|
walk += sizeof(uint32_t);
|
|
|
|
|
memcpy(walk, payload, message_size);
|
|
|
|
|
|
|
|
|
|
int sent_bytes = 0;
|
|
|
|
|
int bytes_to_go = buffer_size;
|
|
|
|
|
while (sent_bytes < bytes_to_go) {
|
|
|
|
|
int n = write(fd, msg + sent_bytes, bytes_to_go);
|
|
|
|
|
if (n == -1) {
|
|
|
|
|
DLOG("write() failed: %s\n", strerror(errno));
|
|
|
|
|
return;
|
2010-03-11 15:58:39 +01:00
|
|
|
|
}
|
2010-11-21 22:03:55 +01:00
|
|
|
|
|
|
|
|
|
sent_bytes += n;
|
|
|
|
|
bytes_to_go -= n;
|
|
|
|
|
}
|
2010-03-11 15:58:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-12 21:05:05 +01:00
|
|
|
|
/*
|
|
|
|
|
* Sends the specified event to all IPC clients which are currently connected
|
|
|
|
|
* and subscribed to this kind of event.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void ipc_send_event(const char *event, uint32_t message_type, const char *payload) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ipc_client *current;
|
|
|
|
|
TAILQ_FOREACH(current, &all_clients, clients) {
|
|
|
|
|
/* see if this client is interested in this event */
|
|
|
|
|
bool interested = false;
|
|
|
|
|
for (int i = 0; i < current->num_events; i++) {
|
|
|
|
|
if (strcasecmp(current->events[i], event) != 0)
|
|
|
|
|
continue;
|
|
|
|
|
interested = true;
|
|
|
|
|
break;
|
2010-03-12 21:05:05 +01:00
|
|
|
|
}
|
2010-11-21 22:03:55 +01:00
|
|
|
|
if (!interested)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
ipc_send_message(current->fd, (const unsigned char*)payload,
|
|
|
|
|
message_type, strlen(payload));
|
|
|
|
|
}
|
2010-03-12 21:05:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-16 02:44:47 +01:00
|
|
|
|
/*
|
|
|
|
|
* Calls shutdown() on each socket and closes it. This function to be called
|
|
|
|
|
* when exiting or restarting only!
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void ipc_shutdown() {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ipc_client *current;
|
|
|
|
|
TAILQ_FOREACH(current, &all_clients, clients) {
|
|
|
|
|
shutdown(current->fd, SHUT_RDWR);
|
|
|
|
|
close(current->fd);
|
|
|
|
|
}
|
2010-03-16 02:44:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-12 21:05:05 +01:00
|
|
|
|
/*
|
|
|
|
|
* Executes the command and returns whether it could be successfully parsed
|
|
|
|
|
* or not (at the moment, always returns true).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
IPC_HANDLER(command) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* To get a properly terminated buffer, we copy
|
|
|
|
|
* message_size bytes out of the buffer */
|
|
|
|
|
char *command = scalloc(message_size + 1);
|
|
|
|
|
strncpy(command, (const char*)message, message_size);
|
|
|
|
|
LOG("IPC: received: *%s*\n", command);
|
|
|
|
|
const char *reply = parse_cmd((const char*)command);
|
|
|
|
|
free(command);
|
|
|
|
|
|
|
|
|
|
/* If no reply was provided, we just use the default success message */
|
|
|
|
|
if (reply == NULL)
|
|
|
|
|
reply = "{\"success\":true}";
|
|
|
|
|
ipc_send_message(fd, (const unsigned char*)reply,
|
|
|
|
|
I3_IPC_REPLY_TYPE_COMMAND, strlen(reply));
|
2010-03-12 21:05:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-28 17:20:29 +01:00
|
|
|
|
static void dump_rect(yajl_gen gen, const char *name, Rect r) {
|
|
|
|
|
ystr(name);
|
|
|
|
|
y(map_open);
|
|
|
|
|
ystr("x");
|
|
|
|
|
y(integer, r.x);
|
|
|
|
|
ystr("y");
|
|
|
|
|
y(integer, r.y);
|
|
|
|
|
ystr("width");
|
|
|
|
|
y(integer, r.width);
|
|
|
|
|
ystr("height");
|
|
|
|
|
y(integer, r.height);
|
|
|
|
|
y(map_close);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
y(map_open);
|
|
|
|
|
ystr("id");
|
|
|
|
|
y(integer, (long int)con);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("type");
|
|
|
|
|
y(integer, con->type);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("orientation");
|
2011-01-07 20:48:01 +01:00
|
|
|
|
switch (con->orientation) {
|
|
|
|
|
case NO_ORIENTATION:
|
|
|
|
|
ystr("none");
|
|
|
|
|
break;
|
|
|
|
|
case HORIZ:
|
|
|
|
|
ystr("horizontal");
|
|
|
|
|
break;
|
|
|
|
|
case VERT:
|
|
|
|
|
ystr("vertical");
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-29 11:10:17 +01:00
|
|
|
|
ystr("percent");
|
2011-07-24 14:47:28 +02:00
|
|
|
|
if (con->percent == 0.0)
|
|
|
|
|
y(null);
|
|
|
|
|
else y(double, con->percent);
|
2010-11-29 11:10:17 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("urgent");
|
2011-07-24 14:54:30 +02:00
|
|
|
|
y(bool, con->urgent);
|
2010-06-02 17:51:58 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("focused");
|
2011-07-24 15:00:09 +02:00
|
|
|
|
y(bool, (con == focused));
|
2010-07-04 22:17:18 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("layout");
|
2011-06-02 17:12:18 +02:00
|
|
|
|
switch (con->layout) {
|
|
|
|
|
case L_DEFAULT:
|
|
|
|
|
ystr("default");
|
|
|
|
|
break;
|
|
|
|
|
case L_STACKED:
|
|
|
|
|
ystr("stacked");
|
|
|
|
|
break;
|
|
|
|
|
case L_TABBED:
|
|
|
|
|
ystr("tabbed");
|
|
|
|
|
break;
|
|
|
|
|
case L_DOCKAREA:
|
|
|
|
|
ystr("dockarea");
|
|
|
|
|
break;
|
|
|
|
|
case L_OUTPUT:
|
|
|
|
|
ystr("output");
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("border");
|
2011-05-11 20:39:18 +02:00
|
|
|
|
switch (con->border_style) {
|
|
|
|
|
case BS_NORMAL:
|
|
|
|
|
ystr("normal");
|
|
|
|
|
break;
|
|
|
|
|
case BS_NONE:
|
|
|
|
|
ystr("none");
|
|
|
|
|
break;
|
|
|
|
|
case BS_1PIXEL:
|
|
|
|
|
ystr("1pixel");
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-11-12 19:16:38 +01:00
|
|
|
|
|
2010-11-28 17:20:29 +01:00
|
|
|
|
dump_rect(gen, "rect", con->rect);
|
|
|
|
|
dump_rect(gen, "window_rect", con->window_rect);
|
2011-02-21 03:01:55 +01:00
|
|
|
|
dump_rect(gen, "geometry", con->geometry);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("name");
|
|
|
|
|
ystr(con->name);
|
2010-06-01 20:50:23 +02:00
|
|
|
|
|
2010-12-27 22:28:59 +01:00
|
|
|
|
if (con->type == CT_WORKSPACE) {
|
|
|
|
|
ystr("num");
|
|
|
|
|
y(integer, con->num);
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("window");
|
|
|
|
|
if (con->window)
|
|
|
|
|
y(integer, con->window->id);
|
|
|
|
|
else y(null);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ystr("nodes");
|
|
|
|
|
y(array_open);
|
|
|
|
|
Con *node;
|
2011-02-21 03:01:55 +01:00
|
|
|
|
if (con->type != CT_DOCKAREA || !inplace_restart) {
|
|
|
|
|
TAILQ_FOREACH(node, &(con->nodes_head), nodes) {
|
|
|
|
|
dump_node(gen, node, inplace_restart);
|
|
|
|
|
}
|
2010-11-21 22:03:55 +01:00
|
|
|
|
}
|
|
|
|
|
y(array_close);
|
|
|
|
|
|
|
|
|
|
ystr("floating_nodes");
|
|
|
|
|
y(array_open);
|
|
|
|
|
TAILQ_FOREACH(node, &(con->floating_head), floating_windows) {
|
|
|
|
|
dump_node(gen, node, inplace_restart);
|
|
|
|
|
}
|
|
|
|
|
y(array_close);
|
|
|
|
|
|
|
|
|
|
ystr("focus");
|
|
|
|
|
y(array_open);
|
|
|
|
|
TAILQ_FOREACH(node, &(con->focus_head), nodes) {
|
|
|
|
|
y(integer, (long int)node);
|
|
|
|
|
}
|
|
|
|
|
y(array_close);
|
|
|
|
|
|
|
|
|
|
ystr("fullscreen_mode");
|
|
|
|
|
y(integer, con->fullscreen_mode);
|
|
|
|
|
|
2011-02-21 03:01:55 +01:00
|
|
|
|
ystr("swallows");
|
|
|
|
|
y(array_open);
|
|
|
|
|
Match *match;
|
|
|
|
|
TAILQ_FOREACH(match, &(con->swallow_head), matches) {
|
|
|
|
|
if (match->dock != -1) {
|
|
|
|
|
y(map_open);
|
|
|
|
|
ystr("dock");
|
|
|
|
|
y(integer, match->dock);
|
|
|
|
|
ystr("insert_where");
|
|
|
|
|
y(integer, match->insert_where);
|
|
|
|
|
y(map_close);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* TODO: the other swallow keys */
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
if (inplace_restart) {
|
|
|
|
|
if (con->window != NULL) {
|
|
|
|
|
y(map_open);
|
|
|
|
|
ystr("id");
|
|
|
|
|
y(integer, con->window->id);
|
|
|
|
|
y(map_close);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
2010-11-21 22:03:55 +01:00
|
|
|
|
}
|
2011-02-21 03:01:55 +01:00
|
|
|
|
y(array_close);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
y(map_close);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IPC_HANDLER(tree) {
|
2010-11-29 11:10:17 +01:00
|
|
|
|
setlocale(LC_NUMERIC, "C");
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
yajl_gen gen = yajl_gen_alloc(NULL);
|
|
|
|
|
#else
|
2010-11-21 22:03:55 +01:00
|
|
|
|
yajl_gen gen = yajl_gen_alloc(NULL, NULL);
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-21 22:03:55 +01:00
|
|
|
|
dump_node(gen, croot, false);
|
2010-11-29 11:10:17 +01:00
|
|
|
|
setlocale(LC_NUMERIC, "");
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
const unsigned char *payload;
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
size_t length;
|
|
|
|
|
#else
|
2010-11-21 22:03:55 +01:00
|
|
|
|
unsigned int length;
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-21 22:03:55 +01:00
|
|
|
|
y(get_buf, &payload, &length);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ipc_send_message(fd, payload, I3_IPC_REPLY_TYPE_TREE, length);
|
|
|
|
|
y(free);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-11 15:58:39 +01:00
|
|
|
|
/*
|
|
|
|
|
* Formats the reply message for a GET_WORKSPACES request and sends it to the
|
|
|
|
|
* client
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-12 21:05:05 +01:00
|
|
|
|
IPC_HANDLER(get_workspaces) {
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
yajl_gen gen = yajl_gen_alloc(NULL);
|
|
|
|
|
#else
|
2010-11-20 22:30:53 +01:00
|
|
|
|
yajl_gen gen = yajl_gen_alloc(NULL, NULL);
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-20 22:30:53 +01:00
|
|
|
|
y(array_open);
|
2010-03-12 03:01:34 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
Con *focused_ws = con_get_workspace(focused);
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
Con *output;
|
|
|
|
|
TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
|
2011-02-21 01:55:36 +01:00
|
|
|
|
Con *ws;
|
|
|
|
|
TAILQ_FOREACH(ws, &(output_get_content(output)->nodes_head), nodes) {
|
|
|
|
|
assert(ws->type == CT_WORKSPACE);
|
|
|
|
|
y(map_open);
|
|
|
|
|
|
|
|
|
|
ystr("num");
|
|
|
|
|
if (ws->num == -1)
|
|
|
|
|
y(null);
|
|
|
|
|
else y(integer, ws->num);
|
|
|
|
|
|
|
|
|
|
ystr("name");
|
|
|
|
|
ystr(ws->name);
|
|
|
|
|
|
|
|
|
|
ystr("visible");
|
|
|
|
|
y(bool, workspace_is_visible(ws));
|
|
|
|
|
|
|
|
|
|
ystr("focused");
|
|
|
|
|
y(bool, ws == focused_ws);
|
2011-02-21 00:54:29 +01:00
|
|
|
|
|
2011-02-21 01:55:36 +01:00
|
|
|
|
ystr("rect");
|
|
|
|
|
y(map_open);
|
|
|
|
|
ystr("x");
|
|
|
|
|
y(integer, ws->rect.x);
|
|
|
|
|
ystr("y");
|
|
|
|
|
y(integer, ws->rect.y);
|
|
|
|
|
ystr("width");
|
|
|
|
|
y(integer, ws->rect.width);
|
|
|
|
|
ystr("height");
|
|
|
|
|
y(integer, ws->rect.height);
|
|
|
|
|
y(map_close);
|
|
|
|
|
|
|
|
|
|
ystr("output");
|
|
|
|
|
ystr(output->name);
|
|
|
|
|
|
|
|
|
|
ystr("urgent");
|
|
|
|
|
y(bool, ws->urgent);
|
|
|
|
|
|
|
|
|
|
y(map_close);
|
2010-03-11 15:58:39 +01:00
|
|
|
|
}
|
2010-11-20 22:30:53 +01:00
|
|
|
|
}
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
y(array_close);
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
const unsigned char *payload;
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
size_t length;
|
|
|
|
|
#else
|
2010-11-20 22:30:53 +01:00
|
|
|
|
unsigned int length;
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-20 22:30:53 +01:00
|
|
|
|
y(get_buf, &payload, &length);
|
2010-03-11 15:58:39 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
ipc_send_message(fd, payload, I3_IPC_REPLY_TYPE_WORKSPACES, length);
|
|
|
|
|
y(free);
|
2010-03-11 15:58:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-19 22:24:52 +01:00
|
|
|
|
/*
|
|
|
|
|
* Formats the reply message for a GET_OUTPUTS request and sends it to the
|
|
|
|
|
* client
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
IPC_HANDLER(get_outputs) {
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
yajl_gen gen = yajl_gen_alloc(NULL);
|
|
|
|
|
#else
|
2010-11-20 22:30:53 +01:00
|
|
|
|
yajl_gen gen = yajl_gen_alloc(NULL, NULL);
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-20 22:30:53 +01:00
|
|
|
|
y(array_open);
|
2010-03-19 22:24:52 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
Output *output;
|
|
|
|
|
TAILQ_FOREACH(output, &outputs, outputs) {
|
|
|
|
|
y(map_open);
|
2010-03-19 22:24:52 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
ystr("name");
|
|
|
|
|
ystr(output->name);
|
2010-03-19 22:24:52 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
ystr("active");
|
|
|
|
|
y(bool, output->active);
|
2010-03-19 22:24:52 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
ystr("rect");
|
|
|
|
|
y(map_open);
|
|
|
|
|
ystr("x");
|
|
|
|
|
y(integer, output->rect.x);
|
|
|
|
|
ystr("y");
|
|
|
|
|
y(integer, output->rect.y);
|
|
|
|
|
ystr("width");
|
|
|
|
|
y(integer, output->rect.width);
|
|
|
|
|
ystr("height");
|
|
|
|
|
y(integer, output->rect.height);
|
|
|
|
|
y(map_close);
|
2010-03-19 22:24:52 +01:00
|
|
|
|
|
2010-11-20 22:30:53 +01:00
|
|
|
|
ystr("current_workspace");
|
2010-11-21 22:12:34 +01:00
|
|
|
|
Con *ws = NULL;
|
2011-06-10 18:27:20 +02:00
|
|
|
|
if (output->con && (ws = con_get_fullscreen_con(output->con, CF_OUTPUT)))
|
2010-11-21 22:12:34 +01:00
|
|
|
|
ystr(ws->name);
|
|
|
|
|
else y(null);
|
2010-11-20 22:30:53 +01:00
|
|
|
|
|
|
|
|
|
y(map_close);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
y(array_close);
|
|
|
|
|
|
|
|
|
|
const unsigned char *payload;
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
size_t length;
|
|
|
|
|
#else
|
2010-11-20 22:30:53 +01:00
|
|
|
|
unsigned int length;
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-20 22:30:53 +01:00
|
|
|
|
y(get_buf, &payload, &length);
|
|
|
|
|
|
|
|
|
|
ipc_send_message(fd, payload, I3_IPC_REPLY_TYPE_OUTPUTS, length);
|
|
|
|
|
y(free);
|
2010-03-19 22:24:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-07-28 20:51:29 +02:00
|
|
|
|
/*
|
2010-03-12 21:05:05 +01:00
|
|
|
|
* Callback for the YAJL parser (will be called when a string is parsed).
|
2009-07-28 20:51:29 +02:00
|
|
|
|
*
|
2010-03-12 21:05:05 +01:00
|
|
|
|
*/
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR < 2
|
2010-03-12 21:05:05 +01:00
|
|
|
|
static int add_subscription(void *extra, const unsigned char *s,
|
|
|
|
|
unsigned int len) {
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#else
|
|
|
|
|
static int add_subscription(void *extra, const unsigned char *s,
|
|
|
|
|
size_t len) {
|
|
|
|
|
#endif
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ipc_client *client = extra;
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
DLOG("should add subscription to extra %p, sub %.*s\n", client, len, s);
|
|
|
|
|
int event = client->num_events;
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
client->num_events++;
|
|
|
|
|
client->events = realloc(client->events, client->num_events * sizeof(char*));
|
|
|
|
|
/* We copy the string because it is not null-terminated and strndup()
|
|
|
|
|
* is missing on some BSD systems */
|
|
|
|
|
client->events[event] = scalloc(len+1);
|
|
|
|
|
memcpy(client->events[event], s, len);
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
DLOG("client is now subscribed to:\n");
|
|
|
|
|
for (int i = 0; i < client->num_events; i++)
|
|
|
|
|
DLOG("event %s\n", client->events[i]);
|
|
|
|
|
DLOG("(done)\n");
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
return 1;
|
2010-03-12 21:05:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Subscribes this connection to the event types which were given as a JSON
|
|
|
|
|
* serialized array in the payload field of the message.
|
2009-07-28 20:51:29 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-12 21:05:05 +01:00
|
|
|
|
IPC_HANDLER(subscribe) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
yajl_handle p;
|
|
|
|
|
yajl_callbacks callbacks;
|
|
|
|
|
yajl_status stat;
|
|
|
|
|
ipc_client *current, *client = NULL;
|
|
|
|
|
|
|
|
|
|
/* Search the ipc_client structure for this connection */
|
|
|
|
|
TAILQ_FOREACH(current, &all_clients, clients) {
|
|
|
|
|
if (current->fd != fd)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
client = current;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-03-12 15:29:44 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
if (client == NULL) {
|
|
|
|
|
ELOG("Could not find ipc_client data structure for fd %d\n", fd);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* Setup the JSON parser */
|
|
|
|
|
memset(&callbacks, 0, sizeof(yajl_callbacks));
|
|
|
|
|
callbacks.yajl_string = add_subscription;
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
p = yajl_alloc(&callbacks, NULL, (void*)client);
|
|
|
|
|
#else
|
2010-11-21 22:03:55 +01:00
|
|
|
|
p = yajl_alloc(&callbacks, NULL, NULL, (void*)client);
|
2011-04-27 19:52:53 +02:00
|
|
|
|
#endif
|
2010-11-21 22:03:55 +01:00
|
|
|
|
stat = yajl_parse(p, (const unsigned char*)message, message_size);
|
|
|
|
|
if (stat != yajl_status_ok) {
|
|
|
|
|
unsigned char *err;
|
|
|
|
|
err = yajl_get_error(p, true, (const unsigned char*)message,
|
|
|
|
|
message_size);
|
|
|
|
|
ELOG("YAJL parse error: %s\n", err);
|
|
|
|
|
yajl_free_error(p, err);
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
const char *reply = "{\"success\":false}";
|
2010-03-12 21:05:05 +01:00
|
|
|
|
ipc_send_message(fd, (const unsigned char*)reply,
|
|
|
|
|
I3_IPC_REPLY_TYPE_SUBSCRIBE, strlen(reply));
|
2010-11-21 22:03:55 +01:00
|
|
|
|
yajl_free(p);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
yajl_free(p);
|
|
|
|
|
const char *reply = "{\"success\":true}";
|
|
|
|
|
ipc_send_message(fd, (const unsigned char*)reply,
|
|
|
|
|
I3_IPC_REPLY_TYPE_SUBSCRIBE, strlen(reply));
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-19 22:24:52 +01:00
|
|
|
|
/* The index of each callback function corresponds to the numeric
|
|
|
|
|
* value of the message type (see include/i3/ipc.h) */
|
2010-11-20 22:30:53 +01:00
|
|
|
|
handler_t handlers[5] = {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
handle_command,
|
|
|
|
|
handle_get_workspaces,
|
|
|
|
|
handle_subscribe,
|
|
|
|
|
handle_get_outputs,
|
|
|
|
|
handle_tree
|
2010-03-12 21:05:05 +01:00
|
|
|
|
};
|
|
|
|
|
|
2009-07-28 20:51:29 +02:00
|
|
|
|
/*
|
|
|
|
|
* Handler for activity on a client connection, receives a message from a
|
|
|
|
|
* client.
|
|
|
|
|
*
|
|
|
|
|
* For now, the maximum message size is 2048. I’m not sure for what the
|
|
|
|
|
* IPC interface will be used in the future, thus I’m not implementing a
|
|
|
|
|
* mechanism for arbitrarily long messages, as it seems like overkill
|
|
|
|
|
* at the moment.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void ipc_receive_message(EV_P_ struct ev_io *w, int revents) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
char buf[2048];
|
|
|
|
|
int n = read(w->fd, buf, sizeof(buf));
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* On error or an empty message, we close the connection */
|
|
|
|
|
if (n <= 0) {
|
2009-07-28 20:51:29 +02:00
|
|
|
|
#if 0
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* FIXME: I get these when closing a client socket,
|
|
|
|
|
* therefore we just treat them as an error. Is this
|
|
|
|
|
* correct? */
|
|
|
|
|
if (errno == EAGAIN || errno == EWOULDBLOCK)
|
|
|
|
|
return;
|
2009-07-28 20:51:29 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* If not, there was some kind of error. We don’t bother
|
|
|
|
|
* and close the connection */
|
|
|
|
|
close(w->fd);
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* Delete the client from the list of clients */
|
|
|
|
|
ipc_client *current;
|
|
|
|
|
TAILQ_FOREACH(current, &all_clients, clients) {
|
|
|
|
|
if (current->fd != w->fd)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < current->num_events; i++)
|
|
|
|
|
free(current->events[i]);
|
|
|
|
|
/* We can call TAILQ_REMOVE because we break out of the
|
|
|
|
|
* TAILQ_FOREACH afterwards */
|
|
|
|
|
TAILQ_REMOVE(&all_clients, current, clients);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ev_io_stop(EV_A_ w);
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
DLOG("IPC: client disconnected\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* Terminate the message correctly */
|
|
|
|
|
buf[n] = '\0';
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* Check if the message starts with the i3 IPC magic code */
|
|
|
|
|
if (n < strlen(I3_IPC_MAGIC)) {
|
|
|
|
|
DLOG("IPC: message too short, ignoring\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
if (strncmp(buf, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC)) != 0) {
|
|
|
|
|
DLOG("IPC: message does not start with the IPC magic\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
uint8_t *message = (uint8_t*)buf;
|
|
|
|
|
while (n > 0) {
|
|
|
|
|
DLOG("IPC: n = %d\n", n);
|
|
|
|
|
message += strlen(I3_IPC_MAGIC);
|
|
|
|
|
n -= strlen(I3_IPC_MAGIC);
|
|
|
|
|
|
|
|
|
|
/* The next 32 bit after the magic are the message size */
|
2011-04-28 21:44:29 +02:00
|
|
|
|
uint32_t message_size;
|
|
|
|
|
memcpy(&message_size, (uint32_t*)message, sizeof(uint32_t));
|
2010-11-21 22:03:55 +01:00
|
|
|
|
message += sizeof(uint32_t);
|
|
|
|
|
n -= sizeof(uint32_t);
|
|
|
|
|
|
|
|
|
|
if (message_size > n) {
|
|
|
|
|
DLOG("IPC: Either the message size was wrong or the message was not read completely, dropping\n");
|
|
|
|
|
return;
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* The last 32 bits of the header are the message type */
|
2011-04-28 21:44:29 +02:00
|
|
|
|
uint32_t message_type;
|
|
|
|
|
memcpy(&message_type, (uint32_t*)message, sizeof(uint32_t));
|
2010-11-21 22:03:55 +01:00
|
|
|
|
message += sizeof(uint32_t);
|
|
|
|
|
n -= sizeof(uint32_t);
|
|
|
|
|
|
|
|
|
|
if (message_type >= (sizeof(handlers) / sizeof(handler_t)))
|
|
|
|
|
DLOG("Unhandled message type: %d\n", message_type);
|
|
|
|
|
else {
|
|
|
|
|
handler_t h = handlers[message_type];
|
|
|
|
|
h(w->fd, message, n, message_size, message_type);
|
2009-10-07 21:49:24 +02:00
|
|
|
|
}
|
2010-11-21 22:03:55 +01:00
|
|
|
|
n -= message_size;
|
|
|
|
|
message += message_size;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Handler for activity on the listening socket, meaning that a new client
|
|
|
|
|
* has just connected and we should accept() him. Sets up the event handler
|
|
|
|
|
* for activity on the new connection and inserts the file descriptor into
|
|
|
|
|
* the list of clients.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void ipc_new_client(EV_P_ struct ev_io *w, int revents) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
struct sockaddr_un peer;
|
|
|
|
|
socklen_t len = sizeof(struct sockaddr_un);
|
|
|
|
|
int client;
|
|
|
|
|
if ((client = accept(w->fd, (struct sockaddr*)&peer, &len)) < 0) {
|
|
|
|
|
if (errno == EINTR)
|
|
|
|
|
return;
|
|
|
|
|
else perror("accept()");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
set_nonblock(client);
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
struct ev_io *package = scalloc(sizeof(struct ev_io));
|
|
|
|
|
ev_io_init(package, ipc_receive_message, client, EV_READ);
|
|
|
|
|
ev_io_start(EV_A_ package);
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
DLOG("IPC: new client connected\n");
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
ipc_client *new = scalloc(sizeof(ipc_client));
|
|
|
|
|
new->fd = client;
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
TAILQ_INSERT_TAIL(&all_clients, new, clients);
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Creates the UNIX domain socket at the given path, sets it to non-blocking
|
|
|
|
|
* mode, bind()s and listen()s on it.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
int ipc_create_socket(const char *filename) {
|
2010-11-21 22:03:55 +01:00
|
|
|
|
int sockfd;
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2011-03-20 15:34:34 +01:00
|
|
|
|
FREE(current_socketpath);
|
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
char *resolved = resolve_tilde(filename);
|
|
|
|
|
DLOG("Creating IPC-socket at %s\n", resolved);
|
|
|
|
|
char *copy = sstrdup(resolved);
|
|
|
|
|
const char *dir = dirname(copy);
|
|
|
|
|
if (!path_exists(dir))
|
|
|
|
|
mkdirp(dir);
|
|
|
|
|
free(copy);
|
2010-01-23 00:34:29 +01:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
/* Unlink the unix domain socket before */
|
|
|
|
|
unlink(resolved);
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
if ((sockfd = socket(AF_LOCAL, SOCK_STREAM, 0)) < 0) {
|
|
|
|
|
perror("socket()");
|
2010-11-15 02:01:04 +01:00
|
|
|
|
free(resolved);
|
2010-11-21 22:03:55 +01:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2010-11-21 22:03:55 +01:00
|
|
|
|
(void)fcntl(sockfd, F_SETFD, FD_CLOEXEC);
|
|
|
|
|
|
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
|
memset(&addr, 0, sizeof(struct sockaddr_un));
|
|
|
|
|
addr.sun_family = AF_LOCAL;
|
|
|
|
|
strncpy(addr.sun_path, resolved, sizeof(addr.sun_path) - 1);
|
|
|
|
|
if (bind(sockfd, (struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0) {
|
|
|
|
|
perror("bind()");
|
|
|
|
|
free(resolved);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set_nonblock(sockfd);
|
|
|
|
|
|
|
|
|
|
if (listen(sockfd, 5) < 0) {
|
|
|
|
|
perror("listen()");
|
2011-03-20 15:34:34 +01:00
|
|
|
|
free(resolved);
|
2010-11-21 22:03:55 +01:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2009-07-28 20:51:29 +02:00
|
|
|
|
|
2011-03-20 15:34:34 +01:00
|
|
|
|
current_socketpath = resolved;
|
2010-11-21 22:03:55 +01:00
|
|
|
|
return sockfd;
|
2009-07-28 20:51:29 +02:00
|
|
|
|
}
|