blob: 27ffcf363f8d8ea883e5ebec0e43d98f53eee7e0 [file] [log] [blame]
85c87212005-04-29 16:23:29 +01001/* audit.c -- Auditing support
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Gateway between the kernel (e.g., selinux) and the user-space audit daemon.
3 * System-call specific features have moved to auditsc.c
4 *
5 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
6 * All Rights Reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it 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 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
23 *
24 * Goals: 1) Integrate fully with SELinux.
25 * 2) Minimal run-time overhead:
26 * a) Minimal when syscall auditing is disabled (audit_enable=0).
27 * b) Small when syscall auditing is enabled and no audit record
28 * is generated (defer as much work as possible to record
29 * generation time):
30 * i) context is allocated,
31 * ii) names from getname are stored without a copy, and
32 * iii) inode information stored from path_lookup.
33 * 3) Ability to disable syscall auditing at boot time (audit=0).
34 * 4) Usable by other parts of the kernel (if audit_log* is called,
35 * then a syscall record will be generated automatically for the
36 * current syscall).
37 * 5) Netlink interface to user-space.
38 * 6) Support low-overhead kernel-based filtering to minimize the
39 * information that must be passed to user-space.
40 *
85c87212005-04-29 16:23:29 +010041 * Example user-space utilities: http://people.redhat.com/sgrubb/audit/
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
43
44#include <linux/init.h>
45#include <asm/atomic.h>
46#include <asm/types.h>
47#include <linux/mm.h>
48#include <linux/module.h>
David Woodhouseb7d11252005-05-19 10:56:58 +010049#include <linux/err.h>
50#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <linux/audit.h>
53
54#include <net/sock.h>
55#include <linux/skbuff.h>
56#include <linux/netlink.h>
57
58/* No auditing will take place until audit_initialized != 0.
59 * (Initialization happens after skb_init is called.) */
60static int audit_initialized;
61
62/* No syscall auditing will take place unless audit_enabled != 0. */
63int audit_enabled;
64
65/* Default state when kernel boots without any parameters. */
66static int audit_default;
67
68/* If auditing cannot proceed, audit_failure selects what happens. */
69static int audit_failure = AUDIT_FAIL_PRINTK;
70
71/* If audit records are to be written to the netlink socket, audit_pid
72 * contains the (non-zero) pid. */
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010073int audit_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/* If audit_limit is non-zero, limit the rate of sending audit records
76 * to that number per second. This prevents DoS attacks, but results in
77 * audit records being dropped. */
78static int audit_rate_limit;
79
80/* Number of outstanding audit_buffers allowed. */
81static int audit_backlog_limit = 64;
David Woodhouseac4cec42005-07-02 14:08:48 +010082static int audit_backlog_wait_time = 60 * HZ;
83static int audit_backlog_wait_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010085/* The identity of the user shutting down the audit system. */
86uid_t audit_sig_uid = -1;
87pid_t audit_sig_pid = -1;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* Records can be lost in several ways:
90 0) [suppressed in audit_alloc]
91 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
92 2) out of memory in audit_log_move [alloc_skb]
93 3) suppressed due to audit_rate_limit
94 4) suppressed due to audit_backlog_limit
95*/
96static atomic_t audit_lost = ATOMIC_INIT(0);
97
98/* The netlink socket. */
99static struct sock *audit_sock;
100
David Woodhouseb7d11252005-05-19 10:56:58 +0100101/* The audit_freelist is a list of pre-allocated audit buffers (if more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
103 * being placed on the freelist). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static DEFINE_SPINLOCK(audit_freelist_lock);
105static int audit_freelist_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static LIST_HEAD(audit_freelist);
107
David Woodhouseb7d11252005-05-19 10:56:58 +0100108static struct sk_buff_head audit_skb_queue;
109static struct task_struct *kauditd_task;
110static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100111static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
David Woodhouseb7d11252005-05-19 10:56:58 +0100112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* The netlink socket is only to be read by 1 CPU, which lets us assume
Steve Grubb23f32d12005-05-13 18:35:15 +0100114 * that list additions and deletions never happen simultaneously in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * auditsc.c */
David Woodhousef6a789d2005-06-21 16:22:01 +0100116DECLARE_MUTEX(audit_netlink_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
119 * audit records. Since printk uses a 1024 byte buffer, this buffer
120 * should be at least that large. */
121#define AUDIT_BUFSIZ 1024
122
123/* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
124 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
125#define AUDIT_MAXFREE (2*NR_CPUS)
126
127/* The audit_buffer is used when formatting an audit record. The caller
128 * locks briefly to get the record off the freelist or to allocate the
129 * buffer, and locks briefly to send the buffer to the netlink layer or
130 * to place it on a transmit queue. Multiple audit_buffers can be in
131 * use simultaneously. */
132struct audit_buffer {
133 struct list_head list;
Chris Wright8fc61152005-05-06 15:54:17 +0100134 struct sk_buff *skb; /* formatted skb ready to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct audit_context *ctx; /* NULL or associated context */
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100136 int gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
Steve Grubbc0404992005-05-13 18:17:42 +0100139static void audit_set_pid(struct audit_buffer *ab, pid_t pid)
140{
141 struct nlmsghdr *nlh = (struct nlmsghdr *)ab->skb->data;
142 nlh->nlmsg_pid = pid;
143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145struct audit_entry {
146 struct list_head list;
147 struct audit_rule rule;
148};
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static void audit_panic(const char *message)
151{
152 switch (audit_failure)
153 {
154 case AUDIT_FAIL_SILENT:
155 break;
156 case AUDIT_FAIL_PRINTK:
157 printk(KERN_ERR "audit: %s\n", message);
158 break;
159 case AUDIT_FAIL_PANIC:
160 panic("audit: %s\n", message);
161 break;
162 }
163}
164
165static inline int audit_rate_check(void)
166{
167 static unsigned long last_check = 0;
168 static int messages = 0;
169 static DEFINE_SPINLOCK(lock);
170 unsigned long flags;
171 unsigned long now;
172 unsigned long elapsed;
173 int retval = 0;
174
175 if (!audit_rate_limit) return 1;
176
177 spin_lock_irqsave(&lock, flags);
178 if (++messages < audit_rate_limit) {
179 retval = 1;
180 } else {
181 now = jiffies;
182 elapsed = now - last_check;
183 if (elapsed > HZ) {
184 last_check = now;
185 messages = 0;
186 retval = 1;
187 }
188 }
189 spin_unlock_irqrestore(&lock, flags);
190
191 return retval;
192}
193
194/* Emit at least 1 message per second, even if audit_rate_check is
195 * throttling. */
196void audit_log_lost(const char *message)
197{
198 static unsigned long last_msg = 0;
199 static DEFINE_SPINLOCK(lock);
200 unsigned long flags;
201 unsigned long now;
202 int print;
203
204 atomic_inc(&audit_lost);
205
206 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
207
208 if (!print) {
209 spin_lock_irqsave(&lock, flags);
210 now = jiffies;
211 if (now - last_msg > HZ) {
212 print = 1;
213 last_msg = now;
214 }
215 spin_unlock_irqrestore(&lock, flags);
216 }
217
218 if (print) {
219 printk(KERN_WARNING
David Woodhouseb7d11252005-05-19 10:56:58 +0100220 "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 atomic_read(&audit_lost),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 audit_rate_limit,
223 audit_backlog_limit);
224 audit_panic(message);
225 }
226
227}
228
Serge Hallync94c2572005-04-29 16:27:17 +0100229static int audit_set_rate_limit(int limit, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 int old = audit_rate_limit;
232 audit_rate_limit = limit;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100233 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
David Woodhousebccf6ae2005-05-23 21:35:28 +0100234 "audit_rate_limit=%d old=%d by auid=%u",
Serge Hallync94c2572005-04-29 16:27:17 +0100235 audit_rate_limit, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return old;
237}
238
Serge Hallync94c2572005-04-29 16:27:17 +0100239static int audit_set_backlog_limit(int limit, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 int old = audit_backlog_limit;
242 audit_backlog_limit = limit;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100243 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
David Woodhousebccf6ae2005-05-23 21:35:28 +0100244 "audit_backlog_limit=%d old=%d by auid=%u",
Serge Hallync94c2572005-04-29 16:27:17 +0100245 audit_backlog_limit, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return old;
247}
248
Serge Hallync94c2572005-04-29 16:27:17 +0100249static int audit_set_enabled(int state, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 int old = audit_enabled;
252 if (state != 0 && state != 1)
253 return -EINVAL;
254 audit_enabled = state;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100255 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
David Woodhousebccf6ae2005-05-23 21:35:28 +0100256 "audit_enabled=%d old=%d by auid=%u",
Steve Grubbc0404992005-05-13 18:17:42 +0100257 audit_enabled, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return old;
259}
260
Serge Hallync94c2572005-04-29 16:27:17 +0100261static int audit_set_failure(int state, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int old = audit_failure;
264 if (state != AUDIT_FAIL_SILENT
265 && state != AUDIT_FAIL_PRINTK
266 && state != AUDIT_FAIL_PANIC)
267 return -EINVAL;
268 audit_failure = state;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100269 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
David Woodhousebccf6ae2005-05-23 21:35:28 +0100270 "audit_failure=%d old=%d by auid=%u",
Steve Grubbc0404992005-05-13 18:17:42 +0100271 audit_failure, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return old;
273}
274
David Woodhouseb7d11252005-05-19 10:56:58 +0100275int kauditd_thread(void *dummy)
276{
277 struct sk_buff *skb;
278
279 while (1) {
280 skb = skb_dequeue(&audit_skb_queue);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100281 wake_up(&audit_backlog_wait);
David Woodhouseb7d11252005-05-19 10:56:58 +0100282 if (skb) {
283 if (audit_pid) {
284 int err = netlink_unicast(audit_sock, skb, audit_pid, 0);
285 if (err < 0) {
286 BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */
287 printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid);
288 audit_pid = 0;
289 }
290 } else {
David Woodhousee1b09eb2005-06-24 17:24:11 +0100291 printk(KERN_NOTICE "%s\n", skb->data + NLMSG_SPACE(0));
David Woodhouseb7d11252005-05-19 10:56:58 +0100292 kfree_skb(skb);
293 }
294 } else {
295 DECLARE_WAITQUEUE(wait, current);
296 set_current_state(TASK_INTERRUPTIBLE);
297 add_wait_queue(&kauditd_wait, &wait);
298
299 if (!skb_queue_len(&audit_skb_queue))
300 schedule();
301
302 __set_current_state(TASK_RUNNING);
303 remove_wait_queue(&kauditd_wait, &wait);
304 }
305 }
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308void audit_send_reply(int pid, int seq, int type, int done, int multi,
309 void *payload, int size)
310{
311 struct sk_buff *skb;
312 struct nlmsghdr *nlh;
313 int len = NLMSG_SPACE(size);
314 void *data;
315 int flags = multi ? NLM_F_MULTI : 0;
316 int t = done ? NLMSG_DONE : type;
317
318 skb = alloc_skb(len, GFP_KERNEL);
319 if (!skb)
David Woodhouseb7d11252005-05-19 10:56:58 +0100320 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
David Woodhouseb7d11252005-05-19 10:56:58 +0100322 nlh = NLMSG_PUT(skb, pid, seq, t, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 nlh->nlmsg_flags = flags;
324 data = NLMSG_DATA(nlh);
325 memcpy(data, payload, size);
David Woodhouseb7d11252005-05-19 10:56:58 +0100326
327 /* Ignore failure. It'll only happen if the sender goes away,
328 because our timeout is set to infinite. */
329 netlink_unicast(audit_sock, skb, pid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return;
331
332nlmsg_failure: /* Used by NLMSG_PUT */
333 if (skb)
334 kfree_skb(skb);
335}
336
337/*
338 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
339 * control messages.
340 */
341static int audit_netlink_ok(kernel_cap_t eff_cap, u16 msg_type)
342{
343 int err = 0;
344
345 switch (msg_type) {
346 case AUDIT_GET:
347 case AUDIT_LIST:
348 case AUDIT_SET:
349 case AUDIT_ADD:
350 case AUDIT_DEL:
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100351 case AUDIT_SIGNAL_INFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!cap_raised(eff_cap, CAP_AUDIT_CONTROL))
353 err = -EPERM;
354 break;
Steve Grubb05474102005-05-21 00:18:37 +0100355 case AUDIT_USER:
David Woodhouse209aba02005-05-18 10:21:07 +0100356 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (!cap_raised(eff_cap, CAP_AUDIT_WRITE))
358 err = -EPERM;
359 break;
360 default: /* bad msg */
361 err = -EINVAL;
362 }
363
364 return err;
365}
366
367static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
368{
369 u32 uid, pid, seq;
370 void *data;
371 struct audit_status *status_get, status_set;
372 int err;
Steve Grubbc0404992005-05-13 18:17:42 +0100373 struct audit_buffer *ab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 u16 msg_type = nlh->nlmsg_type;
Serge Hallync94c2572005-04-29 16:27:17 +0100375 uid_t loginuid; /* loginuid of sender */
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100376 struct audit_sig_info sig_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 err = audit_netlink_ok(NETLINK_CB(skb).eff_cap, msg_type);
379 if (err)
380 return err;
381
David Woodhouseb7d11252005-05-19 10:56:58 +0100382 /* As soon as there's any sign of userspace auditd, start kauditd to talk to it */
383 if (!kauditd_task)
384 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
385 if (IS_ERR(kauditd_task)) {
386 err = PTR_ERR(kauditd_task);
387 kauditd_task = NULL;
388 return err;
389 }
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 pid = NETLINK_CREDS(skb)->pid;
392 uid = NETLINK_CREDS(skb)->uid;
Serge Hallync94c2572005-04-29 16:27:17 +0100393 loginuid = NETLINK_CB(skb).loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 seq = nlh->nlmsg_seq;
395 data = NLMSG_DATA(nlh);
396
397 switch (msg_type) {
398 case AUDIT_GET:
399 status_set.enabled = audit_enabled;
400 status_set.failure = audit_failure;
401 status_set.pid = audit_pid;
402 status_set.rate_limit = audit_rate_limit;
403 status_set.backlog_limit = audit_backlog_limit;
404 status_set.lost = atomic_read(&audit_lost);
David Woodhouseb7d11252005-05-19 10:56:58 +0100405 status_set.backlog = skb_queue_len(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0,
407 &status_set, sizeof(status_set));
408 break;
409 case AUDIT_SET:
410 if (nlh->nlmsg_len < sizeof(struct audit_status))
411 return -EINVAL;
412 status_get = (struct audit_status *)data;
413 if (status_get->mask & AUDIT_STATUS_ENABLED) {
Serge Hallync94c2572005-04-29 16:27:17 +0100414 err = audit_set_enabled(status_get->enabled, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (err < 0) return err;
416 }
417 if (status_get->mask & AUDIT_STATUS_FAILURE) {
Serge Hallync94c2572005-04-29 16:27:17 +0100418 err = audit_set_failure(status_get->failure, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (err < 0) return err;
420 }
421 if (status_get->mask & AUDIT_STATUS_PID) {
422 int old = audit_pid;
423 audit_pid = status_get->pid;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100424 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
David Woodhousebccf6ae2005-05-23 21:35:28 +0100425 "audit_pid=%d old=%d by auid=%u",
Serge Hallync94c2572005-04-29 16:27:17 +0100426 audit_pid, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428 if (status_get->mask & AUDIT_STATUS_RATE_LIMIT)
Serge Hallync94c2572005-04-29 16:27:17 +0100429 audit_set_rate_limit(status_get->rate_limit, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT)
Serge Hallync94c2572005-04-29 16:27:17 +0100431 audit_set_backlog_limit(status_get->backlog_limit,
432 loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
Steve Grubb05474102005-05-21 00:18:37 +0100434 case AUDIT_USER:
David Woodhouse209aba02005-05-18 10:21:07 +0100435 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
David Woodhouse4a4cd632005-06-22 14:56:47 +0100436 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
437 return 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100438
David Woodhouse5bb289b2005-06-24 14:14:05 +0100439 err = audit_filter_user(&NETLINK_CB(skb), msg_type);
David Woodhouse4a4cd632005-06-22 14:56:47 +0100440 if (err == 1) {
441 err = 0;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100442 ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
David Woodhouse4a4cd632005-06-22 14:56:47 +0100443 if (ab) {
444 audit_log_format(ab,
445 "user pid=%d uid=%u auid=%u msg='%.1024s'",
446 pid, uid, loginuid, (char *)data);
447 audit_set_pid(ab, pid);
448 audit_log_end(ab);
449 }
David Woodhouse0f45aa12005-06-19 19:35:50 +0100450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 case AUDIT_ADD:
453 case AUDIT_DEL:
454 if (nlh->nlmsg_len < sizeof(struct audit_rule))
455 return -EINVAL;
456 /* fallthrough */
457 case AUDIT_LIST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
Serge Hallync94c2572005-04-29 16:27:17 +0100459 uid, seq, data, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 break;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100461 case AUDIT_SIGNAL_INFO:
462 sig_data.uid = audit_sig_uid;
463 sig_data.pid = audit_sig_pid;
464 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO,
465 0, 0, &sig_data, sizeof(sig_data));
466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 default:
468 err = -EINVAL;
469 break;
470 }
471
472 return err < 0 ? err : 0;
473}
474
475/* Get message from skb (based on rtnetlink_rcv_skb). Each message is
476 * processed by audit_receive_msg. Malformed skbs with wrong length are
477 * discarded silently. */
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700478static void audit_receive_skb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 int err;
481 struct nlmsghdr *nlh;
482 u32 rlen;
483
484 while (skb->len >= NLMSG_SPACE(0)) {
485 nlh = (struct nlmsghdr *)skb->data;
486 if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len)
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700487 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
489 if (rlen > skb->len)
490 rlen = skb->len;
491 if ((err = audit_receive_msg(skb, nlh))) {
492 netlink_ack(skb, nlh, err);
493 } else if (nlh->nlmsg_flags & NLM_F_ACK)
494 netlink_ack(skb, nlh, 0);
495 skb_pull(skb, rlen);
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
499/* Receive messages from netlink socket. */
500static void audit_receive(struct sock *sk, int length)
501{
502 struct sk_buff *skb;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700503 unsigned int qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700505 down(&audit_netlink_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700507 for (qlen = skb_queue_len(&sk->sk_receive_queue); qlen; qlen--) {
508 skb = skb_dequeue(&sk->sk_receive_queue);
509 audit_receive_skb(skb);
510 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 up(&audit_netlink_sem);
513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516/* Initialize audit support at boot time. */
517static int __init audit_init(void)
518{
519 printk(KERN_INFO "audit: initializing netlink socket (%s)\n",
520 audit_default ? "enabled" : "disabled");
521 audit_sock = netlink_kernel_create(NETLINK_AUDIT, audit_receive);
522 if (!audit_sock)
523 audit_panic("cannot initialize netlink socket");
524
David Woodhouseb7d11252005-05-19 10:56:58 +0100525 audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
526 skb_queue_head_init(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 audit_initialized = 1;
528 audit_enabled = audit_default;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100529 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532__initcall(audit_init);
533
534/* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
535static int __init audit_enable(char *str)
536{
537 audit_default = !!simple_strtol(str, NULL, 0);
538 printk(KERN_INFO "audit: %s%s\n",
539 audit_default ? "enabled" : "disabled",
540 audit_initialized ? "" : " (after initialization)");
541 if (audit_initialized)
542 audit_enabled = audit_default;
543 return 0;
544}
545
546__setup("audit=", audit_enable);
547
Chris Wright16e19042005-05-06 15:53:34 +0100548static void audit_buffer_free(struct audit_buffer *ab)
549{
550 unsigned long flags;
551
Chris Wright8fc61152005-05-06 15:54:17 +0100552 if (!ab)
553 return;
554
Chris Wright5ac52f32005-05-06 15:54:53 +0100555 if (ab->skb)
556 kfree_skb(ab->skb);
David Woodhouseb7d11252005-05-19 10:56:58 +0100557
Chris Wright16e19042005-05-06 15:53:34 +0100558 spin_lock_irqsave(&audit_freelist_lock, flags);
559 if (++audit_freelist_count > AUDIT_MAXFREE)
560 kfree(ab);
561 else
562 list_add(&ab->list, &audit_freelist);
563 spin_unlock_irqrestore(&audit_freelist_lock, flags);
564}
565
Steve Grubbc0404992005-05-13 18:17:42 +0100566static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
Victor Fusco6c8c8ba2005-07-13 22:26:57 +0100567 unsigned int __nocast gfp_mask, int type)
Chris Wright16e19042005-05-06 15:53:34 +0100568{
569 unsigned long flags;
570 struct audit_buffer *ab = NULL;
Steve Grubbc0404992005-05-13 18:17:42 +0100571 struct nlmsghdr *nlh;
Chris Wright16e19042005-05-06 15:53:34 +0100572
573 spin_lock_irqsave(&audit_freelist_lock, flags);
574 if (!list_empty(&audit_freelist)) {
575 ab = list_entry(audit_freelist.next,
576 struct audit_buffer, list);
577 list_del(&ab->list);
578 --audit_freelist_count;
579 }
580 spin_unlock_irqrestore(&audit_freelist_lock, flags);
581
582 if (!ab) {
David Woodhouse4332bdd2005-05-06 15:59:57 +0100583 ab = kmalloc(sizeof(*ab), gfp_mask);
Chris Wright16e19042005-05-06 15:53:34 +0100584 if (!ab)
Chris Wright8fc61152005-05-06 15:54:17 +0100585 goto err;
Chris Wright16e19042005-05-06 15:53:34 +0100586 }
Chris Wright8fc61152005-05-06 15:54:17 +0100587
David Woodhouse4332bdd2005-05-06 15:59:57 +0100588 ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask);
Chris Wright5ac52f32005-05-06 15:54:53 +0100589 if (!ab->skb)
Chris Wright8fc61152005-05-06 15:54:17 +0100590 goto err;
591
David Woodhouseb7d11252005-05-19 10:56:58 +0100592 ab->ctx = ctx;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100593 ab->gfp_mask = gfp_mask;
Steve Grubbc0404992005-05-13 18:17:42 +0100594 nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0));
595 nlh->nlmsg_type = type;
596 nlh->nlmsg_flags = 0;
597 nlh->nlmsg_pid = 0;
598 nlh->nlmsg_seq = 0;
Chris Wright16e19042005-05-06 15:53:34 +0100599 return ab;
Chris Wright8fc61152005-05-06 15:54:17 +0100600err:
601 audit_buffer_free(ab);
602 return NULL;
Chris Wright16e19042005-05-06 15:53:34 +0100603}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
David Woodhousebfb44962005-05-21 21:08:09 +0100605/* Compute a serial number for the audit record. Audit records are
606 * written to user-space as soon as they are generated, so a complete
607 * audit record may be written in several pieces. The timestamp of the
608 * record and this serial number are used by the user-space tools to
609 * determine which pieces belong to the same audit record. The
610 * (timestamp,serial) tuple is unique for each syscall and is live from
611 * syscall entry to syscall exit.
612 *
David Woodhousebfb44962005-05-21 21:08:09 +0100613 * NOTE: Another possibility is to store the formatted records off the
614 * audit context (for those records that have a context), and emit them
615 * all at syscall exit. However, this could delay the reporting of
616 * significant errors until syscall exit (or never, if the system
617 * halts). */
David Woodhoused5b454f2005-07-15 12:56:03 +0100618
David Woodhousebfb44962005-05-21 21:08:09 +0100619unsigned int audit_serial(void)
620{
David Woodhoused5b454f2005-07-15 12:56:03 +0100621 static spinlock_t serial_lock = SPIN_LOCK_UNLOCKED;
622 static unsigned int serial = 0;
David Woodhousebfb44962005-05-21 21:08:09 +0100623
David Woodhoused5b454f2005-07-15 12:56:03 +0100624 unsigned long flags;
625 unsigned int ret;
David Woodhousebfb44962005-05-21 21:08:09 +0100626
David Woodhoused5b454f2005-07-15 12:56:03 +0100627 spin_lock_irqsave(&serial_lock, flags);
628 ret = serial++;
629 spin_unlock_irqrestore(&serial_lock, flags);
630
631 return ret;
David Woodhousebfb44962005-05-21 21:08:09 +0100632}
633
634static inline void audit_get_stamp(struct audit_context *ctx,
635 struct timespec *t, unsigned int *serial)
636{
637 if (ctx)
638 auditsc_get_stamp(ctx, t, serial);
639 else {
640 *t = CURRENT_TIME;
641 *serial = audit_serial();
642 }
643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645/* Obtain an audit buffer. This routine does locking to obtain the
646 * audit buffer, but then no locking is required for calls to
647 * audit_log_*format. If the tsk is a task that is currently in a
648 * syscall, then the syscall is marked as auditable and an audit record
649 * will be written at syscall exit. If there is no associated task, tsk
650 * should be NULL. */
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100651
652struct audit_buffer *audit_log_start(struct audit_context *ctx, int gfp_mask,
653 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 struct audit_buffer *ab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 struct timespec t;
Steve Grubbd812ddb2005-04-29 16:09:52 +0100657 unsigned int serial;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100658 int reserve;
David Woodhouseac4cec42005-07-02 14:08:48 +0100659 unsigned long timeout_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 if (!audit_initialized)
662 return NULL;
663
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100664 if (gfp_mask & __GFP_WAIT)
665 reserve = 0;
666 else
667 reserve = 5; /* Allow atomic callers to go up to five
668 entries over the normal backlog limit */
669
670 while (audit_backlog_limit
671 && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) {
David Woodhouseac4cec42005-07-02 14:08:48 +0100672 if (gfp_mask & __GFP_WAIT && audit_backlog_wait_time
673 && time_before(jiffies, timeout_start + audit_backlog_wait_time)) {
674
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100675 /* Wait for auditd to drain the queue a little */
676 DECLARE_WAITQUEUE(wait, current);
677 set_current_state(TASK_INTERRUPTIBLE);
678 add_wait_queue(&audit_backlog_wait, &wait);
679
680 if (audit_backlog_limit &&
681 skb_queue_len(&audit_skb_queue) > audit_backlog_limit)
David Woodhouseac4cec42005-07-02 14:08:48 +0100682 schedule_timeout(timeout_start + audit_backlog_wait_time - jiffies);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100683
684 __set_current_state(TASK_RUNNING);
685 remove_wait_queue(&audit_backlog_wait, &wait);
David Woodhouseac4cec42005-07-02 14:08:48 +0100686 continue;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100687 }
David Woodhousefb19b4c2005-05-19 14:55:56 +0100688 if (audit_rate_check())
689 printk(KERN_WARNING
690 "audit: audit_backlog=%d > "
691 "audit_backlog_limit=%d\n",
692 skb_queue_len(&audit_skb_queue),
693 audit_backlog_limit);
694 audit_log_lost("backlog limit exceeded");
David Woodhouseac4cec42005-07-02 14:08:48 +0100695 audit_backlog_wait_time = audit_backlog_wait_overflow;
696 wake_up(&audit_backlog_wait);
David Woodhousefb19b4c2005-05-19 14:55:56 +0100697 return NULL;
698 }
699
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100700 ab = audit_buffer_alloc(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (!ab) {
702 audit_log_lost("out of memory in audit_log_start");
703 return NULL;
704 }
705
David Woodhousebfb44962005-05-21 21:08:09 +0100706 audit_get_stamp(ab->ctx, &t, &serial);
Chris Wright197c69c2005-05-11 10:54:05 +0100707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
709 t.tv_sec, t.tv_nsec/1000000, serial);
710 return ab;
711}
712
Chris Wright8fc61152005-05-06 15:54:17 +0100713/**
Chris Wright5ac52f32005-05-06 15:54:53 +0100714 * audit_expand - expand skb in the audit buffer
Chris Wright8fc61152005-05-06 15:54:17 +0100715 * @ab: audit_buffer
716 *
717 * Returns 0 (no space) on failed expansion, or available space if
718 * successful.
719 */
David Woodhousee3b926b2005-05-10 18:56:08 +0100720static inline int audit_expand(struct audit_buffer *ab, int extra)
Chris Wright8fc61152005-05-06 15:54:17 +0100721{
Chris Wright5ac52f32005-05-06 15:54:53 +0100722 struct sk_buff *skb = ab->skb;
David Woodhousee3b926b2005-05-10 18:56:08 +0100723 int ret = pskb_expand_head(skb, skb_headroom(skb), extra,
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100724 ab->gfp_mask);
Chris Wright5ac52f32005-05-06 15:54:53 +0100725 if (ret < 0) {
726 audit_log_lost("out of memory in audit_expand");
Chris Wright8fc61152005-05-06 15:54:17 +0100727 return 0;
Chris Wright5ac52f32005-05-06 15:54:53 +0100728 }
729 return skb_tailroom(skb);
Chris Wright8fc61152005-05-06 15:54:17 +0100730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732/* Format an audit message into the audit buffer. If there isn't enough
733 * room in the audit buffer, more room will be allocated and vsnprint
734 * will be called a second time. Currently, we assume that a printk
735 * can't format message larger than 1024 bytes, so we don't either. */
736static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
737 va_list args)
738{
739 int len, avail;
Chris Wright5ac52f32005-05-06 15:54:53 +0100740 struct sk_buff *skb;
David Woodhouseeecb0a72005-05-10 18:58:51 +0100741 va_list args2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 if (!ab)
744 return;
745
Chris Wright5ac52f32005-05-06 15:54:53 +0100746 BUG_ON(!ab->skb);
747 skb = ab->skb;
748 avail = skb_tailroom(skb);
749 if (avail == 0) {
David Woodhousee3b926b2005-05-10 18:56:08 +0100750 avail = audit_expand(ab, AUDIT_BUFSIZ);
Chris Wright8fc61152005-05-06 15:54:17 +0100751 if (!avail)
752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
David Woodhouseeecb0a72005-05-10 18:58:51 +0100754 va_copy(args2, args);
Chris Wright5ac52f32005-05-06 15:54:53 +0100755 len = vsnprintf(skb->tail, avail, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (len >= avail) {
757 /* The printk buffer is 1024 bytes long, so if we get
758 * here and AUDIT_BUFSIZ is at least 1024, then we can
759 * log everything that printk could have logged. */
David Woodhouse5e014b12005-05-13 18:50:33 +0100760 avail = audit_expand(ab, max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
Chris Wright8fc61152005-05-06 15:54:17 +0100761 if (!avail)
762 goto out;
David Woodhouseeecb0a72005-05-10 18:58:51 +0100763 len = vsnprintf(skb->tail, avail, fmt, args2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
Steve Grubb168b7172005-05-19 10:24:22 +0100765 if (len > 0)
766 skb_put(skb, len);
Chris Wright8fc61152005-05-06 15:54:17 +0100767out:
768 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
771/* Format a message into the audit buffer. All the work is done in
772 * audit_log_vformat. */
773void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
774{
775 va_list args;
776
777 if (!ab)
778 return;
779 va_start(args, fmt);
780 audit_log_vformat(ab, fmt, args);
781 va_end(args);
782}
783
Steve Grubb168b7172005-05-19 10:24:22 +0100784/* This function will take the passed buf and convert it into a string of
785 * ascii hex digits. The new string is placed onto the skb. */
786void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf,
787 size_t len)
83c7d092005-04-29 15:54:44 +0100788{
Steve Grubb168b7172005-05-19 10:24:22 +0100789 int i, avail, new_len;
790 unsigned char *ptr;
791 struct sk_buff *skb;
792 static const unsigned char *hex = "0123456789ABCDEF";
83c7d092005-04-29 15:54:44 +0100793
Steve Grubb168b7172005-05-19 10:24:22 +0100794 BUG_ON(!ab->skb);
795 skb = ab->skb;
796 avail = skb_tailroom(skb);
797 new_len = len<<1;
798 if (new_len >= avail) {
799 /* Round the buffer request up to the next multiple */
800 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
801 avail = audit_expand(ab, new_len);
802 if (!avail)
803 return;
804 }
805
806 ptr = skb->tail;
807 for (i=0; i<len; i++) {
808 *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */
809 *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */
810 }
811 *ptr = 0;
812 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d092005-04-29 15:54:44 +0100813}
814
Steve Grubb168b7172005-05-19 10:24:22 +0100815/* This code will escape a string that is passed to it if the string
816 * contains a control character, unprintable character, double quote mark,
817 * or a space. Unescaped strings will start and end with a double quote mark.
818 * Strings that are escaped are printed in hex (2 digits per char). */
83c7d092005-04-29 15:54:44 +0100819void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
820{
Andrew Morton81b78542005-04-29 15:59:11 +0100821 const unsigned char *p = string;
83c7d092005-04-29 15:54:44 +0100822
823 while (*p) {
Steve Grubb168b7172005-05-19 10:24:22 +0100824 if (*p == '"' || *p < 0x21 || *p > 0x7f) {
83c7d092005-04-29 15:54:44 +0100825 audit_log_hex(ab, string, strlen(string));
826 return;
827 }
828 p++;
829 }
830 audit_log_format(ab, "\"%s\"", string);
831}
832
Steve Grubb168b7172005-05-19 10:24:22 +0100833/* This is a helper-function to print the escaped d_path */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
835 struct dentry *dentry, struct vfsmount *vfsmnt)
836{
Steve Grubb168b7172005-05-19 10:24:22 +0100837 char *p, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Chris Wright8fc61152005-05-06 15:54:17 +0100839 if (prefix)
840 audit_log_format(ab, " %s", prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Steve Grubb168b7172005-05-19 10:24:22 +0100842 /* We will allow 11 spaces for ' (deleted)' to be appended */
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100843 path = kmalloc(PATH_MAX+11, ab->gfp_mask);
Steve Grubb168b7172005-05-19 10:24:22 +0100844 if (!path) {
845 audit_log_format(ab, "<no memory>");
846 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Steve Grubb168b7172005-05-19 10:24:22 +0100848 p = d_path(dentry, vfsmnt, path, PATH_MAX+11);
849 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
850 /* FIXME: can we save some information here? */
851 audit_log_format(ab, "<too long>");
852 } else
853 audit_log_untrustedstring(ab, p);
854 kfree(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857/* The netlink_* functions cannot be called inside an irq context, so
858 * the audit buffer is places on a queue and a tasklet is scheduled to
859 * remove them from the queue outside the irq context. May be called in
860 * any context. */
David Woodhouseb7d11252005-05-19 10:56:58 +0100861void audit_log_end(struct audit_buffer *ab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (!ab)
864 return;
865 if (!audit_rate_check()) {
866 audit_log_lost("rate limit exceeded");
867 } else {
David Woodhouseb7d11252005-05-19 10:56:58 +0100868 if (audit_pid) {
869 struct nlmsghdr *nlh = (struct nlmsghdr *)ab->skb->data;
870 nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0);
871 skb_queue_tail(&audit_skb_queue, ab->skb);
872 ab->skb = NULL;
873 wake_up_interruptible(&kauditd_wait);
874 } else {
David Woodhousee1b09eb2005-06-24 17:24:11 +0100875 printk(KERN_NOTICE "%s\n", ab->skb->data + NLMSG_SPACE(0));
David Woodhouseb7d11252005-05-19 10:56:58 +0100876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Chris Wright16e19042005-05-06 15:53:34 +0100878 audit_buffer_free(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/* Log an audit record. This is a convenience function that calls
882 * audit_log_start, audit_log_vformat, and audit_log_end. It may be
883 * called in any context. */
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100884void audit_log(struct audit_context *ctx, int gfp_mask, int type,
885 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 struct audit_buffer *ab;
888 va_list args;
889
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100890 ab = audit_log_start(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (ab) {
892 va_start(args, fmt);
893 audit_log_vformat(ab, fmt, args);
894 va_end(args);
895 audit_log_end(ab);
896 }
897}