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-2007 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 Security Modules.
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/types.h>
46 #include <asm/atomic.h>
48 #include <linux/module.h>
49 #include <linux/slab.h>
50 #include <linux/err.h>
51 #include <linux/kthread.h>
53 #include <linux/audit.h>
56 #include <net/netlink.h>
57 #include <linux/skbuff.h>
58 #include <linux/netlink.h>
59 #include <linux/inotify.h>
60 #include <linux/freezer.h>
61 #include <linux/tty.h>
65 /* No auditing will take place until audit_initialized == AUDIT_INITIALIZED.
66 * (Initialization happens after skb_init is called.) */
67 #define AUDIT_DISABLED -1
68 #define AUDIT_UNINITIALIZED 0
69 #define AUDIT_INITIALIZED 1
70 static int audit_initialized
;
74 #define AUDIT_LOCKED 2
76 int audit_ever_enabled
;
78 /* Default state when kernel boots without any parameters. */
79 static int audit_default
;
81 /* If auditing cannot proceed, audit_failure selects what happens. */
82 static int audit_failure
= AUDIT_FAIL_PRINTK
;
85 * If audit records are to be written to the netlink socket, audit_pid
86 * contains the pid of the auditd process and audit_nlk_pid contains
87 * the pid to use to send netlink messages to that process.
90 static int audit_nlk_pid
;
92 /* If audit_rate_limit is non-zero, limit the rate of sending audit records
93 * to that number per second. This prevents DoS attacks, but results in
94 * audit records being dropped. */
95 static int audit_rate_limit
;
97 /* Number of outstanding audit_buffers allowed. */
98 static int audit_backlog_limit
= 64;
99 static int audit_backlog_wait_time
= 60 * HZ
;
100 static int audit_backlog_wait_overflow
= 0;
102 /* The identity of the user shutting down the audit system. */
103 uid_t audit_sig_uid
= -1;
104 pid_t audit_sig_pid
= -1;
105 u32 audit_sig_sid
= 0;
107 /* Records can be lost in several ways:
108 0) [suppressed in audit_alloc]
109 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
110 2) out of memory in audit_log_move [alloc_skb]
111 3) suppressed due to audit_rate_limit
112 4) suppressed due to audit_backlog_limit
114 static atomic_t audit_lost
= ATOMIC_INIT(0);
116 /* The netlink socket. */
117 static struct sock
*audit_sock
;
119 /* Hash for inode-based rules */
120 struct list_head audit_inode_hash
[AUDIT_INODE_BUCKETS
];
122 /* The audit_freelist is a list of pre-allocated audit buffers (if more
123 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
124 * being placed on the freelist). */
125 static DEFINE_SPINLOCK(audit_freelist_lock
);
126 static int audit_freelist_count
;
127 static LIST_HEAD(audit_freelist
);
129 static struct sk_buff_head audit_skb_queue
;
130 /* queue of skbs to send to auditd when/if it comes back */
131 static struct sk_buff_head audit_skb_hold_queue
;
132 static struct task_struct
*kauditd_task
;
133 static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait
);
134 static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait
);
136 /* Serialize requests from userspace. */
137 DEFINE_MUTEX(audit_cmd_mutex
);
139 /* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
140 * audit records. Since printk uses a 1024 byte buffer, this buffer
141 * should be at least that large. */
142 #define AUDIT_BUFSIZ 1024
144 /* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
145 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
146 #define AUDIT_MAXFREE (2*NR_CPUS)
148 /* The audit_buffer is used when formatting an audit record. The caller
149 * locks briefly to get the record off the freelist or to allocate the
150 * buffer, and locks briefly to send the buffer to the netlink layer or
151 * to place it on a transmit queue. Multiple audit_buffers can be in
152 * use simultaneously. */
153 struct audit_buffer
{
154 struct list_head list
;
155 struct sk_buff
*skb
; /* formatted skb ready to send */
156 struct audit_context
*ctx
; /* NULL or associated context */
165 static void audit_set_pid(struct audit_buffer
*ab
, pid_t pid
)
168 struct nlmsghdr
*nlh
= nlmsg_hdr(ab
->skb
);
169 nlh
->nlmsg_pid
= pid
;
173 void audit_panic(const char *message
)
175 switch (audit_failure
)
177 case AUDIT_FAIL_SILENT
:
179 case AUDIT_FAIL_PRINTK
:
180 if (printk_ratelimit())
181 printk(KERN_ERR
"audit: %s\n", message
);
183 case AUDIT_FAIL_PANIC
:
184 /* test audit_pid since printk is always losey, why bother? */
186 panic("audit: %s\n", message
);
191 static inline int audit_rate_check(void)
193 static unsigned long last_check
= 0;
194 static int messages
= 0;
195 static DEFINE_SPINLOCK(lock
);
198 unsigned long elapsed
;
201 if (!audit_rate_limit
) return 1;
203 spin_lock_irqsave(&lock
, flags
);
204 if (++messages
< audit_rate_limit
) {
208 elapsed
= now
- last_check
;
215 spin_unlock_irqrestore(&lock
, flags
);
221 * audit_log_lost - conditionally log lost audit message event
222 * @message: the message stating reason for lost audit message
224 * Emit at least 1 message per second, even if audit_rate_check is
226 * Always increment the lost messages counter.
228 void audit_log_lost(const char *message
)
230 static unsigned long last_msg
= 0;
231 static DEFINE_SPINLOCK(lock
);
236 atomic_inc(&audit_lost
);
238 print
= (audit_failure
== AUDIT_FAIL_PANIC
|| !audit_rate_limit
);
241 spin_lock_irqsave(&lock
, flags
);
243 if (now
- last_msg
> HZ
) {
247 spin_unlock_irqrestore(&lock
, flags
);
251 if (printk_ratelimit())
253 "audit: audit_lost=%d audit_rate_limit=%d "
254 "audit_backlog_limit=%d\n",
255 atomic_read(&audit_lost
),
257 audit_backlog_limit
);
258 audit_panic(message
);
262 static int audit_log_config_change(char *function_name
, int new, int old
,
263 uid_t loginuid
, u32 sessionid
, u32 sid
,
266 struct audit_buffer
*ab
;
269 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
);
270 audit_log_format(ab
, "%s=%d old=%d auid=%u ses=%u", function_name
, new,
271 old
, loginuid
, sessionid
);
276 rc
= security_secid_to_secctx(sid
, &ctx
, &len
);
278 audit_log_format(ab
, " sid=%u", sid
);
279 allow_changes
= 0; /* Something weird, deny request */
281 audit_log_format(ab
, " subj=%s", ctx
);
282 security_release_secctx(ctx
, len
);
285 audit_log_format(ab
, " res=%d", allow_changes
);
290 static int audit_do_config_change(char *function_name
, int *to_change
,
291 int new, uid_t loginuid
, u32 sessionid
,
294 int allow_changes
, rc
= 0, old
= *to_change
;
296 /* check if we are locked */
297 if (audit_enabled
== AUDIT_LOCKED
)
302 if (audit_enabled
!= AUDIT_OFF
) {
303 rc
= audit_log_config_change(function_name
, new, old
, loginuid
,
304 sessionid
, sid
, allow_changes
);
309 /* If we are allowed, make the change */
310 if (allow_changes
== 1)
312 /* Not allowed, update reason */
318 static int audit_set_rate_limit(int limit
, uid_t loginuid
, u32 sessionid
,
321 return audit_do_config_change("audit_rate_limit", &audit_rate_limit
,
322 limit
, loginuid
, sessionid
, sid
);
325 static int audit_set_backlog_limit(int limit
, uid_t loginuid
, u32 sessionid
,
328 return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit
,
329 limit
, loginuid
, sessionid
, sid
);
332 static int audit_set_enabled(int state
, uid_t loginuid
, u32 sessionid
, u32 sid
)
335 if (state
< AUDIT_OFF
|| state
> AUDIT_LOCKED
)
338 rc
= audit_do_config_change("audit_enabled", &audit_enabled
, state
,
339 loginuid
, sessionid
, sid
);
342 audit_ever_enabled
|= !!state
;
347 static int audit_set_failure(int state
, uid_t loginuid
, u32 sessionid
, u32 sid
)
349 if (state
!= AUDIT_FAIL_SILENT
350 && state
!= AUDIT_FAIL_PRINTK
351 && state
!= AUDIT_FAIL_PANIC
)
354 return audit_do_config_change("audit_failure", &audit_failure
, state
,
355 loginuid
, sessionid
, sid
);
359 * Queue skbs to be sent to auditd when/if it comes back. These skbs should
360 * already have been sent via prink/syslog and so if these messages are dropped
361 * it is not a huge concern since we already passed the audit_log_lost()
362 * notification and stuff. This is just nice to get audit messages during
363 * boot before auditd is running or messages generated while auditd is stopped.
364 * This only holds messages is audit_default is set, aka booting with audit=1
365 * or building your kernel that way.
367 static void audit_hold_skb(struct sk_buff
*skb
)
370 skb_queue_len(&audit_skb_hold_queue
) < audit_backlog_limit
)
371 skb_queue_tail(&audit_skb_hold_queue
, skb
);
377 * For one reason or another this nlh isn't getting delivered to the userspace
378 * audit daemon, just send it to printk.
380 static void audit_printk_skb(struct sk_buff
*skb
)
382 struct nlmsghdr
*nlh
= nlmsg_hdr(skb
);
383 char *data
= NLMSG_DATA(nlh
);
385 if (nlh
->nlmsg_type
!= AUDIT_EOE
) {
386 if (printk_ratelimit())
387 printk(KERN_NOTICE
"type=%d %s\n", nlh
->nlmsg_type
, data
);
389 audit_log_lost("printk limit exceeded\n");
395 static void kauditd_send_skb(struct sk_buff
*skb
)
398 /* take a reference in case we can't send it and we want to hold it */
400 err
= netlink_unicast(audit_sock
, skb
, audit_nlk_pid
, 0);
402 BUG_ON(err
!= -ECONNREFUSED
); /* Shouldn't happen */
403 printk(KERN_ERR
"audit: *NO* daemon at audit_pid=%d\n", audit_pid
);
404 audit_log_lost("auditd dissapeared\n");
406 /* we might get lucky and get this in the next auditd */
409 /* drop the extra reference if sent ok */
413 static int kauditd_thread(void *dummy
)
418 while (!kthread_should_stop()) {
420 * if auditd just started drain the queue of messages already
421 * sent to syslog/printk. remember loss here is ok. we already
422 * called audit_log_lost() if it didn't go out normally. so the
423 * race between the skb_dequeue and the next check for audit_pid
426 * if you ever find kauditd to be too slow we can get a perf win
427 * by doing our own locking and keeping better track if there
428 * are messages in this queue. I don't see the need now, but
429 * in 5 years when I want to play with this again I'll see this
430 * note and still have no friggin idea what i'm thinking today.
432 if (audit_default
&& audit_pid
) {
433 skb
= skb_dequeue(&audit_skb_hold_queue
);
435 while (skb
&& audit_pid
) {
436 kauditd_send_skb(skb
);
437 skb
= skb_dequeue(&audit_skb_hold_queue
);
442 skb
= skb_dequeue(&audit_skb_queue
);
443 wake_up(&audit_backlog_wait
);
446 kauditd_send_skb(skb
);
448 audit_printk_skb(skb
);
450 DECLARE_WAITQUEUE(wait
, current
);
451 set_current_state(TASK_INTERRUPTIBLE
);
452 add_wait_queue(&kauditd_wait
, &wait
);
454 if (!skb_queue_len(&audit_skb_queue
)) {
459 __set_current_state(TASK_RUNNING
);
460 remove_wait_queue(&kauditd_wait
, &wait
);
466 static int audit_prepare_user_tty(pid_t pid
, uid_t loginuid
, u32 sessionid
)
468 struct task_struct
*tsk
;
471 read_lock(&tasklist_lock
);
472 tsk
= find_task_by_vpid(pid
);
478 spin_lock_irq(&tsk
->sighand
->siglock
);
479 if (!tsk
->signal
->audit_tty
)
481 spin_unlock_irq(&tsk
->sighand
->siglock
);
485 tty_audit_push_task(tsk
, loginuid
, sessionid
);
487 read_unlock(&tasklist_lock
);
491 int audit_send_list(void *_dest
)
493 struct audit_netlink_list
*dest
= _dest
;
497 /* wait for parent to finish and send an ACK */
498 mutex_lock(&audit_cmd_mutex
);
499 mutex_unlock(&audit_cmd_mutex
);
501 while ((skb
= __skb_dequeue(&dest
->q
)) != NULL
)
502 netlink_unicast(audit_sock
, skb
, pid
, 0);
509 struct sk_buff
*audit_make_reply(int pid
, int seq
, int type
, int done
,
510 int multi
, void *payload
, int size
)
513 struct nlmsghdr
*nlh
;
515 int flags
= multi
? NLM_F_MULTI
: 0;
516 int t
= done
? NLMSG_DONE
: type
;
518 skb
= nlmsg_new(size
, GFP_KERNEL
);
522 nlh
= NLMSG_NEW(skb
, pid
, seq
, t
, size
, flags
);
523 data
= NLMSG_DATA(nlh
);
524 memcpy(data
, payload
, size
);
527 nlmsg_failure
: /* Used by NLMSG_NEW */
533 static int audit_send_reply_thread(void *arg
)
535 struct audit_reply
*reply
= (struct audit_reply
*)arg
;
537 mutex_lock(&audit_cmd_mutex
);
538 mutex_unlock(&audit_cmd_mutex
);
540 /* Ignore failure. It'll only happen if the sender goes away,
541 because our timeout is set to infinite. */
542 netlink_unicast(audit_sock
, reply
->skb
, reply
->pid
, 0);
547 * audit_send_reply - send an audit reply message via netlink
548 * @pid: process id to send reply to
549 * @seq: sequence number
550 * @type: audit message type
551 * @done: done (last) flag
552 * @multi: multi-part message flag
553 * @payload: payload data
554 * @size: payload size
556 * Allocates an skb, builds the netlink message, and sends it to the pid.
557 * No failure notifications.
559 void audit_send_reply(int pid
, int seq
, int type
, int done
, int multi
,
560 void *payload
, int size
)
563 struct task_struct
*tsk
;
564 struct audit_reply
*reply
= kmalloc(sizeof(struct audit_reply
),
570 skb
= audit_make_reply(pid
, seq
, type
, done
, multi
, payload
, size
);
577 tsk
= kthread_run(audit_send_reply_thread
, reply
, "audit_send_reply");
586 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
589 static int audit_netlink_ok(struct sk_buff
*skb
, u16 msg_type
)
596 case AUDIT_LIST_RULES
:
602 case AUDIT_SIGNAL_INFO
:
606 case AUDIT_MAKE_EQUIV
:
607 if (security_netlink_recv(skb
, CAP_AUDIT_CONTROL
))
611 case AUDIT_FIRST_USER_MSG
... AUDIT_LAST_USER_MSG
:
612 case AUDIT_FIRST_USER_MSG2
... AUDIT_LAST_USER_MSG2
:
613 if (security_netlink_recv(skb
, CAP_AUDIT_WRITE
))
616 default: /* bad msg */
623 static int audit_log_common_recv_msg(struct audit_buffer
**ab
, u16 msg_type
,
624 u32 pid
, u32 uid
, uid_t auid
, u32 ses
,
631 if (!audit_enabled
) {
636 *ab
= audit_log_start(NULL
, GFP_KERNEL
, msg_type
);
637 audit_log_format(*ab
, "user pid=%d uid=%u auid=%u ses=%u",
638 pid
, uid
, auid
, ses
);
640 rc
= security_secid_to_secctx(sid
, &ctx
, &len
);
642 audit_log_format(*ab
, " ssid=%u", sid
);
644 audit_log_format(*ab
, " subj=%s", ctx
);
645 security_release_secctx(ctx
, len
);
652 static int audit_receive_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
654 u32 uid
, pid
, seq
, sid
;
656 struct audit_status
*status_get
, status_set
;
658 struct audit_buffer
*ab
;
659 u16 msg_type
= nlh
->nlmsg_type
;
660 uid_t loginuid
; /* loginuid of sender */
662 struct audit_sig_info
*sig_data
;
666 err
= audit_netlink_ok(skb
, msg_type
);
670 /* As soon as there's any sign of userspace auditd,
671 * start kauditd to talk to it */
673 kauditd_task
= kthread_run(kauditd_thread
, NULL
, "kauditd");
674 if (IS_ERR(kauditd_task
)) {
675 err
= PTR_ERR(kauditd_task
);
680 pid
= NETLINK_CREDS(skb
)->pid
;
681 uid
= NETLINK_CREDS(skb
)->uid
;
682 loginuid
= NETLINK_CB(skb
).loginuid
;
683 sessionid
= NETLINK_CB(skb
).sessionid
;
684 sid
= NETLINK_CB(skb
).sid
;
685 seq
= nlh
->nlmsg_seq
;
686 data
= NLMSG_DATA(nlh
);
690 status_set
.enabled
= audit_enabled
;
691 status_set
.failure
= audit_failure
;
692 status_set
.pid
= audit_pid
;
693 status_set
.rate_limit
= audit_rate_limit
;
694 status_set
.backlog_limit
= audit_backlog_limit
;
695 status_set
.lost
= atomic_read(&audit_lost
);
696 status_set
.backlog
= skb_queue_len(&audit_skb_queue
);
697 audit_send_reply(NETLINK_CB(skb
).pid
, seq
, AUDIT_GET
, 0, 0,
698 &status_set
, sizeof(status_set
));
701 if (nlh
->nlmsg_len
< sizeof(struct audit_status
))
703 status_get
= (struct audit_status
*)data
;
704 if (status_get
->mask
& AUDIT_STATUS_ENABLED
) {
705 err
= audit_set_enabled(status_get
->enabled
,
706 loginuid
, sessionid
, sid
);
710 if (status_get
->mask
& AUDIT_STATUS_FAILURE
) {
711 err
= audit_set_failure(status_get
->failure
,
712 loginuid
, sessionid
, sid
);
716 if (status_get
->mask
& AUDIT_STATUS_PID
) {
717 int new_pid
= status_get
->pid
;
719 if (audit_enabled
!= AUDIT_OFF
)
720 audit_log_config_change("audit_pid", new_pid
,
725 audit_nlk_pid
= NETLINK_CB(skb
).pid
;
727 if (status_get
->mask
& AUDIT_STATUS_RATE_LIMIT
) {
728 err
= audit_set_rate_limit(status_get
->rate_limit
,
729 loginuid
, sessionid
, sid
);
733 if (status_get
->mask
& AUDIT_STATUS_BACKLOG_LIMIT
)
734 err
= audit_set_backlog_limit(status_get
->backlog_limit
,
735 loginuid
, sessionid
, sid
);
738 case AUDIT_FIRST_USER_MSG
... AUDIT_LAST_USER_MSG
:
739 case AUDIT_FIRST_USER_MSG2
... AUDIT_LAST_USER_MSG2
:
740 if (!audit_enabled
&& msg_type
!= AUDIT_USER_AVC
)
743 err
= audit_filter_user(&NETLINK_CB(skb
));
746 if (msg_type
== AUDIT_USER_TTY
) {
747 err
= audit_prepare_user_tty(pid
, loginuid
,
752 audit_log_common_recv_msg(&ab
, msg_type
, pid
, uid
,
753 loginuid
, sessionid
, sid
);
755 if (msg_type
!= AUDIT_USER_TTY
)
756 audit_log_format(ab
, " msg='%.1024s'",
761 audit_log_format(ab
, " msg=");
762 size
= nlmsg_len(nlh
);
764 ((unsigned char *)data
)[size
- 1] == '\0')
766 audit_log_n_untrustedstring(ab
, data
, size
);
768 audit_set_pid(ab
, pid
);
774 if (nlmsg_len(nlh
) < sizeof(struct audit_rule
))
776 if (audit_enabled
== AUDIT_LOCKED
) {
777 audit_log_common_recv_msg(&ab
, AUDIT_CONFIG_CHANGE
, pid
,
778 uid
, loginuid
, sessionid
, sid
);
780 audit_log_format(ab
, " audit_enabled=%d res=0",
787 err
= audit_receive_filter(msg_type
, NETLINK_CB(skb
).pid
,
788 uid
, seq
, data
, nlmsg_len(nlh
),
789 loginuid
, sessionid
, sid
);
793 if (nlmsg_len(nlh
) < sizeof(struct audit_rule_data
))
795 if (audit_enabled
== AUDIT_LOCKED
) {
796 audit_log_common_recv_msg(&ab
, AUDIT_CONFIG_CHANGE
, pid
,
797 uid
, loginuid
, sessionid
, sid
);
799 audit_log_format(ab
, " audit_enabled=%d res=0",
805 case AUDIT_LIST_RULES
:
806 err
= audit_receive_filter(msg_type
, NETLINK_CB(skb
).pid
,
807 uid
, seq
, data
, nlmsg_len(nlh
),
808 loginuid
, sessionid
, sid
);
813 audit_log_common_recv_msg(&ab
, AUDIT_CONFIG_CHANGE
, pid
,
814 uid
, loginuid
, sessionid
, sid
);
816 audit_log_format(ab
, " op=trim res=1");
819 case AUDIT_MAKE_EQUIV
: {
822 size_t msglen
= nlmsg_len(nlh
);
826 if (msglen
< 2 * sizeof(u32
))
828 memcpy(sizes
, bufp
, 2 * sizeof(u32
));
829 bufp
+= 2 * sizeof(u32
);
830 msglen
-= 2 * sizeof(u32
);
831 old
= audit_unpack_string(&bufp
, &msglen
, sizes
[0]);
836 new = audit_unpack_string(&bufp
, &msglen
, sizes
[1]);
842 /* OK, here comes... */
843 err
= audit_tag_tree(old
, new);
845 audit_log_common_recv_msg(&ab
, AUDIT_CONFIG_CHANGE
, pid
,
846 uid
, loginuid
, sessionid
, sid
);
848 audit_log_format(ab
, " op=make_equiv old=");
849 audit_log_untrustedstring(ab
, old
);
850 audit_log_format(ab
, " new=");
851 audit_log_untrustedstring(ab
, new);
852 audit_log_format(ab
, " res=%d", !err
);
858 case AUDIT_SIGNAL_INFO
:
861 err
= security_secid_to_secctx(audit_sig_sid
, &ctx
, &len
);
865 sig_data
= kmalloc(sizeof(*sig_data
) + len
, GFP_KERNEL
);
868 security_release_secctx(ctx
, len
);
871 sig_data
->uid
= audit_sig_uid
;
872 sig_data
->pid
= audit_sig_pid
;
874 memcpy(sig_data
->ctx
, ctx
, len
);
875 security_release_secctx(ctx
, len
);
877 audit_send_reply(NETLINK_CB(skb
).pid
, seq
, AUDIT_SIGNAL_INFO
,
878 0, 0, sig_data
, sizeof(*sig_data
) + len
);
881 case AUDIT_TTY_GET
: {
882 struct audit_tty_status s
;
883 struct task_struct
*tsk
;
885 read_lock(&tasklist_lock
);
886 tsk
= find_task_by_vpid(pid
);
890 spin_lock_irq(&tsk
->sighand
->siglock
);
891 s
.enabled
= tsk
->signal
->audit_tty
!= 0;
892 spin_unlock_irq(&tsk
->sighand
->siglock
);
894 read_unlock(&tasklist_lock
);
895 audit_send_reply(NETLINK_CB(skb
).pid
, seq
, AUDIT_TTY_GET
, 0, 0,
899 case AUDIT_TTY_SET
: {
900 struct audit_tty_status
*s
;
901 struct task_struct
*tsk
;
903 if (nlh
->nlmsg_len
< sizeof(struct audit_tty_status
))
906 if (s
->enabled
!= 0 && s
->enabled
!= 1)
908 read_lock(&tasklist_lock
);
909 tsk
= find_task_by_vpid(pid
);
913 spin_lock_irq(&tsk
->sighand
->siglock
);
914 tsk
->signal
->audit_tty
= s
->enabled
!= 0;
915 spin_unlock_irq(&tsk
->sighand
->siglock
);
917 read_unlock(&tasklist_lock
);
925 return err
< 0 ? err
: 0;
929 * Get message from skb. Each message is processed by audit_receive_msg.
930 * Malformed skbs with wrong length are discarded silently.
932 static void audit_receive_skb(struct sk_buff
*skb
)
934 struct nlmsghdr
*nlh
;
936 * len MUST be signed for NLMSG_NEXT to be able to dec it below 0
937 * if the nlmsg_len was not aligned
942 nlh
= nlmsg_hdr(skb
);
945 while (NLMSG_OK(nlh
, len
)) {
946 err
= audit_receive_msg(skb
, nlh
);
947 /* if err or if this message says it wants a response */
948 if (err
|| (nlh
->nlmsg_flags
& NLM_F_ACK
))
949 netlink_ack(skb
, nlh
, err
);
951 nlh
= NLMSG_NEXT(nlh
, len
);
955 /* Receive messages from netlink socket. */
956 static void audit_receive(struct sk_buff
*skb
)
958 mutex_lock(&audit_cmd_mutex
);
959 audit_receive_skb(skb
);
960 mutex_unlock(&audit_cmd_mutex
);
963 /* Initialize audit support at boot time. */
964 static int __init
audit_init(void)
968 if (audit_initialized
== AUDIT_DISABLED
)
971 printk(KERN_INFO
"audit: initializing netlink socket (%s)\n",
972 audit_default
? "enabled" : "disabled");
973 audit_sock
= netlink_kernel_create(&init_net
, NETLINK_AUDIT
, 0,
974 audit_receive
, NULL
, THIS_MODULE
);
976 audit_panic("cannot initialize netlink socket");
978 audit_sock
->sk_sndtimeo
= MAX_SCHEDULE_TIMEOUT
;
980 skb_queue_head_init(&audit_skb_queue
);
981 skb_queue_head_init(&audit_skb_hold_queue
);
982 audit_initialized
= AUDIT_INITIALIZED
;
983 audit_enabled
= audit_default
;
984 audit_ever_enabled
|= !!audit_default
;
986 audit_log(NULL
, GFP_KERNEL
, AUDIT_KERNEL
, "initialized");
988 for (i
= 0; i
< AUDIT_INODE_BUCKETS
; i
++)
989 INIT_LIST_HEAD(&audit_inode_hash
[i
]);
993 __initcall(audit_init
);
995 /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
996 static int __init
audit_enable(char *str
)
998 audit_default
= !!simple_strtol(str
, NULL
, 0);
1000 audit_initialized
= AUDIT_DISABLED
;
1002 printk(KERN_INFO
"audit: %s", audit_default
? "enabled" : "disabled");
1004 if (audit_initialized
== AUDIT_INITIALIZED
) {
1005 audit_enabled
= audit_default
;
1006 audit_ever_enabled
|= !!audit_default
;
1007 } else if (audit_initialized
== AUDIT_UNINITIALIZED
) {
1008 printk(" (after initialization)");
1010 printk(" (until reboot)");
1017 __setup("audit=", audit_enable
);
1019 static void audit_buffer_free(struct audit_buffer
*ab
)
1021 unsigned long flags
;
1029 spin_lock_irqsave(&audit_freelist_lock
, flags
);
1030 if (audit_freelist_count
> AUDIT_MAXFREE
)
1033 audit_freelist_count
++;
1034 list_add(&ab
->list
, &audit_freelist
);
1036 spin_unlock_irqrestore(&audit_freelist_lock
, flags
);
1039 static struct audit_buffer
* audit_buffer_alloc(struct audit_context
*ctx
,
1040 gfp_t gfp_mask
, int type
)
1042 unsigned long flags
;
1043 struct audit_buffer
*ab
= NULL
;
1044 struct nlmsghdr
*nlh
;
1046 spin_lock_irqsave(&audit_freelist_lock
, flags
);
1047 if (!list_empty(&audit_freelist
)) {
1048 ab
= list_entry(audit_freelist
.next
,
1049 struct audit_buffer
, list
);
1050 list_del(&ab
->list
);
1051 --audit_freelist_count
;
1053 spin_unlock_irqrestore(&audit_freelist_lock
, flags
);
1056 ab
= kmalloc(sizeof(*ab
), gfp_mask
);
1062 ab
->gfp_mask
= gfp_mask
;
1064 ab
->skb
= nlmsg_new(AUDIT_BUFSIZ
, gfp_mask
);
1068 nlh
= NLMSG_NEW(ab
->skb
, 0, 0, type
, 0, 0);
1072 nlmsg_failure
: /* Used by NLMSG_NEW */
1076 audit_buffer_free(ab
);
1081 * audit_serial - compute a serial number for the audit record
1083 * Compute a serial number for the audit record. Audit records are
1084 * written to user-space as soon as they are generated, so a complete
1085 * audit record may be written in several pieces. The timestamp of the
1086 * record and this serial number are used by the user-space tools to
1087 * determine which pieces belong to the same audit record. The
1088 * (timestamp,serial) tuple is unique for each syscall and is live from
1089 * syscall entry to syscall exit.
1091 * NOTE: Another possibility is to store the formatted records off the
1092 * audit context (for those records that have a context), and emit them
1093 * all at syscall exit. However, this could delay the reporting of
1094 * significant errors until syscall exit (or never, if the system
1097 unsigned int audit_serial(void)
1099 static DEFINE_SPINLOCK(serial_lock
);
1100 static unsigned int serial
= 0;
1102 unsigned long flags
;
1105 spin_lock_irqsave(&serial_lock
, flags
);
1108 } while (unlikely(!ret
));
1109 spin_unlock_irqrestore(&serial_lock
, flags
);
1114 static inline void audit_get_stamp(struct audit_context
*ctx
,
1115 struct timespec
*t
, unsigned int *serial
)
1117 if (!ctx
|| !auditsc_get_stamp(ctx
, t
, serial
)) {
1119 *serial
= audit_serial();
1123 /* Obtain an audit buffer. This routine does locking to obtain the
1124 * audit buffer, but then no locking is required for calls to
1125 * audit_log_*format. If the tsk is a task that is currently in a
1126 * syscall, then the syscall is marked as auditable and an audit record
1127 * will be written at syscall exit. If there is no associated task, tsk
1128 * should be NULL. */
1131 * audit_log_start - obtain an audit buffer
1132 * @ctx: audit_context (may be NULL)
1133 * @gfp_mask: type of allocation
1134 * @type: audit message type
1136 * Returns audit_buffer pointer on success or NULL on error.
1138 * Obtain an audit buffer. This routine does locking to obtain the
1139 * audit buffer, but then no locking is required for calls to
1140 * audit_log_*format. If the task (ctx) is a task that is currently in a
1141 * syscall, then the syscall is marked as auditable and an audit record
1142 * will be written at syscall exit. If there is no associated task, then
1143 * task context (ctx) should be NULL.
1145 struct audit_buffer
*audit_log_start(struct audit_context
*ctx
, gfp_t gfp_mask
,
1148 struct audit_buffer
*ab
= NULL
;
1150 unsigned int uninitialized_var(serial
);
1152 unsigned long timeout_start
= jiffies
;
1154 if (audit_initialized
!= AUDIT_INITIALIZED
)
1157 if (unlikely(audit_filter_type(type
)))
1160 if (gfp_mask
& __GFP_WAIT
)
1163 reserve
= 5; /* Allow atomic callers to go up to five
1164 entries over the normal backlog limit */
1166 while (audit_backlog_limit
1167 && skb_queue_len(&audit_skb_queue
) > audit_backlog_limit
+ reserve
) {
1168 if (gfp_mask
& __GFP_WAIT
&& audit_backlog_wait_time
1169 && time_before(jiffies
, timeout_start
+ audit_backlog_wait_time
)) {
1171 /* Wait for auditd to drain the queue a little */
1172 DECLARE_WAITQUEUE(wait
, current
);
1173 set_current_state(TASK_INTERRUPTIBLE
);
1174 add_wait_queue(&audit_backlog_wait
, &wait
);
1176 if (audit_backlog_limit
&&
1177 skb_queue_len(&audit_skb_queue
) > audit_backlog_limit
)
1178 schedule_timeout(timeout_start
+ audit_backlog_wait_time
- jiffies
);
1180 __set_current_state(TASK_RUNNING
);
1181 remove_wait_queue(&audit_backlog_wait
, &wait
);
1184 if (audit_rate_check() && printk_ratelimit())
1186 "audit: audit_backlog=%d > "
1187 "audit_backlog_limit=%d\n",
1188 skb_queue_len(&audit_skb_queue
),
1189 audit_backlog_limit
);
1190 audit_log_lost("backlog limit exceeded");
1191 audit_backlog_wait_time
= audit_backlog_wait_overflow
;
1192 wake_up(&audit_backlog_wait
);
1196 ab
= audit_buffer_alloc(ctx
, gfp_mask
, type
);
1198 audit_log_lost("out of memory in audit_log_start");
1202 audit_get_stamp(ab
->ctx
, &t
, &serial
);
1204 audit_log_format(ab
, "audit(%lu.%03lu:%u): ",
1205 t
.tv_sec
, t
.tv_nsec
/1000000, serial
);
1210 * audit_expand - expand skb in the audit buffer
1212 * @extra: space to add at tail of the skb
1214 * Returns 0 (no space) on failed expansion, or available space if
1217 static inline int audit_expand(struct audit_buffer
*ab
, int extra
)
1219 struct sk_buff
*skb
= ab
->skb
;
1220 int oldtail
= skb_tailroom(skb
);
1221 int ret
= pskb_expand_head(skb
, 0, extra
, ab
->gfp_mask
);
1222 int newtail
= skb_tailroom(skb
);
1225 audit_log_lost("out of memory in audit_expand");
1229 skb
->truesize
+= newtail
- oldtail
;
1234 * Format an audit message into the audit buffer. If there isn't enough
1235 * room in the audit buffer, more room will be allocated and vsnprint
1236 * will be called a second time. Currently, we assume that a printk
1237 * can't format message larger than 1024 bytes, so we don't either.
1239 static void audit_log_vformat(struct audit_buffer
*ab
, const char *fmt
,
1243 struct sk_buff
*skb
;
1251 avail
= skb_tailroom(skb
);
1253 avail
= audit_expand(ab
, AUDIT_BUFSIZ
);
1257 va_copy(args2
, args
);
1258 len
= vsnprintf(skb_tail_pointer(skb
), avail
, fmt
, args
);
1260 /* The printk buffer is 1024 bytes long, so if we get
1261 * here and AUDIT_BUFSIZ is at least 1024, then we can
1262 * log everything that printk could have logged. */
1263 avail
= audit_expand(ab
,
1264 max_t(unsigned, AUDIT_BUFSIZ
, 1+len
-avail
));
1267 len
= vsnprintf(skb_tail_pointer(skb
), avail
, fmt
, args2
);
1277 * audit_log_format - format a message into the audit buffer.
1279 * @fmt: format string
1280 * @...: optional parameters matching @fmt string
1282 * All the work is done in audit_log_vformat.
1284 void audit_log_format(struct audit_buffer
*ab
, const char *fmt
, ...)
1290 va_start(args
, fmt
);
1291 audit_log_vformat(ab
, fmt
, args
);
1296 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1297 * @ab: the audit_buffer
1298 * @buf: buffer to convert to hex
1299 * @len: length of @buf to be converted
1301 * No return value; failure to expand is silently ignored.
1303 * This function will take the passed buf and convert it into a string of
1304 * ascii hex digits. The new string is placed onto the skb.
1306 void audit_log_n_hex(struct audit_buffer
*ab
, const unsigned char *buf
,
1309 int i
, avail
, new_len
;
1311 struct sk_buff
*skb
;
1312 static const unsigned char *hex
= "0123456789ABCDEF";
1319 avail
= skb_tailroom(skb
);
1321 if (new_len
>= avail
) {
1322 /* Round the buffer request up to the next multiple */
1323 new_len
= AUDIT_BUFSIZ
*(((new_len
-avail
)/AUDIT_BUFSIZ
) + 1);
1324 avail
= audit_expand(ab
, new_len
);
1329 ptr
= skb_tail_pointer(skb
);
1330 for (i
=0; i
<len
; i
++) {
1331 *ptr
++ = hex
[(buf
[i
] & 0xF0)>>4]; /* Upper nibble */
1332 *ptr
++ = hex
[buf
[i
] & 0x0F]; /* Lower nibble */
1335 skb_put(skb
, len
<< 1); /* new string is twice the old string */
1339 * Format a string of no more than slen characters into the audit buffer,
1340 * enclosed in quote marks.
1342 void audit_log_n_string(struct audit_buffer
*ab
, const char *string
,
1347 struct sk_buff
*skb
;
1354 avail
= skb_tailroom(skb
);
1355 new_len
= slen
+ 3; /* enclosing quotes + null terminator */
1356 if (new_len
> avail
) {
1357 avail
= audit_expand(ab
, new_len
);
1361 ptr
= skb_tail_pointer(skb
);
1363 memcpy(ptr
, string
, slen
);
1367 skb_put(skb
, slen
+ 2); /* don't include null terminator */
1371 * audit_string_contains_control - does a string need to be logged in hex
1372 * @string: string to be checked
1373 * @len: max length of the string to check
1375 int audit_string_contains_control(const char *string
, size_t len
)
1377 const unsigned char *p
;
1378 for (p
= string
; p
< (const unsigned char *)string
+ len
; p
++) {
1379 if (*p
== '"' || *p
< 0x21 || *p
> 0x7e)
1386 * audit_log_n_untrustedstring - log a string that may contain random characters
1388 * @len: length of string (not including trailing null)
1389 * @string: string to be logged
1391 * This code will escape a string that is passed to it if the string
1392 * contains a control character, unprintable character, double quote mark,
1393 * or a space. Unescaped strings will start and end with a double quote mark.
1394 * Strings that are escaped are printed in hex (2 digits per char).
1396 * The caller specifies the number of characters in the string to log, which may
1397 * or may not be the entire string.
1399 void audit_log_n_untrustedstring(struct audit_buffer
*ab
, const char *string
,
1402 if (audit_string_contains_control(string
, len
))
1403 audit_log_n_hex(ab
, string
, len
);
1405 audit_log_n_string(ab
, string
, len
);
1409 * audit_log_untrustedstring - log a string that may contain random characters
1411 * @string: string to be logged
1413 * Same as audit_log_n_untrustedstring(), except that strlen is used to
1414 * determine string length.
1416 void audit_log_untrustedstring(struct audit_buffer
*ab
, const char *string
)
1418 audit_log_n_untrustedstring(ab
, string
, strlen(string
));
1421 /* This is a helper-function to print the escaped d_path */
1422 void audit_log_d_path(struct audit_buffer
*ab
, const char *prefix
,
1428 audit_log_format(ab
, " %s", prefix
);
1430 /* We will allow 11 spaces for ' (deleted)' to be appended */
1431 pathname
= kmalloc(PATH_MAX
+11, ab
->gfp_mask
);
1433 audit_log_string(ab
, "<no_memory>");
1436 p
= d_path(path
, pathname
, PATH_MAX
+11);
1437 if (IS_ERR(p
)) { /* Should never happen since we send PATH_MAX */
1438 /* FIXME: can we save some information here? */
1439 audit_log_string(ab
, "<too_long>");
1441 audit_log_untrustedstring(ab
, p
);
1445 void audit_log_key(struct audit_buffer
*ab
, char *key
)
1447 audit_log_format(ab
, " key=");
1449 audit_log_untrustedstring(ab
, key
);
1451 audit_log_format(ab
, "(null)");
1455 * audit_log_end - end one audit record
1456 * @ab: the audit_buffer
1458 * The netlink_* functions cannot be called inside an irq context, so
1459 * the audit buffer is placed on a queue and a tasklet is scheduled to
1460 * remove them from the queue outside the irq context. May be called in
1463 void audit_log_end(struct audit_buffer
*ab
)
1467 if (!audit_rate_check()) {
1468 audit_log_lost("rate limit exceeded");
1470 struct nlmsghdr
*nlh
= nlmsg_hdr(ab
->skb
);
1471 nlh
->nlmsg_len
= ab
->skb
->len
- NLMSG_SPACE(0);
1474 skb_queue_tail(&audit_skb_queue
, ab
->skb
);
1475 wake_up_interruptible(&kauditd_wait
);
1477 audit_printk_skb(ab
->skb
);
1481 audit_buffer_free(ab
);
1485 * audit_log - Log an audit record
1486 * @ctx: audit context
1487 * @gfp_mask: type of allocation
1488 * @type: audit message type
1489 * @fmt: format string to use
1490 * @...: variable parameters matching the format string
1492 * This is a convenience function that calls audit_log_start,
1493 * audit_log_vformat, and audit_log_end. It may be called
1496 void audit_log(struct audit_context
*ctx
, gfp_t gfp_mask
, int type
,
1497 const char *fmt
, ...)
1499 struct audit_buffer
*ab
;
1502 ab
= audit_log_start(ctx
, gfp_mask
, type
);
1504 va_start(args
, fmt
);
1505 audit_log_vformat(ab
, fmt
, args
);
1511 EXPORT_SYMBOL(audit_log_start
);
1512 EXPORT_SYMBOL(audit_log_end
);
1513 EXPORT_SYMBOL(audit_log_format
);
1514 EXPORT_SYMBOL(audit_log
);