chiark / gitweb /
shutdown: coding style fixes
[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
29 int main(int argc, char *argv[]) {
30         int r;
31         const char *path, *seat;
32         char *p, *active_uid = NULL;
33         unsigned long ul;
34         bool changed_acl = false;
35
36         log_set_target(LOG_TARGET_AUTO);
37         log_parse_environment();
38         log_open();
39
40         if (argc < 2 || argc > 3) {
41                 log_error("This program expects one or two arguments.");
42                 r = -EINVAL;
43                 goto finish;
44         }
45
46         path = argv[1];
47         seat = argc < 3 || isempty(argv[2]) ? "seat0" : argv[2];
48
49         p = strappend("/run/systemd/seats/", seat);
50         if (!p) {
51                 log_error("Out of memory.");
52                 goto finish;
53         }
54
55         r = parse_env_file(p, NEWLINE,
56                            "ACTIVE_UID", &active_uid,
57                            NULL);
58         free(p);
59
60         if (r < 0) {
61                 if (errno == ENOENT) {
62                         r = 0;
63                         goto finish;
64                 }
65
66                 log_error("Failed to read seat data for %s: %s", seat, strerror(-r));
67                 goto finish;
68         }
69
70         if (active_uid) {
71                 r = safe_atolu(active_uid, &ul);
72                 if (r < 0) {
73                         log_error("Failed to parse active UID value %s: %s", active_uid, strerror(-r));
74                         goto finish;
75                 }
76
77                 r = devnode_acl(path, true, false, 0, true, (uid_t) ul);
78                 if (r < 0) {
79                         log_error("Failed to apply ACL on %s: %s", path, strerror(-r));
80                         goto finish;
81                 }
82
83                 changed_acl = true;
84         }
85
86         r = 0;
87
88 finish:
89         if (path && !changed_acl) {
90                 int k;
91                 /* Better be safe that sorry and reset ACL */
92
93                 k = devnode_acl(path, true, false, 0, false, 0);
94                 if (k < 0) {
95                         log_error("Failed to apply ACL on %s: %s", path, strerror(-k));
96                         if (r >= 0)
97                                 r = k;
98                 }
99         }
100
101         free(active_uid);
102
103         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
104 }