sway/sway/commands/exec_always.c

90 lines
2.2 KiB
C
Raw Normal View History

2017-12-04 22:43:49 +01:00
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
#include <signal.h>
2017-12-04 22:43:49 +01:00
#include "sway/commands.h"
2017-12-05 10:40:55 +01:00
#include "sway/config.h"
#include "sway/server.h"
#include "sway/desktop/launcher.h"
#include "sway/tree/container.h"
#include "sway/tree/root.h"
#include "sway/tree/workspace.h"
2017-12-04 22:43:49 +01:00
#include "log.h"
#include "stringop.h"
struct cmd_results *cmd_exec_validate(int argc, char **argv) {
2017-12-04 22:43:49 +01:00
struct cmd_results *error = NULL;
if ((error = checkarg(argc, argv[-1], EXPECTED_AT_LEAST, 1))) {
2017-12-04 22:43:49 +01:00
return error;
}
if (!config->active || config->validating) {
return cmd_results_new(CMD_DEFER, NULL);
}
return error;
}
2017-12-04 22:43:49 +01:00
struct cmd_results *cmd_exec_process(int argc, char **argv) {
struct cmd_results *error = NULL;
char *cmd = NULL;
bool no_startup_id = false;
2018-08-28 15:19:52 +01:00
if (strcmp(argv[0], "--no-startup-id") == 0) {
no_startup_id = true;
2018-08-28 15:19:52 +01:00
--argc; ++argv;
if ((error = checkarg(argc, argv[-1], EXPECTED_AT_LEAST, 1))) {
2017-12-04 22:43:49 +01:00
return error;
}
2018-08-11 00:52:53 +01:00
}
2018-08-28 15:19:52 +01:00
if (argc == 1 && (argv[0][0] == '\'' || argv[0][0] == '"')) {
cmd = strdup(argv[0]);
strip_quotes(cmd);
2017-12-04 22:43:49 +01:00
} else {
cmd = join_args(argv, argc);
2017-12-04 22:43:49 +01:00
}
sway_log(SWAY_DEBUG, "Executing %s", cmd);
2017-12-04 22:43:49 +01:00
struct launcher_ctx *ctx = launcher_ctx_create_internal();
2017-12-04 22:43:49 +01:00
// Fork process
pid_t child = fork();
if (child == 0) {
2017-12-04 22:43:49 +01:00
setsid();
if (ctx) {
const char *token = launcher_ctx_get_token_name(ctx);
setenv("XDG_ACTIVATION_TOKEN", token, 1);
if (!no_startup_id) {
setenv("DESKTOP_STARTUP_ID", token, 1);
}
}
execlp("sh", "sh", "-c", cmd, (void*)NULL);
sway_log_errno(SWAY_ERROR, "execve failed");
2017-12-04 22:43:49 +01:00
_exit(0); // Close child process
} else if (child < 0) {
launcher_ctx_destroy(ctx);
free(cmd);
return cmd_results_new(CMD_FAILURE, "fork() failed");
2017-12-04 22:43:49 +01:00
}
sway_log(SWAY_DEBUG, "Child process created with pid %d", child);
if (ctx != NULL) {
sway_log(SWAY_DEBUG, "Recording workspace for process %d", child);
ctx->pid = child;
2017-12-04 22:43:49 +01:00
}
free(cmd);
return cmd_results_new(CMD_SUCCESS, NULL);
2017-12-04 22:43:49 +01:00
}
struct cmd_results *cmd_exec_always(int argc, char **argv) {
struct cmd_results *error;
if ((error = cmd_exec_validate(argc, argv))) {
return error;
}
return cmd_exec_process(argc, argv);
}