2022-10-29 23:13:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022 Jim Ramsay
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2022-11-15 09:57:26 +00:00
|
|
|
#include <sys/stat.h>
|
2022-10-29 23:13:41 +00:00
|
|
|
#include <poll.h>
|
2022-11-06 20:05:14 +00:00
|
|
|
#include <signal.h>
|
2022-11-15 09:57:26 +00:00
|
|
|
#include <assert.h>
|
2022-10-29 23:13:41 +00:00
|
|
|
#include <jansson.h>
|
|
|
|
|
|
|
|
#include "json-ipc.h"
|
|
|
|
#include "ctl-client.h"
|
2022-12-06 12:12:02 +00:00
|
|
|
#include "ctl-commands.h"
|
2022-10-29 23:13:41 +00:00
|
|
|
#include "ctl-server.h"
|
|
|
|
#include "strlcpy.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2022-11-17 23:00:59 +00:00
|
|
|
#define LOG(level, fmt, ...) \
|
|
|
|
fprintf(stderr, "[%s:%d] <" level "> " fmt "\n", __FILE__, __LINE__, \
|
|
|
|
##__VA_ARGS__)
|
|
|
|
|
2022-10-29 23:13:41 +00:00
|
|
|
#define WARN(fmt, ...) \
|
2022-11-17 23:00:59 +00:00
|
|
|
LOG("WARNING", fmt, ##__VA_ARGS__)
|
2022-10-29 23:13:41 +00:00
|
|
|
|
|
|
|
static bool do_debug = false;
|
|
|
|
|
|
|
|
#define DEBUG(fmt, ...) \
|
|
|
|
if (do_debug) \
|
2022-11-17 23:00:59 +00:00
|
|
|
LOG("DEBUG", fmt, ##__VA_ARGS__)
|
2022-10-29 23:13:41 +00:00
|
|
|
|
2022-11-19 02:45:28 +00:00
|
|
|
const char* EVT_LOCAL_SHUTDOWN = "wayvnc-shutdown";
|
|
|
|
const char* EVT_LOCAL_STARTUP = "wayvnc-startup";
|
|
|
|
|
2022-10-29 23:13:41 +00:00
|
|
|
struct ctl_client {
|
|
|
|
void* userdata;
|
2022-11-15 09:57:26 +00:00
|
|
|
struct sockaddr_un addr;
|
2022-11-19 02:45:28 +00:00
|
|
|
unsigned flags;
|
2022-10-29 23:13:41 +00:00
|
|
|
|
2022-12-21 14:08:03 +00:00
|
|
|
char read_buffer[1024];
|
2022-10-29 23:13:41 +00:00
|
|
|
size_t read_len;
|
2022-11-11 06:43:02 +00:00
|
|
|
|
2022-11-06 20:05:14 +00:00
|
|
|
bool wait_for_events;
|
2022-10-29 23:13:41 +00:00
|
|
|
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ctl_client_debug_log(bool enable)
|
|
|
|
{
|
|
|
|
do_debug = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ctl_client* ctl_client_new(const char* socket_path, void* userdata)
|
|
|
|
{
|
|
|
|
if (!socket_path)
|
|
|
|
socket_path = default_ctl_socket_path();
|
|
|
|
struct ctl_client* new = calloc(1, sizeof(*new));
|
|
|
|
new->userdata = userdata;
|
2022-11-16 00:57:16 +00:00
|
|
|
new->fd = -1;
|
2022-10-29 23:13:41 +00:00
|
|
|
|
2022-11-15 09:57:26 +00:00
|
|
|
if (strlen(socket_path) >= sizeof(new->addr.sun_path)) {
|
2022-10-29 23:13:41 +00:00
|
|
|
errno = ENAMETOOLONG;
|
2022-11-17 23:00:59 +00:00
|
|
|
WARN("Failed to create unix socket: %m");
|
2022-10-29 23:13:41 +00:00
|
|
|
goto socket_failure;
|
|
|
|
}
|
2022-11-15 09:57:26 +00:00
|
|
|
strcpy(new->addr.sun_path, socket_path);
|
|
|
|
new->addr.sun_family = AF_UNIX;
|
2022-10-29 23:13:41 +00:00
|
|
|
|
|
|
|
return new;
|
|
|
|
|
|
|
|
socket_failure:
|
|
|
|
free(new);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-11-16 00:57:16 +00:00
|
|
|
static int wait_for_socket(const char* socket_path, int timeout)
|
2022-11-15 09:57:26 +00:00
|
|
|
{
|
|
|
|
bool needs_log = true;
|
|
|
|
struct stat sb;
|
2022-11-16 00:57:16 +00:00
|
|
|
while (stat(socket_path, &sb) != 0) {
|
2022-11-15 09:57:26 +00:00
|
|
|
if (timeout == 0) {
|
2022-11-17 23:00:59 +00:00
|
|
|
WARN("Failed to find socket path \"%s\": %m",
|
2022-11-16 00:57:16 +00:00
|
|
|
socket_path);
|
|
|
|
return 1;
|
2022-11-15 09:57:26 +00:00
|
|
|
}
|
|
|
|
if (needs_log) {
|
|
|
|
needs_log = false;
|
|
|
|
DEBUG("Waiting for socket path \"%s\" to appear",
|
2022-11-16 00:57:16 +00:00
|
|
|
socket_path);
|
2022-11-15 09:57:26 +00:00
|
|
|
}
|
|
|
|
if (usleep(50000) == -1) {
|
2022-11-17 23:00:59 +00:00
|
|
|
WARN("Failed to wait for socket path: %m");
|
2022-11-16 00:57:16 +00:00
|
|
|
return -1;
|
2022-11-15 09:57:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (S_ISSOCK(sb.st_mode)) {
|
2022-11-16 00:57:16 +00:00
|
|
|
DEBUG("Found socket \"%s\"", socket_path);
|
2022-11-15 09:57:26 +00:00
|
|
|
} else {
|
|
|
|
WARN("Path \"%s\" exists but is not a socket (0x%x)",
|
2022-11-16 00:57:16 +00:00
|
|
|
socket_path, sb.st_mode);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int try_connect(struct ctl_client* self, int timeout)
|
|
|
|
{
|
|
|
|
if (self->fd != -1)
|
|
|
|
close(self->fd);
|
|
|
|
self->fd = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
|
|
if (self->fd < 0) {
|
2022-11-17 23:00:59 +00:00
|
|
|
WARN("Failed to create unix socket: %m");
|
2022-11-16 00:57:16 +00:00
|
|
|
return 1;
|
2022-11-15 09:57:26 +00:00
|
|
|
}
|
|
|
|
while (connect(self->fd, (struct sockaddr*)&self->addr,
|
|
|
|
sizeof(self->addr)) != 0) {
|
|
|
|
if (timeout == 0 || errno != ENOENT) {
|
2022-11-17 23:00:59 +00:00
|
|
|
WARN("Failed to connect to unix socket \"%s\": %m",
|
2022-11-15 09:57:26 +00:00
|
|
|
self->addr.sun_path);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (usleep(50000) == -1) {
|
2022-11-17 23:00:59 +00:00
|
|
|
WARN("Failed to wait for connect to succeed: %m");
|
2022-11-15 09:57:26 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2022-11-16 00:57:16 +00:00
|
|
|
}
|
|
|
|
|
2022-12-06 21:45:51 +00:00
|
|
|
static int ctl_client_connect(struct ctl_client* self, int timeout)
|
2022-11-16 00:57:16 +00:00
|
|
|
{
|
|
|
|
// TODO: Support arbitrary timeouts?
|
|
|
|
assert(timeout == 0 || timeout == -1);
|
|
|
|
|
|
|
|
if (wait_for_socket(self->addr.sun_path, timeout) != 0)
|
|
|
|
return 1;
|
2022-11-15 09:57:26 +00:00
|
|
|
|
2022-11-16 00:57:16 +00:00
|
|
|
if (try_connect(self, timeout) != 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
2022-11-15 09:57:26 +00:00
|
|
|
}
|
|
|
|
|
2022-10-29 23:13:41 +00:00
|
|
|
void ctl_client_destroy(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
close(self->fd);
|
|
|
|
free(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* ctl_client_userdata(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
return self->userdata;
|
|
|
|
}
|
|
|
|
|
2022-11-15 09:57:26 +00:00
|
|
|
static struct jsonipc_request* ctl_client_parse_args(struct ctl_client* self,
|
2022-10-29 23:13:41 +00:00
|
|
|
int argc, char* argv[])
|
|
|
|
{
|
|
|
|
struct jsonipc_request* request = NULL;
|
|
|
|
const char* method = argv[0];
|
|
|
|
json_t* params = json_object();
|
2022-11-04 09:55:11 +00:00
|
|
|
bool show_usage = false;
|
2022-10-29 23:13:41 +00:00
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
char* key = argv[i];
|
|
|
|
char* value = NULL;
|
2022-11-04 09:55:11 +00:00
|
|
|
if (strcmp(key, "--help") == 0 || strcmp(key, "-h") == 0) {
|
|
|
|
show_usage = true;
|
|
|
|
continue;
|
|
|
|
}
|
2022-10-29 23:13:41 +00:00
|
|
|
if (key[0] == '-' && key[1] == '-')
|
|
|
|
key += 2;
|
|
|
|
char* delim = strchr(key, '=');
|
|
|
|
if (delim) {
|
|
|
|
*delim = '\0';
|
|
|
|
value = delim + 1;
|
|
|
|
} else if (++i < argc) {
|
|
|
|
value = argv[i];
|
|
|
|
} else {
|
|
|
|
WARN("Argument must be of the format --key=value or --key value");
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
json_object_set_new(params, key, json_string(value));
|
|
|
|
}
|
2022-11-04 09:55:11 +00:00
|
|
|
if (show_usage) {
|
|
|
|
// Special case for "foo --help"; convert into "help --command=foo"
|
|
|
|
json_object_clear(params);
|
|
|
|
json_object_set_new(params, "command", json_string(method));
|
|
|
|
method = "help";
|
|
|
|
}
|
2022-10-29 23:13:41 +00:00
|
|
|
request = jsonipc_request_new(method, params);
|
|
|
|
|
|
|
|
failure:
|
|
|
|
json_decref(params);
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
|
|
|
static json_t* json_from_buffer(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
if (self->read_len == 0) {
|
|
|
|
DEBUG("Read buffer is empty");
|
|
|
|
errno = ENODATA;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
json_error_t err;
|
|
|
|
json_t* root = json_loadb(self->read_buffer, self->read_len, 0, &err);
|
|
|
|
if (root) {
|
|
|
|
advance_read_buffer(&self->read_buffer, &self->read_len, err.position);
|
|
|
|
} else if (json_error_code(&err) == json_error_premature_end_of_input) {
|
2022-12-21 14:07:22 +00:00
|
|
|
if (self->read_len == sizeof(self->read_buffer)) {
|
|
|
|
WARN("Response message is too long");
|
|
|
|
errno = EMSGSIZE;
|
|
|
|
} else {
|
|
|
|
DEBUG("Awaiting more data");
|
|
|
|
errno = ENODATA;
|
|
|
|
}
|
2022-10-29 23:13:41 +00:00
|
|
|
} else {
|
|
|
|
WARN("Json parsing failed: %s", err.text);
|
|
|
|
errno = EINVAL;
|
|
|
|
}
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
|
|
|
static json_t* read_one_object(struct ctl_client* self, int timeout_ms)
|
|
|
|
{
|
|
|
|
json_t* root = json_from_buffer(self);
|
|
|
|
if (root)
|
|
|
|
return root;
|
|
|
|
if (errno != ENODATA)
|
|
|
|
return NULL;
|
|
|
|
struct pollfd pfd = {
|
|
|
|
.fd = self->fd,
|
|
|
|
.events = POLLIN,
|
|
|
|
.revents = 0
|
|
|
|
};
|
|
|
|
while (root == NULL) {
|
|
|
|
int n = poll(&pfd, 1, timeout_ms);
|
|
|
|
if (n == -1) {
|
2022-11-09 14:11:21 +00:00
|
|
|
if (errno == EINTR && self->wait_for_events)
|
|
|
|
continue;
|
2022-10-29 23:13:41 +00:00
|
|
|
WARN("Error waiting for a response: %m");
|
|
|
|
break;
|
|
|
|
} else if (n == 0) {
|
|
|
|
WARN("Timeout waiting for a response");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
char* readptr = self->read_buffer + self->read_len;
|
|
|
|
size_t remainder = sizeof(self->read_buffer) - self->read_len;
|
|
|
|
n = recv(self->fd, readptr, remainder, 0);
|
|
|
|
if (n == -1) {
|
|
|
|
WARN("Read failed: %m");
|
|
|
|
break;
|
|
|
|
} else if (n == 0) {
|
|
|
|
WARN("Disconnected");
|
|
|
|
errno = ECONNRESET;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
DEBUG("Read %d bytes", n);
|
|
|
|
DEBUG("<< %.*s", n, readptr);
|
|
|
|
self->read_len += n;
|
|
|
|
root = json_from_buffer(self);
|
|
|
|
if (!root && errno != ENODATA)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct jsonipc_response* ctl_client_wait_for_response(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
DEBUG("Waiting for a response");
|
|
|
|
json_t* root = read_one_object(self, 1000);
|
|
|
|
if (!root)
|
|
|
|
return NULL;
|
|
|
|
struct jsonipc_error jipc_err = JSONIPC_ERR_INIT;
|
|
|
|
struct jsonipc_response* response = jsonipc_response_parse_new(root,
|
|
|
|
&jipc_err);
|
|
|
|
if (!response) {
|
|
|
|
char* msg = json_dumps(jipc_err.data, JSON_EMBED);
|
|
|
|
WARN("Could not parse json: %s", msg);
|
|
|
|
free(msg);
|
|
|
|
}
|
|
|
|
json_decref(root);
|
|
|
|
jsonipc_error_cleanup(&jipc_err);
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
2022-11-05 13:53:17 +00:00
|
|
|
static void print_error(struct jsonipc_response* response, const char* method)
|
|
|
|
{
|
|
|
|
printf("Error (%d)", response->code);
|
|
|
|
if (!response->data)
|
|
|
|
goto out;
|
|
|
|
json_t* data = response->data;
|
|
|
|
if (json_is_string(data))
|
|
|
|
printf(": %s", json_string_value(data));
|
|
|
|
else if (json_is_object(data) &&
|
|
|
|
json_is_string(json_object_get(data, "error")))
|
|
|
|
printf(": %s", json_string_value(json_object_get(data, "error")));
|
|
|
|
else
|
|
|
|
json_dumpf(response->data, stdout, JSON_INDENT(2));
|
|
|
|
out:
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pretty_version(json_t* data)
|
|
|
|
{
|
|
|
|
printf("wayvnc is running:\n");
|
|
|
|
const char* key;
|
|
|
|
json_t* value;
|
|
|
|
json_object_foreach(data, key, value)
|
|
|
|
printf(" %s: %s\n", key, json_string_value(value));
|
|
|
|
}
|
|
|
|
|
2022-11-22 21:55:41 +00:00
|
|
|
static void pretty_client_list(json_t* data)
|
|
|
|
{
|
|
|
|
int n = json_array_size(data);
|
|
|
|
printf("There %s %d VNC client%s connected%s\n", (n == 1) ? "is" : "are",
|
|
|
|
n, (n == 1) ? "" : "s", (n > 0) ? ":" : ".");
|
2022-11-26 21:13:41 +00:00
|
|
|
size_t i;
|
2022-11-22 21:55:41 +00:00
|
|
|
json_t* value;
|
|
|
|
json_array_foreach(data, i, value) {
|
|
|
|
char* id = NULL;
|
|
|
|
char* hostname = NULL;
|
|
|
|
char* username = NULL;
|
|
|
|
json_unpack(value, "{s:s, s?s, s?s}", "id", &id, "hostname",
|
|
|
|
&hostname, "username", &username);
|
|
|
|
printf(" client[%s]: ", id);
|
|
|
|
if (username)
|
|
|
|
printf("%s@", username);
|
|
|
|
printf("%s\n", hostname ? hostname : "<unknown>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-23 03:20:56 +00:00
|
|
|
static void pretty_output_list(json_t* data)
|
|
|
|
{
|
|
|
|
int n = json_array_size(data);
|
|
|
|
printf("There %s %d output%s%s\n", (n == 1) ? "is" : "are",
|
|
|
|
n, (n == 1) ? "" : "s", (n > 0) ? ":" : ".");
|
2022-11-26 21:13:41 +00:00
|
|
|
size_t i;
|
2022-11-23 03:20:56 +00:00
|
|
|
json_t* value;
|
|
|
|
json_array_foreach(data, i, value) {
|
|
|
|
char* name = NULL;
|
|
|
|
char* description = NULL;
|
|
|
|
int height = -1;
|
|
|
|
int width = -1;
|
|
|
|
int captured = false;
|
|
|
|
json_unpack(value, "{s:s, s:s, s:i, s:i, s:b}", "name", &name,
|
|
|
|
"description", &description,
|
|
|
|
"height", &height,
|
|
|
|
"width", &width,
|
|
|
|
"captured", &captured);
|
|
|
|
printf("%s output[%s]: %s (%dx%d)\n",
|
|
|
|
captured ? "*" : " ", name, description, width,
|
|
|
|
height);
|
|
|
|
}
|
|
|
|
}
|
2022-11-08 12:32:04 +00:00
|
|
|
static void pretty_print(json_t* data,
|
|
|
|
struct jsonipc_request* request)
|
2022-11-05 13:53:17 +00:00
|
|
|
{
|
2022-12-06 12:12:02 +00:00
|
|
|
enum cmd_type cmd = ctl_command_parse_name(request->method);
|
|
|
|
switch (cmd) {
|
|
|
|
case CMD_VERSION:
|
2022-11-05 13:53:17 +00:00
|
|
|
pretty_version(data);
|
2022-12-06 12:12:02 +00:00
|
|
|
break;
|
|
|
|
case CMD_GET_CLIENTS:
|
2022-11-22 21:55:41 +00:00
|
|
|
pretty_client_list(data);
|
2022-12-06 12:12:02 +00:00
|
|
|
break;
|
|
|
|
case CMD_GET_OUTPUTS:
|
2022-11-23 03:20:56 +00:00
|
|
|
pretty_output_list(data);
|
2022-12-06 12:12:02 +00:00
|
|
|
break;
|
|
|
|
case CMD_DISCONNECT_CLIENT:
|
|
|
|
case CMD_SET_OUTPUT:
|
|
|
|
case CMD_WAYVNC_EXIT:
|
|
|
|
printf("Ok\n");
|
|
|
|
break;
|
|
|
|
case CMD_EVENT_RECEIVE:
|
2022-12-06 21:45:51 +00:00
|
|
|
case CMD_HELP:
|
|
|
|
abort(); // Handled directly by ctl_client_run_command
|
2022-12-06 12:12:02 +00:00
|
|
|
case CMD_UNKNOWN:
|
2022-11-05 13:53:17 +00:00
|
|
|
json_dumpf(data, stdout, JSON_INDENT(2));
|
2022-12-06 12:12:02 +00:00
|
|
|
}
|
2022-11-05 13:53:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_compact_json(json_t* data)
|
|
|
|
{
|
|
|
|
json_dumpf(data, stdout, JSON_COMPACT);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2022-10-29 23:13:41 +00:00
|
|
|
static int ctl_client_print_response(struct ctl_client* self,
|
2022-11-05 13:53:17 +00:00
|
|
|
struct jsonipc_request* request,
|
2022-11-19 02:45:28 +00:00
|
|
|
struct jsonipc_response* response)
|
2022-10-29 23:13:41 +00:00
|
|
|
{
|
|
|
|
DEBUG("Response code: %d", response->code);
|
|
|
|
if (response->data) {
|
2022-12-06 21:45:51 +00:00
|
|
|
if (self->flags & CTL_CLIENT_PRINT_JSON)
|
2022-11-05 13:53:17 +00:00
|
|
|
print_compact_json(response->data);
|
|
|
|
else if (response->code == 0)
|
2022-11-08 12:32:04 +00:00
|
|
|
pretty_print(response->data, request);
|
2022-11-05 13:53:17 +00:00
|
|
|
else
|
|
|
|
print_error(response, request->method);
|
2022-10-29 23:13:41 +00:00
|
|
|
}
|
|
|
|
return response->code;
|
|
|
|
}
|
|
|
|
|
2022-11-06 20:05:14 +00:00
|
|
|
static struct ctl_client* sig_target = NULL;
|
|
|
|
static void stop_loop(int signal)
|
|
|
|
{
|
|
|
|
sig_target->wait_for_events = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setup_signals(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
sig_target = self;
|
|
|
|
struct sigaction sa = { 0 };
|
|
|
|
sa.sa_handler = stop_loop;
|
|
|
|
sigaction(SIGINT, &sa, NULL);
|
|
|
|
sigaction(SIGTERM, &sa, NULL);
|
|
|
|
}
|
|
|
|
|
2022-11-09 14:11:21 +00:00
|
|
|
static void print_indent(int level)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < level; ++i)
|
|
|
|
printf(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool json_has_content(json_t* root)
|
|
|
|
{
|
|
|
|
if (!root)
|
|
|
|
return false;
|
|
|
|
size_t i;
|
|
|
|
const char* key;
|
|
|
|
json_t* value;
|
|
|
|
switch (json_typeof(root)) {
|
|
|
|
case JSON_NULL:
|
|
|
|
return false;
|
|
|
|
case JSON_INTEGER:
|
|
|
|
case JSON_REAL:
|
|
|
|
case JSON_TRUE:
|
|
|
|
case JSON_FALSE:
|
|
|
|
return true;
|
|
|
|
case JSON_STRING:
|
|
|
|
return json_string_value(root)[0] != '\0';
|
|
|
|
case JSON_OBJECT:
|
|
|
|
json_object_foreach(root, key, value)
|
|
|
|
if (json_has_content(value))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
case JSON_ARRAY:
|
|
|
|
json_array_foreach(root, i, value)
|
|
|
|
if (json_has_content(value))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_as_yaml(json_t* data, int level, bool needs_leading_newline)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
const char* key;
|
|
|
|
json_t* value;
|
|
|
|
bool needs_indent = needs_leading_newline;
|
|
|
|
switch(json_typeof(data)) {
|
|
|
|
case JSON_NULL:
|
|
|
|
printf("<null>\n");
|
|
|
|
break;
|
|
|
|
case JSON_OBJECT:
|
|
|
|
if (json_object_size(data) > 0 && needs_leading_newline)
|
|
|
|
printf("\n");
|
|
|
|
json_object_foreach(data, key, value) {
|
|
|
|
if (!json_has_content(value))
|
|
|
|
continue;
|
|
|
|
if (needs_indent)
|
|
|
|
print_indent(level);
|
|
|
|
else
|
|
|
|
needs_indent = true;
|
|
|
|
printf("%s: ", key);
|
|
|
|
print_as_yaml(value, level + 1, true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case JSON_ARRAY:
|
|
|
|
if (json_array_size(data) > 0 && needs_leading_newline)
|
|
|
|
printf("\n");
|
|
|
|
json_array_foreach(data, i, value) {
|
|
|
|
if (!json_has_content(value))
|
|
|
|
continue;
|
|
|
|
print_indent(level);
|
|
|
|
printf("- ");
|
|
|
|
print_as_yaml(value, level + 1, json_is_array(value));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case JSON_STRING:
|
|
|
|
printf("%s\n", json_string_value(data));
|
|
|
|
break;
|
|
|
|
case JSON_INTEGER:
|
|
|
|
printf("%" JSON_INTEGER_FORMAT "\n", json_integer_value(data));
|
|
|
|
break;
|
|
|
|
case JSON_REAL:
|
|
|
|
printf("%f\n", json_real_value(data));
|
|
|
|
break;
|
|
|
|
case JSON_TRUE:
|
|
|
|
printf("true\n");
|
|
|
|
break;
|
|
|
|
case JSON_FALSE:
|
|
|
|
printf("false\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_event(struct jsonipc_request* event, unsigned flags)
|
|
|
|
{
|
2022-12-06 21:45:51 +00:00
|
|
|
if (flags & CTL_CLIENT_PRINT_JSON) {
|
2022-11-09 14:11:21 +00:00
|
|
|
print_compact_json(event->json);
|
|
|
|
} else {
|
|
|
|
printf("\n%s:", event->method);
|
2022-11-19 02:45:28 +00:00
|
|
|
if (event->params)
|
|
|
|
print_as_yaml(event->params, 1, true);
|
|
|
|
else
|
|
|
|
printf("<<null>\n");
|
2022-11-09 14:11:21 +00:00
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2022-11-19 02:45:28 +00:00
|
|
|
static void send_local_event(struct ctl_client* self, const char* name)
|
|
|
|
{
|
|
|
|
struct jsonipc_request* event = jsonipc_event_new(name, NULL);
|
|
|
|
event->json = jsonipc_request_pack(event, NULL);
|
|
|
|
print_event(event, self->flags);
|
|
|
|
jsonipc_request_destroy(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_startup_event(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
send_local_event(self, EVT_LOCAL_STARTUP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_shutdown_event(struct ctl_client* self)
|
|
|
|
{
|
|
|
|
send_local_event(self, EVT_LOCAL_SHUTDOWN);
|
|
|
|
}
|
|
|
|
|
2022-11-16 00:57:16 +00:00
|
|
|
static ssize_t ctl_client_send_request(struct ctl_client* self,
|
|
|
|
struct jsonipc_request* request)
|
|
|
|
{
|
|
|
|
json_error_t err;
|
|
|
|
json_t* packed = jsonipc_request_pack(request, &err);
|
|
|
|
if (!packed) {
|
|
|
|
WARN("Could not encode json: %s", err.text);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
char buffer[512];
|
|
|
|
int len = json_dumpb(packed, buffer, sizeof(buffer), JSON_COMPACT);
|
|
|
|
json_decref(packed);
|
|
|
|
DEBUG(">> %.*s", len, buffer);
|
|
|
|
return send(self->fd, buffer, len, MSG_NOSIGNAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct jsonipc_response* ctl_client_run_single_command(struct ctl_client* self,
|
2022-12-06 21:45:51 +00:00
|
|
|
struct jsonipc_request* request)
|
2022-11-16 00:57:16 +00:00
|
|
|
{
|
|
|
|
if (ctl_client_send_request(self, request) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ctl_client_wait_for_response(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ctl_client_register_for_events(struct ctl_client* self,
|
|
|
|
struct jsonipc_request* request)
|
2022-11-06 20:05:14 +00:00
|
|
|
{
|
2022-11-16 00:57:16 +00:00
|
|
|
struct jsonipc_response* response = ctl_client_run_single_command(self, request);
|
|
|
|
if (!response)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
int result = response->code;
|
|
|
|
jsonipc_response_destroy(response);
|
2022-11-19 02:45:28 +00:00
|
|
|
if (result == 0)
|
|
|
|
send_startup_event(self);
|
2022-11-16 00:57:16 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ctl_client_reconnect_event_loop(struct ctl_client* self,
|
|
|
|
struct jsonipc_request* request, int timeout)
|
|
|
|
{
|
|
|
|
if (ctl_client_connect(self, timeout) != 0)
|
|
|
|
return -1;
|
|
|
|
return ctl_client_register_for_events(self, request);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ctl_client_event_loop(struct ctl_client* self,
|
2022-11-19 02:45:28 +00:00
|
|
|
struct jsonipc_request* request)
|
2022-11-16 00:57:16 +00:00
|
|
|
{
|
|
|
|
int result = ctl_client_register_for_events(self, request);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
|
2022-11-06 20:05:14 +00:00
|
|
|
self->wait_for_events = true;
|
|
|
|
setup_signals(self);
|
|
|
|
while (self->wait_for_events) {
|
|
|
|
DEBUG("Waiting for an event");
|
|
|
|
json_t* root = read_one_object(self, -1);
|
2022-11-16 00:57:16 +00:00
|
|
|
if (!root) {
|
2022-11-19 02:45:28 +00:00
|
|
|
if (errno == ECONNRESET) {
|
|
|
|
send_shutdown_event(self);
|
2022-12-06 21:45:51 +00:00
|
|
|
if (self->flags & CTL_CLIENT_RECONNECT &&
|
2022-11-19 02:45:28 +00:00
|
|
|
ctl_client_reconnect_event_loop(
|
|
|
|
self, request, -1) == 0)
|
|
|
|
continue;
|
|
|
|
}
|
2022-11-09 14:11:21 +00:00
|
|
|
break;
|
2022-11-16 00:57:16 +00:00
|
|
|
}
|
2022-11-09 14:11:21 +00:00
|
|
|
struct jsonipc_error err = JSONIPC_ERR_INIT;
|
|
|
|
struct jsonipc_request* event = jsonipc_event_parse_new(root, &err);
|
2022-11-06 20:05:14 +00:00
|
|
|
json_decref(root);
|
2022-11-19 02:45:28 +00:00
|
|
|
print_event(event, self->flags);
|
2022-11-09 14:11:21 +00:00
|
|
|
jsonipc_request_destroy(event);
|
2022-11-06 20:05:14 +00:00
|
|
|
}
|
2022-11-16 00:57:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ctl_client_print_single_command(struct ctl_client* self,
|
2022-11-19 02:45:28 +00:00
|
|
|
struct jsonipc_request* request)
|
2022-11-16 00:57:16 +00:00
|
|
|
{
|
|
|
|
struct jsonipc_response* response = ctl_client_run_single_command(self,
|
|
|
|
request);
|
|
|
|
if (!response)
|
|
|
|
return 1;
|
2022-11-19 02:45:28 +00:00
|
|
|
int result = ctl_client_print_response(self, request, response);
|
2022-11-16 00:57:16 +00:00
|
|
|
jsonipc_response_destroy(response);
|
|
|
|
return result;
|
2022-11-06 20:05:14 +00:00
|
|
|
}
|
|
|
|
|
2022-12-06 21:45:51 +00:00
|
|
|
void ctl_client_print_command_list(FILE* stream)
|
|
|
|
{
|
|
|
|
fprintf(stream, "Commands:\n");
|
|
|
|
for (size_t i = 0; i < CMD_LIST_LEN; ++i)
|
|
|
|
fprintf(stream, " - %s\n", ctl_command_list[i].name);
|
|
|
|
fprintf(stream, "\nRun 'wayvncctl command-name --help' for command-specific details.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ctl_client_print_event_list(FILE* stream)
|
|
|
|
{
|
|
|
|
printf("Events:\n");
|
|
|
|
for (size_t i = 0; i < EVT_LIST_LEN; ++i)
|
|
|
|
printf(" - %s\n", ctl_event_list[i].name);
|
|
|
|
printf("\nRun 'wayvncctl help --event=event-name' for event-specific details.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_cmd_info_params(const struct cmd_info* info)
|
|
|
|
{
|
|
|
|
if (info->params[0].name != NULL) {
|
|
|
|
printf("\nParameters:");
|
|
|
|
for (int i = 0; info->params[i].name != NULL; ++i)
|
|
|
|
printf("\n --%s=...\n %s\n", info->params[i].name,
|
|
|
|
info->params[i].description);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int print_command_usage(const char* cmd_name)
|
|
|
|
{
|
|
|
|
enum cmd_type type = ctl_command_parse_name(cmd_name);
|
|
|
|
struct cmd_info* info = ctl_command_by_type(type);
|
|
|
|
if (!info) {
|
|
|
|
WARN("No such command \"%s\"\n", cmd_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
bool params = info->params[0].name != NULL;
|
|
|
|
printf("Usage: wayvncctl [options] %s%s\n\n%s\n", info->name,
|
|
|
|
params ? " [params]" : "",
|
|
|
|
info->description);
|
|
|
|
print_cmd_info_params(info);
|
|
|
|
printf("\nRun 'wayvncctl --help' for allowed options\n");
|
|
|
|
if (type == CMD_EVENT_RECEIVE) {
|
|
|
|
printf("\n");
|
|
|
|
ctl_client_print_event_list(stdout);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int print_event_details(const char* evt_name)
|
|
|
|
{
|
|
|
|
struct cmd_info* info = ctl_event_by_name(evt_name);
|
|
|
|
if (!info) {
|
|
|
|
WARN("No such event \"%s\"\n", evt_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
printf("Event: %s\n\n%s\n", info->name,
|
|
|
|
info->description);
|
|
|
|
print_cmd_info_params(info);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ctl_client_print_help(struct ctl_client* self,
|
|
|
|
struct jsonipc_request* request)
|
|
|
|
{
|
|
|
|
if (self->flags & CTL_CLIENT_PRINT_JSON) {
|
|
|
|
WARN("JSON output is not supported for the \"help\" command");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
json_t* params = request->params;
|
|
|
|
const char* cmd_name = NULL;
|
|
|
|
const char* evt_name = NULL;
|
|
|
|
if (params)
|
|
|
|
json_unpack(params, "{s?s, s?s}", "command", &cmd_name,
|
|
|
|
"event", &evt_name);
|
|
|
|
|
|
|
|
if (cmd_name)
|
|
|
|
return print_command_usage(cmd_name);
|
|
|
|
if (evt_name)
|
|
|
|
return print_event_details(evt_name);
|
|
|
|
|
|
|
|
ctl_client_print_command_list(stdout);
|
|
|
|
printf("\n");
|
|
|
|
ctl_client_print_event_list(stdout);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-10-29 23:13:41 +00:00
|
|
|
int ctl_client_run_command(struct ctl_client* self,
|
2022-11-05 13:53:17 +00:00
|
|
|
int argc, char* argv[], unsigned flags)
|
2022-10-29 23:13:41 +00:00
|
|
|
{
|
2022-11-19 02:45:28 +00:00
|
|
|
self->flags = flags;
|
2022-11-16 00:57:16 +00:00
|
|
|
int result = 1;
|
|
|
|
struct jsonipc_request* request = ctl_client_parse_args(self, argc,
|
|
|
|
argv);
|
2022-10-29 23:13:41 +00:00
|
|
|
if (!request)
|
|
|
|
goto parse_failure;
|
|
|
|
|
2022-12-06 12:12:02 +00:00
|
|
|
enum cmd_type cmd = ctl_command_parse_name(request->method);
|
2022-12-06 21:45:51 +00:00
|
|
|
if (cmd != CMD_HELP) {
|
|
|
|
int timeout = (flags & CTL_CLIENT_SOCKET_WAIT) ? -1 : 0;
|
|
|
|
result = ctl_client_connect(self, timeout);
|
|
|
|
if (result != 0)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-12-06 12:12:02 +00:00
|
|
|
switch (cmd) {
|
2022-12-06 21:45:51 +00:00
|
|
|
case CMD_HELP:
|
|
|
|
result = ctl_client_print_help(self, request);
|
|
|
|
break;
|
2022-12-06 12:12:02 +00:00
|
|
|
case CMD_EVENT_RECEIVE:
|
2022-11-19 02:45:28 +00:00
|
|
|
result = ctl_client_event_loop(self, request);
|
2022-12-06 12:12:02 +00:00
|
|
|
break;
|
|
|
|
default:
|
2022-11-19 02:45:28 +00:00
|
|
|
result = ctl_client_print_single_command(self, request);
|
2022-12-06 12:12:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-11-06 20:05:14 +00:00
|
|
|
|
2022-10-29 23:13:41 +00:00
|
|
|
jsonipc_request_destroy(request);
|
|
|
|
parse_failure:
|
|
|
|
return result;
|
|
|
|
}
|