chiark / gitweb /
Fix check_loopback()
[elogind.git] / src / shared / audit.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 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   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <assert.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <ctype.h>
29
30 #include "macro.h"
31 #include "audit.h"
32 #include "util.h"
33 #include "log.h"
34 #include "fileio.h"
35 #include "virt.h"
36
37 int audit_session_from_pid(pid_t pid, uint32_t *id) {
38         _cleanup_free_ char *s = NULL;
39         const char *p;
40         uint32_t u;
41         int r;
42
43         assert(id);
44
45         p = procfs_file_alloca(pid, "sessionid");
46
47         r = read_one_line_file(p, &s);
48         if (r < 0)
49                 return r;
50
51         r = safe_atou32(s, &u);
52         if (r < 0)
53                 return r;
54
55         if (u == (uint32_t) -1 || u <= 0)
56                 return -ENXIO;
57
58         *id = u;
59         return 0;
60 }
61
62 int audit_loginuid_from_pid(pid_t pid, uid_t *uid) {
63         _cleanup_free_ char *s = NULL;
64         const char *p;
65         uid_t u;
66         int r;
67
68         assert(uid);
69
70         p = procfs_file_alloca(pid, "loginuid");
71
72         r = read_one_line_file(p, &s);
73         if (r < 0)
74                 return r;
75
76         r = parse_uid(s, &u);
77         if (r < 0)
78                 return r;
79
80         *uid = (uid_t) u;
81         return 0;
82 }
83
84 bool use_audit(void) {
85         static int cached_use = -1;
86
87         if (cached_use < 0) {
88                 int fd;
89
90                 fd = socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_AUDIT);
91                 if (fd < 0)
92                         cached_use = errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT;
93                 else {
94                         cached_use = true;
95                         safe_close(fd);
96                 }
97         }
98
99         return cached_use;
100 }