chiark / gitweb /
shutdown: untabify
[elogind.git] / src / uaccess.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2011 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <string.h>
24
25 #include "logind-acl.h"
26 #include "util.h"
27 #include "log.h"
28 #include "sd-daemon.h"
29
30 int main(int argc, char *argv[]) {
31         int r;
32         const char *path = NULL, *seat;
33         char *p, *active_uid = NULL;
34         unsigned long ul;
35         bool changed_acl = false;
36
37         log_set_target(LOG_TARGET_AUTO);
38         log_parse_environment();
39         log_open();
40
41         if (argc < 2 || argc > 3) {
42                 log_error("This program expects one or two arguments.");
43                 r = -EINVAL;
44                 goto finish;
45         }
46
47         /* Make sure we don't muck around with ACLs the system is not
48          * running systemd. */
49         if (!sd_booted())
50                 return 0;
51
52         path = argv[1];
53         seat = argc < 3 || isempty(argv[2]) ? "seat0" : argv[2];
54
55         p = strappend("/run/systemd/seats/", seat);
56         if (!p) {
57                 log_error("Out of memory.");
58                 r = -ENOMEM;
59                 goto finish;
60         }
61
62         r = parse_env_file(p, NEWLINE,
63                            "ACTIVE_UID", &active_uid,
64                            NULL);
65         free(p);
66
67         if (r < 0) {
68                 if (errno == ENOENT) {
69                         r = 0;
70                         goto finish;
71                 }
72
73                 log_error("Failed to read seat data for %s: %s", seat, strerror(-r));
74                 goto finish;
75         }
76
77         if (active_uid) {
78                 r = safe_atolu(active_uid, &ul);
79                 if (r < 0) {
80                         log_error("Failed to parse active UID value %s: %s", active_uid, strerror(-r));
81                         goto finish;
82                 }
83
84                 r = devnode_acl(path, true, false, 0, true, (uid_t) ul);
85                 if (r < 0) {
86                         log_error("Failed to apply ACL on %s: %s", path, strerror(-r));
87                         goto finish;
88                 }
89
90                 changed_acl = true;
91         }
92
93         r = 0;
94
95 finish:
96         if (path && !changed_acl) {
97                 int k;
98                 /* Better be safe that sorry and reset ACL */
99
100                 k = devnode_acl(path, true, false, 0, false, 0);
101                 if (k < 0) {
102                         log_error("Failed to apply ACL on %s: %s", path, strerror(-k));
103                         if (r >= 0)
104                                 r = k;
105                 }
106         }
107
108         free(active_uid);
109
110         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
111 }