1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-11 13:46:14 +02:00
sway/sway/config.c

1067 lines
30 KiB
C
Raw Normal View History

#define _XOPEN_SOURCE 700 // for realpath
2017-12-05 10:40:55 +01:00
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include <libgen.h>
#include <wordexp.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <signal.h>
#include <libinput.h>
#include <limits.h>
#include <dirent.h>
#include <strings.h>
#include <linux/input-event-codes.h>
#include <wlr/types/wlr_output.h>
2017-12-12 15:02:30 +01:00
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
#include "sway/input/switch.h"
2017-12-05 10:40:55 +01:00
#include "sway/commands.h"
#include "sway/config.h"
#include "sway/criteria.h"
#include "sway/desktop/transaction.h"
#include "sway/swaynag.h"
#include "sway/tree/arrange.h"
#include "sway/tree/root.h"
#include "sway/tree/workspace.h"
#include "cairo_util.h"
2018-05-02 15:07:52 +02:00
#include "pango.h"
2017-12-05 10:40:55 +01:00
#include "stringop.h"
#include "list.h"
#include "log.h"
#include "util.h"
2017-12-05 10:40:55 +01:00
struct sway_config *config = NULL;
static struct xkb_state *keysym_translation_state_create(
struct xkb_rule_names rules) {
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_SECURE_GETENV);
struct xkb_keymap *xkb_keymap = xkb_keymap_new_from_names(
context,
&rules,
XKB_KEYMAP_COMPILE_NO_FLAGS);
xkb_context_unref(context);
return xkb_state_new(xkb_keymap);
}
static void keysym_translation_state_destroy(
struct xkb_state *state) {
xkb_keymap_unref(xkb_state_get_keymap(state));
xkb_state_unref(state);
}
static void free_mode(struct sway_mode *mode) {
if (!mode) {
return;
}
free(mode->name);
if (mode->keysym_bindings) {
2018-12-09 00:55:14 +01:00
for (int i = 0; i < mode->keysym_bindings->length; i++) {
free_sway_binding(mode->keysym_bindings->items[i]);
}
list_free(mode->keysym_bindings);
}
if (mode->keycode_bindings) {
2018-12-09 00:55:14 +01:00
for (int i = 0; i < mode->keycode_bindings->length; i++) {
free_sway_binding(mode->keycode_bindings->items[i]);
}
list_free(mode->keycode_bindings);
}
if (mode->mouse_bindings) {
2018-12-09 00:55:14 +01:00
for (int i = 0; i < mode->mouse_bindings->length; i++) {
free_sway_binding(mode->mouse_bindings->items[i]);
}
list_free(mode->mouse_bindings);
}
if (mode->switch_bindings) {
for (int i = 0; i < mode->switch_bindings->length; i++) {
free_switch_binding(mode->switch_bindings->items[i]);
}
list_free(mode->switch_bindings);
}
if (mode->gesture_bindings) {
for (int i = 0; i < mode->gesture_bindings->length; i++) {
free_gesture_binding(mode->gesture_bindings->items[i]);
}
list_free(mode->gesture_bindings);
}
free(mode);
}
2017-12-05 10:40:55 +01:00
void free_config(struct sway_config *config) {
if (!config) {
return;
}
memset(&config->handler_context, 0, sizeof(config->handler_context));
// TODO: handle all currently unhandled lists as we add implementations
2017-12-29 15:31:04 +01:00
if (config->symbols) {
2018-03-31 06:35:06 +02:00
for (int i = 0; i < config->symbols->length; ++i) {
2017-12-29 15:31:04 +01:00
free_sway_variable(config->symbols->items[i]);
}
list_free(config->symbols);
}
if (config->modes) {
2018-03-31 06:35:06 +02:00
for (int i = 0; i < config->modes->length; ++i) {
free_mode(config->modes->items[i]);
}
list_free(config->modes);
}
2018-03-31 06:35:06 +02:00
if (config->bars) {
for (int i = 0; i < config->bars->length; ++i) {
free_bar_config(config->bars->items[i]);
}
list_free(config->bars);
}
list_free(config->cmd_queue);
if (config->workspace_configs) {
for (int i = 0; i < config->workspace_configs->length; i++) {
free_workspace_config(config->workspace_configs->items[i]);
}
list_free(config->workspace_configs);
}
if (config->output_configs) {
for (int i = 0; i < config->output_configs->length; i++) {
free_output_config(config->output_configs->items[i]);
}
list_free(config->output_configs);
}
if (config->swaybg_client != NULL) {
wl_client_destroy(config->swaybg_client);
}
if (config->input_configs) {
2018-03-31 06:35:06 +02:00
for (int i = 0; i < config->input_configs->length; i++) {
free_input_config(config->input_configs->items[i]);
}
list_free(config->input_configs);
}
if (config->input_type_configs) {
for (int i = 0; i < config->input_type_configs->length; i++) {
free_input_config(config->input_type_configs->items[i]);
}
list_free(config->input_type_configs);
}
if (config->seat_configs) {
2018-03-31 06:35:06 +02:00
for (int i = 0; i < config->seat_configs->length; i++) {
free_seat_config(config->seat_configs->items[i]);
}
list_free(config->seat_configs);
}
if (config->criteria) {
for (int i = 0; i < config->criteria->length; ++i) {
criteria_destroy(config->criteria->items[i]);
}
list_free(config->criteria);
}
list_free(config->no_focus);
list_free(config->active_bar_modifiers);
list_free_items_and_destroy(config->config_chain);
free(config->floating_scroll_up_cmd);
free(config->floating_scroll_down_cmd);
free(config->floating_scroll_left_cmd);
free(config->floating_scroll_right_cmd);
free(config->font);
free(config->swaybg_command);
2018-10-08 15:56:34 +02:00
free(config->swaynag_command);
2018-07-08 21:34:47 +02:00
free((char *)config->current_config_path);
free((char *)config->current_config);
keysym_translation_state_destroy(config->keysym_translation_state);
free(config);
2017-12-05 10:40:55 +01:00
}
static void destroy_removed_seats(struct sway_config *old_config,
struct sway_config *new_config) {
struct seat_config *seat_config;
struct sway_seat *seat;
int i;
for (i = 0; i < old_config->seat_configs->length; i++) {
seat_config = old_config->seat_configs->items[i];
// Skip the wildcard seat config, it won't have a matching real seat.
if (strcmp(seat_config->name, "*") == 0) {
continue;
}
/* Also destroy seats that aren't present in new config */
if (new_config && list_seq_find(new_config->seat_configs,
seat_name_cmp, seat_config->name) < 0) {
seat = input_manager_get_seat(seat_config->name, false);
if (seat) {
seat_destroy(seat);
}
}
}
}
2017-12-05 10:40:55 +01:00
static void config_defaults(struct sway_config *config) {
2018-10-08 15:56:34 +02:00
if (!(config->swaynag_command = strdup("swaynag"))) goto cleanup;
config->swaynag_config_errors = (struct swaynag_instance){0};
config->swaynag_config_errors.args = "--type error "
"--message 'There are errors in your config file' "
"--detailed-message "
"--button-no-terminal 'Exit sway' 'swaymsg exit' "
"--button-no-terminal 'Reload sway' 'swaymsg reload'";
config->swaynag_config_errors.detailed = true;
2017-12-05 10:40:55 +01:00
if (!(config->symbols = create_list())) goto cleanup;
if (!(config->modes = create_list())) goto cleanup;
if (!(config->bars = create_list())) goto cleanup;
if (!(config->workspace_configs = create_list())) goto cleanup;
2017-12-05 10:40:55 +01:00
if (!(config->criteria = create_list())) goto cleanup;
if (!(config->no_focus = create_list())) goto cleanup;
2017-12-14 17:11:56 +01:00
if (!(config->seat_configs = create_list())) goto cleanup;
2017-12-05 10:40:55 +01:00
if (!(config->output_configs = create_list())) goto cleanup;
if (!(config->input_type_configs = create_list())) goto cleanup;
if (!(config->input_configs = create_list())) goto cleanup;
2017-12-05 10:40:55 +01:00
if (!(config->cmd_queue = create_list())) goto cleanup;
2017-12-12 15:02:30 +01:00
if (!(config->current_mode = malloc(sizeof(struct sway_mode))))
goto cleanup;
2017-12-05 10:40:55 +01:00
if (!(config->current_mode->name = malloc(sizeof("default")))) goto cleanup;
strcpy(config->current_mode->name, "default");
2017-12-27 16:08:18 +01:00
if (!(config->current_mode->keysym_bindings = create_list())) goto cleanup;
if (!(config->current_mode->keycode_bindings = create_list())) goto cleanup;
if (!(config->current_mode->mouse_bindings = create_list())) goto cleanup;
if (!(config->current_mode->switch_bindings = create_list())) goto cleanup;
if (!(config->current_mode->gesture_bindings = create_list())) goto cleanup;
2017-12-05 10:40:55 +01:00
list_add(config->modes, config->current_mode);
config->floating_mod = 0;
config->floating_mod_inverse = false;
2017-12-05 10:40:55 +01:00
config->dragging_key = BTN_LEFT;
config->resizing_key = BTN_RIGHT;
2017-12-05 10:40:55 +01:00
if (!(config->floating_scroll_up_cmd = strdup(""))) goto cleanup;
if (!(config->floating_scroll_down_cmd = strdup(""))) goto cleanup;
if (!(config->floating_scroll_left_cmd = strdup(""))) goto cleanup;
if (!(config->floating_scroll_right_cmd = strdup(""))) goto cleanup;
config->default_layout = L_NONE;
config->default_orientation = L_NONE;
if (!(config->font = strdup("monospace 10"))) goto cleanup;
config->font_description = pango_font_description_from_string(config->font);
config->urgent_timeout = 500;
config->focus_on_window_activation = FOWA_URGENT;
config->popup_during_fullscreen = POPUP_SMART;
config->xwayland = XWAYLAND_MODE_LAZY;
2017-12-05 10:40:55 +01:00
config->titlebar_border_thickness = 1;
config->titlebar_h_padding = 5;
config->titlebar_v_padding = 4;
2017-12-05 10:40:55 +01:00
// floating view
config->floating_maximum_width = 0;
config->floating_maximum_height = 0;
config->floating_minimum_width = 75;
config->floating_minimum_height = 50;
// Flags
config->focus_follows_mouse = FOLLOWS_YES;
config->mouse_warping = WARP_OUTPUT;
2018-05-28 05:20:21 +02:00
config->focus_wrapping = WRAP_YES;
config->validating = false;
2017-12-05 10:40:55 +01:00
config->reloading = false;
config->active = false;
config->failed = false;
config->auto_back_and_forth = false;
config->reading = false;
config->show_marks = true;
config->title_align = ALIGN_LEFT;
2018-09-11 09:17:19 +02:00
config->tiling_drag = true;
config->tiling_drag_threshold = 9;
config->primary_selection = true;
2017-12-05 10:40:55 +01:00
config->smart_gaps = SMART_GAPS_OFF;
2017-12-05 10:40:55 +01:00
config->gaps_inner = 0;
config->gaps_outer.top = 0;
config->gaps_outer.right = 0;
config->gaps_outer.bottom = 0;
config->gaps_outer.left = 0;
2017-12-05 10:40:55 +01:00
if (!(config->active_bar_modifiers = create_list())) goto cleanup;
if (!(config->swaybg_command = strdup("swaybg"))) goto cleanup;
2017-12-05 10:40:55 +01:00
if (!(config->config_chain = create_list())) goto cleanup;
2018-07-08 21:34:47 +02:00
config->current_config_path = NULL;
2017-12-05 10:40:55 +01:00
config->current_config = NULL;
// borders
config->border = B_NORMAL;
config->floating_border = B_NORMAL;
config->border_thickness = 2;
config->floating_border_thickness = 2;
config->hide_edge_borders = E_NONE;
config->hide_edge_borders_smart = ESMART_OFF;
config->hide_lone_tab = false;
2017-12-05 10:40:55 +01:00
2021-12-10 16:09:29 +01:00
config->has_focused_tab_title = false;
2017-12-05 10:40:55 +01:00
// border colors
color_to_rgba(config->border_colors.focused.border, 0x4C7899FF);
color_to_rgba(config->border_colors.focused.background, 0x285577FF);
color_to_rgba(config->border_colors.focused.text, 0xFFFFFFFF);
color_to_rgba(config->border_colors.focused.indicator, 0x2E9EF4FF);
color_to_rgba(config->border_colors.focused.child_border, 0x285577FF);
color_to_rgba(config->border_colors.focused_inactive.border, 0x333333FF);
color_to_rgba(config->border_colors.focused_inactive.background, 0x5F676AFF);
color_to_rgba(config->border_colors.focused_inactive.text, 0xFFFFFFFF);
color_to_rgba(config->border_colors.focused_inactive.indicator, 0x484E50FF);
color_to_rgba(config->border_colors.focused_inactive.child_border, 0x5F676AFF);
color_to_rgba(config->border_colors.unfocused.border, 0x333333FF);
color_to_rgba(config->border_colors.unfocused.background, 0x222222FF);
color_to_rgba(config->border_colors.unfocused.text, 0x888888FF);
color_to_rgba(config->border_colors.unfocused.indicator, 0x292D2EFF);
color_to_rgba(config->border_colors.unfocused.child_border, 0x222222FF);
color_to_rgba(config->border_colors.urgent.border, 0x2F343AFF);
color_to_rgba(config->border_colors.urgent.background, 0x900000FF);
color_to_rgba(config->border_colors.urgent.text, 0xFFFFFFFF);
color_to_rgba(config->border_colors.urgent.indicator, 0x900000FF);
color_to_rgba(config->border_colors.urgent.child_border, 0x900000FF);
color_to_rgba(config->border_colors.placeholder.border, 0x000000FF);
color_to_rgba(config->border_colors.placeholder.background, 0x0C0C0CFF);
color_to_rgba(config->border_colors.placeholder.text, 0xFFFFFFFF);
color_to_rgba(config->border_colors.placeholder.indicator, 0x000000FF);
color_to_rgba(config->border_colors.placeholder.child_border, 0x0C0C0CFF);
color_to_rgba(config->border_colors.background, 0xFFFFFFFF);
2017-12-05 10:40:55 +01:00
// The keysym to keycode translation
struct xkb_rule_names rules = {0};
config->keysym_translation_state =
keysym_translation_state_create(rules);
2017-12-05 10:40:55 +01:00
return;
cleanup:
sway_abort("Unable to allocate config structures");
}
static bool file_exists(const char *path) {
return path && access(path, R_OK) != -1;
}
static char *config_path(const char *prefix, const char *config_folder) {
if (!prefix || !prefix[0] || !config_folder || !config_folder[0]) {
return NULL;
}
const char *filename = "config";
size_t size = 3 + strlen(prefix) + strlen(config_folder) + strlen(filename);
char *path = calloc(size, sizeof(char));
snprintf(path, size, "%s/%s/%s", prefix, config_folder, filename);
return path;
}
2017-12-05 10:40:55 +01:00
static char *get_config_path(void) {
char *path = NULL;
const char *home = getenv("HOME");
char *config_home_fallback = NULL;
const char *config_home = getenv("XDG_CONFIG_HOME");
if ((config_home == NULL || config_home[0] == '\0') && home != NULL) {
size_t size_fallback = 1 + strlen(home) + strlen("/.config");
config_home_fallback = calloc(size_fallback, sizeof(char));
if (config_home_fallback != NULL)
snprintf(config_home_fallback, size_fallback, "%s/.config", home);
config_home = config_home_fallback;
}
struct config_path {
const char *prefix;
const char *config_folder;
2017-12-05 10:40:55 +01:00
};
struct config_path config_paths[] = {
{ .prefix = home, .config_folder = ".sway"},
{ .prefix = config_home, .config_folder = "sway"},
{ .prefix = home, .config_folder = ".i3"},
{ .prefix = config_home, .config_folder = "i3"},
{ .prefix = SYSCONFDIR, .config_folder = "sway"},
{ .prefix = SYSCONFDIR, .config_folder = "i3"}
};
2017-12-05 10:40:55 +01:00
size_t num_config_paths = sizeof(config_paths)/sizeof(config_paths[0]);
for (size_t i = 0; i < num_config_paths; i++) {
path = config_path(config_paths[i].prefix, config_paths[i].config_folder);
if (!path) {
continue;
}
if (file_exists(path)) {
break;
2017-12-05 10:40:55 +01:00
}
free(path);
path = NULL;
2017-12-05 10:40:55 +01:00
}
free(config_home_fallback);
return path;
2017-12-05 10:40:55 +01:00
}
2018-08-02 05:54:40 +02:00
static bool load_config(const char *path, struct sway_config *config,
struct swaynag_instance *swaynag) {
if (path == NULL) {
sway_log(SWAY_ERROR, "Unable to find a config file!");
return false;
}
sway_log(SWAY_INFO, "Loading config from %s", path);
2017-12-05 10:40:55 +01:00
struct stat sb;
if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)) {
sway_log(SWAY_ERROR, "%s is a directory not a config file", path);
2017-12-05 10:40:55 +01:00
return false;
}
FILE *f = fopen(path, "r");
if (!f) {
sway_log(SWAY_ERROR, "Unable to open %s for reading", path);
2017-12-05 10:40:55 +01:00
return false;
}
bool config_load_success = read_config(f, config, swaynag);
2017-12-05 10:40:55 +01:00
fclose(f);
if (!config_load_success) {
sway_log(SWAY_ERROR, "Error(s) loading config!");
2017-12-05 10:40:55 +01:00
}
return config->active || !config->validating || config_load_success;
2017-12-05 10:40:55 +01:00
}
bool load_main_config(const char *file, bool is_active, bool validating) {
2017-12-05 10:40:55 +01:00
char *path;
if (file != NULL) {
path = strdup(file);
} else {
path = get_config_path();
}
if (path == NULL) {
sway_log(SWAY_ERROR, "Cannot find config file");
return false;
}
2017-12-05 10:40:55 +01:00
char *real_path = realpath(path, NULL);
if (real_path == NULL) {
sway_log(SWAY_ERROR, "%s not found", path);
free(path);
return false;
}
2017-12-05 10:40:55 +01:00
struct sway_config *old_config = config;
config = calloc(1, sizeof(struct sway_config));
if (!config) {
sway_abort("Unable to allocate config");
}
config_defaults(config);
config->validating = validating;
2017-12-05 10:40:55 +01:00
if (is_active) {
sway_log(SWAY_DEBUG, "Performing configuration file %s",
validating ? "validation" : "reload");
2017-12-05 10:40:55 +01:00
config->reloading = true;
config->active = true;
// xwayland can only be enabled/disabled at launch
sway_log(SWAY_DEBUG, "xwayland will remain %s",
old_config->xwayland ? "enabled" : "disabled");
config->xwayland = old_config->xwayland;
if (!config->validating) {
if (old_config->swaybg_client != NULL) {
wl_client_destroy(old_config->swaybg_client);
}
if (old_config->swaynag_config_errors.client != NULL) {
wl_client_destroy(old_config->swaynag_config_errors.client);
}
input_manager_reset_all_inputs();
}
2017-12-05 10:40:55 +01:00
}
config->user_config_path = file ? true : false;
config->current_config_path = path;
list_add(config->config_chain, real_path);
2017-12-05 10:40:55 +01:00
config->reading = true;
// Read security configs
2018-01-31 05:09:21 +01:00
// TODO: Security
2017-12-05 10:40:55 +01:00
bool success = true;
2018-01-31 05:09:21 +01:00
/*
2017-12-05 10:40:55 +01:00
DIR *dir = opendir(SYSCONFDIR "/sway/security.d");
if (!dir) {
sway_log(SWAY_ERROR,
2017-12-12 15:02:30 +01:00
"%s does not exist, sway will have no security configuration"
" and will probably be broken", SYSCONFDIR "/sway/security.d");
2017-12-05 10:40:55 +01:00
} else {
list_t *secconfigs = create_list();
char *base = SYSCONFDIR "/sway/security.d/";
struct dirent *ent = readdir(dir);
struct stat s;
while (ent != NULL) {
char *_path = malloc(strlen(ent->d_name) + strlen(base) + 1);
strcpy(_path, base);
strcat(_path, ent->d_name);
lstat(_path, &s);
if (S_ISREG(s.st_mode) && ent->d_name[0] != '.') {
list_add(secconfigs, _path);
}
else {
free(_path);
}
ent = readdir(dir);
}
closedir(dir);
list_qsort(secconfigs, qstrcmp);
for (int i = 0; i < secconfigs->length; ++i) {
char *_path = secconfigs->items[i];
2017-12-12 15:02:30 +01:00
if (stat(_path, &s) || s.st_uid != 0 || s.st_gid != 0 ||
(((s.st_mode & 0777) != 0644) &&
2017-12-14 17:11:56 +01:00
(s.st_mode & 0777) != 0444)) {
sway_log(SWAY_ERROR,
2017-12-12 15:02:30 +01:00
"Refusing to load %s - it must be owned by root "
"and mode 644 or 444", _path);
2017-12-05 10:40:55 +01:00
success = false;
} else {
success = success && load_config(_path, config);
}
}
list_free_items_and_destroy(secconfigs);
2017-12-05 10:40:55 +01:00
}
2018-01-31 05:09:21 +01:00
*/
2017-12-05 10:40:55 +01:00
success = success && load_config(path, config,
&config->swaynag_config_errors);
2017-12-05 10:40:55 +01:00
if (validating) {
free_config(config);
config = old_config;
return success;
}
2021-09-19 21:02:59 +02:00
// Only really necessary if not explicitly `font` is set in the config.
config_update_font_height();
if (is_active && !validating) {
input_manager_verify_fallback_seat();
for (int i = 0; i < config->input_configs->length; i++) {
input_manager_apply_input_config(config->input_configs->items[i]);
}
for (int i = 0; i < config->input_type_configs->length; i++) {
input_manager_apply_input_config(
config->input_type_configs->items[i]);
}
for (int i = 0; i < config->seat_configs->length; i++) {
input_manager_apply_seat_config(config->seat_configs->items[i]);
}
sway_switch_retrigger_bindings_for_all();
reset_outputs();
spawn_swaybg();
2017-12-05 10:40:55 +01:00
config->reloading = false;
if (config->swaynag_config_errors.client != NULL) {
swaynag_show(&config->swaynag_config_errors);
}
2017-12-05 10:40:55 +01:00
}
if (old_config) {
destroy_removed_seats(old_config, config);
2017-12-05 10:40:55 +01:00
free_config(old_config);
}
config->reading = false;
return success;
}
2017-12-12 15:02:30 +01:00
static bool load_include_config(const char *path, const char *parent_dir,
struct sway_config *config, struct swaynag_instance *swaynag) {
2017-12-05 18:47:57 +01:00
// save parent config
2018-07-08 21:34:47 +02:00
const char *parent_config = config->current_config_path;
2017-12-05 18:47:57 +01:00
char *full_path;
2017-12-05 18:47:57 +01:00
int len = strlen(path);
if (len >= 1 && path[0] != '/') {
len = len + strlen(parent_dir) + 2;
full_path = malloc(len * sizeof(char));
if (!full_path) {
sway_log(SWAY_ERROR,
2017-12-12 15:02:30 +01:00
"Unable to allocate full path to included config");
2017-12-05 18:47:57 +01:00
return false;
}
snprintf(full_path, len, "%s/%s", parent_dir, path);
} else {
full_path = strdup(path);
2017-12-05 18:47:57 +01:00
}
char *real_path = realpath(full_path, NULL);
free(full_path);
if (real_path == NULL) {
sway_log(SWAY_DEBUG, "%s not found.", path);
2017-12-05 18:47:57 +01:00
return false;
}
// check if config has already been included
int j;
for (j = 0; j < config->config_chain->length; ++j) {
char *old_path = config->config_chain->items[j];
if (strcmp(real_path, old_path) == 0) {
sway_log(SWAY_DEBUG,
2017-12-12 15:02:30 +01:00
"%s already included once, won't be included again.",
real_path);
2017-12-05 18:47:57 +01:00
free(real_path);
return false;
}
}
2018-07-08 21:34:47 +02:00
config->current_config_path = real_path;
2017-12-05 18:47:57 +01:00
list_add(config->config_chain, real_path);
int index = config->config_chain->length - 1;
if (!load_config(real_path, config, swaynag)) {
2017-12-05 18:47:57 +01:00
free(real_path);
2018-07-08 21:34:47 +02:00
config->current_config_path = parent_config;
2017-12-05 18:47:57 +01:00
list_del(config->config_chain, index);
return false;
}
2018-07-08 21:34:47 +02:00
// restore current_config_path
config->current_config_path = parent_config;
2017-12-05 18:47:57 +01:00
return true;
}
void load_include_configs(const char *path, struct sway_config *config,
struct swaynag_instance *swaynag) {
2017-12-05 18:47:57 +01:00
char *wd = getcwd(NULL, 0);
2018-07-08 21:34:47 +02:00
char *parent_path = strdup(config->current_config_path);
2017-12-05 18:47:57 +01:00
const char *parent_dir = dirname(parent_path);
if (chdir(parent_dir) < 0) {
sway_log(SWAY_ERROR, "failed to change working directory");
goto cleanup;
2017-12-05 18:47:57 +01:00
}
wordexp_t p;
if (wordexp(path, &p, 0) == 0) {
char **w = p.we_wordv;
size_t i;
for (i = 0; i < p.we_wordc; ++i) {
load_include_config(w[i], parent_dir, config, swaynag);
}
wordfree(&p);
2017-12-05 18:47:57 +01:00
}
// Attempt to restore working directory before returning.
2017-12-05 18:47:57 +01:00
if (chdir(wd) < 0) {
sway_log(SWAY_ERROR, "failed to change working directory");
2017-12-05 18:47:57 +01:00
}
cleanup:
free(parent_path);
2017-12-05 18:47:57 +01:00
free(wd);
}
void run_deferred_commands(void) {
if (!config->cmd_queue->length) {
return;
}
sway_log(SWAY_DEBUG, "Running deferred commands");
while (config->cmd_queue->length) {
char *line = config->cmd_queue->items[0];
list_t *res_list = execute_command(line, NULL, NULL);
for (int i = 0; i < res_list->length; ++i) {
struct cmd_results *res = res_list->items[i];
if (res->status != CMD_SUCCESS) {
sway_log(SWAY_ERROR, "Error on line '%s': %s",
line, res->error);
}
free_cmd_results(res);
}
list_del(config->cmd_queue, 0);
list_free(res_list);
free(line);
}
}
void run_deferred_bindings(void) {
struct sway_seat *seat;
wl_list_for_each(seat, &(server.input->seats), link) {
if (!seat->deferred_bindings->length) {
continue;
}
sway_log(SWAY_DEBUG, "Running deferred bindings for seat %s",
seat->wlr_seat->name);
while (seat->deferred_bindings->length) {
struct sway_binding *binding = seat->deferred_bindings->items[0];
seat_execute_command(seat, binding);
list_del(seat->deferred_bindings, 0);
free_sway_binding(binding);
}
}
}
// get line, with backslash continuation
static ssize_t getline_with_cont(char **lineptr, size_t *line_size, FILE *file,
int *nlines) {
char *next_line = NULL;
size_t next_line_size = 0;
ssize_t nread = getline(lineptr, line_size, file);
*nlines = nread == -1 ? 0 : 1;
while (nread >= 2 && strcmp(&(*lineptr)[nread - 2], "\\\n") == 0 && (*lineptr)[0] != '#') {
ssize_t next_nread = getline(&next_line, &next_line_size, file);
if (next_nread == -1) {
break;
}
(*nlines)++;
nread += next_nread - 2;
if ((ssize_t) *line_size < nread + 1) {
*line_size = nread + 1;
char *old_ptr = *lineptr;
*lineptr = realloc(*lineptr, *line_size);
if (!*lineptr) {
free(old_ptr);
nread = -1;
break;
}
}
strcpy(&(*lineptr)[nread - next_nread], next_line);
}
free(next_line);
return nread;
}
static int detect_brace(FILE *file) {
int ret = 0;
int lines = 0;
long pos = ftell(file);
char *line = NULL;
size_t line_size = 0;
while ((getline(&line, &line_size, file)) != -1) {
lines++;
strip_whitespace(line);
if (*line) {
if (strcmp(line, "{") == 0) {
ret = lines;
}
break;
}
}
free(line);
if (ret == 0) {
fseek(file, pos, SEEK_SET);
}
return ret;
}
static char *expand_line(const char *block, const char *line, bool add_brace) {
int size = (block ? strlen(block) + 1 : 0) + strlen(line)
+ (add_brace ? 2 : 0) + 1;
char *expanded = calloc(1, size);
if (!expanded) {
sway_log(SWAY_ERROR, "Cannot allocate expanded line buffer");
return NULL;
}
snprintf(expanded, size, "%s%s%s%s", block ? block : "",
block ? " " : "", line, add_brace ? " {" : "");
return expanded;
}
bool read_config(FILE *file, struct sway_config *config,
struct swaynag_instance *swaynag) {
2018-07-08 21:34:47 +02:00
bool reading_main_config = false;
2018-07-15 15:59:54 +02:00
char *this_config = NULL;
size_t config_size = 0;
2018-07-08 21:34:47 +02:00
if (config->current_config == NULL) {
reading_main_config = true;
int ret_seek = fseek(file, 0, SEEK_END);
long ret_tell = ftell(file);
if (ret_seek == -1 || ret_tell == -1) {
sway_log(SWAY_ERROR, "Unable to get size of config file");
return false;
}
config_size = ret_tell;
2018-07-08 21:34:47 +02:00
rewind(file);
2018-07-15 15:59:54 +02:00
config->current_config = this_config = calloc(1, config_size + 1);
if (this_config == NULL) {
sway_log(SWAY_ERROR, "Unable to allocate buffer for config contents");
2018-07-08 21:34:47 +02:00
return false;
}
}
2017-12-05 10:40:55 +01:00
bool success = true;
int line_number = 0;
char *line = NULL;
size_t line_size = 0;
ssize_t nread;
list_t *stack = create_list();
2018-07-15 15:59:54 +02:00
size_t read = 0;
int nlines = 0;
while ((nread = getline_with_cont(&line, &line_size, file, &nlines)) != -1) {
2018-07-08 21:34:47 +02:00
if (reading_main_config) {
if (read + nread > config_size) {
sway_log(SWAY_ERROR, "Config file changed during reading");
success = false;
break;
2018-07-15 15:59:54 +02:00
}
strcpy(&this_config[read], line);
read += nread;
2018-07-08 21:34:47 +02:00
}
if (line[nread - 1] == '\n') {
line[nread - 1] = '\0';
2017-12-05 10:40:55 +01:00
}
line_number += nlines;
sway_log(SWAY_DEBUG, "Read line %d: %s", line_number, line);
strip_whitespace(line);
if (!*line || line[0] == '#') {
continue;
}
int brace_detected = 0;
if (line[strlen(line) - 1] != '{' && line[strlen(line) - 1] != '}') {
brace_detected = detect_brace(file);
if (brace_detected > 0) {
line_number += brace_detected;
sway_log(SWAY_DEBUG, "Detected open brace on line %d", line_number);
}
}
char *block = stack->length ? stack->items[0] : NULL;
char *expanded = expand_line(block, line, brace_detected > 0);
if (!expanded) {
success = false;
break;
}
config->current_config_line_number = line_number;
config->current_config_line = line;
2017-12-05 10:40:55 +01:00
struct cmd_results *res;
char *new_block = NULL;
if (block && strcmp(block, "<commands>") == 0) {
2017-12-05 10:40:55 +01:00
// Special case
res = config_commands_command(expanded);
2017-12-05 10:40:55 +01:00
} else {
res = config_command(expanded, &new_block);
2017-12-05 10:40:55 +01:00
}
switch(res->status) {
case CMD_FAILURE:
case CMD_INVALID:
sway_log(SWAY_ERROR, "Error on line %i '%s': %s (%s)", line_number,
2018-07-08 21:34:47 +02:00
line, res->error, config->current_config_path);
if (!config->validating) {
swaynag_log(config->swaynag_command, swaynag,
"Error on line %i (%s) '%s': %s", line_number,
config->current_config_path, line, res->error);
}
2017-12-05 10:40:55 +01:00
success = false;
break;
case CMD_DEFER:
sway_log(SWAY_DEBUG, "Deferring command `%s'", line);
2018-07-19 07:39:58 +02:00
list_add(config->cmd_queue, strdup(expanded));
2017-12-05 10:40:55 +01:00
break;
case CMD_BLOCK_COMMANDS:
sway_log(SWAY_DEBUG, "Entering commands block");
list_insert(stack, 0, "<commands>");
2017-12-05 10:40:55 +01:00
break;
case CMD_BLOCK:
sway_log(SWAY_DEBUG, "Entering block '%s'", new_block);
list_insert(stack, 0, strdup(new_block));
if (strcmp(new_block, "bar") == 0) {
config->current_bar = NULL;
2017-12-05 10:40:55 +01:00
}
break;
case CMD_BLOCK_END:
if (!block) {
sway_log(SWAY_DEBUG, "Unmatched '}' on line %i", line_number);
success = false;
2017-12-14 17:11:56 +01:00
break;
}
if (strcmp(block, "bar") == 0) {
2017-12-05 10:40:55 +01:00
config->current_bar = NULL;
}
sway_log(SWAY_DEBUG, "Exiting block '%s'", block);
list_del(stack, 0);
free(block);
memset(&config->handler_context, 0,
sizeof(config->handler_context));
2017-12-05 10:40:55 +01:00
default:;
}
free(new_block);
2018-07-19 07:39:58 +02:00
free(expanded);
2017-12-05 10:40:55 +01:00
free_cmd_results(res);
}
free(line);
list_free_items_and_destroy(stack);
config->current_config_line_number = 0;
config->current_config_line = NULL;
2017-12-05 10:40:55 +01:00
return success;
}
void config_add_swaynag_warning(char *fmt, ...) {
if (config->reading && !config->validating) {
va_list args;
va_start(args, fmt);
size_t length = vsnprintf(NULL, 0, fmt, args) + 1;
va_end(args);
char *temp = malloc(length + 1);
if (!temp) {
sway_log(SWAY_ERROR, "Failed to allocate buffer for warning.");
return;
}
va_start(args, fmt);
vsnprintf(temp, length, fmt, args);
va_end(args);
swaynag_log(config->swaynag_command, &config->swaynag_config_errors,
"Warning on line %i (%s) '%s': %s",
config->current_config_line_number, config->current_config_path,
config->current_config_line, temp);
}
}
2017-12-05 10:40:55 +01:00
char *do_var_replacement(char *str) {
int i;
char *find = str;
while ((find = strchr(find, '$'))) {
// Skip if escaped.
if (find > str && find[-1] == '\\') {
if (find == str + 1 || !(find > str + 1 && find[-2] == '\\')) {
++find;
continue;
}
}
// Unescape double $ and move on
if (find[1] == '$') {
size_t length = strlen(find + 1);
memmove(find, find + 1, length);
find[length] = '\0';
2018-06-05 16:07:42 +02:00
++find;
continue;
}
2017-12-05 10:40:55 +01:00
// Find matching variable
for (i = 0; i < config->symbols->length; ++i) {
struct sway_variable *var = config->symbols->items[i];
int vnlen = strlen(var->name);
if (strncmp(find, var->name, vnlen) == 0) {
int vvlen = strlen(var->value);
char *newstr = malloc(strlen(str) - vnlen + vvlen + 1);
if (!newstr) {
sway_log(SWAY_ERROR,
2017-12-12 15:02:30 +01:00
"Unable to allocate replacement "
"during variable expansion");
2017-12-05 10:40:55 +01:00
break;
}
char *newptr = newstr;
int offset = find - str;
strncpy(newptr, str, offset);
newptr += offset;
strncpy(newptr, var->value, vvlen);
newptr += vvlen;
strcpy(newptr, find + vnlen);
free(str);
str = newstr;
find = str + offset + vvlen;
break;
}
}
if (i == config->symbols->length) {
++find;
}
}
return str;
}
2018-01-31 05:09:21 +01:00
// the naming is intentional (albeit long): a workspace_output_cmp function
// would compare two structs in full, while this method only compares the
// workspace.
int workspace_output_cmp_workspace(const void *a, const void *b) {
const struct workspace_config *wsa = a, *wsb = b;
2018-01-31 05:09:21 +01:00
return lenient_strcmp(wsa->workspace, wsb->workspace);
}
void config_update_font_height(void) {
int prev_max_height = config->font_height;
get_text_metrics(config->font_description, &config->font_height, &config->font_baseline);
if (config->font_height != prev_max_height) {
Implement type safe arguments and demote sway_container This commit changes the meaning of sway_container so that it only refers to layout containers and view containers. Workspaces, outputs and the root are no longer known as containers. Instead, root, outputs, workspaces and containers are all a type of node, and containers come in two types: layout containers and view containers. In addition to the above, this implements type safe variables. This means we use specific types such as sway_output and sway_workspace instead of generic containers or nodes. However, it's worth noting that in a few places places (eg. seat focus and transactions) referring to them in a generic way is unavoidable which is why we still use nodes in some places. If you want a TL;DR, look at node.h, as well as the struct definitions for root, output, workspace and container. Note that sway_output now contains a workspaces list, and workspaces now contain a tiling and floating list, and containers now contain a pointer back to the workspace. There are now functions for seat_get_focused_workspace and seat_get_focused_container. The latter will return NULL if a workspace itself is focused. Most other seat functions like seat_get_focus and seat_set_focus now accept and return nodes. In the config->handler_context struct, current_container has been replaced with three pointers: node, container and workspace. node is the same as what current_container was, while workspace is the workspace that the node resides on and container is the actual container, which may be NULL if a workspace itself is focused. The global root_container variable has been replaced with one simply called root, which is a pointer to the sway_root instance. The way outputs are created, enabled, disabled and destroyed has changed. Previously we'd wrap the sway_output in a container when it is enabled, but as we don't have containers any more it needs a different approach. The output_create and output_destroy functions previously created/destroyed the container, but now they create/destroy the sway_output. There is a new function output_disable to disable an output without destroying it. Containers have a new view property. If this is populated then the container is a view container, otherwise it's a layout container. Like before, this property is immutable for the life of the container. Containers have both a `sway_container *parent` and `sway_workspace *workspace`. As we use specific types now, parent cannot point to a workspace so it'll be NULL for containers which are direct children of the workspace. The workspace property is set for all containers, except those which are hidden in the scratchpad as they have no workspace. In some cases we need to refer to workspaces in a container-like way. For example, workspaces have layout and children, but when using specific types this makes it difficult. Likewise, it's difficult for a container to get its parent's layout when the parent could be another container or a workspace. To make it easier, some helper functions have been created: container_parent_layout and container_get_siblings. container_remove_child has been renamed to container_detach and container_replace_child has been renamed to container_replace. `container_handle_fullscreen_reparent(con, old_parent)` has had the old_parent removed. We now unfullscreen the workspace when detaching the container, so this function is simplified and only needs one argument now. container_notify_subtree_changed has been renamed to container_update_representation. This is more descriptive of its purpose. I also wanted to be able to call it with whatever container was changed rather than the container's parent, which makes bubbling up to the workspace easier. There are now state structs per node thing. ie. sway_output_state, sway_workspace_state and sway_container_state. The focus, move and layout commands have been completely refactored to work with the specific types. I considered making these a separate PR, but I'd be backporting my changes only to replace them again, and it's easier just to test everything at once.
2018-08-30 13:00:10 +02:00
arrange_root();
}
}
static void translate_binding_list(list_t *bindings, list_t *bindsyms,
list_t *bindcodes) {
for (int i = 0; i < bindings->length; ++i) {
struct sway_binding *binding = bindings->items[i];
translate_binding(binding);
switch (binding->type) {
case BINDING_KEYSYM:
2019-04-20 18:13:12 +02:00
binding_add_translated(binding, bindsyms);
break;
case BINDING_KEYCODE:
2019-04-20 18:13:12 +02:00
binding_add_translated(binding, bindcodes);
break;
default:
sway_assert(false, "unexpected translated binding type: %d",
binding->type);
break;
}
}
}
void translate_keysyms(struct input_config *input_config) {
keysym_translation_state_destroy(config->keysym_translation_state);
struct xkb_rule_names rules = {0};
input_config_fill_rule_names(input_config, &rules);
config->keysym_translation_state =
keysym_translation_state_create(rules);
for (int i = 0; i < config->modes->length; ++i) {
struct sway_mode *mode = config->modes->items[i];
list_t *bindsyms = create_list();
list_t *bindcodes = create_list();
translate_binding_list(mode->keysym_bindings, bindsyms, bindcodes);
translate_binding_list(mode->keycode_bindings, bindsyms, bindcodes);
list_free(mode->keysym_bindings);
list_free(mode->keycode_bindings);
mode->keysym_bindings = bindsyms;
mode->keycode_bindings = bindcodes;
}
sway_log(SWAY_DEBUG, "Translated keysyms using config for device '%s'",
input_config->identifier);
}