aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/server.h
diff options
context:
space:
mode:
authorLibravatar Tobias Blass <tobiasblass@t-online.de>2018-06-13 00:39:24 +0200
committerLibravatar Tobias Blass <tobiasblass@t-online.de>2018-06-19 00:19:57 +0200
commita5c091e3026eb41d3a4daef3db95b47a3445aa11 (patch)
tree3317961dd1425f428ccdebce378e0f010d57a14b /include/sway/server.h
parentMerge pull request #2143 from vilhalmer/mark-pool-buffers-busy (diff)
downloadsway-a5c091e3026eb41d3a4daef3db95b47a3445aa11.tar.gz
sway-a5c091e3026eb41d3a4daef3db95b47a3445aa11.tar.zst
sway-a5c091e3026eb41d3a4daef3db95b47a3445aa11.zip
Perform (partial) server initialization before dropping privileges.
Some operations during backend creation (e.g. becoming DRM master) require CAP_SYS_ADMIN privileges. At this point, sway has dropped them already, though. This patch splits the privileged part of server_init into its own function and calls it before dropping its privileges. This fixes the bug with minimal security implications.
Diffstat (limited to 'include/sway/server.h')
-rw-r--r--include/sway/server.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/server.h b/include/sway/server.h
index 65d96e7a..963d4dc1 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -47,6 +47,8 @@ struct sway_server {
47 47
48struct sway_server server; 48struct sway_server server;
49 49
50/* Prepares an unprivileged server_init by performing all privileged operations in advance */
51bool server_privileged_prepare(struct sway_server *server);
50bool server_init(struct sway_server *server); 52bool server_init(struct sway_server *server);
51void server_fini(struct sway_server *server); 53void server_fini(struct sway_server *server);
52void server_run(struct sway_server *server); 54void server_run(struct sway_server *server);