blob: 5e72895f4826df7bc2d0b794037022600ed5d968 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010083/* The identity of the user shutting down the audit system. */
84uid_t audit_sig_uid = -1;
85pid_t audit_sig_pid = -1;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* Records can be lost in several ways:
88 0) [suppressed in audit_alloc]
89 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
90 2) out of memory in audit_log_move [alloc_skb]
91 3) suppressed due to audit_rate_limit
92 4) suppressed due to audit_backlog_limit
93*/
94static atomic_t audit_lost = ATOMIC_INIT(0);
95
96/* The netlink socket. */
97static struct sock *audit_sock;
98
David Woodhouseb7d11252005-05-19 10:56:58 +010099/* The audit_freelist is a list of pre-allocated audit buffers (if more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
101 * being placed on the freelist). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static DEFINE_SPINLOCK(audit_freelist_lock);
103static int audit_freelist_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static LIST_HEAD(audit_freelist);
105
David Woodhouseb7d11252005-05-19 10:56:58 +0100106static struct sk_buff_head audit_skb_queue;
107static struct task_struct *kauditd_task;
108static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/* There are three lists of rules -- one to search at task creation
111 * time, one to search at syscall entry time, and another to search at
112 * syscall exit time. */
113static LIST_HEAD(audit_tsklist);
114static LIST_HEAD(audit_entlist);
115static LIST_HEAD(audit_extlist);
116
117/* The netlink socket is only to be read by 1 CPU, which lets us assume
Steve Grubb23f32d12005-05-13 18:35:15 +0100118 * that list additions and deletions never happen simultaneously in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * auditsc.c */
120static DECLARE_MUTEX(audit_netlink_sem);
121
122/* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
123 * audit records. Since printk uses a 1024 byte buffer, this buffer
124 * should be at least that large. */
125#define AUDIT_BUFSIZ 1024
126
127/* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
128 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
129#define AUDIT_MAXFREE (2*NR_CPUS)
130
131/* The audit_buffer is used when formatting an audit record. The caller
132 * locks briefly to get the record off the freelist or to allocate the
133 * buffer, and locks briefly to send the buffer to the netlink layer or
134 * to place it on a transmit queue. Multiple audit_buffers can be in
135 * use simultaneously. */
136struct audit_buffer {
137 struct list_head list;
Chris Wright8fc61152005-05-06 15:54:17 +0100138 struct sk_buff *skb; /* formatted skb ready to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct audit_context *ctx; /* NULL or associated context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
Steve Grubbc0404992005-05-13 18:17:42 +0100142static void audit_set_pid(struct audit_buffer *ab, pid_t pid)
143{
144 struct nlmsghdr *nlh = (struct nlmsghdr *)ab->skb->data;
145 nlh->nlmsg_pid = pid;
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148struct audit_entry {
149 struct list_head list;
150 struct audit_rule rule;
151};
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static void audit_panic(const char *message)
154{
155 switch (audit_failure)
156 {
157 case AUDIT_FAIL_SILENT:
158 break;
159 case AUDIT_FAIL_PRINTK:
160 printk(KERN_ERR "audit: %s\n", message);
161 break;
162 case AUDIT_FAIL_PANIC:
163 panic("audit: %s\n", message);
164 break;
165 }
166}
167
168static inline int audit_rate_check(void)
169{
170 static unsigned long last_check = 0;
171 static int messages = 0;
172 static DEFINE_SPINLOCK(lock);
173 unsigned long flags;
174 unsigned long now;
175 unsigned long elapsed;
176 int retval = 0;
177
178 if (!audit_rate_limit) return 1;
179
180 spin_lock_irqsave(&lock, flags);
181 if (++messages < audit_rate_limit) {
182 retval = 1;
183 } else {
184 now = jiffies;
185 elapsed = now - last_check;
186 if (elapsed > HZ) {
187 last_check = now;
188 messages = 0;
189 retval = 1;
190 }
191 }
192 spin_unlock_irqrestore(&lock, flags);
193
194 return retval;
195}
196
197/* Emit at least 1 message per second, even if audit_rate_check is
198 * throttling. */
199void audit_log_lost(const char *message)
200{
201 static unsigned long last_msg = 0;
202 static DEFINE_SPINLOCK(lock);
203 unsigned long flags;
204 unsigned long now;
205 int print;
206
207 atomic_inc(&audit_lost);
208
209 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
210
211 if (!print) {
212 spin_lock_irqsave(&lock, flags);
213 now = jiffies;
214 if (now - last_msg > HZ) {
215 print = 1;
216 last_msg = now;
217 }
218 spin_unlock_irqrestore(&lock, flags);
219 }
220
221 if (print) {
222 printk(KERN_WARNING
David Woodhouseb7d11252005-05-19 10:56:58 +0100223 "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 atomic_read(&audit_lost),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 audit_rate_limit,
226 audit_backlog_limit);
227 audit_panic(message);
228 }
229
230}
231
Serge Hallync94c2572005-04-29 16:27:17 +0100232static int audit_set_rate_limit(int limit, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 int old = audit_rate_limit;
235 audit_rate_limit = limit;
Steve Grubbc0404992005-05-13 18:17:42 +0100236 audit_log(NULL, AUDIT_CONFIG_CHANGE,
237 "audit_rate_limit=%d old=%d by auid %u",
Serge Hallync94c2572005-04-29 16:27:17 +0100238 audit_rate_limit, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return old;
240}
241
Serge Hallync94c2572005-04-29 16:27:17 +0100242static int audit_set_backlog_limit(int limit, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 int old = audit_backlog_limit;
245 audit_backlog_limit = limit;
Steve Grubbc0404992005-05-13 18:17:42 +0100246 audit_log(NULL, AUDIT_CONFIG_CHANGE,
247 "audit_backlog_limit=%d old=%d by auid %u",
Serge Hallync94c2572005-04-29 16:27:17 +0100248 audit_backlog_limit, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return old;
250}
251
Serge Hallync94c2572005-04-29 16:27:17 +0100252static int audit_set_enabled(int state, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 int old = audit_enabled;
255 if (state != 0 && state != 1)
256 return -EINVAL;
257 audit_enabled = state;
Steve Grubbc0404992005-05-13 18:17:42 +0100258 audit_log(NULL, AUDIT_CONFIG_CHANGE,
259 "audit_enabled=%d old=%d by auid %u",
260 audit_enabled, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return old;
262}
263
Serge Hallync94c2572005-04-29 16:27:17 +0100264static int audit_set_failure(int state, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 int old = audit_failure;
267 if (state != AUDIT_FAIL_SILENT
268 && state != AUDIT_FAIL_PRINTK
269 && state != AUDIT_FAIL_PANIC)
270 return -EINVAL;
271 audit_failure = state;
Steve Grubbc0404992005-05-13 18:17:42 +0100272 audit_log(NULL, AUDIT_CONFIG_CHANGE,
273 "audit_failure=%d old=%d by auid %u",
274 audit_failure, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return old;
276}
277
David Woodhouseb7d11252005-05-19 10:56:58 +0100278int kauditd_thread(void *dummy)
279{
280 struct sk_buff *skb;
281
282 while (1) {
283 skb = skb_dequeue(&audit_skb_queue);
284 if (skb) {
285 if (audit_pid) {
286 int err = netlink_unicast(audit_sock, skb, audit_pid, 0);
287 if (err < 0) {
288 BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */
289 printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid);
290 audit_pid = 0;
291 }
292 } else {
293 printk(KERN_ERR "%s\n", skb->data + NLMSG_SPACE(0));
294 kfree_skb(skb);
295 }
296 } else {
297 DECLARE_WAITQUEUE(wait, current);
298 set_current_state(TASK_INTERRUPTIBLE);
299 add_wait_queue(&kauditd_wait, &wait);
300
301 if (!skb_queue_len(&audit_skb_queue))
302 schedule();
303
304 __set_current_state(TASK_RUNNING);
305 remove_wait_queue(&kauditd_wait, &wait);
306 }
307 }
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310void audit_send_reply(int pid, int seq, int type, int done, int multi,
311 void *payload, int size)
312{
313 struct sk_buff *skb;
314 struct nlmsghdr *nlh;
315 int len = NLMSG_SPACE(size);
316 void *data;
317 int flags = multi ? NLM_F_MULTI : 0;
318 int t = done ? NLMSG_DONE : type;
319
320 skb = alloc_skb(len, GFP_KERNEL);
321 if (!skb)
David Woodhouseb7d11252005-05-19 10:56:58 +0100322 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
David Woodhouseb7d11252005-05-19 10:56:58 +0100324 nlh = NLMSG_PUT(skb, pid, seq, t, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 nlh->nlmsg_flags = flags;
326 data = NLMSG_DATA(nlh);
327 memcpy(data, payload, size);
David Woodhouseb7d11252005-05-19 10:56:58 +0100328
329 /* Ignore failure. It'll only happen if the sender goes away,
330 because our timeout is set to infinite. */
331 netlink_unicast(audit_sock, skb, pid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return;
333
334nlmsg_failure: /* Used by NLMSG_PUT */
335 if (skb)
336 kfree_skb(skb);
337}
338
339/*
340 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
341 * control messages.
342 */
343static int audit_netlink_ok(kernel_cap_t eff_cap, u16 msg_type)
344{
345 int err = 0;
346
347 switch (msg_type) {
348 case AUDIT_GET:
349 case AUDIT_LIST:
350 case AUDIT_SET:
351 case AUDIT_ADD:
352 case AUDIT_DEL:
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100353 case AUDIT_SIGNAL_INFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (!cap_raised(eff_cap, CAP_AUDIT_CONTROL))
355 err = -EPERM;
356 break;
Steve Grubb05474102005-05-21 00:18:37 +0100357 case AUDIT_USER:
David Woodhouse209aba02005-05-18 10:21:07 +0100358 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!cap_raised(eff_cap, CAP_AUDIT_WRITE))
360 err = -EPERM;
361 break;
362 default: /* bad msg */
363 err = -EINVAL;
364 }
365
366 return err;
367}
368
369static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
370{
371 u32 uid, pid, seq;
372 void *data;
373 struct audit_status *status_get, status_set;
374 int err;
Steve Grubbc0404992005-05-13 18:17:42 +0100375 struct audit_buffer *ab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 u16 msg_type = nlh->nlmsg_type;
Serge Hallync94c2572005-04-29 16:27:17 +0100377 uid_t loginuid; /* loginuid of sender */
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100378 struct audit_sig_info sig_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 err = audit_netlink_ok(NETLINK_CB(skb).eff_cap, msg_type);
381 if (err)
382 return err;
383
David Woodhouseb7d11252005-05-19 10:56:58 +0100384 /* As soon as there's any sign of userspace auditd, start kauditd to talk to it */
385 if (!kauditd_task)
386 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
387 if (IS_ERR(kauditd_task)) {
388 err = PTR_ERR(kauditd_task);
389 kauditd_task = NULL;
390 return err;
391 }
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 pid = NETLINK_CREDS(skb)->pid;
394 uid = NETLINK_CREDS(skb)->uid;
Serge Hallync94c2572005-04-29 16:27:17 +0100395 loginuid = NETLINK_CB(skb).loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 seq = nlh->nlmsg_seq;
397 data = NLMSG_DATA(nlh);
398
399 switch (msg_type) {
400 case AUDIT_GET:
401 status_set.enabled = audit_enabled;
402 status_set.failure = audit_failure;
403 status_set.pid = audit_pid;
404 status_set.rate_limit = audit_rate_limit;
405 status_set.backlog_limit = audit_backlog_limit;
406 status_set.lost = atomic_read(&audit_lost);
David Woodhouseb7d11252005-05-19 10:56:58 +0100407 status_set.backlog = skb_queue_len(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0,
409 &status_set, sizeof(status_set));
410 break;
411 case AUDIT_SET:
412 if (nlh->nlmsg_len < sizeof(struct audit_status))
413 return -EINVAL;
414 status_get = (struct audit_status *)data;
415 if (status_get->mask & AUDIT_STATUS_ENABLED) {
Serge Hallync94c2572005-04-29 16:27:17 +0100416 err = audit_set_enabled(status_get->enabled, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (err < 0) return err;
418 }
419 if (status_get->mask & AUDIT_STATUS_FAILURE) {
Serge Hallync94c2572005-04-29 16:27:17 +0100420 err = audit_set_failure(status_get->failure, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (err < 0) return err;
422 }
423 if (status_get->mask & AUDIT_STATUS_PID) {
424 int old = audit_pid;
425 audit_pid = status_get->pid;
Steve Grubbc0404992005-05-13 18:17:42 +0100426 audit_log(NULL, AUDIT_CONFIG_CHANGE,
427 "audit_pid=%d old=%d by auid %u",
Serge Hallync94c2572005-04-29 16:27:17 +0100428 audit_pid, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 if (status_get->mask & AUDIT_STATUS_RATE_LIMIT)
Serge Hallync94c2572005-04-29 16:27:17 +0100431 audit_set_rate_limit(status_get->rate_limit, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT)
Serge Hallync94c2572005-04-29 16:27:17 +0100433 audit_set_backlog_limit(status_get->backlog_limit,
434 loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
Steve Grubb05474102005-05-21 00:18:37 +0100436 case AUDIT_USER:
David Woodhouse209aba02005-05-18 10:21:07 +0100437 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
Steve Grubbc0404992005-05-13 18:17:42 +0100438 ab = audit_log_start(NULL, msg_type);
439 if (!ab)
440 break; /* audit_panic has been called */
441 audit_log_format(ab,
Serge Hallync94c2572005-04-29 16:27:17 +0100442 "user pid=%d uid=%d length=%d loginuid=%u"
443 " msg='%.1024s'",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 pid, uid,
445 (int)(nlh->nlmsg_len
446 - ((char *)data - (char *)nlh)),
Serge Hallync94c2572005-04-29 16:27:17 +0100447 loginuid, (char *)data);
Steve Grubbc0404992005-05-13 18:17:42 +0100448 audit_set_pid(ab, pid);
449 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451 case AUDIT_ADD:
452 case AUDIT_DEL:
453 if (nlh->nlmsg_len < sizeof(struct audit_rule))
454 return -EINVAL;
455 /* fallthrough */
456 case AUDIT_LIST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
Serge Hallync94c2572005-04-29 16:27:17 +0100458 uid, seq, data, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100460 case AUDIT_SIGNAL_INFO:
461 sig_data.uid = audit_sig_uid;
462 sig_data.pid = audit_sig_pid;
463 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO,
464 0, 0, &sig_data, sizeof(sig_data));
465 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 default:
467 err = -EINVAL;
468 break;
469 }
470
471 return err < 0 ? err : 0;
472}
473
474/* Get message from skb (based on rtnetlink_rcv_skb). Each message is
475 * processed by audit_receive_msg. Malformed skbs with wrong length are
476 * discarded silently. */
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700477static void audit_receive_skb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 int err;
480 struct nlmsghdr *nlh;
481 u32 rlen;
482
483 while (skb->len >= NLMSG_SPACE(0)) {
484 nlh = (struct nlmsghdr *)skb->data;
485 if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len)
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700486 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
488 if (rlen > skb->len)
489 rlen = skb->len;
490 if ((err = audit_receive_msg(skb, nlh))) {
491 netlink_ack(skb, nlh, err);
492 } else if (nlh->nlmsg_flags & NLM_F_ACK)
493 netlink_ack(skb, nlh, 0);
494 skb_pull(skb, rlen);
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498/* Receive messages from netlink socket. */
499static void audit_receive(struct sock *sk, int length)
500{
501 struct sk_buff *skb;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700502 unsigned int qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700504 down(&audit_netlink_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700506 for (qlen = skb_queue_len(&sk->sk_receive_queue); qlen; qlen--) {
507 skb = skb_dequeue(&sk->sk_receive_queue);
508 audit_receive_skb(skb);
509 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 up(&audit_netlink_sem);
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515/* Initialize audit support at boot time. */
516static int __init audit_init(void)
517{
518 printk(KERN_INFO "audit: initializing netlink socket (%s)\n",
519 audit_default ? "enabled" : "disabled");
520 audit_sock = netlink_kernel_create(NETLINK_AUDIT, audit_receive);
521 if (!audit_sock)
522 audit_panic("cannot initialize netlink socket");
523
David Woodhouseb7d11252005-05-19 10:56:58 +0100524 audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
525 skb_queue_head_init(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 audit_initialized = 1;
527 audit_enabled = audit_default;
Steve Grubbc0404992005-05-13 18:17:42 +0100528 audit_log(NULL, AUDIT_KERNEL, "initialized");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531__initcall(audit_init);
532
533/* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
534static int __init audit_enable(char *str)
535{
536 audit_default = !!simple_strtol(str, NULL, 0);
537 printk(KERN_INFO "audit: %s%s\n",
538 audit_default ? "enabled" : "disabled",
539 audit_initialized ? "" : " (after initialization)");
540 if (audit_initialized)
541 audit_enabled = audit_default;
542 return 0;
543}
544
545__setup("audit=", audit_enable);
546
Chris Wright16e19042005-05-06 15:53:34 +0100547static void audit_buffer_free(struct audit_buffer *ab)
548{
549 unsigned long flags;
550
Chris Wright8fc61152005-05-06 15:54:17 +0100551 if (!ab)
552 return;
553
Chris Wright5ac52f32005-05-06 15:54:53 +0100554 if (ab->skb)
555 kfree_skb(ab->skb);
David Woodhouseb7d11252005-05-19 10:56:58 +0100556
Chris Wright16e19042005-05-06 15:53:34 +0100557 spin_lock_irqsave(&audit_freelist_lock, flags);
558 if (++audit_freelist_count > AUDIT_MAXFREE)
559 kfree(ab);
560 else
561 list_add(&ab->list, &audit_freelist);
562 spin_unlock_irqrestore(&audit_freelist_lock, flags);
563}
564
Steve Grubbc0404992005-05-13 18:17:42 +0100565static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
566 int gfp_mask, int type)
Chris Wright16e19042005-05-06 15:53:34 +0100567{
568 unsigned long flags;
569 struct audit_buffer *ab = NULL;
Steve Grubbc0404992005-05-13 18:17:42 +0100570 struct nlmsghdr *nlh;
Chris Wright16e19042005-05-06 15:53:34 +0100571
572 spin_lock_irqsave(&audit_freelist_lock, flags);
573 if (!list_empty(&audit_freelist)) {
574 ab = list_entry(audit_freelist.next,
575 struct audit_buffer, list);
576 list_del(&ab->list);
577 --audit_freelist_count;
578 }
579 spin_unlock_irqrestore(&audit_freelist_lock, flags);
580
581 if (!ab) {
David Woodhouse4332bdd2005-05-06 15:59:57 +0100582 ab = kmalloc(sizeof(*ab), gfp_mask);
Chris Wright16e19042005-05-06 15:53:34 +0100583 if (!ab)
Chris Wright8fc61152005-05-06 15:54:17 +0100584 goto err;
Chris Wright16e19042005-05-06 15:53:34 +0100585 }
Chris Wright8fc61152005-05-06 15:54:17 +0100586
David Woodhouse4332bdd2005-05-06 15:59:57 +0100587 ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask);
Chris Wright5ac52f32005-05-06 15:54:53 +0100588 if (!ab->skb)
Chris Wright8fc61152005-05-06 15:54:17 +0100589 goto err;
590
David Woodhouseb7d11252005-05-19 10:56:58 +0100591 ab->ctx = ctx;
Steve Grubbc0404992005-05-13 18:17:42 +0100592 nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0));
593 nlh->nlmsg_type = type;
594 nlh->nlmsg_flags = 0;
595 nlh->nlmsg_pid = 0;
596 nlh->nlmsg_seq = 0;
Chris Wright16e19042005-05-06 15:53:34 +0100597 return ab;
Chris Wright8fc61152005-05-06 15:54:17 +0100598err:
599 audit_buffer_free(ab);
600 return NULL;
Chris Wright16e19042005-05-06 15:53:34 +0100601}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603/* Obtain an audit buffer. This routine does locking to obtain the
604 * audit buffer, but then no locking is required for calls to
605 * audit_log_*format. If the tsk is a task that is currently in a
606 * syscall, then the syscall is marked as auditable and an audit record
607 * will be written at syscall exit. If there is no associated task, tsk
608 * should be NULL. */
Steve Grubbc0404992005-05-13 18:17:42 +0100609struct audit_buffer *audit_log_start(struct audit_context *ctx, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 struct audit_buffer *ab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 struct timespec t;
Steve Grubbd812ddb2005-04-29 16:09:52 +0100613 unsigned int serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 if (!audit_initialized)
616 return NULL;
617
David Woodhousefb19b4c2005-05-19 14:55:56 +0100618 if (audit_backlog_limit
619 && skb_queue_len(&audit_skb_queue) > audit_backlog_limit) {
620 if (audit_rate_check())
621 printk(KERN_WARNING
622 "audit: audit_backlog=%d > "
623 "audit_backlog_limit=%d\n",
624 skb_queue_len(&audit_skb_queue),
625 audit_backlog_limit);
626 audit_log_lost("backlog limit exceeded");
627 return NULL;
628 }
629
Steve Grubbc0404992005-05-13 18:17:42 +0100630 ab = audit_buffer_alloc(ctx, GFP_ATOMIC, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (!ab) {
632 audit_log_lost("out of memory in audit_log_start");
633 return NULL;
634 }
635
Chris Wright197c69c2005-05-11 10:54:05 +0100636 if (!audit_get_stamp(ab->ctx, &t, &serial)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 t = CURRENT_TIME;
Steve Grubbd812ddb2005-04-29 16:09:52 +0100638 serial = 0;
639 }
Chris Wright197c69c2005-05-11 10:54:05 +0100640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
642 t.tv_sec, t.tv_nsec/1000000, serial);
643 return ab;
644}
645
Chris Wright8fc61152005-05-06 15:54:17 +0100646/**
Chris Wright5ac52f32005-05-06 15:54:53 +0100647 * audit_expand - expand skb in the audit buffer
Chris Wright8fc61152005-05-06 15:54:17 +0100648 * @ab: audit_buffer
649 *
650 * Returns 0 (no space) on failed expansion, or available space if
651 * successful.
652 */
David Woodhousee3b926b2005-05-10 18:56:08 +0100653static inline int audit_expand(struct audit_buffer *ab, int extra)
Chris Wright8fc61152005-05-06 15:54:17 +0100654{
Chris Wright5ac52f32005-05-06 15:54:53 +0100655 struct sk_buff *skb = ab->skb;
David Woodhousee3b926b2005-05-10 18:56:08 +0100656 int ret = pskb_expand_head(skb, skb_headroom(skb), extra,
Chris Wright5ac52f32005-05-06 15:54:53 +0100657 GFP_ATOMIC);
658 if (ret < 0) {
659 audit_log_lost("out of memory in audit_expand");
Chris Wright8fc61152005-05-06 15:54:17 +0100660 return 0;
Chris Wright5ac52f32005-05-06 15:54:53 +0100661 }
662 return skb_tailroom(skb);
Chris Wright8fc61152005-05-06 15:54:17 +0100663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665/* Format an audit message into the audit buffer. If there isn't enough
666 * room in the audit buffer, more room will be allocated and vsnprint
667 * will be called a second time. Currently, we assume that a printk
668 * can't format message larger than 1024 bytes, so we don't either. */
669static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
670 va_list args)
671{
672 int len, avail;
Chris Wright5ac52f32005-05-06 15:54:53 +0100673 struct sk_buff *skb;
David Woodhouseeecb0a72005-05-10 18:58:51 +0100674 va_list args2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 if (!ab)
677 return;
678
Chris Wright5ac52f32005-05-06 15:54:53 +0100679 BUG_ON(!ab->skb);
680 skb = ab->skb;
681 avail = skb_tailroom(skb);
682 if (avail == 0) {
David Woodhousee3b926b2005-05-10 18:56:08 +0100683 avail = audit_expand(ab, AUDIT_BUFSIZ);
Chris Wright8fc61152005-05-06 15:54:17 +0100684 if (!avail)
685 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
David Woodhouseeecb0a72005-05-10 18:58:51 +0100687 va_copy(args2, args);
Chris Wright5ac52f32005-05-06 15:54:53 +0100688 len = vsnprintf(skb->tail, avail, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (len >= avail) {
690 /* The printk buffer is 1024 bytes long, so if we get
691 * here and AUDIT_BUFSIZ is at least 1024, then we can
692 * log everything that printk could have logged. */
David Woodhouse5e014b12005-05-13 18:50:33 +0100693 avail = audit_expand(ab, max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
Chris Wright8fc61152005-05-06 15:54:17 +0100694 if (!avail)
695 goto out;
David Woodhouseeecb0a72005-05-10 18:58:51 +0100696 len = vsnprintf(skb->tail, avail, fmt, args2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Steve Grubb168b7172005-05-19 10:24:22 +0100698 if (len > 0)
699 skb_put(skb, len);
Chris Wright8fc61152005-05-06 15:54:17 +0100700out:
701 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704/* Format a message into the audit buffer. All the work is done in
705 * audit_log_vformat. */
706void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
707{
708 va_list args;
709
710 if (!ab)
711 return;
712 va_start(args, fmt);
713 audit_log_vformat(ab, fmt, args);
714 va_end(args);
715}
716
Steve Grubb168b7172005-05-19 10:24:22 +0100717/* This function will take the passed buf and convert it into a string of
718 * ascii hex digits. The new string is placed onto the skb. */
719void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf,
720 size_t len)
83c7d092005-04-29 15:54:44 +0100721{
Steve Grubb168b7172005-05-19 10:24:22 +0100722 int i, avail, new_len;
723 unsigned char *ptr;
724 struct sk_buff *skb;
725 static const unsigned char *hex = "0123456789ABCDEF";
83c7d092005-04-29 15:54:44 +0100726
Steve Grubb168b7172005-05-19 10:24:22 +0100727 BUG_ON(!ab->skb);
728 skb = ab->skb;
729 avail = skb_tailroom(skb);
730 new_len = len<<1;
731 if (new_len >= avail) {
732 /* Round the buffer request up to the next multiple */
733 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
734 avail = audit_expand(ab, new_len);
735 if (!avail)
736 return;
737 }
738
739 ptr = skb->tail;
740 for (i=0; i<len; i++) {
741 *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */
742 *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */
743 }
744 *ptr = 0;
745 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d092005-04-29 15:54:44 +0100746}
747
Steve Grubb168b7172005-05-19 10:24:22 +0100748/* This code will escape a string that is passed to it if the string
749 * contains a control character, unprintable character, double quote mark,
750 * or a space. Unescaped strings will start and end with a double quote mark.
751 * Strings that are escaped are printed in hex (2 digits per char). */
83c7d092005-04-29 15:54:44 +0100752void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
753{
Andrew Morton81b78542005-04-29 15:59:11 +0100754 const unsigned char *p = string;
83c7d092005-04-29 15:54:44 +0100755
756 while (*p) {
Steve Grubb168b7172005-05-19 10:24:22 +0100757 if (*p == '"' || *p < 0x21 || *p > 0x7f) {
83c7d092005-04-29 15:54:44 +0100758 audit_log_hex(ab, string, strlen(string));
759 return;
760 }
761 p++;
762 }
763 audit_log_format(ab, "\"%s\"", string);
764}
765
Steve Grubb168b7172005-05-19 10:24:22 +0100766/* This is a helper-function to print the escaped d_path */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
768 struct dentry *dentry, struct vfsmount *vfsmnt)
769{
Steve Grubb168b7172005-05-19 10:24:22 +0100770 char *p, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Chris Wright8fc61152005-05-06 15:54:17 +0100772 if (prefix)
773 audit_log_format(ab, " %s", prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Steve Grubb168b7172005-05-19 10:24:22 +0100775 /* We will allow 11 spaces for ' (deleted)' to be appended */
776 path = kmalloc(PATH_MAX+11, GFP_KERNEL);
777 if (!path) {
778 audit_log_format(ab, "<no memory>");
779 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Steve Grubb168b7172005-05-19 10:24:22 +0100781 p = d_path(dentry, vfsmnt, path, PATH_MAX+11);
782 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
783 /* FIXME: can we save some information here? */
784 audit_log_format(ab, "<too long>");
785 } else
786 audit_log_untrustedstring(ab, p);
787 kfree(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/* The netlink_* functions cannot be called inside an irq context, so
791 * the audit buffer is places on a queue and a tasklet is scheduled to
792 * remove them from the queue outside the irq context. May be called in
793 * any context. */
David Woodhouseb7d11252005-05-19 10:56:58 +0100794void audit_log_end(struct audit_buffer *ab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!ab)
797 return;
798 if (!audit_rate_check()) {
799 audit_log_lost("rate limit exceeded");
800 } else {
David Woodhouseb7d11252005-05-19 10:56:58 +0100801 if (audit_pid) {
802 struct nlmsghdr *nlh = (struct nlmsghdr *)ab->skb->data;
803 nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0);
804 skb_queue_tail(&audit_skb_queue, ab->skb);
805 ab->skb = NULL;
806 wake_up_interruptible(&kauditd_wait);
807 } else {
808 printk("%s\n", ab->skb->data + NLMSG_SPACE(0));
809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
Chris Wright16e19042005-05-06 15:53:34 +0100811 audit_buffer_free(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/* Log an audit record. This is a convenience function that calls
815 * audit_log_start, audit_log_vformat, and audit_log_end. It may be
816 * called in any context. */
Steve Grubbc0404992005-05-13 18:17:42 +0100817void audit_log(struct audit_context *ctx, int type, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 struct audit_buffer *ab;
820 va_list args;
821
Steve Grubbc0404992005-05-13 18:17:42 +0100822 ab = audit_log_start(ctx, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (ab) {
824 va_start(args, fmt);
825 audit_log_vformat(ab, fmt, args);
826 va_end(args);
827 audit_log_end(ab);
828 }
829}