chiark / gitweb /
update TODO
[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 #include "sd-login.h"
30
31 int main(int argc, char *argv[]) {
32         int r;
33         const char *path = NULL, *seat;
34         bool changed_acl = false;
35         uid_t uid;
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         r = sd_seat_get_active(seat, NULL, &uid);
56         if (r == -ENOENT) {
57                 /* No active session on this seat */
58                 r = 0;
59                 goto finish;
60         } else if (r < 0) {
61                 log_error("Failed to determine active user on seat %s.", seat);
62                 goto finish;
63         }
64
65         r = devnode_acl(path, true, false, 0, true, uid);
66         if (r < 0) {
67                 log_error("Failed to apply ACL on %s: %s", path, strerror(-r));
68                 goto finish;
69         }
70
71         changed_acl = true;
72         r = 0;
73
74 finish:
75         if (path && !changed_acl) {
76                 int k;
77                 /* Better be safe that sorry and reset ACL */
78
79                 k = devnode_acl(path, true, false, 0, false, 0);
80                 if (k < 0) {
81                         log_error("Failed to apply ACL on %s: %s", path, strerror(-k));
82                         if (r >= 0)
83                                 r = k;
84                 }
85         }
86
87         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
88 }