chiark / gitweb /
logind: hook uaccess into udev by default
[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
35         log_set_target(LOG_TARGET_AUTO);
36         log_parse_environment();
37         log_open();
38
39         if (argc < 2 || argc > 3) {
40                 log_error("This program expects one or two arguments.");
41                 r = -EINVAL;
42                 goto finish;
43         }
44
45         path = argv[1];
46         seat = argc >= 3 ? argv[2] : "seat0";
47
48         p = strappend("/run/systemd/seats/", seat);
49         if (!p) {
50                 log_error("Out of memory.");
51                 goto finish;
52         }
53
54         r = parse_env_file(p, NEWLINE,
55                            "ACTIVE_UID", &active_uid,
56                            NULL);
57         free(p);
58
59         if (r < 0) {
60                 if (errno == ENOENT) {
61                         r = 0;
62                         goto finish;
63                 }
64
65                 log_error("Failed to read seat data for %s: %s", seat, strerror(-r));
66                 goto finish;
67         }
68
69         r = safe_atolu(active_uid, &ul);
70         if (r < 0) {
71                 log_error("Failed to parse active UID value %s: %s", active_uid, strerror(-r));
72                 goto finish;
73         }
74
75         r = devnode_acl(path, true, false, 0, true, (uid_t) ul);
76         if (r < 0) {
77                 log_error("Failed to apply ACL on %s: %s", path, strerror(-r));
78                 goto finish;
79         }
80
81         r = 0;
82
83 finish:
84         free(active_uid);
85
86         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
87 }