2015-08-18 23:35:01 +00:00
|
|
|
// See https://i3wm.org/docs/ipc.html for protocol information
|
|
|
|
|
2015-08-16 18:24:18 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2015-08-16 20:02:16 +00:00
|
|
|
#include <stdbool.h>
|
2016-02-08 11:06:33 +00:00
|
|
|
#include <wlc/wlc-render.h>
|
2015-08-16 18:24:18 +00:00
|
|
|
#include <unistd.h>
|
2015-08-16 20:02:16 +00:00
|
|
|
#include <stdlib.h>
|
2015-08-18 23:35:01 +00:00
|
|
|
#include <sys/ioctl.h>
|
2015-08-20 12:49:54 +00:00
|
|
|
#include <fcntl.h>
|
2015-08-26 21:49:38 +00:00
|
|
|
#include <json-c/json.h>
|
2015-10-27 20:59:17 +00:00
|
|
|
#include <list.h>
|
2016-01-17 10:53:37 +00:00
|
|
|
#include <libinput.h>
|
2016-07-04 18:34:44 +00:00
|
|
|
#include "ipc-json.h"
|
2015-11-27 14:50:04 +00:00
|
|
|
#include "ipc-server.h"
|
2015-08-16 18:24:18 +00:00
|
|
|
#include "log.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "commands.h"
|
2015-08-20 19:08:13 +00:00
|
|
|
#include "list.h"
|
|
|
|
#include "stringop.h"
|
2016-01-05 17:07:43 +00:00
|
|
|
#include "util.h"
|
2016-01-17 10:53:37 +00:00
|
|
|
#include "input.h"
|
2015-08-16 18:24:18 +00:00
|
|
|
|
|
|
|
static int ipc_socket = -1;
|
2015-08-18 23:52:46 +00:00
|
|
|
static struct wlc_event_source *ipc_event_source = NULL;
|
2015-10-16 08:55:54 +00:00
|
|
|
static struct sockaddr_un *ipc_sockaddr = NULL;
|
2015-10-27 20:59:17 +00:00
|
|
|
static list_t *ipc_client_list = NULL;
|
2015-08-16 18:24:18 +00:00
|
|
|
|
2015-08-16 20:02:16 +00:00
|
|
|
static const char ipc_magic[] = {'i', '3', '-', 'i', 'p', 'c'};
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
struct ipc_client {
|
|
|
|
struct wlc_event_source *event_source;
|
|
|
|
int fd;
|
|
|
|
uint32_t payload_length;
|
|
|
|
enum ipc_command_type current_command;
|
2015-10-27 20:59:17 +00:00
|
|
|
enum ipc_command_type subscribed_events;
|
2015-08-18 23:35:01 +00:00
|
|
|
};
|
2015-08-16 20:02:16 +00:00
|
|
|
|
2016-02-08 11:06:33 +00:00
|
|
|
static list_t *ipc_get_pixel_requests = NULL;
|
|
|
|
|
|
|
|
struct get_pixels_request {
|
|
|
|
struct ipc_client *client;
|
|
|
|
wlc_handle output;
|
|
|
|
};
|
|
|
|
|
2015-10-16 08:55:54 +00:00
|
|
|
struct sockaddr_un *ipc_user_sockaddr(void);
|
2015-08-18 23:35:01 +00:00
|
|
|
int ipc_handle_connection(int fd, uint32_t mask, void *data);
|
|
|
|
int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data);
|
|
|
|
void ipc_client_disconnect(struct ipc_client *client);
|
|
|
|
void ipc_client_handle_command(struct ipc_client *client);
|
|
|
|
bool ipc_send_reply(struct ipc_client *client, const char *payload, uint32_t payload_length);
|
2015-08-26 22:41:07 +00:00
|
|
|
void ipc_get_workspaces_callback(swayc_t *workspace, void *data);
|
2015-08-20 19:08:13 +00:00
|
|
|
void ipc_get_outputs_callback(swayc_t *container, void *data);
|
|
|
|
|
2015-08-18 23:52:46 +00:00
|
|
|
void ipc_init(void) {
|
2015-08-16 18:24:18 +00:00
|
|
|
ipc_socket = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, 0);
|
|
|
|
if (ipc_socket == -1) {
|
|
|
|
sway_abort("Unable to create IPC socket");
|
|
|
|
}
|
|
|
|
|
2015-10-16 08:55:54 +00:00
|
|
|
ipc_sockaddr = ipc_user_sockaddr();
|
|
|
|
|
2015-11-13 16:53:46 +00:00
|
|
|
// We want to use socket name set by user, not existing socket from another sway instance.
|
|
|
|
if (getenv("SWAYSOCK") != NULL && access(getenv("SWAYSOCK"), F_OK) == -1) {
|
2015-10-16 08:55:54 +00:00
|
|
|
strncpy(ipc_sockaddr->sun_path, getenv("SWAYSOCK"), sizeof(ipc_sockaddr->sun_path));
|
2016-05-02 10:24:00 +00:00
|
|
|
ipc_sockaddr->sun_path[sizeof(ipc_sockaddr->sun_path) - 1] = 0;
|
2015-08-18 23:40:49 +00:00
|
|
|
}
|
|
|
|
|
2015-10-16 08:55:54 +00:00
|
|
|
unlink(ipc_sockaddr->sun_path);
|
|
|
|
if (bind(ipc_socket, (struct sockaddr *)ipc_sockaddr, sizeof(*ipc_sockaddr)) == -1) {
|
2015-08-16 18:24:18 +00:00
|
|
|
sway_abort("Unable to bind IPC socket");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen(ipc_socket, 3) == -1) {
|
|
|
|
sway_abort("Unable to listen on IPC socket");
|
|
|
|
}
|
|
|
|
|
2015-08-20 13:22:38 +00:00
|
|
|
// Set i3 IPC socket path so that i3-msg works out of the box
|
2015-11-26 21:49:36 +00:00
|
|
|
setenv("I3SOCK", ipc_sockaddr->sun_path, 1);
|
|
|
|
setenv("SWAYSOCK", ipc_sockaddr->sun_path, 1);
|
2015-08-20 13:22:38 +00:00
|
|
|
|
2015-10-27 20:59:17 +00:00
|
|
|
ipc_client_list = create_list();
|
2016-02-08 11:06:33 +00:00
|
|
|
ipc_get_pixel_requests = create_list();
|
2015-10-27 20:59:17 +00:00
|
|
|
|
2015-08-18 23:52:46 +00:00
|
|
|
ipc_event_source = wlc_event_loop_add_fd(ipc_socket, WLC_EVENT_READABLE, ipc_handle_connection, NULL);
|
|
|
|
}
|
|
|
|
|
2015-08-20 13:12:34 +00:00
|
|
|
void ipc_terminate(void) {
|
2015-08-18 23:52:46 +00:00
|
|
|
if (ipc_event_source) {
|
|
|
|
wlc_event_source_remove(ipc_event_source);
|
|
|
|
}
|
|
|
|
close(ipc_socket);
|
2015-10-16 08:55:54 +00:00
|
|
|
unlink(ipc_sockaddr->sun_path);
|
2015-10-16 10:02:41 +00:00
|
|
|
|
2015-10-27 20:59:17 +00:00
|
|
|
list_free(ipc_client_list);
|
|
|
|
|
2015-10-16 10:02:41 +00:00
|
|
|
if (ipc_sockaddr) {
|
|
|
|
free(ipc_sockaddr);
|
|
|
|
}
|
2015-10-16 08:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct sockaddr_un *ipc_user_sockaddr(void) {
|
2015-10-16 11:06:30 +00:00
|
|
|
struct sockaddr_un *ipc_sockaddr = malloc(sizeof(struct sockaddr_un));
|
2015-10-16 11:21:34 +00:00
|
|
|
if (ipc_sockaddr == NULL) {
|
|
|
|
sway_abort("can't malloc ipc_sockaddr");
|
2015-10-16 11:04:46 +00:00
|
|
|
}
|
2015-10-16 08:55:54 +00:00
|
|
|
|
2015-10-16 11:06:30 +00:00
|
|
|
ipc_sockaddr->sun_family = AF_UNIX;
|
|
|
|
int path_size = sizeof(ipc_sockaddr->sun_path);
|
2015-10-16 09:42:20 +00:00
|
|
|
|
2015-11-12 16:19:58 +00:00
|
|
|
// Env var typically set by logind, e.g. "/run/user/<user-id>"
|
|
|
|
const char *dir = getenv("XDG_RUNTIME_DIR");
|
|
|
|
if (!dir) {
|
|
|
|
dir = "/tmp";
|
|
|
|
}
|
|
|
|
if (path_size <= snprintf(ipc_sockaddr->sun_path, path_size,
|
|
|
|
"%s/sway-ipc.%i.%i.sock", dir, getuid(), getpid())) {
|
2015-10-16 11:21:34 +00:00
|
|
|
sway_abort("socket path won't fit into ipc_sockaddr->sun_path");
|
2015-10-16 11:04:46 +00:00
|
|
|
}
|
2015-10-16 08:55:54 +00:00
|
|
|
|
2015-10-16 11:06:30 +00:00
|
|
|
return ipc_sockaddr;
|
2015-08-16 18:24:18 +00:00
|
|
|
}
|
|
|
|
|
2015-08-16 20:02:16 +00:00
|
|
|
int ipc_handle_connection(int fd, uint32_t mask, void *data) {
|
2015-08-18 23:52:46 +00:00
|
|
|
(void) fd; (void) data;
|
2015-08-16 20:02:16 +00:00
|
|
|
sway_log(L_DEBUG, "Event on IPC listening socket");
|
2015-08-18 23:35:01 +00:00
|
|
|
assert(mask == WLC_EVENT_READABLE);
|
2015-08-16 18:24:18 +00:00
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
int client_fd = accept(ipc_socket, NULL, NULL);
|
|
|
|
if (client_fd == -1) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to accept IPC client connection");
|
2015-08-16 18:24:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-20 12:49:54 +00:00
|
|
|
int flags;
|
|
|
|
if ((flags=fcntl(client_fd, F_GETFD)) == -1 || fcntl(client_fd, F_SETFD, flags|FD_CLOEXEC) == -1) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to set CLOEXEC on IPC client socket");
|
2016-05-02 14:49:33 +00:00
|
|
|
close(client_fd);
|
2015-08-20 12:49:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
struct ipc_client* client = malloc(sizeof(struct ipc_client));
|
|
|
|
client->payload_length = 0;
|
|
|
|
client->fd = client_fd;
|
|
|
|
client->event_source = wlc_event_loop_add_fd(client_fd, WLC_EVENT_READABLE, ipc_client_handle_readable, client);
|
2015-08-16 18:24:18 +00:00
|
|
|
|
2015-10-27 20:59:17 +00:00
|
|
|
list_add(ipc_client_list, client);
|
|
|
|
|
2015-08-16 18:24:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2015-08-16 20:02:16 +00:00
|
|
|
|
|
|
|
static const int ipc_header_size = sizeof(ipc_magic)+8;
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data) {
|
|
|
|
struct ipc_client *client = data;
|
2015-08-16 20:02:16 +00:00
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
if (mask & WLC_EVENT_ERROR) {
|
|
|
|
sway_log(L_INFO, "IPC Client socket error, removing client");
|
2015-10-27 20:59:17 +00:00
|
|
|
client->fd = -1;
|
2015-08-18 23:35:01 +00:00
|
|
|
ipc_client_disconnect(client);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mask & WLC_EVENT_HANGUP) {
|
2015-10-27 20:59:17 +00:00
|
|
|
client->fd = -1;
|
2015-08-18 23:35:01 +00:00
|
|
|
ipc_client_disconnect(client);
|
|
|
|
return 0;
|
2015-08-16 20:02:16 +00:00
|
|
|
}
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
int read_available;
|
2015-08-21 14:53:11 +00:00
|
|
|
if (ioctl(client_fd, FIONREAD, &read_available) == -1) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to read IPC socket buffer size");
|
|
|
|
ipc_client_disconnect(client);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-08-18 23:35:01 +00:00
|
|
|
|
|
|
|
// Wait for the rest of the command payload in case the header has already been read
|
|
|
|
if (client->payload_length > 0) {
|
2015-08-21 14:53:11 +00:00
|
|
|
if ((uint32_t)read_available >= client->payload_length) {
|
2015-08-18 23:35:01 +00:00
|
|
|
ipc_client_handle_command(client);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read_available < ipc_header_size) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-11 13:43:36 +00:00
|
|
|
uint8_t buf[ipc_header_size];
|
|
|
|
uint32_t *buf32 = (uint32_t*)(buf + sizeof(ipc_magic));
|
2015-08-18 23:35:01 +00:00
|
|
|
ssize_t received = recv(client_fd, buf, ipc_header_size, 0);
|
|
|
|
if (received == -1) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to receive header from IPC client");
|
|
|
|
ipc_client_disconnect(client);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (memcmp(buf, ipc_magic, sizeof(ipc_magic)) != 0) {
|
2015-08-16 20:02:16 +00:00
|
|
|
sway_log(L_DEBUG, "IPC header check failed");
|
2015-08-18 23:35:01 +00:00
|
|
|
ipc_client_disconnect(client);
|
|
|
|
return 0;
|
2015-08-16 20:02:16 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 13:43:36 +00:00
|
|
|
client->payload_length = buf32[0];
|
|
|
|
client->current_command = (enum ipc_command_type)buf32[1];
|
2015-08-16 20:02:16 +00:00
|
|
|
|
2016-04-17 14:26:26 +00:00
|
|
|
if (read_available - received >= (long)client->payload_length) {
|
2015-08-18 23:35:01 +00:00
|
|
|
ipc_client_handle_command(client);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ipc_client_disconnect(struct ipc_client *client)
|
|
|
|
{
|
|
|
|
if (!sway_assert(client != NULL, "client != NULL")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-27 20:59:17 +00:00
|
|
|
if (client->fd != -1) {
|
|
|
|
shutdown(client->fd, SHUT_RDWR);
|
|
|
|
}
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
sway_log(L_INFO, "IPC Client %d disconnected", client->fd);
|
|
|
|
wlc_event_source_remove(client->event_source);
|
2015-10-27 20:59:17 +00:00
|
|
|
int i = 0;
|
|
|
|
while (i < ipc_client_list->length && ipc_client_list->items[i] != client) i++;
|
|
|
|
list_del(ipc_client_list, i);
|
2015-08-18 23:35:01 +00:00
|
|
|
close(client->fd);
|
|
|
|
free(client);
|
|
|
|
}
|
|
|
|
|
2015-11-12 17:37:23 +00:00
|
|
|
bool output_by_name_test(swayc_t *view, void *data) {
|
|
|
|
char *name = (char *)data;
|
|
|
|
if (view->type != C_OUTPUT) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return !strcmp(name, view->name);
|
|
|
|
}
|
|
|
|
|
2016-02-08 11:06:33 +00:00
|
|
|
void ipc_get_pixels(wlc_handle output) {
|
|
|
|
if (ipc_get_pixel_requests->length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_t *unhandled = create_list();
|
|
|
|
|
|
|
|
struct get_pixels_request *req;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < ipc_get_pixel_requests->length; ++i) {
|
|
|
|
req = ipc_get_pixel_requests->items[i];
|
|
|
|
if (req->output != output) {
|
|
|
|
list_add(unhandled, req);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct wlc_size *size = wlc_output_get_resolution(req->output);
|
|
|
|
struct wlc_geometry g = {
|
|
|
|
.size = *size,
|
|
|
|
.origin = { 0, 0 },
|
|
|
|
};
|
|
|
|
struct wlc_geometry g_out;
|
|
|
|
char response_header[9];
|
|
|
|
memset(response_header, 0, sizeof(response_header));
|
|
|
|
char *data = malloc(sizeof(response_header) + size->w * size->h * 4);
|
|
|
|
wlc_pixels_read(WLC_RGBA8888, &g, &g_out, data + sizeof(response_header));
|
|
|
|
|
|
|
|
response_header[0] = 1;
|
|
|
|
uint32_t *_size = (uint32_t *)(response_header + 1);
|
|
|
|
_size[0] = g_out.size.w;
|
|
|
|
_size[1] = g_out.size.h;
|
|
|
|
size_t len = sizeof(response_header) + (g_out.size.w * g_out.size.h * 4);
|
|
|
|
memcpy(data, response_header, sizeof(response_header));
|
|
|
|
ipc_send_reply(req->client, data, len);
|
|
|
|
free(data);
|
|
|
|
// free the request since it has been handled
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
// free old list of pixel requests and set new list to all unhandled
|
|
|
|
// requests (request for another output).
|
|
|
|
list_free(ipc_get_pixel_requests);
|
|
|
|
ipc_get_pixel_requests = unhandled;
|
2015-11-12 17:37:23 +00:00
|
|
|
}
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
void ipc_client_handle_command(struct ipc_client *client) {
|
|
|
|
if (!sway_assert(client != NULL, "client != NULL")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-12 17:37:23 +00:00
|
|
|
char *buf = malloc(client->payload_length + 1);
|
2016-05-02 20:32:20 +00:00
|
|
|
if (!buf) {
|
|
|
|
sway_log_errno(L_INFO, "Out of memory");
|
|
|
|
ipc_client_disconnect(client);
|
|
|
|
return;
|
|
|
|
}
|
2015-08-18 23:35:01 +00:00
|
|
|
if (client->payload_length > 0)
|
|
|
|
{
|
|
|
|
ssize_t received = recv(client->fd, buf, client->payload_length, 0);
|
|
|
|
if (received == -1)
|
|
|
|
{
|
|
|
|
sway_log_errno(L_INFO, "Unable to receive payload from IPC client");
|
|
|
|
ipc_client_disconnect(client);
|
2015-11-12 17:37:23 +00:00
|
|
|
free(buf);
|
2015-08-18 23:35:01 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-08-16 20:02:16 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
buf[client->payload_length] = '\0';
|
2015-08-16 20:02:16 +00:00
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
switch (client->current_command) {
|
2015-08-20 13:15:04 +00:00
|
|
|
case IPC_COMMAND:
|
|
|
|
{
|
2015-10-22 12:14:13 +00:00
|
|
|
struct cmd_results *results = handle_command(buf);
|
|
|
|
const char *json = cmd_results_to_json(results);
|
|
|
|
char reply[256];
|
|
|
|
int length = snprintf(reply, sizeof(reply), "%s", json);
|
2015-08-20 13:15:04 +00:00
|
|
|
ipc_send_reply(client, reply, (uint32_t) length);
|
2015-10-22 12:14:13 +00:00
|
|
|
free_cmd_results(results);
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-08-20 13:15:04 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2015-10-27 20:59:17 +00:00
|
|
|
case IPC_SUBSCRIBE:
|
|
|
|
{
|
|
|
|
struct json_object *request = json_tokener_parse(buf);
|
|
|
|
if (request == NULL) {
|
|
|
|
ipc_send_reply(client, "{\"success\": false}", 18);
|
2016-05-02 20:32:20 +00:00
|
|
|
sway_log_errno(L_INFO, "Failed to read request");
|
|
|
|
goto exit_cleanup;
|
2015-10-27 20:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse requested event types
|
|
|
|
for (int i = 0; i < json_object_array_length(request); i++) {
|
|
|
|
const char *event_type = json_object_get_string(json_object_array_get_idx(request, i));
|
|
|
|
if (strcmp(event_type, "workspace") == 0) {
|
2016-01-03 19:37:10 +00:00
|
|
|
client->subscribed_events |= IPC_EVENT_WORKSPACE;
|
2015-12-21 14:28:34 +00:00
|
|
|
} else if (strcmp(event_type, "barconfig_update") == 0) {
|
2016-01-03 19:37:10 +00:00
|
|
|
client->subscribed_events |= IPC_EVENT_BARCONFIG_UPDATE;
|
2016-01-03 21:00:59 +00:00
|
|
|
} else if (strcmp(event_type, "mode") == 0) {
|
|
|
|
client->subscribed_events |= IPC_EVENT_MODE;
|
2016-07-12 13:58:24 +00:00
|
|
|
} else if (strcmp(event_type, "window") == 0) {
|
|
|
|
client->subscribed_events |= IPC_EVENT_WINDOW;
|
2016-01-05 01:20:20 +00:00
|
|
|
} else if (strcmp(event_type, "modifier") == 0) {
|
|
|
|
client->subscribed_events |= IPC_EVENT_MODIFIER;
|
2016-01-08 13:41:09 +00:00
|
|
|
#if SWAY_BINDING_EVENT
|
2016-01-06 16:01:45 +00:00
|
|
|
} else if (strcmp(event_type, "binding") == 0) {
|
|
|
|
client->subscribed_events |= IPC_EVENT_BINDING;
|
2016-01-08 13:41:09 +00:00
|
|
|
#endif
|
2015-12-21 14:28:34 +00:00
|
|
|
} else {
|
2015-10-27 20:59:17 +00:00
|
|
|
ipc_send_reply(client, "{\"success\": false}", 18);
|
|
|
|
json_object_put(request);
|
2016-05-02 20:32:20 +00:00
|
|
|
sway_log_errno(L_INFO, "Failed to parse request");
|
|
|
|
goto exit_cleanup;
|
2015-10-27 20:59:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
json_object_put(request);
|
|
|
|
|
|
|
|
ipc_send_reply(client, "{\"success\": true}", 17);
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-10-27 20:59:17 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2015-08-20 19:08:13 +00:00
|
|
|
case IPC_GET_WORKSPACES:
|
|
|
|
{
|
2015-08-26 22:41:07 +00:00
|
|
|
json_object *workspaces = json_object_new_array();
|
2015-09-13 23:46:16 +00:00
|
|
|
container_map(&root_container, ipc_get_workspaces_callback, workspaces);
|
2015-08-26 22:41:07 +00:00
|
|
|
const char *json_string = json_object_to_json_string(workspaces);
|
|
|
|
ipc_send_reply(client, json_string, (uint32_t) strlen(json_string));
|
|
|
|
json_object_put(workspaces); // free
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-08-20 19:08:13 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2016-01-17 10:53:37 +00:00
|
|
|
case IPC_GET_INPUTS:
|
|
|
|
{
|
|
|
|
json_object *inputs = json_object_new_array();
|
|
|
|
if (input_devices) {
|
|
|
|
for(int i=0; i<input_devices->length; i++) {
|
|
|
|
struct libinput_device *device = input_devices->items[i];
|
|
|
|
char* identifier = libinput_dev_unique_id(device);
|
|
|
|
json_object *device_object = json_object_new_object();
|
|
|
|
json_object_object_add(device_object, "identifier", json_object_new_string(identifier));
|
|
|
|
json_object_array_add(inputs, device_object);
|
|
|
|
free(identifier);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char *json_string = json_object_to_json_string(inputs);
|
|
|
|
ipc_send_reply(client, json_string, (uint32_t) strlen(json_string));
|
|
|
|
json_object_put(inputs);
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2016-01-17 10:53:37 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2015-08-20 19:08:13 +00:00
|
|
|
case IPC_GET_OUTPUTS:
|
|
|
|
{
|
2015-08-26 22:41:07 +00:00
|
|
|
json_object *outputs = json_object_new_array();
|
2015-09-13 23:46:16 +00:00
|
|
|
container_map(&root_container, ipc_get_outputs_callback, outputs);
|
2015-08-26 22:41:07 +00:00
|
|
|
const char *json_string = json_object_to_json_string(outputs);
|
|
|
|
ipc_send_reply(client, json_string, (uint32_t) strlen(json_string));
|
|
|
|
json_object_put(outputs); // free
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-08-20 19:08:13 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2016-07-04 18:34:44 +00:00
|
|
|
case IPC_GET_TREE:
|
|
|
|
{
|
|
|
|
json_object *tree = ipc_json_describe_container_recursive(&root_container);
|
|
|
|
const char *json_string = json_object_to_json_string(tree);
|
|
|
|
ipc_send_reply(client, json_string, (uint32_t) strlen(json_string));
|
|
|
|
json_object_put(tree);
|
|
|
|
goto exit_cleanup;
|
|
|
|
}
|
|
|
|
|
2015-08-26 21:49:38 +00:00
|
|
|
case IPC_GET_VERSION:
|
|
|
|
{
|
2016-07-04 18:34:44 +00:00
|
|
|
json_object *version = ipc_json_get_version();
|
|
|
|
const char *json_string = json_object_to_json_string(version);
|
2015-12-15 13:25:53 +00:00
|
|
|
ipc_send_reply(client, json_string, (uint32_t)strlen(json_string));
|
2016-07-04 18:34:44 +00:00
|
|
|
json_object_put(version); // free
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-08-26 21:49:38 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2015-11-12 17:37:23 +00:00
|
|
|
case IPC_SWAY_GET_PIXELS:
|
|
|
|
{
|
|
|
|
char response_header[9];
|
|
|
|
memset(response_header, 0, sizeof(response_header));
|
|
|
|
swayc_t *output = swayc_by_test(&root_container, output_by_name_test, buf);
|
|
|
|
if (!output) {
|
|
|
|
sway_log(L_ERROR, "IPC GET_PIXELS request with unknown output name");
|
|
|
|
ipc_send_reply(client, response_header, sizeof(response_header));
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-11-12 17:37:23 +00:00
|
|
|
}
|
2016-02-08 11:06:33 +00:00
|
|
|
struct get_pixels_request *req = malloc(sizeof(struct get_pixels_request));
|
|
|
|
req->client = client;
|
|
|
|
req->output = output->handle;
|
|
|
|
list_add(ipc_get_pixel_requests, req);
|
|
|
|
wlc_output_schedule_render(output->handle);
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-11-12 17:37:23 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2015-12-15 13:25:53 +00:00
|
|
|
case IPC_GET_BAR_CONFIG:
|
|
|
|
{
|
|
|
|
if (!buf[0]) {
|
|
|
|
// Send list of configured bar IDs
|
|
|
|
json_object *bars = json_object_new_array();
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
struct bar_config *bar = config->bars->items[i];
|
|
|
|
json_object_array_add(bars, json_object_new_string(bar->id));
|
|
|
|
}
|
|
|
|
const char *json_string = json_object_to_json_string(bars);
|
|
|
|
ipc_send_reply(client, json_string, (uint32_t)strlen(json_string));
|
|
|
|
json_object_put(bars); // free
|
|
|
|
} else {
|
|
|
|
// Send particular bar's details
|
|
|
|
struct bar_config *bar = NULL;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
bar = config->bars->items[i];
|
|
|
|
if (strcmp(buf, bar->id) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bar = NULL;
|
|
|
|
}
|
|
|
|
if (!bar) {
|
|
|
|
const char *error = "{ \"success\": false, \"error\": \"No bar with that ID\" }";
|
|
|
|
ipc_send_reply(client, error, (uint32_t)strlen(error));
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-12-15 13:25:53 +00:00
|
|
|
}
|
2015-12-21 14:28:34 +00:00
|
|
|
json_object *json = ipc_json_describe_bar_config(bar);
|
2015-12-15 13:25:53 +00:00
|
|
|
const char *json_string = json_object_to_json_string(json);
|
|
|
|
ipc_send_reply(client, json_string, (uint32_t)strlen(json_string));
|
|
|
|
json_object_put(json); // free
|
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-12-15 13:25:53 +00:00
|
|
|
}
|
2016-05-02 20:32:20 +00:00
|
|
|
|
2015-08-20 13:15:04 +00:00
|
|
|
default:
|
|
|
|
sway_log(L_INFO, "Unknown IPC command type %i", client->current_command);
|
2016-05-02 20:32:20 +00:00
|
|
|
goto exit_cleanup;
|
2015-08-16 20:02:16 +00:00
|
|
|
}
|
2015-08-18 23:35:01 +00:00
|
|
|
|
2016-05-02 20:32:20 +00:00
|
|
|
exit_cleanup:
|
2016-05-31 14:25:54 +00:00
|
|
|
client->payload_length = 0;
|
2015-11-12 17:37:23 +00:00
|
|
|
free(buf);
|
2016-05-02 20:32:20 +00:00
|
|
|
return;
|
2015-08-16 20:02:16 +00:00
|
|
|
}
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
bool ipc_send_reply(struct ipc_client *client, const char *payload, uint32_t payload_length) {
|
2015-08-16 20:02:16 +00:00
|
|
|
assert(payload);
|
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
char data[ipc_header_size];
|
2015-11-11 13:43:36 +00:00
|
|
|
uint32_t *data32 = (uint32_t*)(data + sizeof(ipc_magic));
|
2015-08-16 20:02:16 +00:00
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
memcpy(data, ipc_magic, sizeof(ipc_magic));
|
2015-11-11 13:43:36 +00:00
|
|
|
data32[0] = payload_length;
|
|
|
|
data32[1] = client->current_command;
|
2015-08-18 23:35:01 +00:00
|
|
|
|
|
|
|
if (write(client->fd, data, ipc_header_size) == -1) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to send header to IPC client");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (write(client->fd, payload, payload_length) == -1) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to send payload to IPC client");
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-16 20:02:16 +00:00
|
|
|
|
2015-08-18 23:35:01 +00:00
|
|
|
return true;
|
2015-08-16 20:02:16 +00:00
|
|
|
}
|
2015-08-20 19:08:13 +00:00
|
|
|
|
2015-08-26 22:41:07 +00:00
|
|
|
void ipc_get_workspaces_callback(swayc_t *workspace, void *data) {
|
|
|
|
if (workspace->type == C_WORKSPACE) {
|
2016-07-04 18:34:44 +00:00
|
|
|
json_object_array_add((json_object *)data, ipc_json_describe_container(workspace));
|
2015-08-20 19:08:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ipc_get_outputs_callback(swayc_t *container, void *data) {
|
|
|
|
if (container->type == C_OUTPUT) {
|
2016-07-04 18:34:44 +00:00
|
|
|
json_object_array_add((json_object *)data, ipc_json_describe_container(container));
|
2016-02-23 13:40:46 +00:00
|
|
|
}
|
2015-12-21 14:28:34 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 19:37:10 +00:00
|
|
|
void ipc_send_event(const char *json_string, enum ipc_command_type event) {
|
|
|
|
int i;
|
|
|
|
struct ipc_client *client;
|
|
|
|
for (i = 0; i < ipc_client_list->length; i++) {
|
|
|
|
client = ipc_client_list->items[i];
|
|
|
|
if ((client->subscribed_events & event) == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
client->current_command = event;
|
2016-05-02 20:32:20 +00:00
|
|
|
if (!ipc_send_reply(client, json_string, (uint32_t) strlen(json_string))) {
|
|
|
|
sway_log_errno(L_INFO, "Unable to send reply to IPC client");
|
|
|
|
ipc_client_disconnect(client);
|
|
|
|
}
|
2016-01-03 19:37:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-21 21:01:36 +00:00
|
|
|
void ipc_event_workspace(swayc_t *old, swayc_t *new, const char *change) {
|
2015-10-27 20:59:17 +00:00
|
|
|
json_object *obj = json_object_new_object();
|
2015-12-21 21:01:36 +00:00
|
|
|
json_object_object_add(obj, "change", json_object_new_string(change));
|
|
|
|
if (strcmp("focus", change) == 0) {
|
|
|
|
if (old) {
|
2016-07-04 18:34:44 +00:00
|
|
|
json_object_object_add(obj, "old", ipc_json_describe_container(old));
|
2015-12-21 21:01:36 +00:00
|
|
|
} else {
|
|
|
|
json_object_object_add(obj, "old", NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new) {
|
2016-07-04 18:34:44 +00:00
|
|
|
json_object_object_add(obj, "current", ipc_json_describe_container(new));
|
2015-12-14 10:43:17 +00:00
|
|
|
} else {
|
2015-12-21 21:01:36 +00:00
|
|
|
json_object_object_add(obj, "current", NULL);
|
2015-12-14 10:43:17 +00:00
|
|
|
}
|
2015-12-21 21:01:36 +00:00
|
|
|
|
2015-10-27 20:59:17 +00:00
|
|
|
const char *json_string = json_object_to_json_string(obj);
|
2016-01-03 19:37:10 +00:00
|
|
|
ipc_send_event(json_string, IPC_EVENT_WORKSPACE);
|
2015-10-27 20:59:17 +00:00
|
|
|
|
|
|
|
json_object_put(obj); // free
|
2015-08-20 19:08:13 +00:00
|
|
|
}
|
2015-12-21 14:28:34 +00:00
|
|
|
|
2016-07-12 13:58:24 +00:00
|
|
|
void ipc_event_window(swayc_t *window, const char *change) {
|
|
|
|
json_object *obj = json_object_new_object();
|
|
|
|
json_object_object_add(obj, "change", json_object_new_string(change));
|
|
|
|
if (strcmp(change, "close") == 0 || !window) {
|
|
|
|
json_object_object_add(obj, "container", NULL);
|
|
|
|
} else {
|
|
|
|
json_object_object_add(obj, "container", ipc_json_describe_container(window));
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *json_string = json_object_to_json_string(obj);
|
|
|
|
ipc_send_event(json_string, IPC_EVENT_WINDOW);
|
|
|
|
|
|
|
|
json_object_put(obj); // free
|
|
|
|
}
|
|
|
|
|
2015-12-21 14:28:34 +00:00
|
|
|
void ipc_event_barconfig_update(struct bar_config *bar) {
|
|
|
|
json_object *json = ipc_json_describe_bar_config(bar);
|
|
|
|
const char *json_string = json_object_to_json_string(json);
|
2016-01-03 19:37:10 +00:00
|
|
|
ipc_send_event(json_string, IPC_EVENT_BARCONFIG_UPDATE);
|
2015-12-21 14:28:34 +00:00
|
|
|
|
|
|
|
json_object_put(json); // free
|
|
|
|
}
|
2016-01-03 21:00:59 +00:00
|
|
|
|
|
|
|
void ipc_event_mode(const char *mode) {
|
|
|
|
json_object *obj = json_object_new_object();
|
|
|
|
json_object_object_add(obj, "change", json_object_new_string(mode));
|
|
|
|
|
|
|
|
const char *json_string = json_object_to_json_string(obj);
|
|
|
|
ipc_send_event(json_string, IPC_EVENT_MODE);
|
|
|
|
|
|
|
|
json_object_put(obj); // free
|
|
|
|
}
|
2016-01-05 01:20:20 +00:00
|
|
|
|
|
|
|
void ipc_event_modifier(uint32_t modifier, const char *state) {
|
|
|
|
json_object *obj = json_object_new_object();
|
|
|
|
json_object_object_add(obj, "change", json_object_new_string(state));
|
|
|
|
|
2016-01-05 17:07:43 +00:00
|
|
|
const char *modifier_name = get_modifier_name_by_mask(modifier);
|
2016-01-05 01:20:20 +00:00
|
|
|
json_object_object_add(obj, "modifier", json_object_new_string(modifier_name));
|
|
|
|
|
|
|
|
const char *json_string = json_object_to_json_string(obj);
|
|
|
|
ipc_send_event(json_string, IPC_EVENT_MODIFIER);
|
|
|
|
|
|
|
|
json_object_put(obj); // free
|
|
|
|
}
|
2016-01-06 16:01:45 +00:00
|
|
|
|
2016-01-08 13:41:09 +00:00
|
|
|
#if SWAY_BINDING_EVENT
|
2016-01-06 16:01:45 +00:00
|
|
|
static void ipc_event_binding(json_object *sb_obj) {
|
|
|
|
json_object *obj = json_object_new_object();
|
|
|
|
json_object_object_add(obj, "change", json_object_new_string("run"));
|
|
|
|
json_object_object_add(obj, "binding", sb_obj);
|
|
|
|
|
|
|
|
const char *json_string = json_object_to_json_string(obj);
|
|
|
|
ipc_send_event(json_string, IPC_EVENT_BINDING);
|
|
|
|
|
|
|
|
json_object_put(obj); // free
|
|
|
|
}
|
2016-01-08 13:41:09 +00:00
|
|
|
#endif
|
2016-01-06 16:01:45 +00:00
|
|
|
|
|
|
|
void ipc_event_binding_keyboard(struct sway_binding *sb) {
|
2016-01-08 13:41:09 +00:00
|
|
|
#if SWAY_BINDING_EVENT
|
2016-01-06 16:01:45 +00:00
|
|
|
json_object *sb_obj = json_object_new_object();
|
|
|
|
json_object_object_add(sb_obj, "command", json_object_new_string(sb->command));
|
|
|
|
|
|
|
|
const char *names[10];
|
|
|
|
|
|
|
|
int len = get_modifier_names(names, sb->modifiers);
|
|
|
|
int i;
|
|
|
|
json_object *modifiers = json_object_new_array();
|
|
|
|
for (i = 0; i < len; ++i) {
|
|
|
|
json_object_array_add(modifiers, json_object_new_string(names[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
json_object_object_add(sb_obj, "event_state_mask", modifiers);
|
|
|
|
|
2016-01-09 19:31:18 +00:00
|
|
|
json_object *input_codes = json_object_new_array();
|
2016-01-09 19:56:42 +00:00
|
|
|
int input_code = 0;
|
2016-01-06 16:01:45 +00:00
|
|
|
json_object *symbols = json_object_new_array();
|
2016-01-09 19:56:42 +00:00
|
|
|
json_object *symbol = NULL;
|
2016-01-09 19:31:18 +00:00
|
|
|
|
|
|
|
if (sb->bindcode) { // bindcode: populate input_codes
|
|
|
|
uint32_t keycode;
|
|
|
|
for (i = 0; i < sb->keys->length; ++i) {
|
|
|
|
keycode = *(uint32_t *)sb->keys->items[i];
|
|
|
|
json_object_array_add(input_codes, json_object_new_int(keycode));
|
2016-01-09 19:56:42 +00:00
|
|
|
if (i == 0) {
|
|
|
|
input_code = keycode;
|
|
|
|
}
|
2016-01-09 19:31:18 +00:00
|
|
|
}
|
|
|
|
} else { // bindsym: populate symbols
|
|
|
|
uint32_t keysym;
|
|
|
|
char buffer[64];
|
|
|
|
for (i = 0; i < sb->keys->length; ++i) {
|
|
|
|
keysym = *(uint32_t *)sb->keys->items[i];
|
|
|
|
if (xkb_keysym_get_name(keysym, buffer, 64) > 0) {
|
2016-01-09 19:56:42 +00:00
|
|
|
json_object *str = json_object_new_string(buffer);
|
|
|
|
json_object_array_add(symbols, str);
|
|
|
|
if (i == 0) {
|
|
|
|
symbol = str;
|
|
|
|
}
|
2016-01-09 19:31:18 +00:00
|
|
|
}
|
2016-01-06 16:01:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-09 19:31:18 +00:00
|
|
|
json_object_object_add(sb_obj, "input_codes", input_codes);
|
2016-01-09 19:56:42 +00:00
|
|
|
json_object_object_add(sb_obj, "input_code", json_object_new_int(input_code));
|
2016-01-06 16:01:45 +00:00
|
|
|
json_object_object_add(sb_obj, "symbols", symbols);
|
2016-01-09 19:56:42 +00:00
|
|
|
json_object_object_add(sb_obj, "symbol", symbol);
|
2016-01-06 16:01:45 +00:00
|
|
|
json_object_object_add(sb_obj, "input_type", json_object_new_string("keyboard"));
|
|
|
|
|
|
|
|
ipc_event_binding(sb_obj);
|
2016-01-08 13:41:09 +00:00
|
|
|
#endif
|
2016-01-06 16:01:45 +00:00
|
|
|
}
|