blob: 5ce8851facf7d61a6a45b0254866f388d8af5e55 [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 Grubb6a01b07f2007-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
Steve Grubb6a01b07f2007-01-19 14:39:55 -050069/* 0 - no auditing
70 * 1 - auditing enabled
71 * 2 - auditing enabled and configuration is locked/unchangeable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072int audit_enabled;
73
74/* Default state when kernel boots without any parameters. */
75static int audit_default;
76
77/* If auditing cannot proceed, audit_failure selects what happens. */
78static int audit_failure = AUDIT_FAIL_PRINTK;
79
80/* If audit records are to be written to the netlink socket, audit_pid
81 * contains the (non-zero) pid. */
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010082int audit_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Randy Dunlapb0dd25a2005-09-13 12:47:11 -070084/* If audit_rate_limit is non-zero, limit the rate of sending audit records
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * to that number per second. This prevents DoS attacks, but results in
86 * audit records being dropped. */
87static int audit_rate_limit;
88
89/* Number of outstanding audit_buffers allowed. */
90static int audit_backlog_limit = 64;
David Woodhouseac4cec42005-07-02 14:08:48 +010091static int audit_backlog_wait_time = 60 * HZ;
92static int audit_backlog_wait_overflow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010094/* The identity of the user shutting down the audit system. */
95uid_t audit_sig_uid = -1;
96pid_t audit_sig_pid = -1;
Al Viroe1396062006-05-25 10:19:47 -040097u32 audit_sig_sid = 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +010098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* Records can be lost in several ways:
100 0) [suppressed in audit_alloc]
101 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
102 2) out of memory in audit_log_move [alloc_skb]
103 3) suppressed due to audit_rate_limit
104 4) suppressed due to audit_backlog_limit
105*/
106static atomic_t audit_lost = ATOMIC_INIT(0);
107
108/* The netlink socket. */
109static struct sock *audit_sock;
110
Amy Griffisf368c07d2006-04-07 16:55:56 -0400111/* Inotify handle. */
112struct inotify_handle *audit_ih;
113
114/* Hash for inode-based rules */
115struct list_head audit_inode_hash[AUDIT_INODE_BUCKETS];
116
David Woodhouseb7d11252005-05-19 10:56:58 +0100117/* The audit_freelist is a list of pre-allocated audit buffers (if more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
119 * being placed on the freelist). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static DEFINE_SPINLOCK(audit_freelist_lock);
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700121static int audit_freelist_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static LIST_HEAD(audit_freelist);
123
David Woodhouseb7d11252005-05-19 10:56:58 +0100124static struct sk_buff_head audit_skb_queue;
125static struct task_struct *kauditd_task;
126static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100127static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Amy Griffisf368c07d2006-04-07 16:55:56 -0400129/* Serialize requests from userspace. */
130static DEFINE_MUTEX(audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132/* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
133 * audit records. Since printk uses a 1024 byte buffer, this buffer
134 * should be at least that large. */
135#define AUDIT_BUFSIZ 1024
136
137/* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
138 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
139#define AUDIT_MAXFREE (2*NR_CPUS)
140
141/* The audit_buffer is used when formatting an audit record. The caller
142 * locks briefly to get the record off the freelist or to allocate the
143 * buffer, and locks briefly to send the buffer to the netlink layer or
144 * to place it on a transmit queue. Multiple audit_buffers can be in
145 * use simultaneously. */
146struct audit_buffer {
147 struct list_head list;
Chris Wright8fc61152005-05-06 15:54:17 +0100148 struct sk_buff *skb; /* formatted skb ready to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct audit_context *ctx; /* NULL or associated context */
Al Viro9796fdd2005-10-21 03:22:03 -0400150 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
Steve Grubbc0404992005-05-13 18:17:42 +0100153static void audit_set_pid(struct audit_buffer *ab, pid_t pid)
154{
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -0700155 struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
Steve Grubbc0404992005-05-13 18:17:42 +0100156 nlh->nlmsg_pid = pid;
157}
158
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000159void audit_panic(const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 switch (audit_failure)
162 {
163 case AUDIT_FAIL_SILENT:
164 break;
165 case AUDIT_FAIL_PRINTK:
166 printk(KERN_ERR "audit: %s\n", message);
167 break;
168 case AUDIT_FAIL_PANIC:
169 panic("audit: %s\n", message);
170 break;
171 }
172}
173
174static inline int audit_rate_check(void)
175{
176 static unsigned long last_check = 0;
177 static int messages = 0;
178 static DEFINE_SPINLOCK(lock);
179 unsigned long flags;
180 unsigned long now;
181 unsigned long elapsed;
182 int retval = 0;
183
184 if (!audit_rate_limit) return 1;
185
186 spin_lock_irqsave(&lock, flags);
187 if (++messages < audit_rate_limit) {
188 retval = 1;
189 } else {
190 now = jiffies;
191 elapsed = now - last_check;
192 if (elapsed > HZ) {
193 last_check = now;
194 messages = 0;
195 retval = 1;
196 }
197 }
198 spin_unlock_irqrestore(&lock, flags);
199
200 return retval;
201}
202
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700203/**
204 * audit_log_lost - conditionally log lost audit message event
205 * @message: the message stating reason for lost audit message
206 *
207 * Emit at least 1 message per second, even if audit_rate_check is
208 * throttling.
209 * Always increment the lost messages counter.
210*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211void audit_log_lost(const char *message)
212{
213 static unsigned long last_msg = 0;
214 static DEFINE_SPINLOCK(lock);
215 unsigned long flags;
216 unsigned long now;
217 int print;
218
219 atomic_inc(&audit_lost);
220
221 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
222
223 if (!print) {
224 spin_lock_irqsave(&lock, flags);
225 now = jiffies;
226 if (now - last_msg > HZ) {
227 print = 1;
228 last_msg = now;
229 }
230 spin_unlock_irqrestore(&lock, flags);
231 }
232
233 if (print) {
234 printk(KERN_WARNING
David Woodhouseb7d11252005-05-19 10:56:58 +0100235 "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 atomic_read(&audit_lost),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 audit_rate_limit,
238 audit_backlog_limit);
239 audit_panic(message);
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Steve Grubbce29b682006-04-01 18:29:34 -0500243static int audit_set_rate_limit(int limit, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500245 int res, rc = 0, old = audit_rate_limit;
246
247 /* check if we are locked */
248 if (audit_enabled == 2)
249 res = 0;
250 else
251 res = 1;
Steve Grubbce29b682006-04-01 18:29:34 -0500252
253 if (sid) {
254 char *ctx = NULL;
255 u32 len;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500256 if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) {
Steve Grubbce29b682006-04-01 18:29:34 -0500257 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500258 "audit_rate_limit=%d old=%d by auid=%u"
259 " subj=%s res=%d",
260 limit, old, loginuid, ctx, res);
261 kfree(ctx);
262 } else
263 res = 0; /* Something weird, deny request */
264 }
265 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
266 "audit_rate_limit=%d old=%d by auid=%u res=%d",
267 limit, old, loginuid, res);
268
269 /* If we are allowed, make the change */
270 if (res == 1)
271 audit_rate_limit = limit;
272 /* Not allowed, update reason */
273 else if (rc == 0)
274 rc = -EPERM;
275 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Steve Grubbce29b682006-04-01 18:29:34 -0500278static int audit_set_backlog_limit(int limit, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500280 int res, rc = 0, old = audit_backlog_limit;
281
282 /* check if we are locked */
283 if (audit_enabled == 2)
284 res = 0;
285 else
286 res = 1;
Steve Grubbce29b682006-04-01 18:29:34 -0500287
288 if (sid) {
289 char *ctx = NULL;
290 u32 len;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500291 if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) {
Steve Grubbce29b682006-04-01 18:29:34 -0500292 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500293 "audit_backlog_limit=%d old=%d by auid=%u"
294 " subj=%s res=%d",
295 limit, old, loginuid, ctx, res);
296 kfree(ctx);
297 } else
298 res = 0; /* Something weird, deny request */
299 }
300 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
301 "audit_backlog_limit=%d old=%d by auid=%u res=%d",
302 limit, old, loginuid, res);
303
304 /* If we are allowed, make the change */
305 if (res == 1)
306 audit_backlog_limit = limit;
307 /* Not allowed, update reason */
308 else if (rc == 0)
309 rc = -EPERM;
310 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Steve Grubbce29b682006-04-01 18:29:34 -0500313static int audit_set_enabled(int state, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500315 int res, rc = 0, old = audit_enabled;
Steve Grubbce29b682006-04-01 18:29:34 -0500316
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500317 if (state < 0 || state > 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500319
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500320 /* check if we are locked */
321 if (audit_enabled == 2)
322 res = 0;
323 else
324 res = 1;
325
Steve Grubbce29b682006-04-01 18:29:34 -0500326 if (sid) {
327 char *ctx = NULL;
328 u32 len;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500329 if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) {
Steve Grubbce29b682006-04-01 18:29:34 -0500330 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500331 "audit_enabled=%d old=%d by auid=%u"
332 " subj=%s res=%d",
333 state, old, loginuid, ctx, res);
334 kfree(ctx);
335 } else
336 res = 0; /* Something weird, deny request */
337 }
338 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
339 "audit_enabled=%d old=%d by auid=%u res=%d",
340 state, old, loginuid, res);
341
342 /* If we are allowed, make the change */
343 if (res == 1)
344 audit_enabled = state;
345 /* Not allowed, update reason */
346 else if (rc == 0)
347 rc = -EPERM;
348 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Steve Grubbce29b682006-04-01 18:29:34 -0500351static int audit_set_failure(int state, uid_t loginuid, u32 sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500353 int res, rc = 0, old = audit_failure;
Steve Grubbce29b682006-04-01 18:29:34 -0500354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (state != AUDIT_FAIL_SILENT
356 && state != AUDIT_FAIL_PRINTK
357 && state != AUDIT_FAIL_PANIC)
358 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500359
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500360 /* check if we are locked */
361 if (audit_enabled == 2)
362 res = 0;
363 else
364 res = 1;
365
Steve Grubbce29b682006-04-01 18:29:34 -0500366 if (sid) {
367 char *ctx = NULL;
368 u32 len;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500369 if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) {
Steve Grubbce29b682006-04-01 18:29:34 -0500370 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500371 "audit_failure=%d old=%d by auid=%u"
372 " subj=%s res=%d",
373 state, old, loginuid, ctx, res);
374 kfree(ctx);
375 } else
376 res = 0; /* Something weird, deny request */
377 }
378 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
379 "audit_failure=%d old=%d by auid=%u res=%d",
380 state, old, loginuid, res);
381
382 /* If we are allowed, make the change */
383 if (res == 1)
384 audit_failure = state;
385 /* Not allowed, update reason */
386 else if (rc == 0)
387 rc = -EPERM;
388 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Adrian Bunk97a41e22006-01-08 01:02:17 -0800391static int kauditd_thread(void *dummy)
David Woodhouseb7d11252005-05-19 10:56:58 +0100392{
393 struct sk_buff *skb;
394
Andrew Morton4899b8b2006-10-06 00:43:48 -0700395 while (!kthread_should_stop()) {
David Woodhouseb7d11252005-05-19 10:56:58 +0100396 skb = skb_dequeue(&audit_skb_queue);
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100397 wake_up(&audit_backlog_wait);
David Woodhouseb7d11252005-05-19 10:56:58 +0100398 if (skb) {
399 if (audit_pid) {
400 int err = netlink_unicast(audit_sock, skb, audit_pid, 0);
401 if (err < 0) {
402 BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */
403 printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid);
404 audit_pid = 0;
405 }
406 } else {
David Woodhousee1b09eb2005-06-24 17:24:11 +0100407 printk(KERN_NOTICE "%s\n", skb->data + NLMSG_SPACE(0));
David Woodhouseb7d11252005-05-19 10:56:58 +0100408 kfree_skb(skb);
409 }
410 } else {
411 DECLARE_WAITQUEUE(wait, current);
412 set_current_state(TASK_INTERRUPTIBLE);
413 add_wait_queue(&kauditd_wait, &wait);
414
Pierre Ossman7a4ae742005-12-12 00:37:22 -0800415 if (!skb_queue_len(&audit_skb_queue)) {
416 try_to_freeze();
David Woodhouseb7d11252005-05-19 10:56:58 +0100417 schedule();
Pierre Ossman7a4ae742005-12-12 00:37:22 -0800418 }
David Woodhouseb7d11252005-05-19 10:56:58 +0100419
420 __set_current_state(TASK_RUNNING);
421 remove_wait_queue(&kauditd_wait, &wait);
422 }
423 }
Andrew Morton4899b8b2006-10-06 00:43:48 -0700424 return 0;
David Woodhouseb7d11252005-05-19 10:56:58 +0100425}
426
Miloslav Trmac522ed772007-07-15 23:40:56 -0700427static int audit_prepare_user_tty(pid_t pid, uid_t loginuid)
428{
429 struct task_struct *tsk;
430 int err;
431
432 read_lock(&tasklist_lock);
433 tsk = find_task_by_pid(pid);
434 err = -ESRCH;
435 if (!tsk)
436 goto out;
437 err = 0;
438
439 spin_lock_irq(&tsk->sighand->siglock);
440 if (!tsk->signal->audit_tty)
441 err = -EPERM;
442 spin_unlock_irq(&tsk->sighand->siglock);
443 if (err)
444 goto out;
445
446 tty_audit_push_task(tsk, loginuid);
447out:
448 read_unlock(&tasklist_lock);
449 return err;
450}
451
Al Viro9044e6b2006-05-22 01:09:24 -0400452int audit_send_list(void *_dest)
453{
454 struct audit_netlink_list *dest = _dest;
455 int pid = dest->pid;
456 struct sk_buff *skb;
457
458 /* wait for parent to finish and send an ACK */
Amy Griffisf368c07d2006-04-07 16:55:56 -0400459 mutex_lock(&audit_cmd_mutex);
460 mutex_unlock(&audit_cmd_mutex);
Al Viro9044e6b2006-05-22 01:09:24 -0400461
462 while ((skb = __skb_dequeue(&dest->q)) != NULL)
463 netlink_unicast(audit_sock, skb, pid, 0);
464
465 kfree(dest);
466
467 return 0;
468}
469
470struct sk_buff *audit_make_reply(int pid, int seq, int type, int done,
471 int multi, void *payload, int size)
472{
473 struct sk_buff *skb;
474 struct nlmsghdr *nlh;
475 int len = NLMSG_SPACE(size);
476 void *data;
477 int flags = multi ? NLM_F_MULTI : 0;
478 int t = done ? NLMSG_DONE : type;
479
480 skb = alloc_skb(len, GFP_KERNEL);
481 if (!skb)
482 return NULL;
483
484 nlh = NLMSG_PUT(skb, pid, seq, t, size);
485 nlh->nlmsg_flags = flags;
486 data = NLMSG_DATA(nlh);
487 memcpy(data, payload, size);
488 return skb;
489
490nlmsg_failure: /* Used by NLMSG_PUT */
491 if (skb)
492 kfree_skb(skb);
493 return NULL;
494}
495
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700496/**
497 * audit_send_reply - send an audit reply message via netlink
498 * @pid: process id to send reply to
499 * @seq: sequence number
500 * @type: audit message type
501 * @done: done (last) flag
502 * @multi: multi-part message flag
503 * @payload: payload data
504 * @size: payload size
505 *
506 * Allocates an skb, builds the netlink message, and sends it to the pid.
507 * No failure notifications.
508 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509void audit_send_reply(int pid, int seq, int type, int done, int multi,
510 void *payload, int size)
511{
512 struct sk_buff *skb;
Al Viro9044e6b2006-05-22 01:09:24 -0400513 skb = audit_make_reply(pid, seq, type, done, multi, payload, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (!skb)
David Woodhouseb7d11252005-05-19 10:56:58 +0100515 return;
David Woodhouseb7d11252005-05-19 10:56:58 +0100516 /* Ignore failure. It'll only happen if the sender goes away,
517 because our timeout is set to infinite. */
518 netlink_unicast(audit_sock, skb, pid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/*
523 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
524 * control messages.
525 */
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700526static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 int err = 0;
529
530 switch (msg_type) {
531 case AUDIT_GET:
532 case AUDIT_LIST:
Amy Griffis93315ed2006-02-07 12:05:27 -0500533 case AUDIT_LIST_RULES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 case AUDIT_SET:
535 case AUDIT_ADD:
Amy Griffis93315ed2006-02-07 12:05:27 -0500536 case AUDIT_ADD_RULE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 case AUDIT_DEL:
Amy Griffis93315ed2006-02-07 12:05:27 -0500538 case AUDIT_DEL_RULE:
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100539 case AUDIT_SIGNAL_INFO:
Miloslav Trmac522ed772007-07-15 23:40:56 -0700540 case AUDIT_TTY_GET:
541 case AUDIT_TTY_SET:
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700542 if (security_netlink_recv(skb, CAP_AUDIT_CONTROL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 err = -EPERM;
544 break;
Steve Grubb05474102005-05-21 00:18:37 +0100545 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -0700546 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
547 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700548 if (security_netlink_recv(skb, CAP_AUDIT_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 err = -EPERM;
550 break;
551 default: /* bad msg */
552 err = -EINVAL;
553 }
554
555 return err;
556}
557
558static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
559{
Steve Grubbe7c34972006-04-03 09:08:13 -0400560 u32 uid, pid, seq, sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 void *data;
562 struct audit_status *status_get, status_set;
563 int err;
Steve Grubbc0404992005-05-13 18:17:42 +0100564 struct audit_buffer *ab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 u16 msg_type = nlh->nlmsg_type;
Serge Hallync94c2572005-04-29 16:27:17 +0100566 uid_t loginuid; /* loginuid of sender */
Al Viroe1396062006-05-25 10:19:47 -0400567 struct audit_sig_info *sig_data;
568 char *ctx;
569 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700571 err = audit_netlink_ok(skb, msg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (err)
573 return err;
574
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700575 /* As soon as there's any sign of userspace auditd,
576 * start kauditd to talk to it */
David Woodhouseb7d11252005-05-19 10:56:58 +0100577 if (!kauditd_task)
578 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
579 if (IS_ERR(kauditd_task)) {
580 err = PTR_ERR(kauditd_task);
581 kauditd_task = NULL;
582 return err;
583 }
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 pid = NETLINK_CREDS(skb)->pid;
586 uid = NETLINK_CREDS(skb)->uid;
Serge Hallync94c2572005-04-29 16:27:17 +0100587 loginuid = NETLINK_CB(skb).loginuid;
Steve Grubbe7c34972006-04-03 09:08:13 -0400588 sid = NETLINK_CB(skb).sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 seq = nlh->nlmsg_seq;
590 data = NLMSG_DATA(nlh);
591
592 switch (msg_type) {
593 case AUDIT_GET:
594 status_set.enabled = audit_enabled;
595 status_set.failure = audit_failure;
596 status_set.pid = audit_pid;
597 status_set.rate_limit = audit_rate_limit;
598 status_set.backlog_limit = audit_backlog_limit;
599 status_set.lost = atomic_read(&audit_lost);
David Woodhouseb7d11252005-05-19 10:56:58 +0100600 status_set.backlog = skb_queue_len(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0,
602 &status_set, sizeof(status_set));
603 break;
604 case AUDIT_SET:
605 if (nlh->nlmsg_len < sizeof(struct audit_status))
606 return -EINVAL;
607 status_get = (struct audit_status *)data;
608 if (status_get->mask & AUDIT_STATUS_ENABLED) {
Steve Grubbce29b682006-04-01 18:29:34 -0500609 err = audit_set_enabled(status_get->enabled,
610 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (err < 0) return err;
612 }
613 if (status_get->mask & AUDIT_STATUS_FAILURE) {
Steve Grubbce29b682006-04-01 18:29:34 -0500614 err = audit_set_failure(status_get->failure,
615 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (err < 0) return err;
617 }
618 if (status_get->mask & AUDIT_STATUS_PID) {
619 int old = audit_pid;
Steve Grubbce29b682006-04-01 18:29:34 -0500620 if (sid) {
Stephen Smalley1a70cd42006-09-25 23:31:57 -0700621 if ((err = selinux_sid_to_string(
Steve Grubbce29b682006-04-01 18:29:34 -0500622 sid, &ctx, &len)))
Al Viroe1396062006-05-25 10:19:47 -0400623 return err;
Steve Grubbce29b682006-04-01 18:29:34 -0500624 else
625 audit_log(NULL, GFP_KERNEL,
626 AUDIT_CONFIG_CHANGE,
627 "audit_pid=%d old=%d by auid=%u subj=%s",
628 status_get->pid, old,
629 loginuid, ctx);
630 kfree(ctx);
631 } else
632 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
633 "audit_pid=%d old=%d by auid=%u",
634 status_get->pid, old, loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 audit_pid = status_get->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 if (status_get->mask & AUDIT_STATUS_RATE_LIMIT)
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500638 err = audit_set_rate_limit(status_get->rate_limit,
Steve Grubbce29b682006-04-01 18:29:34 -0500639 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT)
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500641 err = audit_set_backlog_limit(status_get->backlog_limit,
Steve Grubbce29b682006-04-01 18:29:34 -0500642 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
Steve Grubb05474102005-05-21 00:18:37 +0100644 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -0700645 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
646 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
David Woodhouse4a4cd632005-06-22 14:56:47 +0100647 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
648 return 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100649
David Woodhouse5bb289b2005-06-24 14:14:05 +0100650 err = audit_filter_user(&NETLINK_CB(skb), msg_type);
David Woodhouse4a4cd632005-06-22 14:56:47 +0100651 if (err == 1) {
652 err = 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700653 if (msg_type == AUDIT_USER_TTY) {
654 err = audit_prepare_user_tty(pid, loginuid);
655 if (err)
656 break;
657 }
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100658 ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
David Woodhouse4a4cd632005-06-22 14:56:47 +0100659 if (ab) {
660 audit_log_format(ab,
Steve Grubbe7c34972006-04-03 09:08:13 -0400661 "user pid=%d uid=%u auid=%u",
662 pid, uid, loginuid);
663 if (sid) {
Stephen Smalley1a70cd42006-09-25 23:31:57 -0700664 if (selinux_sid_to_string(
Steve Grubbe7c34972006-04-03 09:08:13 -0400665 sid, &ctx, &len)) {
666 audit_log_format(ab,
Steve Grubbce29b682006-04-01 18:29:34 -0500667 " ssid=%u", sid);
Steve Grubbe7c34972006-04-03 09:08:13 -0400668 /* Maybe call audit_panic? */
669 } else
670 audit_log_format(ab,
671 " subj=%s", ctx);
672 kfree(ctx);
673 }
Miloslav Trmac522ed772007-07-15 23:40:56 -0700674 if (msg_type != AUDIT_USER_TTY)
675 audit_log_format(ab, " msg='%.1024s'",
676 (char *)data);
677 else {
678 int size;
679
680 audit_log_format(ab, " msg=");
681 size = nlmsg_len(nlh);
682 audit_log_n_untrustedstring(ab, size,
683 data);
684 }
David Woodhouse4a4cd632005-06-22 14:56:47 +0100685 audit_set_pid(ab, pid);
686 audit_log_end(ab);
687 }
David Woodhouse0f45aa12005-06-19 19:35:50 +0100688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690 case AUDIT_ADD:
691 case AUDIT_DEL:
Amy Griffis93315ed2006-02-07 12:05:27 -0500692 if (nlmsg_len(nlh) < sizeof(struct audit_rule))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return -EINVAL;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500694 if (audit_enabled == 2) {
695 ab = audit_log_start(NULL, GFP_KERNEL,
696 AUDIT_CONFIG_CHANGE);
697 if (ab) {
698 audit_log_format(ab,
699 "pid=%d uid=%u auid=%u",
700 pid, uid, loginuid);
701 if (sid) {
702 if (selinux_sid_to_string(
703 sid, &ctx, &len)) {
704 audit_log_format(ab,
705 " ssid=%u", sid);
706 /* Maybe call audit_panic? */
707 } else
708 audit_log_format(ab,
709 " subj=%s", ctx);
710 kfree(ctx);
711 }
712 audit_log_format(ab, " audit_enabled=%d res=0",
713 audit_enabled);
714 audit_log_end(ab);
715 }
716 return -EPERM;
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 /* fallthrough */
719 case AUDIT_LIST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
Amy Griffis93315ed2006-02-07 12:05:27 -0500721 uid, seq, data, nlmsg_len(nlh),
Steve Grubbce29b682006-04-01 18:29:34 -0500722 loginuid, sid);
Amy Griffis93315ed2006-02-07 12:05:27 -0500723 break;
724 case AUDIT_ADD_RULE:
725 case AUDIT_DEL_RULE:
726 if (nlmsg_len(nlh) < sizeof(struct audit_rule_data))
727 return -EINVAL;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500728 if (audit_enabled == 2) {
729 ab = audit_log_start(NULL, GFP_KERNEL,
730 AUDIT_CONFIG_CHANGE);
731 if (ab) {
732 audit_log_format(ab,
733 "pid=%d uid=%u auid=%u",
734 pid, uid, loginuid);
735 if (sid) {
736 if (selinux_sid_to_string(
737 sid, &ctx, &len)) {
738 audit_log_format(ab,
739 " ssid=%u", sid);
740 /* Maybe call audit_panic? */
741 } else
742 audit_log_format(ab,
743 " subj=%s", ctx);
744 kfree(ctx);
745 }
746 audit_log_format(ab, " audit_enabled=%d res=0",
747 audit_enabled);
748 audit_log_end(ab);
749 }
750 return -EPERM;
751 }
Amy Griffis93315ed2006-02-07 12:05:27 -0500752 /* fallthrough */
753 case AUDIT_LIST_RULES:
754 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
755 uid, seq, data, nlmsg_len(nlh),
Steve Grubbce29b682006-04-01 18:29:34 -0500756 loginuid, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 break;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100758 case AUDIT_SIGNAL_INFO:
Stephen Smalley1a70cd42006-09-25 23:31:57 -0700759 err = selinux_sid_to_string(audit_sig_sid, &ctx, &len);
Al Viroe1396062006-05-25 10:19:47 -0400760 if (err)
761 return err;
762 sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL);
763 if (!sig_data) {
764 kfree(ctx);
765 return -ENOMEM;
766 }
767 sig_data->uid = audit_sig_uid;
768 sig_data->pid = audit_sig_pid;
769 memcpy(sig_data->ctx, ctx, len);
770 kfree(ctx);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100771 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO,
Al Viroe1396062006-05-25 10:19:47 -0400772 0, 0, sig_data, sizeof(*sig_data) + len);
773 kfree(sig_data);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100774 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700775 case AUDIT_TTY_GET: {
776 struct audit_tty_status s;
777 struct task_struct *tsk;
778
779 read_lock(&tasklist_lock);
780 tsk = find_task_by_pid(pid);
781 if (!tsk)
782 err = -ESRCH;
783 else {
784 spin_lock_irq(&tsk->sighand->siglock);
785 s.enabled = tsk->signal->audit_tty != 0;
786 spin_unlock_irq(&tsk->sighand->siglock);
787 }
788 read_unlock(&tasklist_lock);
789 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_TTY_GET, 0, 0,
790 &s, sizeof(s));
791 break;
792 }
793 case AUDIT_TTY_SET: {
794 struct audit_tty_status *s;
795 struct task_struct *tsk;
796
797 if (nlh->nlmsg_len < sizeof(struct audit_tty_status))
798 return -EINVAL;
799 s = data;
800 if (s->enabled != 0 && s->enabled != 1)
801 return -EINVAL;
802 read_lock(&tasklist_lock);
803 tsk = find_task_by_pid(pid);
804 if (!tsk)
805 err = -ESRCH;
806 else {
807 spin_lock_irq(&tsk->sighand->siglock);
808 tsk->signal->audit_tty = s->enabled != 0;
809 spin_unlock_irq(&tsk->sighand->siglock);
810 }
811 read_unlock(&tasklist_lock);
812 break;
813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 default:
815 err = -EINVAL;
816 break;
817 }
818
819 return err < 0 ? err : 0;
820}
821
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700822/*
823 * Get message from skb (based on rtnetlink_rcv_skb). Each message is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * processed by audit_receive_msg. Malformed skbs with wrong length are
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700825 * discarded silently.
826 */
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700827static void audit_receive_skb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 int err;
830 struct nlmsghdr *nlh;
831 u32 rlen;
832
833 while (skb->len >= NLMSG_SPACE(0)) {
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -0700834 nlh = nlmsg_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len)
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700836 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
838 if (rlen > skb->len)
839 rlen = skb->len;
840 if ((err = audit_receive_msg(skb, nlh))) {
841 netlink_ack(skb, nlh, err);
842 } else if (nlh->nlmsg_flags & NLM_F_ACK)
843 netlink_ack(skb, nlh, 0);
844 skb_pull(skb, rlen);
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
848/* Receive messages from netlink socket. */
849static void audit_receive(struct sock *sk, int length)
850{
851 struct sk_buff *skb;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700852 unsigned int qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Amy Griffisf368c07d2006-04-07 16:55:56 -0400854 mutex_lock(&audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Herbert Xu2a0a6eb2005-05-03 14:55:09 -0700856 for (qlen = skb_queue_len(&sk->sk_receive_queue); qlen; qlen--) {
857 skb = skb_dequeue(&sk->sk_receive_queue);
858 audit_receive_skb(skb);
859 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Amy Griffisf368c07d2006-04-07 16:55:56 -0400861 mutex_unlock(&audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Amy Griffisf368c07d2006-04-07 16:55:56 -0400864#ifdef CONFIG_AUDITSYSCALL
865static const struct inotify_operations audit_inotify_ops = {
866 .handle_event = audit_handle_ievent,
867 .destroy_watch = audit_free_parent,
868};
869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871/* Initialize audit support at boot time. */
872static int __init audit_init(void)
873{
Amy Griffisf368c07d2006-04-07 16:55:56 -0400874 int i;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 printk(KERN_INFO "audit: initializing netlink socket (%s)\n",
877 audit_default ? "enabled" : "disabled");
Patrick McHardy06628602005-08-15 12:33:26 -0700878 audit_sock = netlink_kernel_create(NETLINK_AUDIT, 0, audit_receive,
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700879 NULL, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (!audit_sock)
881 audit_panic("cannot initialize netlink socket");
Amy Griffis71e1c782006-03-06 22:40:05 -0500882 else
883 audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
David Woodhouseb7d11252005-05-19 10:56:58 +0100885 skb_queue_head_init(&audit_skb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 audit_initialized = 1;
887 audit_enabled = audit_default;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600888
889 /* Register the callback with selinux. This callback will be invoked
890 * when a new policy is loaded. */
891 selinux_audit_set_callback(&selinux_audit_rule_update);
892
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100893 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized");
Amy Griffisf368c07d2006-04-07 16:55:56 -0400894
895#ifdef CONFIG_AUDITSYSCALL
896 audit_ih = inotify_init(&audit_inotify_ops);
897 if (IS_ERR(audit_ih))
898 audit_panic("cannot initialize inotify handle");
Amy Griffis69884342006-07-13 13:17:12 -0400899#endif
Amy Griffisf368c07d2006-04-07 16:55:56 -0400900
901 for (i = 0; i < AUDIT_INODE_BUCKETS; i++)
902 INIT_LIST_HEAD(&audit_inode_hash[i]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return 0;
905}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906__initcall(audit_init);
907
908/* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
909static int __init audit_enable(char *str)
910{
911 audit_default = !!simple_strtol(str, NULL, 0);
912 printk(KERN_INFO "audit: %s%s\n",
913 audit_default ? "enabled" : "disabled",
914 audit_initialized ? "" : " (after initialization)");
915 if (audit_initialized)
916 audit_enabled = audit_default;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800917 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
920__setup("audit=", audit_enable);
921
Chris Wright16e19042005-05-06 15:53:34 +0100922static void audit_buffer_free(struct audit_buffer *ab)
923{
924 unsigned long flags;
925
Chris Wright8fc61152005-05-06 15:54:17 +0100926 if (!ab)
927 return;
928
Chris Wright5ac52f32005-05-06 15:54:53 +0100929 if (ab->skb)
930 kfree_skb(ab->skb);
David Woodhouseb7d11252005-05-19 10:56:58 +0100931
Chris Wright16e19042005-05-06 15:53:34 +0100932 spin_lock_irqsave(&audit_freelist_lock, flags);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500933 if (audit_freelist_count > AUDIT_MAXFREE)
Chris Wright16e19042005-05-06 15:53:34 +0100934 kfree(ab);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500935 else {
936 audit_freelist_count++;
Chris Wright16e19042005-05-06 15:53:34 +0100937 list_add(&ab->list, &audit_freelist);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -0500938 }
Chris Wright16e19042005-05-06 15:53:34 +0100939 spin_unlock_irqrestore(&audit_freelist_lock, flags);
940}
941
Steve Grubbc0404992005-05-13 18:17:42 +0100942static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
Al Virodd0fc662005-10-07 07:46:04 +0100943 gfp_t gfp_mask, int type)
Chris Wright16e19042005-05-06 15:53:34 +0100944{
945 unsigned long flags;
946 struct audit_buffer *ab = NULL;
Steve Grubbc0404992005-05-13 18:17:42 +0100947 struct nlmsghdr *nlh;
Chris Wright16e19042005-05-06 15:53:34 +0100948
949 spin_lock_irqsave(&audit_freelist_lock, flags);
950 if (!list_empty(&audit_freelist)) {
951 ab = list_entry(audit_freelist.next,
952 struct audit_buffer, list);
953 list_del(&ab->list);
954 --audit_freelist_count;
955 }
956 spin_unlock_irqrestore(&audit_freelist_lock, flags);
957
958 if (!ab) {
David Woodhouse4332bdd2005-05-06 15:59:57 +0100959 ab = kmalloc(sizeof(*ab), gfp_mask);
Chris Wright16e19042005-05-06 15:53:34 +0100960 if (!ab)
Chris Wright8fc61152005-05-06 15:54:17 +0100961 goto err;
Chris Wright16e19042005-05-06 15:53:34 +0100962 }
Chris Wright8fc61152005-05-06 15:54:17 +0100963
David Woodhouse4332bdd2005-05-06 15:59:57 +0100964 ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask);
Chris Wright5ac52f32005-05-06 15:54:53 +0100965 if (!ab->skb)
Chris Wright8fc61152005-05-06 15:54:17 +0100966 goto err;
967
David Woodhouseb7d11252005-05-19 10:56:58 +0100968 ab->ctx = ctx;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100969 ab->gfp_mask = gfp_mask;
Steve Grubbc0404992005-05-13 18:17:42 +0100970 nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0));
971 nlh->nlmsg_type = type;
972 nlh->nlmsg_flags = 0;
973 nlh->nlmsg_pid = 0;
974 nlh->nlmsg_seq = 0;
Chris Wright16e19042005-05-06 15:53:34 +0100975 return ab;
Chris Wright8fc61152005-05-06 15:54:17 +0100976err:
977 audit_buffer_free(ab);
978 return NULL;
Chris Wright16e19042005-05-06 15:53:34 +0100979}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700981/**
982 * audit_serial - compute a serial number for the audit record
983 *
984 * Compute a serial number for the audit record. Audit records are
David Woodhousebfb44962005-05-21 21:08:09 +0100985 * written to user-space as soon as they are generated, so a complete
986 * audit record may be written in several pieces. The timestamp of the
987 * record and this serial number are used by the user-space tools to
988 * determine which pieces belong to the same audit record. The
989 * (timestamp,serial) tuple is unique for each syscall and is live from
990 * syscall entry to syscall exit.
991 *
David Woodhousebfb44962005-05-21 21:08:09 +0100992 * NOTE: Another possibility is to store the formatted records off the
993 * audit context (for those records that have a context), and emit them
994 * all at syscall exit. However, this could delay the reporting of
995 * significant errors until syscall exit (or never, if the system
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700996 * halts).
997 */
David Woodhousebfb44962005-05-21 21:08:09 +0100998unsigned int audit_serial(void)
999{
Ingo Molnar34af9462006-06-27 02:53:55 -07001000 static DEFINE_SPINLOCK(serial_lock);
David Woodhoused5b454f2005-07-15 12:56:03 +01001001 static unsigned int serial = 0;
David Woodhousebfb44962005-05-21 21:08:09 +01001002
David Woodhoused5b454f2005-07-15 12:56:03 +01001003 unsigned long flags;
1004 unsigned int ret;
David Woodhousebfb44962005-05-21 21:08:09 +01001005
David Woodhoused5b454f2005-07-15 12:56:03 +01001006 spin_lock_irqsave(&serial_lock, flags);
David Woodhousebfb44962005-05-21 21:08:09 +01001007 do {
David Woodhousece625a82005-07-18 14:24:46 -04001008 ret = ++serial;
1009 } while (unlikely(!ret));
David Woodhoused5b454f2005-07-15 12:56:03 +01001010 spin_unlock_irqrestore(&serial_lock, flags);
David Woodhousebfb44962005-05-21 21:08:09 +01001011
David Woodhoused5b454f2005-07-15 12:56:03 +01001012 return ret;
David Woodhousebfb44962005-05-21 21:08:09 +01001013}
1014
1015static inline void audit_get_stamp(struct audit_context *ctx,
1016 struct timespec *t, unsigned int *serial)
1017{
1018 if (ctx)
1019 auditsc_get_stamp(ctx, t, serial);
1020 else {
1021 *t = CURRENT_TIME;
1022 *serial = audit_serial();
1023 }
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/* Obtain an audit buffer. This routine does locking to obtain the
1027 * audit buffer, but then no locking is required for calls to
1028 * audit_log_*format. If the tsk is a task that is currently in a
1029 * syscall, then the syscall is marked as auditable and an audit record
1030 * will be written at syscall exit. If there is no associated task, tsk
1031 * should be NULL. */
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001032
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001033/**
1034 * audit_log_start - obtain an audit buffer
1035 * @ctx: audit_context (may be NULL)
1036 * @gfp_mask: type of allocation
1037 * @type: audit message type
1038 *
1039 * Returns audit_buffer pointer on success or NULL on error.
1040 *
1041 * Obtain an audit buffer. This routine does locking to obtain the
1042 * audit buffer, but then no locking is required for calls to
1043 * audit_log_*format. If the task (ctx) is a task that is currently in a
1044 * syscall, then the syscall is marked as auditable and an audit record
1045 * will be written at syscall exit. If there is no associated task, then
1046 * task context (ctx) should be NULL.
1047 */
Al Viro9796fdd2005-10-21 03:22:03 -04001048struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001049 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 struct audit_buffer *ab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 struct timespec t;
Steve Grubbd812ddb2005-04-29 16:09:52 +01001053 unsigned int serial;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001054 int reserve;
David Woodhouseac4cec42005-07-02 14:08:48 +01001055 unsigned long timeout_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 if (!audit_initialized)
1058 return NULL;
1059
Dustin Kirklandc8edc802005-11-03 16:12:36 +00001060 if (unlikely(audit_filter_type(type)))
1061 return NULL;
1062
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001063 if (gfp_mask & __GFP_WAIT)
1064 reserve = 0;
1065 else
1066 reserve = 5; /* Allow atomic callers to go up to five
1067 entries over the normal backlog limit */
1068
1069 while (audit_backlog_limit
1070 && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) {
David Woodhouseac4cec42005-07-02 14:08:48 +01001071 if (gfp_mask & __GFP_WAIT && audit_backlog_wait_time
1072 && time_before(jiffies, timeout_start + audit_backlog_wait_time)) {
1073
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001074 /* Wait for auditd to drain the queue a little */
1075 DECLARE_WAITQUEUE(wait, current);
1076 set_current_state(TASK_INTERRUPTIBLE);
1077 add_wait_queue(&audit_backlog_wait, &wait);
1078
1079 if (audit_backlog_limit &&
1080 skb_queue_len(&audit_skb_queue) > audit_backlog_limit)
David Woodhouseac4cec42005-07-02 14:08:48 +01001081 schedule_timeout(timeout_start + audit_backlog_wait_time - jiffies);
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001082
1083 __set_current_state(TASK_RUNNING);
1084 remove_wait_queue(&audit_backlog_wait, &wait);
David Woodhouseac4cec42005-07-02 14:08:48 +01001085 continue;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001086 }
David Woodhousefb19b4c2005-05-19 14:55:56 +01001087 if (audit_rate_check())
1088 printk(KERN_WARNING
1089 "audit: audit_backlog=%d > "
1090 "audit_backlog_limit=%d\n",
1091 skb_queue_len(&audit_skb_queue),
1092 audit_backlog_limit);
1093 audit_log_lost("backlog limit exceeded");
David Woodhouseac4cec42005-07-02 14:08:48 +01001094 audit_backlog_wait_time = audit_backlog_wait_overflow;
1095 wake_up(&audit_backlog_wait);
David Woodhousefb19b4c2005-05-19 14:55:56 +01001096 return NULL;
1097 }
1098
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001099 ab = audit_buffer_alloc(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (!ab) {
1101 audit_log_lost("out of memory in audit_log_start");
1102 return NULL;
1103 }
1104
David Woodhousebfb44962005-05-21 21:08:09 +01001105 audit_get_stamp(ab->ctx, &t, &serial);
Chris Wright197c69c2005-05-11 10:54:05 +01001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
1108 t.tv_sec, t.tv_nsec/1000000, serial);
1109 return ab;
1110}
1111
Chris Wright8fc61152005-05-06 15:54:17 +01001112/**
Chris Wright5ac52f32005-05-06 15:54:53 +01001113 * audit_expand - expand skb in the audit buffer
Chris Wright8fc61152005-05-06 15:54:17 +01001114 * @ab: audit_buffer
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001115 * @extra: space to add at tail of the skb
Chris Wright8fc61152005-05-06 15:54:17 +01001116 *
1117 * Returns 0 (no space) on failed expansion, or available space if
1118 * successful.
1119 */
David Woodhousee3b926b2005-05-10 18:56:08 +01001120static inline int audit_expand(struct audit_buffer *ab, int extra)
Chris Wright8fc61152005-05-06 15:54:17 +01001121{
Chris Wright5ac52f32005-05-06 15:54:53 +01001122 struct sk_buff *skb = ab->skb;
David Woodhousee3b926b2005-05-10 18:56:08 +01001123 int ret = pskb_expand_head(skb, skb_headroom(skb), extra,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001124 ab->gfp_mask);
Chris Wright5ac52f32005-05-06 15:54:53 +01001125 if (ret < 0) {
1126 audit_log_lost("out of memory in audit_expand");
Chris Wright8fc61152005-05-06 15:54:17 +01001127 return 0;
Chris Wright5ac52f32005-05-06 15:54:53 +01001128 }
1129 return skb_tailroom(skb);
Chris Wright8fc61152005-05-06 15:54:17 +01001130}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001132/*
1133 * Format an audit message into the audit buffer. If there isn't enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 * room in the audit buffer, more room will be allocated and vsnprint
1135 * will be called a second time. Currently, we assume that a printk
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001136 * can't format message larger than 1024 bytes, so we don't either.
1137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
1139 va_list args)
1140{
1141 int len, avail;
Chris Wright5ac52f32005-05-06 15:54:53 +01001142 struct sk_buff *skb;
David Woodhouseeecb0a72005-05-10 18:58:51 +01001143 va_list args2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (!ab)
1146 return;
1147
Chris Wright5ac52f32005-05-06 15:54:53 +01001148 BUG_ON(!ab->skb);
1149 skb = ab->skb;
1150 avail = skb_tailroom(skb);
1151 if (avail == 0) {
David Woodhousee3b926b2005-05-10 18:56:08 +01001152 avail = audit_expand(ab, AUDIT_BUFSIZ);
Chris Wright8fc61152005-05-06 15:54:17 +01001153 if (!avail)
1154 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
David Woodhouseeecb0a72005-05-10 18:58:51 +01001156 va_copy(args2, args);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001157 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (len >= avail) {
1159 /* The printk buffer is 1024 bytes long, so if we get
1160 * here and AUDIT_BUFSIZ is at least 1024, then we can
1161 * log everything that printk could have logged. */
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001162 avail = audit_expand(ab,
1163 max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
Chris Wright8fc61152005-05-06 15:54:17 +01001164 if (!avail)
1165 goto out;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001166 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
Steve Grubb168b7172005-05-19 10:24:22 +01001168 if (len > 0)
1169 skb_put(skb, len);
Chris Wright8fc61152005-05-06 15:54:17 +01001170out:
1171 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001174/**
1175 * audit_log_format - format a message into the audit buffer.
1176 * @ab: audit_buffer
1177 * @fmt: format string
1178 * @...: optional parameters matching @fmt string
1179 *
1180 * All the work is done in audit_log_vformat.
1181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
1183{
1184 va_list args;
1185
1186 if (!ab)
1187 return;
1188 va_start(args, fmt);
1189 audit_log_vformat(ab, fmt, args);
1190 va_end(args);
1191}
1192
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001193/**
1194 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1195 * @ab: the audit_buffer
1196 * @buf: buffer to convert to hex
1197 * @len: length of @buf to be converted
1198 *
1199 * No return value; failure to expand is silently ignored.
1200 *
1201 * This function will take the passed buf and convert it into a string of
1202 * ascii hex digits. The new string is placed onto the skb.
1203 */
1204void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf,
Steve Grubb168b7172005-05-19 10:24:22 +01001205 size_t len)
83c7d092005-04-29 15:54:44 +01001206{
Steve Grubb168b7172005-05-19 10:24:22 +01001207 int i, avail, new_len;
1208 unsigned char *ptr;
1209 struct sk_buff *skb;
1210 static const unsigned char *hex = "0123456789ABCDEF";
83c7d092005-04-29 15:54:44 +01001211
Amy Griffis8ef2d302006-09-07 17:03:02 -04001212 if (!ab)
1213 return;
1214
Steve Grubb168b7172005-05-19 10:24:22 +01001215 BUG_ON(!ab->skb);
1216 skb = ab->skb;
1217 avail = skb_tailroom(skb);
1218 new_len = len<<1;
1219 if (new_len >= avail) {
1220 /* Round the buffer request up to the next multiple */
1221 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
1222 avail = audit_expand(ab, new_len);
1223 if (!avail)
1224 return;
1225 }
1226
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001227 ptr = skb_tail_pointer(skb);
Steve Grubb168b7172005-05-19 10:24:22 +01001228 for (i=0; i<len; i++) {
1229 *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */
1230 *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */
1231 }
1232 *ptr = 0;
1233 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d092005-04-29 15:54:44 +01001234}
1235
Amy Griffis9c937dc2006-06-08 23:19:31 -04001236/*
1237 * Format a string of no more than slen characters into the audit buffer,
1238 * enclosed in quote marks.
1239 */
1240static void audit_log_n_string(struct audit_buffer *ab, size_t slen,
1241 const char *string)
1242{
1243 int avail, new_len;
1244 unsigned char *ptr;
1245 struct sk_buff *skb;
1246
Amy Griffis8ef2d302006-09-07 17:03:02 -04001247 if (!ab)
1248 return;
1249
Amy Griffis9c937dc2006-06-08 23:19:31 -04001250 BUG_ON(!ab->skb);
1251 skb = ab->skb;
1252 avail = skb_tailroom(skb);
1253 new_len = slen + 3; /* enclosing quotes + null terminator */
1254 if (new_len > avail) {
1255 avail = audit_expand(ab, new_len);
1256 if (!avail)
1257 return;
1258 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001259 ptr = skb_tail_pointer(skb);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001260 *ptr++ = '"';
1261 memcpy(ptr, string, slen);
1262 ptr += slen;
1263 *ptr++ = '"';
1264 *ptr = 0;
1265 skb_put(skb, slen + 2); /* don't include null terminator */
1266}
1267
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001268/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001269 * audit_log_n_untrustedstring - log a string that may contain random characters
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001270 * @ab: audit_buffer
Amy Griffis9c937dc2006-06-08 23:19:31 -04001271 * @len: lenth of string (not including trailing null)
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001272 * @string: string to be logged
1273 *
1274 * This code will escape a string that is passed to it if the string
1275 * contains a control character, unprintable character, double quote mark,
Steve Grubb168b7172005-05-19 10:24:22 +01001276 * or a space. Unescaped strings will start and end with a double quote mark.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001277 * Strings that are escaped are printed in hex (2 digits per char).
Amy Griffis9c937dc2006-06-08 23:19:31 -04001278 *
1279 * The caller specifies the number of characters in the string to log, which may
1280 * or may not be the entire string.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001281 */
Amy Griffis9c937dc2006-06-08 23:19:31 -04001282const char *audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len,
1283 const char *string)
83c7d092005-04-29 15:54:44 +01001284{
Miloslav Trmac522ed772007-07-15 23:40:56 -07001285 const unsigned char *p;
83c7d092005-04-29 15:54:44 +01001286
Miloslav Trmac522ed772007-07-15 23:40:56 -07001287 for (p = string; p < (const unsigned char *)string + len && *p; p++) {
Steve Grubb168b7172005-05-19 10:24:22 +01001288 if (*p == '"' || *p < 0x21 || *p > 0x7f) {
Al Viro473ae302006-04-26 14:04:08 -04001289 audit_log_hex(ab, string, len);
1290 return string + len + 1;
83c7d092005-04-29 15:54:44 +01001291 }
83c7d092005-04-29 15:54:44 +01001292 }
Amy Griffis9c937dc2006-06-08 23:19:31 -04001293 audit_log_n_string(ab, len, string);
Al Viro473ae302006-04-26 14:04:08 -04001294 return p + 1;
83c7d092005-04-29 15:54:44 +01001295}
1296
Amy Griffis9c937dc2006-06-08 23:19:31 -04001297/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001298 * audit_log_untrustedstring - log a string that may contain random characters
Amy Griffis9c937dc2006-06-08 23:19:31 -04001299 * @ab: audit_buffer
1300 * @string: string to be logged
1301 *
Miloslav Trmac522ed772007-07-15 23:40:56 -07001302 * Same as audit_log_n_untrustedstring(), except that strlen is used to
Amy Griffis9c937dc2006-06-08 23:19:31 -04001303 * determine string length.
1304 */
1305const char *audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
1306{
1307 return audit_log_n_untrustedstring(ab, strlen(string), string);
1308}
1309
Steve Grubb168b7172005-05-19 10:24:22 +01001310/* This is a helper-function to print the escaped d_path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
1312 struct dentry *dentry, struct vfsmount *vfsmnt)
1313{
Steve Grubb168b7172005-05-19 10:24:22 +01001314 char *p, *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Chris Wright8fc61152005-05-06 15:54:17 +01001316 if (prefix)
1317 audit_log_format(ab, " %s", prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Steve Grubb168b7172005-05-19 10:24:22 +01001319 /* We will allow 11 spaces for ' (deleted)' to be appended */
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001320 path = kmalloc(PATH_MAX+11, ab->gfp_mask);
Steve Grubb168b7172005-05-19 10:24:22 +01001321 if (!path) {
1322 audit_log_format(ab, "<no memory>");
1323 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Steve Grubb168b7172005-05-19 10:24:22 +01001325 p = d_path(dentry, vfsmnt, path, PATH_MAX+11);
1326 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
1327 /* FIXME: can we save some information here? */
1328 audit_log_format(ab, "<too long>");
1329 } else
1330 audit_log_untrustedstring(ab, p);
1331 kfree(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001334/**
1335 * audit_log_end - end one audit record
1336 * @ab: the audit_buffer
1337 *
1338 * The netlink_* functions cannot be called inside an irq context, so
1339 * the audit buffer is placed on a queue and a tasklet is scheduled to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 * remove them from the queue outside the irq context. May be called in
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001341 * any context.
1342 */
David Woodhouseb7d11252005-05-19 10:56:58 +01001343void audit_log_end(struct audit_buffer *ab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (!ab)
1346 return;
1347 if (!audit_rate_check()) {
1348 audit_log_lost("rate limit exceeded");
1349 } else {
David Woodhouseb7d11252005-05-19 10:56:58 +01001350 if (audit_pid) {
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001351 struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
David Woodhouseb7d11252005-05-19 10:56:58 +01001352 nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0);
1353 skb_queue_tail(&audit_skb_queue, ab->skb);
1354 ab->skb = NULL;
1355 wake_up_interruptible(&kauditd_wait);
1356 } else {
David Woodhousee1b09eb2005-06-24 17:24:11 +01001357 printk(KERN_NOTICE "%s\n", ab->skb->data + NLMSG_SPACE(0));
David Woodhouseb7d11252005-05-19 10:56:58 +01001358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
Chris Wright16e19042005-05-06 15:53:34 +01001360 audit_buffer_free(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001363/**
1364 * audit_log - Log an audit record
1365 * @ctx: audit context
1366 * @gfp_mask: type of allocation
1367 * @type: audit message type
1368 * @fmt: format string to use
1369 * @...: variable parameters matching the format string
1370 *
1371 * This is a convenience function that calls audit_log_start,
1372 * audit_log_vformat, and audit_log_end. It may be called
1373 * in any context.
1374 */
Al Viro9796fdd2005-10-21 03:22:03 -04001375void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001376 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
1378 struct audit_buffer *ab;
1379 va_list args;
1380
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001381 ab = audit_log_start(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (ab) {
1383 va_start(args, fmt);
1384 audit_log_vformat(ab, fmt, args);
1385 va_end(args);
1386 audit_log_end(ab);
1387 }
1388}
lorenzo@gnu.orgbf45da92006-03-09 00:33:47 +01001389
1390EXPORT_SYMBOL(audit_log_start);
1391EXPORT_SYMBOL(audit_log_end);
1392EXPORT_SYMBOL(audit_log_format);
1393EXPORT_SYMBOL(audit_log);