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 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/types.h>
46 #include <asm/atomic.h>
48 #include <linux/module.h>
49 #include <linux/err.h>
50 #include <linux/kthread.h>
52 #include <linux/audit.h>
55 #include <net/netlink.h>
56 #include <linux/skbuff.h>
57 #include <linux/netlink.h>
58 #include <linux/selinux.h>
59 #include <linux/inotify.h>
60 #include <linux/freezer.h>
64 /* No auditing will take place until audit_initialized != 0.
65 * (Initialization happens after skb_init is called.) */
66 static int audit_initialized
;
69 * 1 - auditing enabled
70 * 2 - auditing enabled and configuration is locked/unchangeable. */
73 /* Default state when kernel boots without any parameters. */
74 static int audit_default
;
76 /* If auditing cannot proceed, audit_failure selects what happens. */
77 static int audit_failure
= AUDIT_FAIL_PRINTK
;
79 /* If audit records are to be written to the netlink socket, audit_pid
80 * contains the (non-zero) pid. */
83 /* If audit_rate_limit is non-zero, limit the rate of sending audit records
84 * to that number per second. This prevents DoS attacks, but results in
85 * audit records being dropped. */
86 static int audit_rate_limit
;
88 /* Number of outstanding audit_buffers allowed. */
89 static int audit_backlog_limit
= 64;
90 static int audit_backlog_wait_time
= 60 * HZ
;
91 static int audit_backlog_wait_overflow
= 0;
93 /* The identity of the user shutting down the audit system. */
94 uid_t audit_sig_uid
= -1;
95 pid_t audit_sig_pid
= -1;
96 u32 audit_sig_sid
= 0;
98 /* Records can be lost in several ways:
99 0) [suppressed in audit_alloc]
100 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
101 2) out of memory in audit_log_move [alloc_skb]
102 3) suppressed due to audit_rate_limit
103 4) suppressed due to audit_backlog_limit
105 static atomic_t audit_lost
= ATOMIC_INIT(0);
107 /* The netlink socket. */
108 static struct sock
*audit_sock
;
110 /* Inotify handle. */
111 struct inotify_handle
*audit_ih
;
113 /* Hash for inode-based rules */
114 struct list_head audit_inode_hash
[AUDIT_INODE_BUCKETS
];
116 /* The audit_freelist is a list of pre-allocated audit buffers (if more
117 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
118 * being placed on the freelist). */
119 static DEFINE_SPINLOCK(audit_freelist_lock
);
120 static int audit_freelist_count
;
121 static LIST_HEAD(audit_freelist
);
123 static struct sk_buff_head audit_skb_queue
;
124 static struct task_struct
*kauditd_task
;
125 static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait
);
126 static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait
);
128 /* Serialize requests from userspace. */
129 static DEFINE_MUTEX(audit_cmd_mutex
);
131 /* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
132 * audit records. Since printk uses a 1024 byte buffer, this buffer
133 * should be at least that large. */
134 #define AUDIT_BUFSIZ 1024
136 /* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
137 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
138 #define AUDIT_MAXFREE (2*NR_CPUS)
140 /* The audit_buffer is used when formatting an audit record. The caller
141 * locks briefly to get the record off the freelist or to allocate the
142 * buffer, and locks briefly to send the buffer to the netlink layer or
143 * to place it on a transmit queue. Multiple audit_buffers can be in
144 * use simultaneously. */
145 struct audit_buffer
{
146 struct list_head list
;
147 struct sk_buff
*skb
; /* formatted skb ready to send */
148 struct audit_context
*ctx
; /* NULL or associated context */
152 static void audit_set_pid(struct audit_buffer
*ab
, pid_t pid
)
154 struct nlmsghdr
*nlh
= (struct nlmsghdr
*)ab
->skb
->data
;
155 nlh
->nlmsg_pid
= pid
;
158 void audit_panic(const char *message
)
160 switch (audit_failure
)
162 case AUDIT_FAIL_SILENT
:
164 case AUDIT_FAIL_PRINTK
:
165 printk(KERN_ERR
"audit: %s\n", message
);
167 case AUDIT_FAIL_PANIC
:
168 panic("audit: %s\n", message
);
173 static inline int audit_rate_check(void)
175 static unsigned long last_check
= 0;
176 static int messages
= 0;
177 static DEFINE_SPINLOCK(lock
);
180 unsigned long elapsed
;
183 if (!audit_rate_limit
) return 1;
185 spin_lock_irqsave(&lock
, flags
);
186 if (++messages
< audit_rate_limit
) {
190 elapsed
= now
- last_check
;
197 spin_unlock_irqrestore(&lock
, flags
);
203 * audit_log_lost - conditionally log lost audit message event
204 * @message: the message stating reason for lost audit message
206 * Emit at least 1 message per second, even if audit_rate_check is
208 * Always increment the lost messages counter.
210 void audit_log_lost(const char *message
)
212 static unsigned long last_msg
= 0;
213 static DEFINE_SPINLOCK(lock
);
218 atomic_inc(&audit_lost
);
220 print
= (audit_failure
== AUDIT_FAIL_PANIC
|| !audit_rate_limit
);
223 spin_lock_irqsave(&lock
, flags
);
225 if (now
- last_msg
> HZ
) {
229 spin_unlock_irqrestore(&lock
, flags
);
234 "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n",
235 atomic_read(&audit_lost
),
237 audit_backlog_limit
);
238 audit_panic(message
);
242 static int audit_set_rate_limit(int limit
, uid_t loginuid
, u32 sid
)
244 int res
, rc
= 0, old
= audit_rate_limit
;
246 /* check if we are locked */
247 if (audit_enabled
== 2)
255 if ((rc
= selinux_sid_to_string(sid
, &ctx
, &len
)) == 0) {
256 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
257 "audit_rate_limit=%d old=%d by auid=%u"
259 limit
, old
, loginuid
, ctx
, res
);
262 res
= 0; /* Something weird, deny request */
264 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
265 "audit_rate_limit=%d old=%d by auid=%u res=%d",
266 limit
, old
, loginuid
, res
);
268 /* If we are allowed, make the change */
270 audit_rate_limit
= limit
;
271 /* Not allowed, update reason */
277 static int audit_set_backlog_limit(int limit
, uid_t loginuid
, u32 sid
)
279 int res
, rc
= 0, old
= audit_backlog_limit
;
281 /* check if we are locked */
282 if (audit_enabled
== 2)
290 if ((rc
= selinux_sid_to_string(sid
, &ctx
, &len
)) == 0) {
291 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
292 "audit_backlog_limit=%d old=%d by auid=%u"
294 limit
, old
, loginuid
, ctx
, res
);
297 res
= 0; /* Something weird, deny request */
299 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
300 "audit_backlog_limit=%d old=%d by auid=%u res=%d",
301 limit
, old
, loginuid
, res
);
303 /* If we are allowed, make the change */
305 audit_backlog_limit
= limit
;
306 /* Not allowed, update reason */
312 static int audit_set_enabled(int state
, uid_t loginuid
, u32 sid
)
314 int res
, rc
= 0, old
= audit_enabled
;
316 if (state
< 0 || state
> 2)
319 /* check if we are locked */
320 if (audit_enabled
== 2)
328 if ((rc
= selinux_sid_to_string(sid
, &ctx
, &len
)) == 0) {
329 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
330 "audit_enabled=%d old=%d by auid=%u"
332 state
, old
, loginuid
, ctx
, res
);
335 res
= 0; /* Something weird, deny request */
337 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
338 "audit_enabled=%d old=%d by auid=%u res=%d",
339 state
, old
, loginuid
, res
);
341 /* If we are allowed, make the change */
343 audit_enabled
= state
;
344 /* Not allowed, update reason */
350 static int audit_set_failure(int state
, uid_t loginuid
, u32 sid
)
352 int res
, rc
= 0, old
= audit_failure
;
354 if (state
!= AUDIT_FAIL_SILENT
355 && state
!= AUDIT_FAIL_PRINTK
356 && state
!= AUDIT_FAIL_PANIC
)
359 /* check if we are locked */
360 if (audit_enabled
== 2)
368 if ((rc
= selinux_sid_to_string(sid
, &ctx
, &len
)) == 0) {
369 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
370 "audit_failure=%d old=%d by auid=%u"
372 state
, old
, loginuid
, ctx
, res
);
375 res
= 0; /* Something weird, deny request */
377 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
378 "audit_failure=%d old=%d by auid=%u res=%d",
379 state
, old
, loginuid
, res
);
381 /* If we are allowed, make the change */
383 audit_failure
= state
;
384 /* Not allowed, update reason */
390 static int kauditd_thread(void *dummy
)
394 while (!kthread_should_stop()) {
395 skb
= skb_dequeue(&audit_skb_queue
);
396 wake_up(&audit_backlog_wait
);
399 int err
= netlink_unicast(audit_sock
, skb
, audit_pid
, 0);
401 BUG_ON(err
!= -ECONNREFUSED
); /* Shoudn't happen */
402 printk(KERN_ERR
"audit: *NO* daemon at audit_pid=%d\n", audit_pid
);
406 printk(KERN_NOTICE
"%s\n", skb
->data
+ NLMSG_SPACE(0));
410 DECLARE_WAITQUEUE(wait
, current
);
411 set_current_state(TASK_INTERRUPTIBLE
);
412 add_wait_queue(&kauditd_wait
, &wait
);
414 if (!skb_queue_len(&audit_skb_queue
)) {
419 __set_current_state(TASK_RUNNING
);
420 remove_wait_queue(&kauditd_wait
, &wait
);
426 int audit_send_list(void *_dest
)
428 struct audit_netlink_list
*dest
= _dest
;
432 /* wait for parent to finish and send an ACK */
433 mutex_lock(&audit_cmd_mutex
);
434 mutex_unlock(&audit_cmd_mutex
);
436 while ((skb
= __skb_dequeue(&dest
->q
)) != NULL
)
437 netlink_unicast(audit_sock
, skb
, pid
, 0);
444 struct sk_buff
*audit_make_reply(int pid
, int seq
, int type
, int done
,
445 int multi
, void *payload
, int size
)
448 struct nlmsghdr
*nlh
;
449 int len
= NLMSG_SPACE(size
);
451 int flags
= multi
? NLM_F_MULTI
: 0;
452 int t
= done
? NLMSG_DONE
: type
;
454 skb
= alloc_skb(len
, GFP_KERNEL
);
458 nlh
= NLMSG_PUT(skb
, pid
, seq
, t
, size
);
459 nlh
->nlmsg_flags
= flags
;
460 data
= NLMSG_DATA(nlh
);
461 memcpy(data
, payload
, size
);
464 nlmsg_failure
: /* Used by NLMSG_PUT */
471 * audit_send_reply - send an audit reply message via netlink
472 * @pid: process id to send reply to
473 * @seq: sequence number
474 * @type: audit message type
475 * @done: done (last) flag
476 * @multi: multi-part message flag
477 * @payload: payload data
478 * @size: payload size
480 * Allocates an skb, builds the netlink message, and sends it to the pid.
481 * No failure notifications.
483 void audit_send_reply(int pid
, int seq
, int type
, int done
, int multi
,
484 void *payload
, int size
)
487 skb
= audit_make_reply(pid
, seq
, type
, done
, multi
, payload
, size
);
490 /* Ignore failure. It'll only happen if the sender goes away,
491 because our timeout is set to infinite. */
492 netlink_unicast(audit_sock
, skb
, pid
, 0);
497 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
500 static int audit_netlink_ok(struct sk_buff
*skb
, u16 msg_type
)
507 case AUDIT_LIST_RULES
:
513 case AUDIT_SIGNAL_INFO
:
514 if (security_netlink_recv(skb
, CAP_AUDIT_CONTROL
))
518 case AUDIT_FIRST_USER_MSG
...AUDIT_LAST_USER_MSG
:
519 case AUDIT_FIRST_USER_MSG2
...AUDIT_LAST_USER_MSG2
:
520 if (security_netlink_recv(skb
, CAP_AUDIT_WRITE
))
523 default: /* bad msg */
530 static int audit_receive_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
532 u32 uid
, pid
, seq
, sid
;
534 struct audit_status
*status_get
, status_set
;
536 struct audit_buffer
*ab
;
537 u16 msg_type
= nlh
->nlmsg_type
;
538 uid_t loginuid
; /* loginuid of sender */
539 struct audit_sig_info
*sig_data
;
543 err
= audit_netlink_ok(skb
, msg_type
);
547 /* As soon as there's any sign of userspace auditd,
548 * start kauditd to talk to it */
550 kauditd_task
= kthread_run(kauditd_thread
, NULL
, "kauditd");
551 if (IS_ERR(kauditd_task
)) {
552 err
= PTR_ERR(kauditd_task
);
557 pid
= NETLINK_CREDS(skb
)->pid
;
558 uid
= NETLINK_CREDS(skb
)->uid
;
559 loginuid
= NETLINK_CB(skb
).loginuid
;
560 sid
= NETLINK_CB(skb
).sid
;
561 seq
= nlh
->nlmsg_seq
;
562 data
= NLMSG_DATA(nlh
);
566 status_set
.enabled
= audit_enabled
;
567 status_set
.failure
= audit_failure
;
568 status_set
.pid
= audit_pid
;
569 status_set
.rate_limit
= audit_rate_limit
;
570 status_set
.backlog_limit
= audit_backlog_limit
;
571 status_set
.lost
= atomic_read(&audit_lost
);
572 status_set
.backlog
= skb_queue_len(&audit_skb_queue
);
573 audit_send_reply(NETLINK_CB(skb
).pid
, seq
, AUDIT_GET
, 0, 0,
574 &status_set
, sizeof(status_set
));
577 if (nlh
->nlmsg_len
< sizeof(struct audit_status
))
579 status_get
= (struct audit_status
*)data
;
580 if (status_get
->mask
& AUDIT_STATUS_ENABLED
) {
581 err
= audit_set_enabled(status_get
->enabled
,
583 if (err
< 0) return err
;
585 if (status_get
->mask
& AUDIT_STATUS_FAILURE
) {
586 err
= audit_set_failure(status_get
->failure
,
588 if (err
< 0) return err
;
590 if (status_get
->mask
& AUDIT_STATUS_PID
) {
593 if ((err
= selinux_sid_to_string(
597 audit_log(NULL
, GFP_KERNEL
,
599 "audit_pid=%d old=%d by auid=%u subj=%s",
600 status_get
->pid
, old
,
604 audit_log(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
,
605 "audit_pid=%d old=%d by auid=%u",
606 status_get
->pid
, old
, loginuid
);
607 audit_pid
= status_get
->pid
;
609 if (status_get
->mask
& AUDIT_STATUS_RATE_LIMIT
)
610 err
= audit_set_rate_limit(status_get
->rate_limit
,
612 if (status_get
->mask
& AUDIT_STATUS_BACKLOG_LIMIT
)
613 err
= audit_set_backlog_limit(status_get
->backlog_limit
,
617 case AUDIT_FIRST_USER_MSG
...AUDIT_LAST_USER_MSG
:
618 case AUDIT_FIRST_USER_MSG2
...AUDIT_LAST_USER_MSG2
:
619 if (!audit_enabled
&& msg_type
!= AUDIT_USER_AVC
)
622 err
= audit_filter_user(&NETLINK_CB(skb
), msg_type
);
625 ab
= audit_log_start(NULL
, GFP_KERNEL
, msg_type
);
628 "user pid=%d uid=%u auid=%u",
631 if (selinux_sid_to_string(
635 /* Maybe call audit_panic? */
641 audit_log_format(ab
, " msg='%.1024s'",
643 audit_set_pid(ab
, pid
);
650 if (nlmsg_len(nlh
) < sizeof(struct audit_rule
))
652 if (audit_enabled
== 2) {
653 ab
= audit_log_start(NULL
, GFP_KERNEL
,
654 AUDIT_CONFIG_CHANGE
);
657 "pid=%d uid=%u auid=%u",
660 if (selinux_sid_to_string(
664 /* Maybe call audit_panic? */
670 audit_log_format(ab
, " audit_enabled=%d res=0",
678 err
= audit_receive_filter(nlh
->nlmsg_type
, NETLINK_CB(skb
).pid
,
679 uid
, seq
, data
, nlmsg_len(nlh
),
684 if (nlmsg_len(nlh
) < sizeof(struct audit_rule_data
))
686 if (audit_enabled
== 2) {
687 ab
= audit_log_start(NULL
, GFP_KERNEL
,
688 AUDIT_CONFIG_CHANGE
);
691 "pid=%d uid=%u auid=%u",
694 if (selinux_sid_to_string(
698 /* Maybe call audit_panic? */
704 audit_log_format(ab
, " audit_enabled=%d res=0",
711 case AUDIT_LIST_RULES
:
712 err
= audit_receive_filter(nlh
->nlmsg_type
, NETLINK_CB(skb
).pid
,
713 uid
, seq
, data
, nlmsg_len(nlh
),
716 case AUDIT_SIGNAL_INFO
:
717 err
= selinux_sid_to_string(audit_sig_sid
, &ctx
, &len
);
720 sig_data
= kmalloc(sizeof(*sig_data
) + len
, GFP_KERNEL
);
725 sig_data
->uid
= audit_sig_uid
;
726 sig_data
->pid
= audit_sig_pid
;
727 memcpy(sig_data
->ctx
, ctx
, len
);
729 audit_send_reply(NETLINK_CB(skb
).pid
, seq
, AUDIT_SIGNAL_INFO
,
730 0, 0, sig_data
, sizeof(*sig_data
) + len
);
738 return err
< 0 ? err
: 0;
742 * Get message from skb (based on rtnetlink_rcv_skb). Each message is
743 * processed by audit_receive_msg. Malformed skbs with wrong length are
744 * discarded silently.
746 static void audit_receive_skb(struct sk_buff
*skb
)
749 struct nlmsghdr
*nlh
;
752 while (skb
->len
>= NLMSG_SPACE(0)) {
753 nlh
= (struct nlmsghdr
*)skb
->data
;
754 if (nlh
->nlmsg_len
< sizeof(*nlh
) || skb
->len
< nlh
->nlmsg_len
)
756 rlen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
759 if ((err
= audit_receive_msg(skb
, nlh
))) {
760 netlink_ack(skb
, nlh
, err
);
761 } else if (nlh
->nlmsg_flags
& NLM_F_ACK
)
762 netlink_ack(skb
, nlh
, 0);
767 /* Receive messages from netlink socket. */
768 static void audit_receive(struct sock
*sk
, int length
)
773 mutex_lock(&audit_cmd_mutex
);
775 for (qlen
= skb_queue_len(&sk
->sk_receive_queue
); qlen
; qlen
--) {
776 skb
= skb_dequeue(&sk
->sk_receive_queue
);
777 audit_receive_skb(skb
);
780 mutex_unlock(&audit_cmd_mutex
);
783 #ifdef CONFIG_AUDITSYSCALL
784 static const struct inotify_operations audit_inotify_ops
= {
785 .handle_event
= audit_handle_ievent
,
786 .destroy_watch
= audit_free_parent
,
790 /* Initialize audit support at boot time. */
791 static int __init
audit_init(void)
795 printk(KERN_INFO
"audit: initializing netlink socket (%s)\n",
796 audit_default
? "enabled" : "disabled");
797 audit_sock
= netlink_kernel_create(NETLINK_AUDIT
, 0, audit_receive
,
800 audit_panic("cannot initialize netlink socket");
802 audit_sock
->sk_sndtimeo
= MAX_SCHEDULE_TIMEOUT
;
804 skb_queue_head_init(&audit_skb_queue
);
805 audit_initialized
= 1;
806 audit_enabled
= audit_default
;
808 /* Register the callback with selinux. This callback will be invoked
809 * when a new policy is loaded. */
810 selinux_audit_set_callback(&selinux_audit_rule_update
);
812 audit_log(NULL
, GFP_KERNEL
, AUDIT_KERNEL
, "initialized");
814 #ifdef CONFIG_AUDITSYSCALL
815 audit_ih
= inotify_init(&audit_inotify_ops
);
816 if (IS_ERR(audit_ih
))
817 audit_panic("cannot initialize inotify handle");
820 for (i
= 0; i
< AUDIT_INODE_BUCKETS
; i
++)
821 INIT_LIST_HEAD(&audit_inode_hash
[i
]);
825 __initcall(audit_init
);
827 /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
828 static int __init
audit_enable(char *str
)
830 audit_default
= !!simple_strtol(str
, NULL
, 0);
831 printk(KERN_INFO
"audit: %s%s\n",
832 audit_default
? "enabled" : "disabled",
833 audit_initialized
? "" : " (after initialization)");
834 if (audit_initialized
)
835 audit_enabled
= audit_default
;
839 __setup("audit=", audit_enable
);
841 static void audit_buffer_free(struct audit_buffer
*ab
)
851 spin_lock_irqsave(&audit_freelist_lock
, flags
);
852 if (audit_freelist_count
> AUDIT_MAXFREE
)
855 audit_freelist_count
++;
856 list_add(&ab
->list
, &audit_freelist
);
858 spin_unlock_irqrestore(&audit_freelist_lock
, flags
);
861 static struct audit_buffer
* audit_buffer_alloc(struct audit_context
*ctx
,
862 gfp_t gfp_mask
, int type
)
865 struct audit_buffer
*ab
= NULL
;
866 struct nlmsghdr
*nlh
;
868 spin_lock_irqsave(&audit_freelist_lock
, flags
);
869 if (!list_empty(&audit_freelist
)) {
870 ab
= list_entry(audit_freelist
.next
,
871 struct audit_buffer
, list
);
873 --audit_freelist_count
;
875 spin_unlock_irqrestore(&audit_freelist_lock
, flags
);
878 ab
= kmalloc(sizeof(*ab
), gfp_mask
);
883 ab
->skb
= alloc_skb(AUDIT_BUFSIZ
, gfp_mask
);
888 ab
->gfp_mask
= gfp_mask
;
889 nlh
= (struct nlmsghdr
*)skb_put(ab
->skb
, NLMSG_SPACE(0));
890 nlh
->nlmsg_type
= type
;
891 nlh
->nlmsg_flags
= 0;
896 audit_buffer_free(ab
);
901 * audit_serial - compute a serial number for the audit record
903 * Compute a serial number for the audit record. Audit records are
904 * written to user-space as soon as they are generated, so a complete
905 * audit record may be written in several pieces. The timestamp of the
906 * record and this serial number are used by the user-space tools to
907 * determine which pieces belong to the same audit record. The
908 * (timestamp,serial) tuple is unique for each syscall and is live from
909 * syscall entry to syscall exit.
911 * NOTE: Another possibility is to store the formatted records off the
912 * audit context (for those records that have a context), and emit them
913 * all at syscall exit. However, this could delay the reporting of
914 * significant errors until syscall exit (or never, if the system
917 unsigned int audit_serial(void)
919 static DEFINE_SPINLOCK(serial_lock
);
920 static unsigned int serial
= 0;
925 spin_lock_irqsave(&serial_lock
, flags
);
928 } while (unlikely(!ret
));
929 spin_unlock_irqrestore(&serial_lock
, flags
);
934 static inline void audit_get_stamp(struct audit_context
*ctx
,
935 struct timespec
*t
, unsigned int *serial
)
938 auditsc_get_stamp(ctx
, t
, serial
);
941 *serial
= audit_serial();
945 /* Obtain an audit buffer. This routine does locking to obtain the
946 * audit buffer, but then no locking is required for calls to
947 * audit_log_*format. If the tsk is a task that is currently in a
948 * syscall, then the syscall is marked as auditable and an audit record
949 * will be written at syscall exit. If there is no associated task, tsk
953 * audit_log_start - obtain an audit buffer
954 * @ctx: audit_context (may be NULL)
955 * @gfp_mask: type of allocation
956 * @type: audit message type
958 * Returns audit_buffer pointer on success or NULL on error.
960 * Obtain an audit buffer. This routine does locking to obtain the
961 * audit buffer, but then no locking is required for calls to
962 * audit_log_*format. If the task (ctx) is a task that is currently in a
963 * syscall, then the syscall is marked as auditable and an audit record
964 * will be written at syscall exit. If there is no associated task, then
965 * task context (ctx) should be NULL.
967 struct audit_buffer
*audit_log_start(struct audit_context
*ctx
, gfp_t gfp_mask
,
970 struct audit_buffer
*ab
= NULL
;
974 unsigned long timeout_start
= jiffies
;
976 if (!audit_initialized
)
979 if (unlikely(audit_filter_type(type
)))
982 if (gfp_mask
& __GFP_WAIT
)
985 reserve
= 5; /* Allow atomic callers to go up to five
986 entries over the normal backlog limit */
988 while (audit_backlog_limit
989 && skb_queue_len(&audit_skb_queue
) > audit_backlog_limit
+ reserve
) {
990 if (gfp_mask
& __GFP_WAIT
&& audit_backlog_wait_time
991 && time_before(jiffies
, timeout_start
+ audit_backlog_wait_time
)) {
993 /* Wait for auditd to drain the queue a little */
994 DECLARE_WAITQUEUE(wait
, current
);
995 set_current_state(TASK_INTERRUPTIBLE
);
996 add_wait_queue(&audit_backlog_wait
, &wait
);
998 if (audit_backlog_limit
&&
999 skb_queue_len(&audit_skb_queue
) > audit_backlog_limit
)
1000 schedule_timeout(timeout_start
+ audit_backlog_wait_time
- jiffies
);
1002 __set_current_state(TASK_RUNNING
);
1003 remove_wait_queue(&audit_backlog_wait
, &wait
);
1006 if (audit_rate_check())
1008 "audit: audit_backlog=%d > "
1009 "audit_backlog_limit=%d\n",
1010 skb_queue_len(&audit_skb_queue
),
1011 audit_backlog_limit
);
1012 audit_log_lost("backlog limit exceeded");
1013 audit_backlog_wait_time
= audit_backlog_wait_overflow
;
1014 wake_up(&audit_backlog_wait
);
1018 ab
= audit_buffer_alloc(ctx
, gfp_mask
, type
);
1020 audit_log_lost("out of memory in audit_log_start");
1024 audit_get_stamp(ab
->ctx
, &t
, &serial
);
1026 audit_log_format(ab
, "audit(%lu.%03lu:%u): ",
1027 t
.tv_sec
, t
.tv_nsec
/1000000, serial
);
1032 * audit_expand - expand skb in the audit buffer
1034 * @extra: space to add at tail of the skb
1036 * Returns 0 (no space) on failed expansion, or available space if
1039 static inline int audit_expand(struct audit_buffer
*ab
, int extra
)
1041 struct sk_buff
*skb
= ab
->skb
;
1042 int ret
= pskb_expand_head(skb
, skb_headroom(skb
), extra
,
1045 audit_log_lost("out of memory in audit_expand");
1048 return skb_tailroom(skb
);
1052 * Format an audit message into the audit buffer. If there isn't enough
1053 * room in the audit buffer, more room will be allocated and vsnprint
1054 * will be called a second time. Currently, we assume that a printk
1055 * can't format message larger than 1024 bytes, so we don't either.
1057 static void audit_log_vformat(struct audit_buffer
*ab
, const char *fmt
,
1061 struct sk_buff
*skb
;
1069 avail
= skb_tailroom(skb
);
1071 avail
= audit_expand(ab
, AUDIT_BUFSIZ
);
1075 va_copy(args2
, args
);
1076 len
= vsnprintf(skb
->tail
, avail
, fmt
, args
);
1078 /* The printk buffer is 1024 bytes long, so if we get
1079 * here and AUDIT_BUFSIZ is at least 1024, then we can
1080 * log everything that printk could have logged. */
1081 avail
= audit_expand(ab
,
1082 max_t(unsigned, AUDIT_BUFSIZ
, 1+len
-avail
));
1085 len
= vsnprintf(skb
->tail
, avail
, fmt
, args2
);
1094 * audit_log_format - format a message into the audit buffer.
1096 * @fmt: format string
1097 * @...: optional parameters matching @fmt string
1099 * All the work is done in audit_log_vformat.
1101 void audit_log_format(struct audit_buffer
*ab
, const char *fmt
, ...)
1107 va_start(args
, fmt
);
1108 audit_log_vformat(ab
, fmt
, args
);
1113 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1114 * @ab: the audit_buffer
1115 * @buf: buffer to convert to hex
1116 * @len: length of @buf to be converted
1118 * No return value; failure to expand is silently ignored.
1120 * This function will take the passed buf and convert it into a string of
1121 * ascii hex digits. The new string is placed onto the skb.
1123 void audit_log_hex(struct audit_buffer
*ab
, const unsigned char *buf
,
1126 int i
, avail
, new_len
;
1128 struct sk_buff
*skb
;
1129 static const unsigned char *hex
= "0123456789ABCDEF";
1136 avail
= skb_tailroom(skb
);
1138 if (new_len
>= avail
) {
1139 /* Round the buffer request up to the next multiple */
1140 new_len
= AUDIT_BUFSIZ
*(((new_len
-avail
)/AUDIT_BUFSIZ
) + 1);
1141 avail
= audit_expand(ab
, new_len
);
1147 for (i
=0; i
<len
; i
++) {
1148 *ptr
++ = hex
[(buf
[i
] & 0xF0)>>4]; /* Upper nibble */
1149 *ptr
++ = hex
[buf
[i
] & 0x0F]; /* Lower nibble */
1152 skb_put(skb
, len
<< 1); /* new string is twice the old string */
1156 * Format a string of no more than slen characters into the audit buffer,
1157 * enclosed in quote marks.
1159 static void audit_log_n_string(struct audit_buffer
*ab
, size_t slen
,
1164 struct sk_buff
*skb
;
1171 avail
= skb_tailroom(skb
);
1172 new_len
= slen
+ 3; /* enclosing quotes + null terminator */
1173 if (new_len
> avail
) {
1174 avail
= audit_expand(ab
, new_len
);
1180 memcpy(ptr
, string
, slen
);
1184 skb_put(skb
, slen
+ 2); /* don't include null terminator */
1188 * audit_log_n_unstrustedstring - log a string that may contain random characters
1190 * @len: lenth of string (not including trailing null)
1191 * @string: string to be logged
1193 * This code will escape a string that is passed to it if the string
1194 * contains a control character, unprintable character, double quote mark,
1195 * or a space. Unescaped strings will start and end with a double quote mark.
1196 * Strings that are escaped are printed in hex (2 digits per char).
1198 * The caller specifies the number of characters in the string to log, which may
1199 * or may not be the entire string.
1201 const char *audit_log_n_untrustedstring(struct audit_buffer
*ab
, size_t len
,
1204 const unsigned char *p
= string
;
1207 if (*p
== '"' || *p
< 0x21 || *p
> 0x7f) {
1208 audit_log_hex(ab
, string
, len
);
1209 return string
+ len
+ 1;
1213 audit_log_n_string(ab
, len
, string
);
1218 * audit_log_unstrustedstring - log a string that may contain random characters
1220 * @string: string to be logged
1222 * Same as audit_log_n_unstrustedstring(), except that strlen is used to
1223 * determine string length.
1225 const char *audit_log_untrustedstring(struct audit_buffer
*ab
, const char *string
)
1227 return audit_log_n_untrustedstring(ab
, strlen(string
), string
);
1230 /* This is a helper-function to print the escaped d_path */
1231 void audit_log_d_path(struct audit_buffer
*ab
, const char *prefix
,
1232 struct dentry
*dentry
, struct vfsmount
*vfsmnt
)
1237 audit_log_format(ab
, " %s", prefix
);
1239 /* We will allow 11 spaces for ' (deleted)' to be appended */
1240 path
= kmalloc(PATH_MAX
+11, ab
->gfp_mask
);
1242 audit_log_format(ab
, "<no memory>");
1245 p
= d_path(dentry
, vfsmnt
, path
, PATH_MAX
+11);
1246 if (IS_ERR(p
)) { /* Should never happen since we send PATH_MAX */
1247 /* FIXME: can we save some information here? */
1248 audit_log_format(ab
, "<too long>");
1250 audit_log_untrustedstring(ab
, p
);
1255 * audit_log_end - end one audit record
1256 * @ab: the audit_buffer
1258 * The netlink_* functions cannot be called inside an irq context, so
1259 * the audit buffer is placed on a queue and a tasklet is scheduled to
1260 * remove them from the queue outside the irq context. May be called in
1263 void audit_log_end(struct audit_buffer
*ab
)
1267 if (!audit_rate_check()) {
1268 audit_log_lost("rate limit exceeded");
1271 struct nlmsghdr
*nlh
= (struct nlmsghdr
*)ab
->skb
->data
;
1272 nlh
->nlmsg_len
= ab
->skb
->len
- NLMSG_SPACE(0);
1273 skb_queue_tail(&audit_skb_queue
, ab
->skb
);
1275 wake_up_interruptible(&kauditd_wait
);
1277 printk(KERN_NOTICE
"%s\n", ab
->skb
->data
+ NLMSG_SPACE(0));
1280 audit_buffer_free(ab
);
1284 * audit_log - Log an audit record
1285 * @ctx: audit context
1286 * @gfp_mask: type of allocation
1287 * @type: audit message type
1288 * @fmt: format string to use
1289 * @...: variable parameters matching the format string
1291 * This is a convenience function that calls audit_log_start,
1292 * audit_log_vformat, and audit_log_end. It may be called
1295 void audit_log(struct audit_context
*ctx
, gfp_t gfp_mask
, int type
,
1296 const char *fmt
, ...)
1298 struct audit_buffer
*ab
;
1301 ab
= audit_log_start(ctx
, gfp_mask
, type
);
1303 va_start(args
, fmt
);
1304 audit_log_vformat(ab
, fmt
, args
);
1310 EXPORT_SYMBOL(audit_log_start
);
1311 EXPORT_SYMBOL(audit_log_end
);
1312 EXPORT_SYMBOL(audit_log_format
);
1313 EXPORT_SYMBOL(audit_log
);