diff options
author | Drew DeVault <[email protected]> | 2016-12-17 15:19:50 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2016-12-17 15:21:57 -0500 |
commit | 1172566d4e298aa6c3555a0d606af4ff31d0db48 (patch) | |
tree | a6afcfbbecef26cc6ecaac0fad75268175fe9a51 /sway/commands/permit.c | |
parent | 14d9200e4e51c7c4597df65cbf0fb5347ef80caa (diff) |
Change how security config is loaded
Diffstat (limited to 'sway/commands/permit.c')
-rw-r--r-- | sway/commands/permit.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sway/commands/permit.c b/sway/commands/permit.c index dee246d7..1b2a30bf 100644 --- a/sway/commands/permit.c +++ b/sway/commands/permit.c @@ -64,6 +64,11 @@ struct cmd_results *cmd_permit(int argc, char **argv) { return error; } + if (!current_config_path || strcmp(SYSCONFDIR "/sway/security", current_config_path) != 0) { + return cmd_results_new(CMD_INVALID, "permit", + "This command is only permitted to run from " SYSCONFDIR "/sway/security"); + } + struct feature_policy *policy = get_policy(argv[0]); policy->features |= get_features(argc, argv, &error); @@ -83,6 +88,11 @@ struct cmd_results *cmd_reject(int argc, char **argv) { return error; } + if (!current_config_path || strcmp(SYSCONFDIR "/sway/security", current_config_path) != 0) { + return cmd_results_new(CMD_INVALID, "permit", + "This command is only permitted to run from " SYSCONFDIR "/sway/security"); + } + struct feature_policy *policy = get_policy(argv[0]); policy->features &= ~get_features(argc, argv, &error); |