blob: d2b212ee4e7ac828f2aaa825794ae2e9edf6d796 [file] [log] [blame]
William Roberts29d238d2013-02-08 09:45:26 +09001/*
2 * Copyright 2012, Samsung Telecommunications of America
3 * Copyright (C) 2014 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 * Written by William Roberts <w.roberts@sta.samsung.com>
18 *
19 */
20
21#include <errno.h>
22#include <string.h>
23#include <unistd.h>
24
William Roberts29d238d2013-02-08 09:45:26 +090025#include "libaudit.h"
26
27/**
28 * Waits for an ack from the kernel
29 * @param fd
30 * The netlink socket fd
William Roberts29d238d2013-02-08 09:45:26 +090031 * @return
32 * This function returns 0 on success, else -errno.
33 */
Mark Salyzyncfd5b082016-10-17 14:28:00 -070034static int get_ack(int fd)
William Roberts29d238d2013-02-08 09:45:26 +090035{
36 int rc;
37 struct audit_message rep;
38
39 /* Sanity check, this is an internal interface this shouldn't happen */
40 if (fd < 0) {
41 return -EINVAL;
42 }
43
44 rc = audit_get_reply(fd, &rep, GET_REPLY_BLOCKING, MSG_PEEK);
45 if (rc < 0) {
46 return rc;
47 }
48
49 if (rep.nlh.nlmsg_type == NLMSG_ERROR) {
50 audit_get_reply(fd, &rep, GET_REPLY_BLOCKING, 0);
51 rc = ((struct nlmsgerr *)rep.data)->error;
52 if (rc) {
53 return -rc;
54 }
55 }
56
William Roberts29d238d2013-02-08 09:45:26 +090057 return 0;
58}
59
60/**
61 *
62 * @param fd
63 * The netlink socket fd
64 * @param type
65 * The type of netlink message
66 * @param data
67 * The data to send
68 * @param size
69 * The length of the data in bytes
70 * @return
71 * This function returns a positive sequence number on success, else -errno.
72 */
73static int audit_send(int fd, int type, const void *data, size_t size)
74{
75 int rc;
76 static int16_t sequence = 0;
77 struct audit_message req;
78 struct sockaddr_nl addr;
79
80 memset(&req, 0, sizeof(req));
81 memset(&addr, 0, sizeof(addr));
82
83 /* We always send netlink messaged */
84 addr.nl_family = AF_NETLINK;
85
86 /* Set up the netlink headers */
87 req.nlh.nlmsg_type = type;
88 req.nlh.nlmsg_len = NLMSG_SPACE(size);
89 req.nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
90
91 /*
92 * Check for a valid fd, even though sendto would catch this, its easier
93 * to always blindly increment the sequence number
94 */
95 if (fd < 0) {
96 return -EBADF;
97 }
98
99 /* Ensure the message is not too big */
100 if (NLMSG_SPACE(size) > MAX_AUDIT_MESSAGE_LENGTH) {
William Roberts29d238d2013-02-08 09:45:26 +0900101 return -EINVAL;
102 }
103
104 /* Only memcpy in the data if it was specified */
105 if (size && data) {
106 memcpy(NLMSG_DATA(&req.nlh), data, size);
107 }
108
109 /*
110 * Only increment the sequence number on a guarantee
111 * you will send it to the kernel.
112 *
113 * Also, the sequence is defined as a u32 in the kernel
114 * struct. Using an int here might not work on 32/64 bit splits. A
115 * signed 64 bit value can overflow a u32..but a u32
116 * might not fit in the response, so we need to use s32.
117 * Which is still kind of hackish since int could be 16 bits
118 * in size. The only safe type to use here is a signed 16
119 * bit value.
120 */
121 req.nlh.nlmsg_seq = ++sequence;
122
123 /* While failing and its due to interrupts */
124
125 rc = TEMP_FAILURE_RETRY(sendto(fd, &req, req.nlh.nlmsg_len, 0,
126 (struct sockaddr*) &addr, sizeof(addr)));
127
128 /* Not all the bytes were sent */
129 if (rc < 0) {
130 rc = -errno;
William Roberts29d238d2013-02-08 09:45:26 +0900131 goto out;
132 } else if ((uint32_t) rc != req.nlh.nlmsg_len) {
133 rc = -EPROTO;
134 goto out;
135 }
136
137 /* We sent all the bytes, get the ack */
Mark Salyzyncfd5b082016-10-17 14:28:00 -0700138 rc = get_ack(fd);
William Roberts29d238d2013-02-08 09:45:26 +0900139
140 /* If the ack failed, return the error, else return the sequence number */
141 rc = (rc == 0) ? (int) sequence : rc;
142
143out:
144 /* Don't let sequence roll to negative */
145 if (sequence < 0) {
William Roberts29d238d2013-02-08 09:45:26 +0900146 sequence = 0;
147 }
148
149 return rc;
150}
151
Nick Kralevichc234a1b2014-11-19 13:33:22 -0800152int audit_setup(int fd, uint32_t pid)
William Roberts29d238d2013-02-08 09:45:26 +0900153{
154 int rc;
155 struct audit_message rep;
156 struct audit_status status;
157
158 memset(&status, 0, sizeof(status));
159
160 /*
161 * In order to set the auditd PID we send an audit message over the netlink
162 * socket with the pid field of the status struct set to our current pid,
163 * and the the mask set to AUDIT_STATUS_PID
164 */
165 status.pid = pid;
Nick Kralevichc234a1b2014-11-19 13:33:22 -0800166 status.mask = AUDIT_STATUS_PID | AUDIT_STATUS_RATE_LIMIT;
Nick Kralevich9667a662015-05-09 12:36:18 -0700167 status.rate_limit = 20; // audit entries per second
William Roberts29d238d2013-02-08 09:45:26 +0900168
169 /* Let the kernel know this pid will be registering for audit events */
170 rc = audit_send(fd, AUDIT_SET, &status, sizeof(status));
171 if (rc < 0) {
William Roberts29d238d2013-02-08 09:45:26 +0900172 return rc;
173 }
174
175 /*
176 * In a request where we need to wait for a response, wait for the message
177 * and discard it. This message confirms and sync's us with the kernel.
Nick Kralevichc234a1b2014-11-19 13:33:22 -0800178 * This daemon is now registered as the audit logger.
179 *
180 * TODO
181 * If the daemon dies and restarts the message didn't come back,
182 * so I went to non-blocking and it seemed to fix the bug.
183 * Need to investigate further.
William Roberts29d238d2013-02-08 09:45:26 +0900184 */
Nick Kralevichc234a1b2014-11-19 13:33:22 -0800185 audit_get_reply(fd, &rep, GET_REPLY_NONBLOCKING, 0);
William Roberts29d238d2013-02-08 09:45:26 +0900186
187 return 0;
188}
189
190int audit_open()
191{
Nick Kralevichc234a1b2014-11-19 13:33:22 -0800192 return socket(PF_NETLINK, SOCK_RAW | SOCK_CLOEXEC, NETLINK_AUDIT);
William Roberts29d238d2013-02-08 09:45:26 +0900193}
194
195int audit_get_reply(int fd, struct audit_message *rep, reply_t block, int peek)
196{
197 ssize_t len;
198 int flags;
199 int rc = 0;
200
201 struct sockaddr_nl nladdr;
202 socklen_t nladdrlen = sizeof(nladdr);
203
204 if (fd < 0) {
205 return -EBADF;
206 }
207
208 /* Set up the flags for recv from */
209 flags = (block == GET_REPLY_NONBLOCKING) ? MSG_DONTWAIT : 0;
210 flags |= peek;
211
212 /*
213 * Get the data from the netlink socket but on error we need to be carefull,
214 * the interface shows that EINTR can never be returned, other errors,
215 * however, can be returned.
216 */
217 len = TEMP_FAILURE_RETRY(recvfrom(fd, rep, sizeof(*rep), flags,
218 (struct sockaddr*) &nladdr, &nladdrlen));
219
220 /*
221 * EAGAIN should be re-tried until success or another error manifests.
222 */
223 if (len < 0) {
224 rc = -errno;
225 if (block == GET_REPLY_NONBLOCKING && rc == -EAGAIN) {
226 /* If request is non blocking and errno is EAGAIN, just return 0 */
227 return 0;
228 }
William Roberts29d238d2013-02-08 09:45:26 +0900229 return rc;
230 }
231
232 if (nladdrlen != sizeof(nladdr)) {
William Roberts29d238d2013-02-08 09:45:26 +0900233 return -EPROTO;
234 }
235
236 /* Make sure the netlink message was not spoof'd */
237 if (nladdr.nl_pid) {
William Roberts29d238d2013-02-08 09:45:26 +0900238 return -EINVAL;
239 }
240
241 /* Check if the reply from the kernel was ok */
242 if (!NLMSG_OK(&rep->nlh, (size_t)len)) {
243 rc = (len == sizeof(*rep)) ? -EFBIG : -EBADE;
William Roberts29d238d2013-02-08 09:45:26 +0900244 }
245
246 return rc;
247}
248
249void audit_close(int fd)
250{
Mark Salyzyncfd5b082016-10-17 14:28:00 -0700251 close(fd);
William Roberts29d238d2013-02-08 09:45:26 +0900252}