blob: 9e3e457ddfb59980327526b46078788ff0c0a47d [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 *
Steve Grubb6a01b072007-01-19 14:39:55 -05005 * Copyright 2003-2007 Red Hat Inc., Durham, North Carolina.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/types.h>
Alan Cox715b49e2006-01-18 17:44:07 -080046#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#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>
Amy Griffis93315ed2006-02-07 12:05:27 -050055#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/skbuff.h>
57#include <linux/netlink.h>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060058#include <linux/selinux.h>
Amy Griffisf368c07d2006-04-07 16:55:56 -040059#include <linux/inotify.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080060#include <linux/freezer.h>
Miloslav Trmac522ed772007-07-15 23:40:56 -070061#include <linux/tty.h>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060062
63#include "audit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* No auditing will take place until audit_initialized != 0.
66 * (Initialization happens after skb_init is called.) */
67static int audit_initialized;
68
Eric Paris1a6b9f22008-01-07 17:09:31 -050069#define AUDIT_OFF 0
70#define AUDIT_ON 1
71#define AUDIT_LOCKED 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070072int audit_enabled;
Eric Parisb593d382008-01-08 17:38:31 -050073int audit_ever_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/* Default state when kernel boots without any parameters. */
76static int audit_default;
77
78/* If auditing cannot proceed, audit_failure selects what happens. */
79static int audit_failure = AUDIT_FAIL_PRINTK;
80
81/* If audit records are to be written to the netlink socket, audit_pid
82 * contains the (non-zero) pid. */
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010083int audit_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Randy Dunlapb0dd25a2005-09-13 12:47:11 -070085/* If audit_rate_limit is non-zero, limit the rate of sending audit records
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * to that number per second. This prevents DoS attacks, but results in
87 * audit records being dropped. */
88static int audit_rate_limit;
89
90/* Number of outstanding audit_buffers allowed. */
91static int audit_backlog_limit = 64;
David Woodhouseac4cec42005-07-02 14:08:48 +010092static int audit_backlog_wait_time = 60 * HZ;
93static int audit_backlog_wait_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010095/* The identity of the user shutting down the audit system. */
96uid_t audit_sig_uid = -1;
97pid_t audit_sig_pid = -1;
Al Viroe1396062006-05-25 10:19:47 -040098u32 audit_sig_sid = 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/* Records can be lost in several ways:
101 0) [suppressed in audit_alloc]
102 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
103 2) out of memory in audit_log_move [alloc_skb]
104 3) suppressed due to audit_rate_limit
105 4) suppressed due to audit_backlog_limit
106*/
107static atomic_t audit_lost = ATOMIC_INIT(0);
108
109/* The netlink socket. */
110static struct sock *audit_sock;
111
Amy Griffisf368c07d2006-04-07 16:55:56 -0400112/* Inotify handle. */
113struct inotify_handle *audit_ih;
114
115/* Hash for inode-based rules */
116struct list_head audit_inode_hash[AUDIT_INODE_BUCKETS];
117
David Woodhouseb7d11252005-05-19 10:56:58 +0100118/* The audit_freelist is a list of pre-allocated audit buffers (if more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
120 * being placed on the freelist). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static DEFINE_SPINLOCK(audit_freelist_lock);
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700122static int audit_freelist_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static LIST_HEAD(audit_freelist);
124
David Woodhouseb7d11252005-05-19 10:56:58 +0100125static struct sk_buff_head audit_skb_queue;
126static struct task_struct *kauditd_task;
127static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100128static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Amy Griffisf368c07d2006-04-07 16:55:56 -0400130/* Serialize requests from userspace. */
131static DEFINE_MUTEX(audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
134 * audit records. Since printk uses a 1024 byte buffer, this buffer
135 * should be at least that large. */
136#define AUDIT_BUFSIZ 1024
137
138/* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
139 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
140#define AUDIT_MAXFREE (2*NR_CPUS)
141
142/* The audit_buffer is used when formatting an audit record. The caller
143 * locks briefly to get the record off the freelist or to allocate the
144 * buffer, and locks briefly to send the buffer to the netlink layer or
145 * to place it on a transmit queue. Multiple audit_buffers can be in
146 * use simultaneously. */
147struct audit_buffer {
148 struct list_head list;
Chris Wright8fc61152005-05-06 15:54:17 +0100149 struct sk_buff *skb; /* formatted skb ready to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct audit_context *ctx; /* NULL or associated context */
Al Viro9796fdd2005-10-21 03:22:03 -0400151 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
Steve Grubbc0404992005-05-13 18:17:42 +0100154static void audit_set_pid(struct audit_buffer *ab, pid_t pid)
155{
Eric Paris50397bd2008-01-07 18:14:19 -0500156 if (ab) {
157 struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
158 nlh->nlmsg_pid = pid;
159 }
Steve Grubbc0404992005-05-13 18:17:42 +0100160}
161
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000162void audit_panic(const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 switch (audit_failure)
165 {
166 case AUDIT_FAIL_SILENT:
167 break;
168 case AUDIT_FAIL_PRINTK:
169 printk(KERN_ERR "audit: %s\n", message);
170 break;
171 case AUDIT_FAIL_PANIC:
172 panic("audit: %s\n", message);
173 break;
174 }
175}
176
177static inline int audit_rate_check(void)
178{
179 static unsigned long last_check = 0;
180 static int messages = 0;
181 static DEFINE_SPINLOCK(lock);
182 unsigned long flags;
183 unsigned long now;
184 unsigned long elapsed;
185 int retval = 0;
186
187 if (!audit_rate_limit) return 1;
188
189 spin_lock_irqsave(&lock, flags);
190 if (++messages < audit_rate_limit) {
191 retval = 1;
192 } else {
193 now = jiffies;
194 elapsed = now - last_check;
195 if (elapsed > HZ) {
196 last_check = now;
197 messages = 0;
198 retval = 1;
199 }
200 }
201 spin_unlock_irqrestore(&lock, flags);
202
203 return retval;
204}
205
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700206/**
207 * audit_log_lost - conditionally log lost audit message event
208 * @message: the message stating reason for lost audit message
209 *
210 * Emit at least 1 message per second, even if audit_rate_check is
211 * throttling.
212 * Always increment the lost messages counter.
213*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214void audit_log_lost(const char *message)
215{
216 static unsigned long last_msg = 0;
217 static DEFINE_SPINLOCK(lock);
218 unsigned long flags;
219 unsigned long now;
220 int print;
221
222 atomic_inc(&audit_lost);
223
224 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
225
226 if (!print) {
227 spin_lock_irqsave(&lock, flags);
228 now = jiffies;
229 if (now - last_msg > HZ) {
230 print = 1;
231 last_msg = now;
232 }
233 spin_unlock_irqrestore(&lock, flags);
234 }
235
236 if (print) {
237 printk(KERN_WARNING
David Woodhouseb7d11252005-05-19 10:56:58 +0100238 "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 atomic_read(&audit_lost),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 audit_rate_limit,
241 audit_backlog_limit);
242 audit_panic(message);
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Eric Paris1a6b9f22008-01-07 17:09:31 -0500246static int audit_log_config_change(char *function_name, int new, int old,
247 uid_t loginuid, u32 sid, int allow_changes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Eric Paris1a6b9f22008-01-07 17:09:31 -0500249 struct audit_buffer *ab;
250 int rc = 0;
Steve Grubb6a01b072007-01-19 14:39:55 -0500251
Eric Paris1a6b9f22008-01-07 17:09:31 -0500252 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
253 audit_log_format(ab, "%s=%d old=%d by auid=%u", function_name, new,
254 old, loginuid);
Steve Grubbce29b682006-04-01 18:29:34 -0500255 if (sid) {
256 char *ctx = NULL;
257 u32 len;
Eric Paris1a6b9f22008-01-07 17:09:31 -0500258
259 rc = selinux_sid_to_string(sid, &ctx, &len);
260 if (rc) {
261 audit_log_format(ab, " sid=%u", sid);
262 allow_changes = 0; /* Something weird, deny request */
263 } else {
264 audit_log_format(ab, " subj=%s", ctx);
Steve Grubb6a01b072007-01-19 14:39:55 -0500265 kfree(ctx);
Eric Paris1a6b9f22008-01-07 17:09:31 -0500266 }
Steve Grubb6a01b072007-01-19 14:39:55 -0500267 }
Eric Paris1a6b9f22008-01-07 17:09:31 -0500268 audit_log_format(ab, " res=%d", allow_changes);
269 audit_log_end(ab);
270 return rc;
271}
272
273static int audit_do_config_change(char *function_name, int *to_change,
274 int new, uid_t loginuid, u32 sid)
275{
276 int allow_changes, rc = 0, old = *to_change;
277
278 /* check if we are locked */
279 if (audit_enabled == AUDIT_LOCKED)
280 allow_changes = 0;
281 else
282 allow_changes = 1;
283
284 if (audit_enabled != AUDIT_OFF) {
285 rc = audit_log_config_change(function_name, new, old,
286 loginuid, sid, allow_changes);
287 if (rc)
288 allow_changes = 0;
289 }
Steve Grubb6a01b072007-01-19 14:39:55 -0500290
291 /* If we are allowed, make the change */
Eric Paris1a6b9f22008-01-07 17:09:31 -0500292 if (allow_changes == 1)
293 *to_change = new;
Steve Grubb6a01b072007-01-19 14:39:55 -0500294 /* Not allowed, update reason */
295 else if (rc == 0)
296 rc = -EPERM;
297 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Eric Paris1a6b9f22008-01-07 17:09:31 -0500300static int audit_set_rate_limit(int limit, uid_t loginuid, u32 sid)
301{
302 return audit_do_config_change("audit_rate_limit", &audit_rate_limit,
303 limit, loginuid, sid);
304}
305
Steve Grubbce29b682006-04-01 18:29:34 -0500306static int audit_set_backlog_limit(int limit, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Eric Paris1a6b9f22008-01-07 17:09:31 -0500308 return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit,
309 limit, loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Steve Grubbce29b682006-04-01 18:29:34 -0500312static int audit_set_enabled(int state, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Eric Parisb593d382008-01-08 17:38:31 -0500314 int rc;
Eric Paris1a6b9f22008-01-07 17:09:31 -0500315 if (state < AUDIT_OFF || state > AUDIT_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500317
Eric Parisb593d382008-01-08 17:38:31 -0500318 rc = audit_do_config_change("audit_enabled", &audit_enabled, state,
319 loginuid, sid);
320
321 if (!rc)
322 audit_ever_enabled |= !!state;
323
324 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Steve Grubbce29b682006-04-01 18:29:34 -0500327static int audit_set_failure(int state, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (state != AUDIT_FAIL_SILENT
330 && state != AUDIT_FAIL_PRINTK
331 && state != AUDIT_FAIL_PANIC)
332 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500333
Eric Paris1a6b9f22008-01-07 17:09:31 -0500334 return audit_do_config_change("audit_failure", &audit_failure, state,
335 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Adrian Bunk97a41e22006-01-08 01:02:17 -0800338static int kauditd_thread(void *dummy)
David Woodhouseb7d11252005-05-19 10:56:58 +0100339{
340 struct sk_buff *skb;
341
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700342 set_freezable();
Andrew Morton4899b8b2006-10-06 00:43:48 -0700343 while (!kthread_should_stop()) {
David Woodhouseb7d11252005-05-19 10:56:58 +0100344 skb = skb_dequeue(&audit_skb_queue);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100345 wake_up(&audit_backlog_wait);
David Woodhouseb7d11252005-05-19 10:56:58 +0100346 if (skb) {
347 if (audit_pid) {
348 int err = netlink_unicast(audit_sock, skb, audit_pid, 0);
349 if (err < 0) {
350 BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */
351 printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid);
352 audit_pid = 0;
353 }
354 } else {
David Woodhousee1b09eb2005-06-24 17:24:11 +0100355 printk(KERN_NOTICE "%s\n", skb->data + NLMSG_SPACE(0));
David Woodhouseb7d11252005-05-19 10:56:58 +0100356 kfree_skb(skb);
357 }
358 } else {
359 DECLARE_WAITQUEUE(wait, current);
360 set_current_state(TASK_INTERRUPTIBLE);
361 add_wait_queue(&kauditd_wait, &wait);
362
Pierre Ossman7a4ae742005-12-12 00:37:22 -0800363 if (!skb_queue_len(&audit_skb_queue)) {
364 try_to_freeze();
David Woodhouseb7d11252005-05-19 10:56:58 +0100365 schedule();
Pierre Ossman7a4ae742005-12-12 00:37:22 -0800366 }
David Woodhouseb7d11252005-05-19 10:56:58 +0100367
368 __set_current_state(TASK_RUNNING);
369 remove_wait_queue(&kauditd_wait, &wait);
370 }
371 }
Andrew Morton4899b8b2006-10-06 00:43:48 -0700372 return 0;
David Woodhouseb7d11252005-05-19 10:56:58 +0100373}
374
Miloslav Trmac522ed772007-07-15 23:40:56 -0700375static int audit_prepare_user_tty(pid_t pid, uid_t loginuid)
376{
377 struct task_struct *tsk;
378 int err;
379
380 read_lock(&tasklist_lock);
381 tsk = find_task_by_pid(pid);
382 err = -ESRCH;
383 if (!tsk)
384 goto out;
385 err = 0;
386
387 spin_lock_irq(&tsk->sighand->siglock);
388 if (!tsk->signal->audit_tty)
389 err = -EPERM;
390 spin_unlock_irq(&tsk->sighand->siglock);
391 if (err)
392 goto out;
393
394 tty_audit_push_task(tsk, loginuid);
395out:
396 read_unlock(&tasklist_lock);
397 return err;
398}
399
Al Viro9044e6b2006-05-22 01:09:24 -0400400int audit_send_list(void *_dest)
401{
402 struct audit_netlink_list *dest = _dest;
403 int pid = dest->pid;
404 struct sk_buff *skb;
405
406 /* wait for parent to finish and send an ACK */
Amy Griffisf368c07d2006-04-07 16:55:56 -0400407 mutex_lock(&audit_cmd_mutex);
408 mutex_unlock(&audit_cmd_mutex);
Al Viro9044e6b2006-05-22 01:09:24 -0400409
410 while ((skb = __skb_dequeue(&dest->q)) != NULL)
411 netlink_unicast(audit_sock, skb, pid, 0);
412
413 kfree(dest);
414
415 return 0;
416}
417
Al Viro74c3cbe2007-07-22 08:04:18 -0400418#ifdef CONFIG_AUDIT_TREE
419static int prune_tree_thread(void *unused)
420{
421 mutex_lock(&audit_cmd_mutex);
422 audit_prune_trees();
423 mutex_unlock(&audit_cmd_mutex);
424 return 0;
425}
426
427void audit_schedule_prune(void)
428{
429 kthread_run(prune_tree_thread, NULL, "audit_prune_tree");
430}
431#endif
432
Al Viro9044e6b2006-05-22 01:09:24 -0400433struct sk_buff *audit_make_reply(int pid, int seq, int type, int done,
434 int multi, void *payload, int size)
435{
436 struct sk_buff *skb;
437 struct nlmsghdr *nlh;
438 int len = NLMSG_SPACE(size);
439 void *data;
440 int flags = multi ? NLM_F_MULTI : 0;
441 int t = done ? NLMSG_DONE : type;
442
443 skb = alloc_skb(len, GFP_KERNEL);
444 if (!skb)
445 return NULL;
446
447 nlh = NLMSG_PUT(skb, pid, seq, t, size);
448 nlh->nlmsg_flags = flags;
449 data = NLMSG_DATA(nlh);
450 memcpy(data, payload, size);
451 return skb;
452
453nlmsg_failure: /* Used by NLMSG_PUT */
454 if (skb)
455 kfree_skb(skb);
456 return NULL;
457}
458
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700459/**
460 * audit_send_reply - send an audit reply message via netlink
461 * @pid: process id to send reply to
462 * @seq: sequence number
463 * @type: audit message type
464 * @done: done (last) flag
465 * @multi: multi-part message flag
466 * @payload: payload data
467 * @size: payload size
468 *
469 * Allocates an skb, builds the netlink message, and sends it to the pid.
470 * No failure notifications.
471 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472void audit_send_reply(int pid, int seq, int type, int done, int multi,
473 void *payload, int size)
474{
475 struct sk_buff *skb;
Al Viro9044e6b2006-05-22 01:09:24 -0400476 skb = audit_make_reply(pid, seq, type, done, multi, payload, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!skb)
David Woodhouseb7d11252005-05-19 10:56:58 +0100478 return;
David Woodhouseb7d11252005-05-19 10:56:58 +0100479 /* Ignore failure. It'll only happen if the sender goes away,
480 because our timeout is set to infinite. */
481 netlink_unicast(audit_sock, skb, pid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485/*
486 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
487 * control messages.
488 */
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700489static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 int err = 0;
492
493 switch (msg_type) {
494 case AUDIT_GET:
495 case AUDIT_LIST:
Amy Griffis93315ed2006-02-07 12:05:27 -0500496 case AUDIT_LIST_RULES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 case AUDIT_SET:
498 case AUDIT_ADD:
Amy Griffis93315ed2006-02-07 12:05:27 -0500499 case AUDIT_ADD_RULE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 case AUDIT_DEL:
Amy Griffis93315ed2006-02-07 12:05:27 -0500501 case AUDIT_DEL_RULE:
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100502 case AUDIT_SIGNAL_INFO:
Miloslav Trmac522ed772007-07-15 23:40:56 -0700503 case AUDIT_TTY_GET:
504 case AUDIT_TTY_SET:
Al Viro74c3cbe2007-07-22 08:04:18 -0400505 case AUDIT_TRIM:
506 case AUDIT_MAKE_EQUIV:
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700507 if (security_netlink_recv(skb, CAP_AUDIT_CONTROL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 err = -EPERM;
509 break;
Steve Grubb05474102005-05-21 00:18:37 +0100510 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -0700511 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
512 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700513 if (security_netlink_recv(skb, CAP_AUDIT_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 err = -EPERM;
515 break;
516 default: /* bad msg */
517 err = -EINVAL;
518 }
519
520 return err;
521}
522
Eric Paris50397bd2008-01-07 18:14:19 -0500523static int audit_log_common_recv_msg(struct audit_buffer **ab, u16 msg_type,
524 u32 pid, u32 uid, uid_t auid, u32 sid)
525{
526 int rc = 0;
527 char *ctx = NULL;
528 u32 len;
529
530 if (!audit_enabled) {
531 *ab = NULL;
532 return rc;
533 }
534
535 *ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
536 audit_log_format(*ab, "user pid=%d uid=%u auid=%u",
537 pid, uid, auid);
538 if (sid) {
539 rc = selinux_sid_to_string(sid, &ctx, &len);
540 if (rc)
541 audit_log_format(*ab, " ssid=%u", sid);
542 else
543 audit_log_format(*ab, " subj=%s", ctx);
544 kfree(ctx);
545 }
546
547 return rc;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
551{
Steve Grubbe7c34972006-04-03 09:08:13 -0400552 u32 uid, pid, seq, sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 void *data;
554 struct audit_status *status_get, status_set;
555 int err;
Steve Grubbc0404992005-05-13 18:17:42 +0100556 struct audit_buffer *ab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 u16 msg_type = nlh->nlmsg_type;
Serge Hallync94c2572005-04-29 16:27:17 +0100558 uid_t loginuid; /* loginuid of sender */
Al Viroe1396062006-05-25 10:19:47 -0400559 struct audit_sig_info *sig_data;
Eric Paris50397bd2008-01-07 18:14:19 -0500560 char *ctx = NULL;
Al Viroe1396062006-05-25 10:19:47 -0400561 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700563 err = audit_netlink_ok(skb, msg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (err)
565 return err;
566
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700567 /* As soon as there's any sign of userspace auditd,
568 * start kauditd to talk to it */
David Woodhouseb7d11252005-05-19 10:56:58 +0100569 if (!kauditd_task)
570 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
571 if (IS_ERR(kauditd_task)) {
572 err = PTR_ERR(kauditd_task);
573 kauditd_task = NULL;
574 return err;
575 }
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 pid = NETLINK_CREDS(skb)->pid;
578 uid = NETLINK_CREDS(skb)->uid;
Serge Hallync94c2572005-04-29 16:27:17 +0100579 loginuid = NETLINK_CB(skb).loginuid;
Steve Grubbe7c34972006-04-03 09:08:13 -0400580 sid = NETLINK_CB(skb).sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 seq = nlh->nlmsg_seq;
582 data = NLMSG_DATA(nlh);
583
584 switch (msg_type) {
585 case AUDIT_GET:
586 status_set.enabled = audit_enabled;
587 status_set.failure = audit_failure;
588 status_set.pid = audit_pid;
589 status_set.rate_limit = audit_rate_limit;
590 status_set.backlog_limit = audit_backlog_limit;
591 status_set.lost = atomic_read(&audit_lost);
David Woodhouseb7d11252005-05-19 10:56:58 +0100592 status_set.backlog = skb_queue_len(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0,
594 &status_set, sizeof(status_set));
595 break;
596 case AUDIT_SET:
597 if (nlh->nlmsg_len < sizeof(struct audit_status))
598 return -EINVAL;
599 status_get = (struct audit_status *)data;
600 if (status_get->mask & AUDIT_STATUS_ENABLED) {
Steve Grubbce29b682006-04-01 18:29:34 -0500601 err = audit_set_enabled(status_get->enabled,
602 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (err < 0) return err;
604 }
605 if (status_get->mask & AUDIT_STATUS_FAILURE) {
Steve Grubbce29b682006-04-01 18:29:34 -0500606 err = audit_set_failure(status_get->failure,
607 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (err < 0) return err;
609 }
610 if (status_get->mask & AUDIT_STATUS_PID) {
Eric Paris1a6b9f22008-01-07 17:09:31 -0500611 int new_pid = status_get->pid;
612
613 if (audit_enabled != AUDIT_OFF)
614 audit_log_config_change("audit_pid", new_pid,
615 audit_pid, loginuid,
616 sid, 1);
617
618 audit_pid = new_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620 if (status_get->mask & AUDIT_STATUS_RATE_LIMIT)
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500621 err = audit_set_rate_limit(status_get->rate_limit,
Steve Grubbce29b682006-04-01 18:29:34 -0500622 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT)
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500624 err = audit_set_backlog_limit(status_get->backlog_limit,
Steve Grubbce29b682006-04-01 18:29:34 -0500625 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 break;
Steve Grubb05474102005-05-21 00:18:37 +0100627 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -0700628 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
629 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
David Woodhouse4a4cd632005-06-22 14:56:47 +0100630 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
631 return 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100632
David Woodhouse5bb289b2005-06-24 14:14:05 +0100633 err = audit_filter_user(&NETLINK_CB(skb), msg_type);
David Woodhouse4a4cd632005-06-22 14:56:47 +0100634 if (err == 1) {
635 err = 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700636 if (msg_type == AUDIT_USER_TTY) {
637 err = audit_prepare_user_tty(pid, loginuid);
638 if (err)
639 break;
640 }
Eric Paris50397bd2008-01-07 18:14:19 -0500641 audit_log_common_recv_msg(&ab, msg_type, pid, uid,
642 loginuid, sid);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700643
Eric Paris50397bd2008-01-07 18:14:19 -0500644 if (msg_type != AUDIT_USER_TTY)
645 audit_log_format(ab, " msg='%.1024s'",
646 (char *)data);
647 else {
648 int size;
649
650 audit_log_format(ab, " msg=");
651 size = nlmsg_len(nlh);
652 audit_log_n_untrustedstring(ab, size,
653 data);
David Woodhouse4a4cd632005-06-22 14:56:47 +0100654 }
Eric Paris50397bd2008-01-07 18:14:19 -0500655 audit_set_pid(ab, pid);
656 audit_log_end(ab);
David Woodhouse0f45aa12005-06-19 19:35:50 +0100657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659 case AUDIT_ADD:
660 case AUDIT_DEL:
Amy Griffis93315ed2006-02-07 12:05:27 -0500661 if (nlmsg_len(nlh) < sizeof(struct audit_rule))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return -EINVAL;
Eric Paris1a6b9f22008-01-07 17:09:31 -0500663 if (audit_enabled == AUDIT_LOCKED) {
Eric Paris50397bd2008-01-07 18:14:19 -0500664 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE, pid,
665 uid, loginuid, sid);
666
667 audit_log_format(ab, " audit_enabled=%d res=0",
668 audit_enabled);
669 audit_log_end(ab);
Steve Grubb6a01b072007-01-19 14:39:55 -0500670 return -EPERM;
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* fallthrough */
673 case AUDIT_LIST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
Amy Griffis93315ed2006-02-07 12:05:27 -0500675 uid, seq, data, nlmsg_len(nlh),
Steve Grubbce29b682006-04-01 18:29:34 -0500676 loginuid, sid);
Amy Griffis93315ed2006-02-07 12:05:27 -0500677 break;
678 case AUDIT_ADD_RULE:
679 case AUDIT_DEL_RULE:
680 if (nlmsg_len(nlh) < sizeof(struct audit_rule_data))
681 return -EINVAL;
Eric Paris1a6b9f22008-01-07 17:09:31 -0500682 if (audit_enabled == AUDIT_LOCKED) {
Eric Paris50397bd2008-01-07 18:14:19 -0500683 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE, pid,
684 uid, loginuid, sid);
685
686 audit_log_format(ab, " audit_enabled=%d res=0",
687 audit_enabled);
688 audit_log_end(ab);
Steve Grubb6a01b072007-01-19 14:39:55 -0500689 return -EPERM;
690 }
Amy Griffis93315ed2006-02-07 12:05:27 -0500691 /* fallthrough */
692 case AUDIT_LIST_RULES:
693 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
694 uid, seq, data, nlmsg_len(nlh),
Steve Grubbce29b682006-04-01 18:29:34 -0500695 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400697 case AUDIT_TRIM:
698 audit_trim_trees();
Eric Paris50397bd2008-01-07 18:14:19 -0500699
700 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE, pid,
701 uid, loginuid, sid);
702
Al Viro74c3cbe2007-07-22 08:04:18 -0400703 audit_log_format(ab, " op=trim res=1");
704 audit_log_end(ab);
705 break;
706 case AUDIT_MAKE_EQUIV: {
707 void *bufp = data;
708 u32 sizes[2];
709 size_t len = nlmsg_len(nlh);
710 char *old, *new;
711
712 err = -EINVAL;
713 if (len < 2 * sizeof(u32))
714 break;
715 memcpy(sizes, bufp, 2 * sizeof(u32));
716 bufp += 2 * sizeof(u32);
717 len -= 2 * sizeof(u32);
718 old = audit_unpack_string(&bufp, &len, sizes[0]);
719 if (IS_ERR(old)) {
720 err = PTR_ERR(old);
721 break;
722 }
723 new = audit_unpack_string(&bufp, &len, sizes[1]);
724 if (IS_ERR(new)) {
725 err = PTR_ERR(new);
726 kfree(old);
727 break;
728 }
729 /* OK, here comes... */
730 err = audit_tag_tree(old, new);
731
Eric Paris50397bd2008-01-07 18:14:19 -0500732 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE, pid,
733 uid, loginuid, sid);
734
Al Viro74c3cbe2007-07-22 08:04:18 -0400735 audit_log_format(ab, " op=make_equiv old=");
736 audit_log_untrustedstring(ab, old);
737 audit_log_format(ab, " new=");
738 audit_log_untrustedstring(ab, new);
739 audit_log_format(ab, " res=%d", !err);
740 audit_log_end(ab);
741 kfree(old);
742 kfree(new);
743 break;
744 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100745 case AUDIT_SIGNAL_INFO:
Stephen Smalley1a70cd42006-09-25 23:31:57 -0700746 err = selinux_sid_to_string(audit_sig_sid, &ctx, &len);
Al Viroe1396062006-05-25 10:19:47 -0400747 if (err)
748 return err;
749 sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL);
750 if (!sig_data) {
751 kfree(ctx);
752 return -ENOMEM;
753 }
754 sig_data->uid = audit_sig_uid;
755 sig_data->pid = audit_sig_pid;
756 memcpy(sig_data->ctx, ctx, len);
757 kfree(ctx);
Daniel Walker5600b892007-10-18 03:06:10 -0700758 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO,
Al Viroe1396062006-05-25 10:19:47 -0400759 0, 0, sig_data, sizeof(*sig_data) + len);
760 kfree(sig_data);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100761 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700762 case AUDIT_TTY_GET: {
763 struct audit_tty_status s;
764 struct task_struct *tsk;
765
766 read_lock(&tasklist_lock);
767 tsk = find_task_by_pid(pid);
768 if (!tsk)
769 err = -ESRCH;
770 else {
771 spin_lock_irq(&tsk->sighand->siglock);
772 s.enabled = tsk->signal->audit_tty != 0;
773 spin_unlock_irq(&tsk->sighand->siglock);
774 }
775 read_unlock(&tasklist_lock);
776 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_TTY_GET, 0, 0,
777 &s, sizeof(s));
778 break;
779 }
780 case AUDIT_TTY_SET: {
781 struct audit_tty_status *s;
782 struct task_struct *tsk;
783
784 if (nlh->nlmsg_len < sizeof(struct audit_tty_status))
785 return -EINVAL;
786 s = data;
787 if (s->enabled != 0 && s->enabled != 1)
788 return -EINVAL;
789 read_lock(&tasklist_lock);
790 tsk = find_task_by_pid(pid);
791 if (!tsk)
792 err = -ESRCH;
793 else {
794 spin_lock_irq(&tsk->sighand->siglock);
795 tsk->signal->audit_tty = s->enabled != 0;
796 spin_unlock_irq(&tsk->sighand->siglock);
797 }
798 read_unlock(&tasklist_lock);
799 break;
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 default:
802 err = -EINVAL;
803 break;
804 }
805
806 return err < 0 ? err : 0;
807}
808
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700809/*
810 * Get message from skb (based on rtnetlink_rcv_skb). Each message is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 * processed by audit_receive_msg. Malformed skbs with wrong length are
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700812 * discarded silently.
813 */
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700814static void audit_receive_skb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 int err;
817 struct nlmsghdr *nlh;
818 u32 rlen;
819
820 while (skb->len >= NLMSG_SPACE(0)) {
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -0700821 nlh = nlmsg_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len)
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700823 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
825 if (rlen > skb->len)
826 rlen = skb->len;
827 if ((err = audit_receive_msg(skb, nlh))) {
828 netlink_ack(skb, nlh, err);
829 } else if (nlh->nlmsg_flags & NLM_F_ACK)
830 netlink_ack(skb, nlh, 0);
831 skb_pull(skb, rlen);
832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
835/* Receive messages from netlink socket. */
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700836static void audit_receive(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Amy Griffisf368c07d2006-04-07 16:55:56 -0400838 mutex_lock(&audit_cmd_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700839 audit_receive_skb(skb);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400840 mutex_unlock(&audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Amy Griffisf368c07d2006-04-07 16:55:56 -0400843#ifdef CONFIG_AUDITSYSCALL
844static const struct inotify_operations audit_inotify_ops = {
845 .handle_event = audit_handle_ievent,
846 .destroy_watch = audit_free_parent,
847};
848#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850/* Initialize audit support at boot time. */
851static int __init audit_init(void)
852{
Amy Griffisf368c07d2006-04-07 16:55:56 -0400853 int i;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 printk(KERN_INFO "audit: initializing netlink socket (%s)\n",
856 audit_default ? "enabled" : "disabled");
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200857 audit_sock = netlink_kernel_create(&init_net, NETLINK_AUDIT, 0,
858 audit_receive, NULL, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (!audit_sock)
860 audit_panic("cannot initialize netlink socket");
Amy Griffis71e1c782006-03-06 22:40:05 -0500861 else
862 audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
David Woodhouseb7d11252005-05-19 10:56:58 +0100864 skb_queue_head_init(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 audit_initialized = 1;
866 audit_enabled = audit_default;
Eric Parisb593d382008-01-08 17:38:31 -0500867 audit_ever_enabled |= !!audit_default;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600868
869 /* Register the callback with selinux. This callback will be invoked
870 * when a new policy is loaded. */
871 selinux_audit_set_callback(&selinux_audit_rule_update);
872
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100873 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized");
Amy Griffisf368c07d2006-04-07 16:55:56 -0400874
875#ifdef CONFIG_AUDITSYSCALL
876 audit_ih = inotify_init(&audit_inotify_ops);
877 if (IS_ERR(audit_ih))
878 audit_panic("cannot initialize inotify handle");
Amy Griffis69884342006-07-13 13:17:12 -0400879#endif
Amy Griffisf368c07d2006-04-07 16:55:56 -0400880
881 for (i = 0; i < AUDIT_INODE_BUCKETS; i++)
882 INIT_LIST_HEAD(&audit_inode_hash[i]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 0;
885}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886__initcall(audit_init);
887
888/* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
889static int __init audit_enable(char *str)
890{
891 audit_default = !!simple_strtol(str, NULL, 0);
892 printk(KERN_INFO "audit: %s%s\n",
893 audit_default ? "enabled" : "disabled",
894 audit_initialized ? "" : " (after initialization)");
Eric Parisb593d382008-01-08 17:38:31 -0500895 if (audit_initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 audit_enabled = audit_default;
Eric Parisb593d382008-01-08 17:38:31 -0500897 audit_ever_enabled |= !!audit_default;
898 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800899 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902__setup("audit=", audit_enable);
903
Chris Wright16e19042005-05-06 15:53:34 +0100904static void audit_buffer_free(struct audit_buffer *ab)
905{
906 unsigned long flags;
907
Chris Wright8fc61152005-05-06 15:54:17 +0100908 if (!ab)
909 return;
910
Chris Wright5ac52f32005-05-06 15:54:53 +0100911 if (ab->skb)
912 kfree_skb(ab->skb);
David Woodhouseb7d11252005-05-19 10:56:58 +0100913
Chris Wright16e19042005-05-06 15:53:34 +0100914 spin_lock_irqsave(&audit_freelist_lock, flags);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500915 if (audit_freelist_count > AUDIT_MAXFREE)
Chris Wright16e19042005-05-06 15:53:34 +0100916 kfree(ab);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500917 else {
918 audit_freelist_count++;
Chris Wright16e19042005-05-06 15:53:34 +0100919 list_add(&ab->list, &audit_freelist);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500920 }
Chris Wright16e19042005-05-06 15:53:34 +0100921 spin_unlock_irqrestore(&audit_freelist_lock, flags);
922}
923
Steve Grubbc0404992005-05-13 18:17:42 +0100924static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
Al Virodd0fc662005-10-07 07:46:04 +0100925 gfp_t gfp_mask, int type)
Chris Wright16e19042005-05-06 15:53:34 +0100926{
927 unsigned long flags;
928 struct audit_buffer *ab = NULL;
Steve Grubbc0404992005-05-13 18:17:42 +0100929 struct nlmsghdr *nlh;
Chris Wright16e19042005-05-06 15:53:34 +0100930
931 spin_lock_irqsave(&audit_freelist_lock, flags);
932 if (!list_empty(&audit_freelist)) {
933 ab = list_entry(audit_freelist.next,
934 struct audit_buffer, list);
935 list_del(&ab->list);
936 --audit_freelist_count;
937 }
938 spin_unlock_irqrestore(&audit_freelist_lock, flags);
939
940 if (!ab) {
David Woodhouse4332bdd2005-05-06 15:59:57 +0100941 ab = kmalloc(sizeof(*ab), gfp_mask);
Chris Wright16e19042005-05-06 15:53:34 +0100942 if (!ab)
Chris Wright8fc61152005-05-06 15:54:17 +0100943 goto err;
Chris Wright16e19042005-05-06 15:53:34 +0100944 }
Chris Wright8fc61152005-05-06 15:54:17 +0100945
David Woodhouse4332bdd2005-05-06 15:59:57 +0100946 ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask);
Chris Wright5ac52f32005-05-06 15:54:53 +0100947 if (!ab->skb)
Chris Wright8fc61152005-05-06 15:54:17 +0100948 goto err;
949
David Woodhouseb7d11252005-05-19 10:56:58 +0100950 ab->ctx = ctx;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100951 ab->gfp_mask = gfp_mask;
Steve Grubbc0404992005-05-13 18:17:42 +0100952 nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0));
953 nlh->nlmsg_type = type;
954 nlh->nlmsg_flags = 0;
955 nlh->nlmsg_pid = 0;
956 nlh->nlmsg_seq = 0;
Chris Wright16e19042005-05-06 15:53:34 +0100957 return ab;
Chris Wright8fc61152005-05-06 15:54:17 +0100958err:
959 audit_buffer_free(ab);
960 return NULL;
Chris Wright16e19042005-05-06 15:53:34 +0100961}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700963/**
964 * audit_serial - compute a serial number for the audit record
965 *
966 * Compute a serial number for the audit record. Audit records are
David Woodhousebfb44962005-05-21 21:08:09 +0100967 * written to user-space as soon as they are generated, so a complete
968 * audit record may be written in several pieces. The timestamp of the
969 * record and this serial number are used by the user-space tools to
970 * determine which pieces belong to the same audit record. The
971 * (timestamp,serial) tuple is unique for each syscall and is live from
972 * syscall entry to syscall exit.
973 *
David Woodhousebfb44962005-05-21 21:08:09 +0100974 * NOTE: Another possibility is to store the formatted records off the
975 * audit context (for those records that have a context), and emit them
976 * all at syscall exit. However, this could delay the reporting of
977 * significant errors until syscall exit (or never, if the system
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700978 * halts).
979 */
David Woodhousebfb44962005-05-21 21:08:09 +0100980unsigned int audit_serial(void)
981{
Ingo Molnar34af9462006-06-27 02:53:55 -0700982 static DEFINE_SPINLOCK(serial_lock);
David Woodhoused5b454f2005-07-15 12:56:03 +0100983 static unsigned int serial = 0;
David Woodhousebfb44962005-05-21 21:08:09 +0100984
David Woodhoused5b454f2005-07-15 12:56:03 +0100985 unsigned long flags;
986 unsigned int ret;
David Woodhousebfb44962005-05-21 21:08:09 +0100987
David Woodhoused5b454f2005-07-15 12:56:03 +0100988 spin_lock_irqsave(&serial_lock, flags);
David Woodhousebfb44962005-05-21 21:08:09 +0100989 do {
David Woodhousece625a82005-07-18 14:24:46 -0400990 ret = ++serial;
991 } while (unlikely(!ret));
David Woodhoused5b454f2005-07-15 12:56:03 +0100992 spin_unlock_irqrestore(&serial_lock, flags);
David Woodhousebfb44962005-05-21 21:08:09 +0100993
David Woodhoused5b454f2005-07-15 12:56:03 +0100994 return ret;
David Woodhousebfb44962005-05-21 21:08:09 +0100995}
996
Daniel Walker5600b892007-10-18 03:06:10 -0700997static inline void audit_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +0100998 struct timespec *t, unsigned int *serial)
999{
1000 if (ctx)
1001 auditsc_get_stamp(ctx, t, serial);
1002 else {
1003 *t = CURRENT_TIME;
1004 *serial = audit_serial();
1005 }
1006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008/* Obtain an audit buffer. This routine does locking to obtain the
1009 * audit buffer, but then no locking is required for calls to
1010 * audit_log_*format. If the tsk is a task that is currently in a
1011 * syscall, then the syscall is marked as auditable and an audit record
1012 * will be written at syscall exit. If there is no associated task, tsk
1013 * should be NULL. */
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001014
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001015/**
1016 * audit_log_start - obtain an audit buffer
1017 * @ctx: audit_context (may be NULL)
1018 * @gfp_mask: type of allocation
1019 * @type: audit message type
1020 *
1021 * Returns audit_buffer pointer on success or NULL on error.
1022 *
1023 * Obtain an audit buffer. This routine does locking to obtain the
1024 * audit buffer, but then no locking is required for calls to
1025 * audit_log_*format. If the task (ctx) is a task that is currently in a
1026 * syscall, then the syscall is marked as auditable and an audit record
1027 * will be written at syscall exit. If there is no associated task, then
1028 * task context (ctx) should be NULL.
1029 */
Al Viro9796fdd2005-10-21 03:22:03 -04001030struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001031 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 struct audit_buffer *ab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct timespec t;
Andrew Mortonef00be02008-01-10 11:02:39 -08001035 unsigned int uninitialized_var(serial);
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001036 int reserve;
David Woodhouseac4cec42005-07-02 14:08:48 +01001037 unsigned long timeout_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 if (!audit_initialized)
1040 return NULL;
1041
Dustin Kirklandc8edc802005-11-03 16:12:36 +00001042 if (unlikely(audit_filter_type(type)))
1043 return NULL;
1044
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001045 if (gfp_mask & __GFP_WAIT)
1046 reserve = 0;
1047 else
Daniel Walker5600b892007-10-18 03:06:10 -07001048 reserve = 5; /* Allow atomic callers to go up to five
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001049 entries over the normal backlog limit */
1050
1051 while (audit_backlog_limit
1052 && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) {
David Woodhouseac4cec42005-07-02 14:08:48 +01001053 if (gfp_mask & __GFP_WAIT && audit_backlog_wait_time
1054 && time_before(jiffies, timeout_start + audit_backlog_wait_time)) {
1055
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001056 /* Wait for auditd to drain the queue a little */
1057 DECLARE_WAITQUEUE(wait, current);
1058 set_current_state(TASK_INTERRUPTIBLE);
1059 add_wait_queue(&audit_backlog_wait, &wait);
1060
1061 if (audit_backlog_limit &&
1062 skb_queue_len(&audit_skb_queue) > audit_backlog_limit)
David Woodhouseac4cec42005-07-02 14:08:48 +01001063 schedule_timeout(timeout_start + audit_backlog_wait_time - jiffies);
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001064
1065 __set_current_state(TASK_RUNNING);
1066 remove_wait_queue(&audit_backlog_wait, &wait);
David Woodhouseac4cec42005-07-02 14:08:48 +01001067 continue;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001068 }
David Woodhousefb19b4c2005-05-19 14:55:56 +01001069 if (audit_rate_check())
1070 printk(KERN_WARNING
1071 "audit: audit_backlog=%d > "
1072 "audit_backlog_limit=%d\n",
1073 skb_queue_len(&audit_skb_queue),
1074 audit_backlog_limit);
1075 audit_log_lost("backlog limit exceeded");
David Woodhouseac4cec42005-07-02 14:08:48 +01001076 audit_backlog_wait_time = audit_backlog_wait_overflow;
1077 wake_up(&audit_backlog_wait);
David Woodhousefb19b4c2005-05-19 14:55:56 +01001078 return NULL;
1079 }
1080
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001081 ab = audit_buffer_alloc(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (!ab) {
1083 audit_log_lost("out of memory in audit_log_start");
1084 return NULL;
1085 }
1086
David Woodhousebfb44962005-05-21 21:08:09 +01001087 audit_get_stamp(ab->ctx, &t, &serial);
Chris Wright197c69c2005-05-11 10:54:05 +01001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
1090 t.tv_sec, t.tv_nsec/1000000, serial);
1091 return ab;
1092}
1093
Chris Wright8fc61152005-05-06 15:54:17 +01001094/**
Chris Wright5ac52f32005-05-06 15:54:53 +01001095 * audit_expand - expand skb in the audit buffer
Chris Wright8fc61152005-05-06 15:54:17 +01001096 * @ab: audit_buffer
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001097 * @extra: space to add at tail of the skb
Chris Wright8fc61152005-05-06 15:54:17 +01001098 *
1099 * Returns 0 (no space) on failed expansion, or available space if
1100 * successful.
1101 */
David Woodhousee3b926b2005-05-10 18:56:08 +01001102static inline int audit_expand(struct audit_buffer *ab, int extra)
Chris Wright8fc61152005-05-06 15:54:17 +01001103{
Chris Wright5ac52f32005-05-06 15:54:53 +01001104 struct sk_buff *skb = ab->skb;
Herbert Xu406a1d82008-01-28 20:47:09 -08001105 int oldtail = skb_tailroom(skb);
1106 int ret = pskb_expand_head(skb, 0, extra, ab->gfp_mask);
1107 int newtail = skb_tailroom(skb);
1108
Chris Wright5ac52f32005-05-06 15:54:53 +01001109 if (ret < 0) {
1110 audit_log_lost("out of memory in audit_expand");
Chris Wright8fc61152005-05-06 15:54:17 +01001111 return 0;
Chris Wright5ac52f32005-05-06 15:54:53 +01001112 }
Herbert Xu406a1d82008-01-28 20:47:09 -08001113
1114 skb->truesize += newtail - oldtail;
1115 return newtail;
Chris Wright8fc61152005-05-06 15:54:17 +01001116}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001118/*
1119 * Format an audit message into the audit buffer. If there isn't enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 * room in the audit buffer, more room will be allocated and vsnprint
1121 * will be called a second time. Currently, we assume that a printk
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001122 * can't format message larger than 1024 bytes, so we don't either.
1123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
1125 va_list args)
1126{
1127 int len, avail;
Chris Wright5ac52f32005-05-06 15:54:53 +01001128 struct sk_buff *skb;
David Woodhouseeecb0a72005-05-10 18:58:51 +01001129 va_list args2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (!ab)
1132 return;
1133
Chris Wright5ac52f32005-05-06 15:54:53 +01001134 BUG_ON(!ab->skb);
1135 skb = ab->skb;
1136 avail = skb_tailroom(skb);
1137 if (avail == 0) {
David Woodhousee3b926b2005-05-10 18:56:08 +01001138 avail = audit_expand(ab, AUDIT_BUFSIZ);
Chris Wright8fc61152005-05-06 15:54:17 +01001139 if (!avail)
1140 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
David Woodhouseeecb0a72005-05-10 18:58:51 +01001142 va_copy(args2, args);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001143 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (len >= avail) {
1145 /* The printk buffer is 1024 bytes long, so if we get
1146 * here and AUDIT_BUFSIZ is at least 1024, then we can
1147 * log everything that printk could have logged. */
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001148 avail = audit_expand(ab,
1149 max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
Chris Wright8fc61152005-05-06 15:54:17 +01001150 if (!avail)
1151 goto out;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001152 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Richard Knutsson148b38d2008-01-10 11:02:40 -08001154 va_end(args2);
Steve Grubb168b7172005-05-19 10:24:22 +01001155 if (len > 0)
1156 skb_put(skb, len);
Chris Wright8fc61152005-05-06 15:54:17 +01001157out:
1158 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001161/**
1162 * audit_log_format - format a message into the audit buffer.
1163 * @ab: audit_buffer
1164 * @fmt: format string
1165 * @...: optional parameters matching @fmt string
1166 *
1167 * All the work is done in audit_log_vformat.
1168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
1170{
1171 va_list args;
1172
1173 if (!ab)
1174 return;
1175 va_start(args, fmt);
1176 audit_log_vformat(ab, fmt, args);
1177 va_end(args);
1178}
1179
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001180/**
1181 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1182 * @ab: the audit_buffer
1183 * @buf: buffer to convert to hex
1184 * @len: length of @buf to be converted
1185 *
1186 * No return value; failure to expand is silently ignored.
1187 *
1188 * This function will take the passed buf and convert it into a string of
1189 * ascii hex digits. The new string is placed onto the skb.
1190 */
1191void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf,
Steve Grubb168b7172005-05-19 10:24:22 +01001192 size_t len)
83c7d092005-04-29 15:54:44 +01001193{
Steve Grubb168b7172005-05-19 10:24:22 +01001194 int i, avail, new_len;
1195 unsigned char *ptr;
1196 struct sk_buff *skb;
1197 static const unsigned char *hex = "0123456789ABCDEF";
83c7d092005-04-29 15:54:44 +01001198
Amy Griffis8ef2d302006-09-07 17:03:02 -04001199 if (!ab)
1200 return;
1201
Steve Grubb168b7172005-05-19 10:24:22 +01001202 BUG_ON(!ab->skb);
1203 skb = ab->skb;
1204 avail = skb_tailroom(skb);
1205 new_len = len<<1;
1206 if (new_len >= avail) {
1207 /* Round the buffer request up to the next multiple */
1208 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
1209 avail = audit_expand(ab, new_len);
1210 if (!avail)
1211 return;
1212 }
1213
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001214 ptr = skb_tail_pointer(skb);
Steve Grubb168b7172005-05-19 10:24:22 +01001215 for (i=0; i<len; i++) {
1216 *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */
1217 *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */
1218 }
1219 *ptr = 0;
1220 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d092005-04-29 15:54:44 +01001221}
1222
Amy Griffis9c937dc2006-06-08 23:19:31 -04001223/*
1224 * Format a string of no more than slen characters into the audit buffer,
1225 * enclosed in quote marks.
1226 */
1227static void audit_log_n_string(struct audit_buffer *ab, size_t slen,
1228 const char *string)
1229{
1230 int avail, new_len;
1231 unsigned char *ptr;
1232 struct sk_buff *skb;
1233
Amy Griffis8ef2d302006-09-07 17:03:02 -04001234 if (!ab)
1235 return;
1236
Amy Griffis9c937dc2006-06-08 23:19:31 -04001237 BUG_ON(!ab->skb);
1238 skb = ab->skb;
1239 avail = skb_tailroom(skb);
1240 new_len = slen + 3; /* enclosing quotes + null terminator */
1241 if (new_len > avail) {
1242 avail = audit_expand(ab, new_len);
1243 if (!avail)
1244 return;
1245 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001246 ptr = skb_tail_pointer(skb);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001247 *ptr++ = '"';
1248 memcpy(ptr, string, slen);
1249 ptr += slen;
1250 *ptr++ = '"';
1251 *ptr = 0;
1252 skb_put(skb, slen + 2); /* don't include null terminator */
1253}
1254
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001255/**
Eric Parisde6bbd12008-01-07 14:31:58 -05001256 * audit_string_contains_control - does a string need to be logged in hex
1257 * @string - string to be checked
1258 * @len - max length of the string to check
1259 */
1260int audit_string_contains_control(const char *string, size_t len)
1261{
1262 const unsigned char *p;
1263 for (p = string; p < (const unsigned char *)string + len && *p; p++) {
1264 if (*p == '"' || *p < 0x21 || *p > 0x7f)
1265 return 1;
1266 }
1267 return 0;
1268}
1269
1270/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001271 * audit_log_n_untrustedstring - log a string that may contain random characters
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001272 * @ab: audit_buffer
Amy Griffis9c937dc2006-06-08 23:19:31 -04001273 * @len: lenth of string (not including trailing null)
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001274 * @string: string to be logged
1275 *
1276 * This code will escape a string that is passed to it if the string
1277 * contains a control character, unprintable character, double quote mark,
Steve Grubb168b7172005-05-19 10:24:22 +01001278 * or a space. Unescaped strings will start and end with a double quote mark.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001279 * Strings that are escaped are printed in hex (2 digits per char).
Amy Griffis9c937dc2006-06-08 23:19:31 -04001280 *
1281 * The caller specifies the number of characters in the string to log, which may
1282 * or may not be the entire string.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001283 */
Eric Parisde6bbd12008-01-07 14:31:58 -05001284void audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len,
1285 const char *string)
83c7d092005-04-29 15:54:44 +01001286{
Eric Parisde6bbd12008-01-07 14:31:58 -05001287 if (audit_string_contains_control(string, len))
1288 audit_log_hex(ab, string, len);
1289 else
1290 audit_log_n_string(ab, len, string);
83c7d092005-04-29 15:54:44 +01001291}
1292
Amy Griffis9c937dc2006-06-08 23:19:31 -04001293/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001294 * audit_log_untrustedstring - log a string that may contain random characters
Amy Griffis9c937dc2006-06-08 23:19:31 -04001295 * @ab: audit_buffer
1296 * @string: string to be logged
1297 *
Miloslav Trmac522ed772007-07-15 23:40:56 -07001298 * Same as audit_log_n_untrustedstring(), except that strlen is used to
Amy Griffis9c937dc2006-06-08 23:19:31 -04001299 * determine string length.
1300 */
Eric Parisde6bbd12008-01-07 14:31:58 -05001301void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001302{
Eric Parisde6bbd12008-01-07 14:31:58 -05001303 audit_log_n_untrustedstring(ab, strlen(string), string);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001304}
1305
Steve Grubb168b7172005-05-19 10:24:22 +01001306/* This is a helper-function to print the escaped d_path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
1308 struct dentry *dentry, struct vfsmount *vfsmnt)
1309{
Steve Grubb168b7172005-05-19 10:24:22 +01001310 char *p, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Chris Wright8fc61152005-05-06 15:54:17 +01001312 if (prefix)
1313 audit_log_format(ab, " %s", prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Steve Grubb168b7172005-05-19 10:24:22 +01001315 /* We will allow 11 spaces for ' (deleted)' to be appended */
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001316 path = kmalloc(PATH_MAX+11, ab->gfp_mask);
Steve Grubb168b7172005-05-19 10:24:22 +01001317 if (!path) {
1318 audit_log_format(ab, "<no memory>");
1319 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Steve Grubb168b7172005-05-19 10:24:22 +01001321 p = d_path(dentry, vfsmnt, path, PATH_MAX+11);
1322 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
1323 /* FIXME: can we save some information here? */
1324 audit_log_format(ab, "<too long>");
Daniel Walker5600b892007-10-18 03:06:10 -07001325 } else
Steve Grubb168b7172005-05-19 10:24:22 +01001326 audit_log_untrustedstring(ab, p);
1327 kfree(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001330/**
1331 * audit_log_end - end one audit record
1332 * @ab: the audit_buffer
1333 *
1334 * The netlink_* functions cannot be called inside an irq context, so
1335 * the audit buffer is placed on a queue and a tasklet is scheduled to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 * remove them from the queue outside the irq context. May be called in
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001337 * any context.
1338 */
David Woodhouseb7d11252005-05-19 10:56:58 +01001339void audit_log_end(struct audit_buffer *ab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (!ab)
1342 return;
1343 if (!audit_rate_check()) {
1344 audit_log_lost("rate limit exceeded");
1345 } else {
David Woodhouseb7d11252005-05-19 10:56:58 +01001346 if (audit_pid) {
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001347 struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
David Woodhouseb7d11252005-05-19 10:56:58 +01001348 nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0);
1349 skb_queue_tail(&audit_skb_queue, ab->skb);
1350 ab->skb = NULL;
1351 wake_up_interruptible(&kauditd_wait);
1352 } else {
Eric Parise445deb2008-01-07 14:19:15 -05001353 struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
1354 printk(KERN_NOTICE "type=%d %s\n", nlh->nlmsg_type, ab->skb->data + NLMSG_SPACE(0));
David Woodhouseb7d11252005-05-19 10:56:58 +01001355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
Chris Wright16e19042005-05-06 15:53:34 +01001357 audit_buffer_free(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001360/**
1361 * audit_log - Log an audit record
1362 * @ctx: audit context
1363 * @gfp_mask: type of allocation
1364 * @type: audit message type
1365 * @fmt: format string to use
1366 * @...: variable parameters matching the format string
1367 *
1368 * This is a convenience function that calls audit_log_start,
1369 * audit_log_vformat, and audit_log_end. It may be called
1370 * in any context.
1371 */
Daniel Walker5600b892007-10-18 03:06:10 -07001372void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001373 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
1375 struct audit_buffer *ab;
1376 va_list args;
1377
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001378 ab = audit_log_start(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (ab) {
1380 va_start(args, fmt);
1381 audit_log_vformat(ab, fmt, args);
1382 va_end(args);
1383 audit_log_end(ab);
1384 }
1385}
lorenzo@gnu.orgbf45da92006-03-09 00:33:47 +01001386
1387EXPORT_SYMBOL(audit_log_start);
1388EXPORT_SYMBOL(audit_log_end);
1389EXPORT_SYMBOL(audit_log_format);
1390EXPORT_SYMBOL(audit_log);