1 /* audit.c -- Auditing support
2 * Gateway between the kernel (e.g., selinux) and the user-space audit daemon.
3 * System-call specific features have moved to auditsc.c
5 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
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.
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.
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
22 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
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
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
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.
41 * Example user-space utilities: http://people.redhat.com/sgrubb/audit/
44 #include <linux/init.h>
45 #include <asm/atomic.h>
46 #include <asm/types.h>
48 #include <linux/module.h>
49 #include <linux/err.h>
50 #include <linux/kthread.h>
52 #include <linux/audit.h>
55 #include <linux/skbuff.h>
56 #include <linux/netlink.h>
58 /* No auditing will take place until audit_initialized != 0.
59 * (Initialization happens after skb_init is called.) */
60 static int audit_initialized;
62 /* No syscall auditing will take place unless audit_enabled != 0. */
65 /* Default state when kernel boots without any parameters. */
66 static int audit_default;
68 /* If auditing cannot proceed, audit_failure selects what happens. */
69 static int audit_failure = AUDIT_FAIL_PRINTK;
71 /* If audit records are to be written to the netlink socket, audit_pid
72 * contains the (non-zero) pid. */
75 /* If audit_limit is non-zero, limit the rate of sending audit records
76 * to that number per second. This prevents DoS attacks, but results in
77 * audit records being dropped. */
78 static int audit_rate_limit;
80 /* Number of outstanding audit_buffers allowed. */
81 static int audit_backlog_limit = 64;
82 static int audit_backlog_wait_time = 60 * HZ;
83 static int audit_backlog_wait_overflow = 0;
85 /* The identity of the user shutting down the audit system. */
86 uid_t audit_sig_uid = -1;
87 pid_t audit_sig_pid = -1;
89 /* Records can be lost in several ways:
90 0) [suppressed in audit_alloc]
91 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
92 2) out of memory in audit_log_move [alloc_skb]
93 3) suppressed due to audit_rate_limit
94 4) suppressed due to audit_backlog_limit
96 static atomic_t audit_lost = ATOMIC_INIT(0);
98 /* The netlink socket. */
99 static struct sock *audit_sock;
101 /* The audit_freelist is a list of pre-allocated audit buffers (if more
102 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
103 * being placed on the freelist). */
104 static DEFINE_SPINLOCK(audit_freelist_lock);
105 static int audit_freelist_count = 0;
106 static LIST_HEAD(audit_freelist);
108 static struct sk_buff_head audit_skb_queue;
109 static struct task_struct *kauditd_task;
110 static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
111 static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
113 /* The netlink socket is only to be read by 1 CPU, which lets us assume
114 * that list additions and deletions never happen simultaneously in
116 DECLARE_MUTEX(audit_netlink_sem);
118 /* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
119 * audit records. Since printk uses a 1024 byte buffer, this buffer
120 * should be at least that large. */
121 #define AUDIT_BUFSIZ 1024
123 /* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
124 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
125 #define AUDIT_MAXFREE (2*NR_CPUS)
127 /* The audit_buffer is used when formatting an audit record. The caller
128 * locks briefly to get the record off the freelist or to allocate the
129 * buffer, and locks briefly to send the buffer to the netlink layer or
130 * to place it on a transmit queue. Multiple audit_buffers can be in
131 * use simultaneously. */
132 struct audit_buffer {
133 struct list_head list;
134 struct sk_buff *skb; /* formatted skb ready to send */
135 struct audit_context *ctx; /* NULL or associated context */
139 static void audit_set_pid(struct audit_buffer *ab, pid_t pid)
141 struct nlmsghdr *nlh = (struct nlmsghdr *)ab->skb->data;
142 nlh->nlmsg_pid = pid;
146 struct list_head list;
147 struct audit_rule rule;
150 static void audit_panic(const char *message)
152 switch (audit_failure)
154 case AUDIT_FAIL_SILENT:
156 case AUDIT_FAIL_PRINTK:
157 printk(KERN_ERR "audit: %s\n", message);
159 case AUDIT_FAIL_PANIC:
160 panic("audit: %s\n", message);
165 static inline int audit_rate_check(void)
167 static unsigned long last_check = 0;
168 static int messages = 0;
169 static DEFINE_SPINLOCK(lock);
172 unsigned long elapsed;
175 if (!audit_rate_limit) return 1;
177 spin_lock_irqsave(&lock, flags);
178 if (++messages < audit_rate_limit) {
182 elapsed = now - last_check;
189 spin_unlock_irqrestore(&lock, flags);
194 /* Emit at least 1 message per second, even if audit_rate_check is
196 void audit_log_lost(const char *message)
198 static unsigned long last_msg = 0;
199 static DEFINE_SPINLOCK(lock);
204 atomic_inc(&audit_lost);
206 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
209 spin_lock_irqsave(&lock, flags);
211 if (now - last_msg > HZ) {
215 spin_unlock_irqrestore(&lock, flags);
220 "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n",
221 atomic_read(&audit_lost),
223 audit_backlog_limit);
224 audit_panic(message);
229 static int audit_set_rate_limit(int limit, uid_t loginuid)
231 int old = audit_rate_limit;
232 audit_rate_limit = limit;
233 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
234 "audit_rate_limit=%d old=%d by auid=%u",
235 audit_rate_limit, old, loginuid);
239 static int audit_set_backlog_limit(int limit, uid_t loginuid)
241 int old = audit_backlog_limit;
242 audit_backlog_limit = limit;
243 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
244 "audit_backlog_limit=%d old=%d by auid=%u",
245 audit_backlog_limit, old, loginuid);
249 static int audit_set_enabled(int state, uid_t loginuid)
251 int old = audit_enabled;
252 if (state != 0 && state != 1)
254 audit_enabled = state;
255 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
256 "audit_enabled=%d old=%d by auid=%u",
257 audit_enabled, old, loginuid);
261 static int audit_set_failure(int state, uid_t loginuid)
263 int old = audit_failure;
264 if (state != AUDIT_FAIL_SILENT
265 && state != AUDIT_FAIL_PRINTK
266 && state != AUDIT_FAIL_PANIC)
268 audit_failure = state;
269 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
270 "audit_failure=%d old=%d by auid=%u",
271 audit_failure, old, loginuid);
275 int kauditd_thread(void *dummy)
280 skb = skb_dequeue(&audit_skb_queue);
281 wake_up(&audit_backlog_wait);
284 int err = netlink_unicast(audit_sock, skb, audit_pid, 0);
286 BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */
287 printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid);
291 printk(KERN_NOTICE "%s\n", skb->data + NLMSG_SPACE(0));
295 DECLARE_WAITQUEUE(wait, current);
296 set_current_state(TASK_INTERRUPTIBLE);
297 add_wait_queue(&kauditd_wait, &wait);
299 if (!skb_queue_len(&audit_skb_queue))
302 __set_current_state(TASK_RUNNING);
303 remove_wait_queue(&kauditd_wait, &wait);
308 void audit_send_reply(int pid, int seq, int type, int done, int multi,
309 void *payload, int size)
312 struct nlmsghdr *nlh;
313 int len = NLMSG_SPACE(size);
315 int flags = multi ? NLM_F_MULTI : 0;
316 int t = done ? NLMSG_DONE : type;
318 skb = alloc_skb(len, GFP_KERNEL);
322 nlh = NLMSG_PUT(skb, pid, seq, t, size);
323 nlh->nlmsg_flags = flags;
324 data = NLMSG_DATA(nlh);
325 memcpy(data, payload, size);
327 /* Ignore failure. It'll only happen if the sender goes away,
328 because our timeout is set to infinite. */
329 netlink_unicast(audit_sock, skb, pid, 0);
332 nlmsg_failure: /* Used by NLMSG_PUT */
338 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
341 static int audit_netlink_ok(kernel_cap_t eff_cap, u16 msg_type)
351 case AUDIT_SIGNAL_INFO:
352 if (!cap_raised(eff_cap, CAP_AUDIT_CONTROL))
356 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
357 if (!cap_raised(eff_cap, CAP_AUDIT_WRITE))
360 default: /* bad msg */
367 static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
371 struct audit_status *status_get, status_set;
373 struct audit_buffer *ab;
374 u16 msg_type = nlh->nlmsg_type;
375 uid_t loginuid; /* loginuid of sender */
376 struct audit_sig_info sig_data;
378 err = audit_netlink_ok(NETLINK_CB(skb).eff_cap, msg_type);
382 /* As soon as there's any sign of userspace auditd, start kauditd to talk to it */
384 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
385 if (IS_ERR(kauditd_task)) {
386 err = PTR_ERR(kauditd_task);
391 pid = NETLINK_CREDS(skb)->pid;
392 uid = NETLINK_CREDS(skb)->uid;
393 loginuid = NETLINK_CB(skb).loginuid;
394 seq = nlh->nlmsg_seq;
395 data = NLMSG_DATA(nlh);
399 status_set.enabled = audit_enabled;
400 status_set.failure = audit_failure;
401 status_set.pid = audit_pid;
402 status_set.rate_limit = audit_rate_limit;
403 status_set.backlog_limit = audit_backlog_limit;
404 status_set.lost = atomic_read(&audit_lost);
405 status_set.backlog = skb_queue_len(&audit_skb_queue);
406 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0,
407 &status_set, sizeof(status_set));
410 if (nlh->nlmsg_len < sizeof(struct audit_status))
412 status_get = (struct audit_status *)data;
413 if (status_get->mask & AUDIT_STATUS_ENABLED) {
414 err = audit_set_enabled(status_get->enabled, loginuid);
415 if (err < 0) return err;
417 if (status_get->mask & AUDIT_STATUS_FAILURE) {
418 err = audit_set_failure(status_get->failure, loginuid);
419 if (err < 0) return err;
421 if (status_get->mask & AUDIT_STATUS_PID) {
423 audit_pid = status_get->pid;
424 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
425 "audit_pid=%d old=%d by auid=%u",
426 audit_pid, old, loginuid);
428 if (status_get->mask & AUDIT_STATUS_RATE_LIMIT)
429 audit_set_rate_limit(status_get->rate_limit, loginuid);
430 if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT)
431 audit_set_backlog_limit(status_get->backlog_limit,
435 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
436 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
439 err = audit_filter_user(&NETLINK_CB(skb), msg_type);
442 ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
445 "user pid=%d uid=%u auid=%u msg='%.1024s'",
446 pid, uid, loginuid, (char *)data);
447 audit_set_pid(ab, pid);
454 if (nlh->nlmsg_len < sizeof(struct audit_rule))
458 err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
459 uid, seq, data, loginuid);
461 case AUDIT_SIGNAL_INFO:
462 sig_data.uid = audit_sig_uid;
463 sig_data.pid = audit_sig_pid;
464 audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO,
465 0, 0, &sig_data, sizeof(sig_data));
472 return err < 0 ? err : 0;
475 /* Get message from skb (based on rtnetlink_rcv_skb). Each message is
476 * processed by audit_receive_msg. Malformed skbs with wrong length are
477 * discarded silently. */
478 static void audit_receive_skb(struct sk_buff *skb)
481 struct nlmsghdr *nlh;
484 while (skb->len >= NLMSG_SPACE(0)) {
485 nlh = (struct nlmsghdr *)skb->data;
486 if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len)
488 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
491 if ((err = audit_receive_msg(skb, nlh))) {
492 netlink_ack(skb, nlh, err);
493 } else if (nlh->nlmsg_flags & NLM_F_ACK)
494 netlink_ack(skb, nlh, 0);
499 /* Receive messages from netlink socket. */
500 static void audit_receive(struct sock *sk, int length)
505 down(&audit_netlink_sem);
507 for (qlen = skb_queue_len(&sk->sk_receive_queue); qlen; qlen--) {
508 skb = skb_dequeue(&sk->sk_receive_queue);
509 audit_receive_skb(skb);
512 up(&audit_netlink_sem);
516 /* Initialize audit support at boot time. */
517 static int __init audit_init(void)
519 printk(KERN_INFO "audit: initializing netlink socket (%s)\n",
520 audit_default ? "enabled" : "disabled");
521 audit_sock = netlink_kernel_create(NETLINK_AUDIT, audit_receive);
523 audit_panic("cannot initialize netlink socket");
525 audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
526 skb_queue_head_init(&audit_skb_queue);
527 audit_initialized = 1;
528 audit_enabled = audit_default;
529 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized");
532 __initcall(audit_init);
534 /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
535 static int __init audit_enable(char *str)
537 audit_default = !!simple_strtol(str, NULL, 0);
538 printk(KERN_INFO "audit: %s%s\n",
539 audit_default ? "enabled" : "disabled",
540 audit_initialized ? "" : " (after initialization)");
541 if (audit_initialized)
542 audit_enabled = audit_default;
546 __setup("audit=", audit_enable);
548 static void audit_buffer_free(struct audit_buffer *ab)
558 spin_lock_irqsave(&audit_freelist_lock, flags);
559 if (++audit_freelist_count > AUDIT_MAXFREE)
562 list_add(&ab->list, &audit_freelist);
563 spin_unlock_irqrestore(&audit_freelist_lock, flags);
566 static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
567 int gfp_mask, int type)
570 struct audit_buffer *ab = NULL;
571 struct nlmsghdr *nlh;
573 spin_lock_irqsave(&audit_freelist_lock, flags);
574 if (!list_empty(&audit_freelist)) {
575 ab = list_entry(audit_freelist.next,
576 struct audit_buffer, list);
578 --audit_freelist_count;
580 spin_unlock_irqrestore(&audit_freelist_lock, flags);
583 ab = kmalloc(sizeof(*ab), gfp_mask);
588 ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask);
593 ab->gfp_mask = gfp_mask;
594 nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0));
595 nlh->nlmsg_type = type;
596 nlh->nlmsg_flags = 0;
601 audit_buffer_free(ab);
605 /* Compute a serial number for the audit record. Audit records are
606 * written to user-space as soon as they are generated, so a complete
607 * audit record may be written in several pieces. The timestamp of the
608 * record and this serial number are used by the user-space tools to
609 * determine which pieces belong to the same audit record. The
610 * (timestamp,serial) tuple is unique for each syscall and is live from
611 * syscall entry to syscall exit.
613 * Atomic values are only guaranteed to be 24-bit, so we count down.
615 * NOTE: Another possibility is to store the formatted records off the
616 * audit context (for those records that have a context), and emit them
617 * all at syscall exit. However, this could delay the reporting of
618 * significant errors until syscall exit (or never, if the system
620 unsigned int audit_serial(void)
622 static atomic_t serial = ATOMIC_INIT(0xffffff);
626 a = atomic_read(&serial);
627 if (atomic_dec_and_test(&serial))
628 atomic_set(&serial, 0xffffff);
629 b = atomic_read(&serial);
630 } while (b != a - 1);
635 static inline void audit_get_stamp(struct audit_context *ctx,
636 struct timespec *t, unsigned int *serial)
639 auditsc_get_stamp(ctx, t, serial);
642 *serial = audit_serial();
646 /* Obtain an audit buffer. This routine does locking to obtain the
647 * audit buffer, but then no locking is required for calls to
648 * audit_log_*format. If the tsk is a task that is currently in a
649 * syscall, then the syscall is marked as auditable and an audit record
650 * will be written at syscall exit. If there is no associated task, tsk
653 struct audit_buffer *audit_log_start(struct audit_context *ctx, int gfp_mask,
656 struct audit_buffer *ab = NULL;
660 unsigned long timeout_start = jiffies;
662 if (!audit_initialized)
665 if (gfp_mask & __GFP_WAIT)
668 reserve = 5; /* Allow atomic callers to go up to five
669 entries over the normal backlog limit */
671 while (audit_backlog_limit
672 && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) {
673 if (gfp_mask & __GFP_WAIT && audit_backlog_wait_time
674 && time_before(jiffies, timeout_start + audit_backlog_wait_time)) {
676 /* Wait for auditd to drain the queue a little */
677 DECLARE_WAITQUEUE(wait, current);
678 set_current_state(TASK_INTERRUPTIBLE);
679 add_wait_queue(&audit_backlog_wait, &wait);
681 if (audit_backlog_limit &&
682 skb_queue_len(&audit_skb_queue) > audit_backlog_limit)
683 schedule_timeout(timeout_start + audit_backlog_wait_time - jiffies);
685 __set_current_state(TASK_RUNNING);
686 remove_wait_queue(&audit_backlog_wait, &wait);
689 if (audit_rate_check())
691 "audit: audit_backlog=%d > "
692 "audit_backlog_limit=%d\n",
693 skb_queue_len(&audit_skb_queue),
694 audit_backlog_limit);
695 audit_log_lost("backlog limit exceeded");
696 audit_backlog_wait_time = audit_backlog_wait_overflow;
697 wake_up(&audit_backlog_wait);
701 ab = audit_buffer_alloc(ctx, gfp_mask, type);
703 audit_log_lost("out of memory in audit_log_start");
707 audit_get_stamp(ab->ctx, &t, &serial);
709 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
710 t.tv_sec, t.tv_nsec/1000000, serial);
715 * audit_expand - expand skb in the audit buffer
718 * Returns 0 (no space) on failed expansion, or available space if
721 static inline int audit_expand(struct audit_buffer *ab, int extra)
723 struct sk_buff *skb = ab->skb;
724 int ret = pskb_expand_head(skb, skb_headroom(skb), extra,
727 audit_log_lost("out of memory in audit_expand");
730 return skb_tailroom(skb);
733 /* Format an audit message into the audit buffer. If there isn't enough
734 * room in the audit buffer, more room will be allocated and vsnprint
735 * will be called a second time. Currently, we assume that a printk
736 * can't format message larger than 1024 bytes, so we don't either. */
737 static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
749 avail = skb_tailroom(skb);
751 avail = audit_expand(ab, AUDIT_BUFSIZ);
755 va_copy(args2, args);
756 len = vsnprintf(skb->tail, avail, fmt, args);
758 /* The printk buffer is 1024 bytes long, so if we get
759 * here and AUDIT_BUFSIZ is at least 1024, then we can
760 * log everything that printk could have logged. */
761 avail = audit_expand(ab, max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
764 len = vsnprintf(skb->tail, avail, fmt, args2);
772 /* Format a message into the audit buffer. All the work is done in
773 * audit_log_vformat. */
774 void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
781 audit_log_vformat(ab, fmt, args);
785 /* This function will take the passed buf and convert it into a string of
786 * ascii hex digits. The new string is placed onto the skb. */
787 void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf,
790 int i, avail, new_len;
793 static const unsigned char *hex = "0123456789ABCDEF";
797 avail = skb_tailroom(skb);
799 if (new_len >= avail) {
800 /* Round the buffer request up to the next multiple */
801 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
802 avail = audit_expand(ab, new_len);
808 for (i=0; i<len; i++) {
809 *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */
810 *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */
813 skb_put(skb, len << 1); /* new string is twice the old string */
816 /* This code will escape a string that is passed to it if the string
817 * contains a control character, unprintable character, double quote mark,
818 * or a space. Unescaped strings will start and end with a double quote mark.
819 * Strings that are escaped are printed in hex (2 digits per char). */
820 void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
822 const unsigned char *p = string;
825 if (*p == '"' || *p < 0x21 || *p > 0x7f) {
826 audit_log_hex(ab, string, strlen(string));
831 audit_log_format(ab, "\"%s\"", string);
834 /* This is a helper-function to print the escaped d_path */
835 void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
836 struct dentry *dentry, struct vfsmount *vfsmnt)
841 audit_log_format(ab, " %s", prefix);
843 /* We will allow 11 spaces for ' (deleted)' to be appended */
844 path = kmalloc(PATH_MAX+11, ab->gfp_mask);
846 audit_log_format(ab, "<no memory>");
849 p = d_path(dentry, vfsmnt, path, PATH_MAX+11);
850 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
851 /* FIXME: can we save some information here? */
852 audit_log_format(ab, "<too long>");
854 audit_log_untrustedstring(ab, p);
858 /* The netlink_* functions cannot be called inside an irq context, so
859 * the audit buffer is places on a queue and a tasklet is scheduled to
860 * remove them from the queue outside the irq context. May be called in
862 void audit_log_end(struct audit_buffer *ab)
866 if (!audit_rate_check()) {
867 audit_log_lost("rate limit exceeded");
870 struct nlmsghdr *nlh = (struct nlmsghdr *)ab->skb->data;
871 nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0);
872 skb_queue_tail(&audit_skb_queue, ab->skb);
874 wake_up_interruptible(&kauditd_wait);
876 printk(KERN_NOTICE "%s\n", ab->skb->data + NLMSG_SPACE(0));
879 audit_buffer_free(ab);
882 /* Log an audit record. This is a convenience function that calls
883 * audit_log_start, audit_log_vformat, and audit_log_end. It may be
884 * called in any context. */
885 void audit_log(struct audit_context *ctx, int gfp_mask, int type,
886 const char *fmt, ...)
888 struct audit_buffer *ab;
891 ab = audit_log_start(ctx, gfp_mask, type);
894 audit_log_vformat(ab, fmt, args);