]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/audit.c
util-lib: split string parsing related calls from util.[ch] into parse-util.[ch]
[thirdparty/systemd.git] / src / basic / 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 <errno.h>
23 #include <stdio.h>
24
25 #include "audit.h"
26 #include "fd-util.h"
27 #include "fileio.h"
28 #include "macro.h"
29 #include "parse-util.h"
30 #include "process-util.h"
31 #include "user-util.h"
32 #include "util.h"
33
34 int audit_session_from_pid(pid_t pid, uint32_t *id) {
35 _cleanup_free_ char *s = NULL;
36 const char *p;
37 uint32_t u;
38 int r;
39
40 assert(id);
41
42 /* We don't convert ENOENT to ESRCH here, since we can't
43 * really distuingish between "audit is not available in the
44 * kernel" and "the process does not exist", both which will
45 * result in ENOENT. */
46
47 p = procfs_file_alloca(pid, "sessionid");
48
49 r = read_one_line_file(p, &s);
50 if (r < 0)
51 return r;
52
53 r = safe_atou32(s, &u);
54 if (r < 0)
55 return r;
56
57 if (u == AUDIT_SESSION_INVALID || u <= 0)
58 return -ENODATA;
59
60 *id = u;
61 return 0;
62 }
63
64 int audit_loginuid_from_pid(pid_t pid, uid_t *uid) {
65 _cleanup_free_ char *s = NULL;
66 const char *p;
67 uid_t u;
68 int r;
69
70 assert(uid);
71
72 p = procfs_file_alloca(pid, "loginuid");
73
74 r = read_one_line_file(p, &s);
75 if (r < 0)
76 return r;
77
78 r = parse_uid(s, &u);
79 if (r == -ENXIO) /* the UID was -1 */
80 return -ENODATA;
81 if (r < 0)
82 return r;
83
84 *uid = (uid_t) u;
85 return 0;
86 }
87
88 bool use_audit(void) {
89 static int cached_use = -1;
90
91 if (cached_use < 0) {
92 int fd;
93
94 fd = socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_AUDIT);
95 if (fd < 0)
96 cached_use = errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT;
97 else {
98 cached_use = true;
99 safe_close(fd);
100 }
101 }
102
103 return cached_use;
104 }