1 /* auditsc.c -- System-call auditing support
2 * Handles all system-call specific auditing features.
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
5 * Copyright 2005 Hewlett-Packard Development Company, L.P.
6 * Copyright (C) 2005 IBM Corporation
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
25 * Many of the ideas implemented here are from Stephen C. Tweedie,
26 * especially the idea of avoiding a copy by using getname.
28 * The method for actual interception of syscall entry and exit (not in
29 * this file -- see entry.S) is based on a GPL'd patch written by
30 * okir@suse.de and Copyright 2003 SuSE Linux AG.
32 * The support of additional filter rules compares (>, <, >=, <=) was
33 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
35 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
36 * filesystem information.
38 * Subject and object context labeling support added by <danjones@us.ibm.com>
39 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
42 #include <linux/init.h>
43 #include <asm/types.h>
44 #include <asm/atomic.h>
45 #include <asm/types.h>
47 #include <linux/namei.h>
49 #include <linux/module.h>
50 #include <linux/mount.h>
51 #include <linux/socket.h>
52 #include <linux/audit.h>
53 #include <linux/personality.h>
54 #include <linux/time.h>
55 #include <linux/netlink.h>
56 #include <linux/compiler.h>
57 #include <asm/unistd.h>
58 #include <linux/security.h>
59 #include <linux/list.h>
60 #include <linux/tty.h>
61 #include <linux/selinux.h>
65 extern struct list_head audit_filter_list
[];
67 /* No syscall auditing will take place unless audit_enabled != 0. */
68 extern int audit_enabled
;
70 /* AUDIT_NAMES is the number of slots we reserve in the audit_context
71 * for saving names from getname(). */
72 #define AUDIT_NAMES 20
74 /* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
75 * audit_context from being used for nameless inodes from
77 #define AUDIT_NAMES_RESERVED 7
79 /* When fs/namei.c:getname() is called, we store the pointer in name and
80 * we don't let putname() free it (instead we free all of the saved
81 * pointers at syscall exit time).
83 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
96 struct audit_aux_data
{
97 struct audit_aux_data
*next
;
101 #define AUDIT_AUX_IPCPERM 0
103 struct audit_aux_data_ipcctl
{
104 struct audit_aux_data d
;
106 unsigned long qbytes
;
113 struct audit_aux_data_socketcall
{
114 struct audit_aux_data d
;
116 unsigned long args
[0];
119 struct audit_aux_data_sockaddr
{
120 struct audit_aux_data d
;
125 struct audit_aux_data_path
{
126 struct audit_aux_data d
;
127 struct dentry
*dentry
;
128 struct vfsmount
*mnt
;
131 /* The per-task audit context. */
132 struct audit_context
{
133 int in_syscall
; /* 1 if task is in a syscall */
134 enum audit_state state
;
135 unsigned int serial
; /* serial number for record */
136 struct timespec ctime
; /* time of syscall entry */
137 uid_t loginuid
; /* login uid (identity) */
138 int major
; /* syscall number */
139 unsigned long argv
[4]; /* syscall arguments */
140 int return_valid
; /* return code is valid */
141 long return_code
;/* syscall return code */
142 int auditable
; /* 1 if record should be written */
144 struct audit_names names
[AUDIT_NAMES
];
146 struct vfsmount
* pwdmnt
;
147 struct audit_context
*previous
; /* For nested syscalls */
148 struct audit_aux_data
*aux
;
150 /* Save things to print about task_struct */
152 uid_t uid
, euid
, suid
, fsuid
;
153 gid_t gid
, egid
, sgid
, fsgid
;
154 unsigned long personality
;
164 /* Compare a task_struct with an audit_rule. Return 1 on match, 0
166 static int audit_filter_rules(struct task_struct
*tsk
,
167 struct audit_krule
*rule
,
168 struct audit_context
*ctx
,
169 enum audit_state
*state
)
171 int i
, j
, need_sid
= 1;
174 for (i
= 0; i
< rule
->field_count
; i
++) {
175 struct audit_field
*f
= &rule
->fields
[i
];
180 result
= audit_comparator(tsk
->pid
, f
->op
, f
->val
);
183 result
= audit_comparator(tsk
->uid
, f
->op
, f
->val
);
186 result
= audit_comparator(tsk
->euid
, f
->op
, f
->val
);
189 result
= audit_comparator(tsk
->suid
, f
->op
, f
->val
);
192 result
= audit_comparator(tsk
->fsuid
, f
->op
, f
->val
);
195 result
= audit_comparator(tsk
->gid
, f
->op
, f
->val
);
198 result
= audit_comparator(tsk
->egid
, f
->op
, f
->val
);
201 result
= audit_comparator(tsk
->sgid
, f
->op
, f
->val
);
204 result
= audit_comparator(tsk
->fsgid
, f
->op
, f
->val
);
207 result
= audit_comparator(tsk
->personality
, f
->op
, f
->val
);
211 result
= audit_comparator(ctx
->arch
, f
->op
, f
->val
);
215 if (ctx
&& ctx
->return_valid
)
216 result
= audit_comparator(ctx
->return_code
, f
->op
, f
->val
);
219 if (ctx
&& ctx
->return_valid
) {
221 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_SUCCESS
);
223 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_FAILURE
);
228 for (j
= 0; j
< ctx
->name_count
; j
++) {
229 if (audit_comparator(MAJOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
238 for (j
= 0; j
< ctx
->name_count
; j
++) {
239 if (audit_comparator(MINOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
248 for (j
= 0; j
< ctx
->name_count
; j
++) {
249 if (audit_comparator(ctx
->names
[j
].ino
, f
->op
, f
->val
) ||
250 audit_comparator(ctx
->names
[j
].pino
, f
->op
, f
->val
)) {
260 result
= audit_comparator(ctx
->loginuid
, f
->op
, f
->val
);
267 /* NOTE: this may return negative values indicating
268 a temporary error. We simply treat this as a
269 match for now to avoid losing information that
270 may be wanted. An error message will also be
274 selinux_task_ctxid(tsk
, &sid
);
277 result
= selinux_audit_rule_match(sid
, f
->type
,
288 result
= audit_comparator(ctx
->argv
[f
->type
-AUDIT_ARG0
], f
->op
, f
->val
);
295 switch (rule
->action
) {
296 case AUDIT_NEVER
: *state
= AUDIT_DISABLED
; break;
297 case AUDIT_POSSIBLE
: *state
= AUDIT_BUILD_CONTEXT
; break;
298 case AUDIT_ALWAYS
: *state
= AUDIT_RECORD_CONTEXT
; break;
303 /* At process creation time, we can determine if system-call auditing is
304 * completely disabled for this task. Since we only have the task
305 * structure at this point, we can only check uid and gid.
307 static enum audit_state
audit_filter_task(struct task_struct
*tsk
)
309 struct audit_entry
*e
;
310 enum audit_state state
;
313 list_for_each_entry_rcu(e
, &audit_filter_list
[AUDIT_FILTER_TASK
], list
) {
314 if (audit_filter_rules(tsk
, &e
->rule
, NULL
, &state
)) {
320 return AUDIT_BUILD_CONTEXT
;
323 /* At syscall entry and exit time, this filter is called if the
324 * audit_state is not low enough that auditing cannot take place, but is
325 * also not high enough that we already know we have to write an audit
326 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
328 static enum audit_state
audit_filter_syscall(struct task_struct
*tsk
,
329 struct audit_context
*ctx
,
330 struct list_head
*list
)
332 struct audit_entry
*e
;
333 enum audit_state state
;
335 if (audit_pid
&& tsk
->tgid
== audit_pid
)
336 return AUDIT_DISABLED
;
339 if (!list_empty(list
)) {
340 int word
= AUDIT_WORD(ctx
->major
);
341 int bit
= AUDIT_BIT(ctx
->major
);
343 list_for_each_entry_rcu(e
, list
, list
) {
344 if ((e
->rule
.mask
[word
] & bit
) == bit
345 && audit_filter_rules(tsk
, &e
->rule
, ctx
, &state
)) {
352 return AUDIT_BUILD_CONTEXT
;
355 static inline struct audit_context
*audit_get_context(struct task_struct
*tsk
,
359 struct audit_context
*context
= tsk
->audit_context
;
361 if (likely(!context
))
363 context
->return_valid
= return_valid
;
364 context
->return_code
= return_code
;
366 if (context
->in_syscall
&& !context
->auditable
) {
367 enum audit_state state
;
368 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_EXIT
]);
369 if (state
== AUDIT_RECORD_CONTEXT
)
370 context
->auditable
= 1;
373 context
->pid
= tsk
->pid
;
374 context
->uid
= tsk
->uid
;
375 context
->gid
= tsk
->gid
;
376 context
->euid
= tsk
->euid
;
377 context
->suid
= tsk
->suid
;
378 context
->fsuid
= tsk
->fsuid
;
379 context
->egid
= tsk
->egid
;
380 context
->sgid
= tsk
->sgid
;
381 context
->fsgid
= tsk
->fsgid
;
382 context
->personality
= tsk
->personality
;
383 tsk
->audit_context
= NULL
;
387 static inline void audit_free_names(struct audit_context
*context
)
392 if (context
->auditable
393 ||context
->put_count
+ context
->ino_count
!= context
->name_count
) {
394 printk(KERN_ERR
"%s:%d(:%d): major=%d in_syscall=%d"
395 " name_count=%d put_count=%d"
396 " ino_count=%d [NOT freeing]\n",
398 context
->serial
, context
->major
, context
->in_syscall
,
399 context
->name_count
, context
->put_count
,
401 for (i
= 0; i
< context
->name_count
; i
++) {
402 printk(KERN_ERR
"names[%d] = %p = %s\n", i
,
403 context
->names
[i
].name
,
404 context
->names
[i
].name
?: "(null)");
411 context
->put_count
= 0;
412 context
->ino_count
= 0;
415 for (i
= 0; i
< context
->name_count
; i
++) {
416 if (context
->names
[i
].name
)
417 __putname(context
->names
[i
].name
);
419 context
->name_count
= 0;
423 mntput(context
->pwdmnt
);
425 context
->pwdmnt
= NULL
;
428 static inline void audit_free_aux(struct audit_context
*context
)
430 struct audit_aux_data
*aux
;
432 while ((aux
= context
->aux
)) {
433 if (aux
->type
== AUDIT_AVC_PATH
) {
434 struct audit_aux_data_path
*axi
= (void *)aux
;
439 context
->aux
= aux
->next
;
444 static inline void audit_zero_context(struct audit_context
*context
,
445 enum audit_state state
)
447 uid_t loginuid
= context
->loginuid
;
449 memset(context
, 0, sizeof(*context
));
450 context
->state
= state
;
451 context
->loginuid
= loginuid
;
454 static inline struct audit_context
*audit_alloc_context(enum audit_state state
)
456 struct audit_context
*context
;
458 if (!(context
= kmalloc(sizeof(*context
), GFP_KERNEL
)))
460 audit_zero_context(context
, state
);
465 * audit_alloc - allocate an audit context block for a task
468 * Filter on the task information and allocate a per-task audit context
469 * if necessary. Doing so turns on system call auditing for the
470 * specified task. This is called from copy_process, so no lock is
473 int audit_alloc(struct task_struct
*tsk
)
475 struct audit_context
*context
;
476 enum audit_state state
;
478 if (likely(!audit_enabled
))
479 return 0; /* Return if not auditing. */
481 state
= audit_filter_task(tsk
);
482 if (likely(state
== AUDIT_DISABLED
))
485 if (!(context
= audit_alloc_context(state
))) {
486 audit_log_lost("out of memory in audit_alloc");
490 /* Preserve login uid */
491 context
->loginuid
= -1;
492 if (current
->audit_context
)
493 context
->loginuid
= current
->audit_context
->loginuid
;
495 tsk
->audit_context
= context
;
496 set_tsk_thread_flag(tsk
, TIF_SYSCALL_AUDIT
);
500 static inline void audit_free_context(struct audit_context
*context
)
502 struct audit_context
*previous
;
506 previous
= context
->previous
;
507 if (previous
|| (count
&& count
< 10)) {
509 printk(KERN_ERR
"audit(:%d): major=%d name_count=%d:"
510 " freeing multiple contexts (%d)\n",
511 context
->serial
, context
->major
,
512 context
->name_count
, count
);
514 audit_free_names(context
);
515 audit_free_aux(context
);
520 printk(KERN_ERR
"audit: freed %d contexts\n", count
);
523 static void audit_log_task_context(struct audit_buffer
*ab
)
528 len
= security_getprocattr(current
, "current", NULL
, 0);
535 ctx
= kmalloc(len
, GFP_KERNEL
);
539 len
= security_getprocattr(current
, "current", ctx
, len
);
543 audit_log_format(ab
, " subj=%s", ctx
);
549 audit_panic("error in audit_log_task_context");
553 static void audit_log_task_info(struct audit_buffer
*ab
, struct task_struct
*tsk
)
555 char name
[sizeof(tsk
->comm
)];
556 struct mm_struct
*mm
= tsk
->mm
;
557 struct vm_area_struct
*vma
;
561 get_task_comm(name
, tsk
);
562 audit_log_format(ab
, " comm=");
563 audit_log_untrustedstring(ab
, name
);
566 down_read(&mm
->mmap_sem
);
569 if ((vma
->vm_flags
& VM_EXECUTABLE
) &&
571 audit_log_d_path(ab
, "exe=",
572 vma
->vm_file
->f_dentry
,
573 vma
->vm_file
->f_vfsmnt
);
578 up_read(&mm
->mmap_sem
);
580 audit_log_task_context(ab
);
583 static void audit_log_exit(struct audit_context
*context
, struct task_struct
*tsk
)
585 int i
, call_panic
= 0;
586 struct audit_buffer
*ab
;
587 struct audit_aux_data
*aux
;
592 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_SYSCALL
);
594 return; /* audit_panic has been called */
595 audit_log_format(ab
, "arch=%x syscall=%d",
596 context
->arch
, context
->major
);
597 if (context
->personality
!= PER_LINUX
)
598 audit_log_format(ab
, " per=%lx", context
->personality
);
599 if (context
->return_valid
)
600 audit_log_format(ab
, " success=%s exit=%ld",
601 (context
->return_valid
==AUDITSC_SUCCESS
)?"yes":"no",
602 context
->return_code
);
603 if (tsk
->signal
&& tsk
->signal
->tty
&& tsk
->signal
->tty
->name
)
604 tty
= tsk
->signal
->tty
->name
;
608 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
609 " pid=%d auid=%u uid=%u gid=%u"
610 " euid=%u suid=%u fsuid=%u"
611 " egid=%u sgid=%u fsgid=%u tty=%s",
621 context
->euid
, context
->suid
, context
->fsuid
,
622 context
->egid
, context
->sgid
, context
->fsgid
, tty
);
623 audit_log_task_info(ab
, tsk
);
626 for (aux
= context
->aux
; aux
; aux
= aux
->next
) {
628 ab
= audit_log_start(context
, GFP_KERNEL
, aux
->type
);
630 continue; /* audit_panic has been called */
634 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
636 " qbytes=%lx iuid=%u igid=%u mode=%x",
637 axi
->qbytes
, axi
->uid
, axi
->gid
, axi
->mode
);
638 if (axi
->osid
!= 0) {
641 if (selinux_ctxid_to_string(
642 axi
->osid
, &ctx
, &len
)) {
643 audit_log_format(ab
, " osid=%u",
647 audit_log_format(ab
, " obj=%s", ctx
);
652 case AUDIT_IPC_SET_PERM
: {
653 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
655 " new qbytes=%lx new iuid=%u new igid=%u new mode=%x",
656 axi
->qbytes
, axi
->uid
, axi
->gid
, axi
->mode
);
657 if (axi
->osid
!= 0) {
660 if (selinux_ctxid_to_string(
661 axi
->osid
, &ctx
, &len
)) {
662 audit_log_format(ab
, " osid=%u",
666 audit_log_format(ab
, " obj=%s", ctx
);
671 case AUDIT_SOCKETCALL
: {
673 struct audit_aux_data_socketcall
*axs
= (void *)aux
;
674 audit_log_format(ab
, "nargs=%d", axs
->nargs
);
675 for (i
=0; i
<axs
->nargs
; i
++)
676 audit_log_format(ab
, " a%d=%lx", i
, axs
->args
[i
]);
679 case AUDIT_SOCKADDR
: {
680 struct audit_aux_data_sockaddr
*axs
= (void *)aux
;
682 audit_log_format(ab
, "saddr=");
683 audit_log_hex(ab
, axs
->a
, axs
->len
);
686 case AUDIT_AVC_PATH
: {
687 struct audit_aux_data_path
*axi
= (void *)aux
;
688 audit_log_d_path(ab
, "path=", axi
->dentry
, axi
->mnt
);
695 if (context
->pwd
&& context
->pwdmnt
) {
696 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_CWD
);
698 audit_log_d_path(ab
, "cwd=", context
->pwd
, context
->pwdmnt
);
702 for (i
= 0; i
< context
->name_count
; i
++) {
703 unsigned long ino
= context
->names
[i
].ino
;
704 unsigned long pino
= context
->names
[i
].pino
;
706 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_PATH
);
708 continue; /* audit_panic has been called */
710 audit_log_format(ab
, "item=%d", i
);
712 audit_log_format(ab
, " name=");
713 if (context
->names
[i
].name
)
714 audit_log_untrustedstring(ab
, context
->names
[i
].name
);
716 audit_log_format(ab
, "(null)");
718 if (pino
!= (unsigned long)-1)
719 audit_log_format(ab
, " parent=%lu", pino
);
720 if (ino
!= (unsigned long)-1)
721 audit_log_format(ab
, " inode=%lu", ino
);
722 if ((pino
!= (unsigned long)-1) || (ino
!= (unsigned long)-1))
723 audit_log_format(ab
, " dev=%02x:%02x mode=%#o"
724 " ouid=%u ogid=%u rdev=%02x:%02x",
725 MAJOR(context
->names
[i
].dev
),
726 MINOR(context
->names
[i
].dev
),
727 context
->names
[i
].mode
,
728 context
->names
[i
].uid
,
729 context
->names
[i
].gid
,
730 MAJOR(context
->names
[i
].rdev
),
731 MINOR(context
->names
[i
].rdev
));
732 if (context
->names
[i
].osid
!= 0) {
735 if (selinux_ctxid_to_string(
736 context
->names
[i
].osid
, &ctx
, &len
)) {
737 audit_log_format(ab
, " osid=%u",
738 context
->names
[i
].osid
);
741 audit_log_format(ab
, " obj=%s", ctx
);
748 audit_panic("error converting sid to string");
752 * audit_free - free a per-task audit context
753 * @tsk: task whose audit context block to free
755 * Called from copy_process and do_exit
757 void audit_free(struct task_struct
*tsk
)
759 struct audit_context
*context
;
761 context
= audit_get_context(tsk
, 0, 0);
762 if (likely(!context
))
765 /* Check for system calls that do not go through the exit
766 * function (e.g., exit_group), then free context block.
767 * We use GFP_ATOMIC here because we might be doing this
768 * in the context of the idle thread */
769 /* that can happen only if we are called from do_exit() */
770 if (context
->in_syscall
&& context
->auditable
)
771 audit_log_exit(context
, tsk
);
773 audit_free_context(context
);
777 * audit_syscall_entry - fill in an audit record at syscall entry
778 * @tsk: task being audited
779 * @arch: architecture type
780 * @major: major syscall type (function)
781 * @a1: additional syscall register 1
782 * @a2: additional syscall register 2
783 * @a3: additional syscall register 3
784 * @a4: additional syscall register 4
786 * Fill in audit context at syscall entry. This only happens if the
787 * audit context was created when the task was created and the state or
788 * filters demand the audit context be built. If the state from the
789 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
790 * then the record will be written at syscall exit time (otherwise, it
791 * will only be written if another part of the kernel requests that it
794 void audit_syscall_entry(int arch
, int major
,
795 unsigned long a1
, unsigned long a2
,
796 unsigned long a3
, unsigned long a4
)
798 struct task_struct
*tsk
= current
;
799 struct audit_context
*context
= tsk
->audit_context
;
800 enum audit_state state
;
805 * This happens only on certain architectures that make system
806 * calls in kernel_thread via the entry.S interface, instead of
807 * with direct calls. (If you are porting to a new
808 * architecture, hitting this condition can indicate that you
809 * got the _exit/_leave calls backward in entry.S.)
813 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
815 * This also happens with vm86 emulation in a non-nested manner
816 * (entries without exits), so this case must be caught.
818 if (context
->in_syscall
) {
819 struct audit_context
*newctx
;
823 "audit(:%d) pid=%d in syscall=%d;"
824 " entering syscall=%d\n",
825 context
->serial
, tsk
->pid
, context
->major
, major
);
827 newctx
= audit_alloc_context(context
->state
);
829 newctx
->previous
= context
;
831 tsk
->audit_context
= newctx
;
833 /* If we can't alloc a new context, the best we
834 * can do is to leak memory (any pending putname
835 * will be lost). The only other alternative is
836 * to abandon auditing. */
837 audit_zero_context(context
, context
->state
);
840 BUG_ON(context
->in_syscall
|| context
->name_count
);
845 context
->arch
= arch
;
846 context
->major
= major
;
847 context
->argv
[0] = a1
;
848 context
->argv
[1] = a2
;
849 context
->argv
[2] = a3
;
850 context
->argv
[3] = a4
;
852 state
= context
->state
;
853 if (state
== AUDIT_SETUP_CONTEXT
|| state
== AUDIT_BUILD_CONTEXT
)
854 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_ENTRY
]);
855 if (likely(state
== AUDIT_DISABLED
))
859 context
->ctime
= CURRENT_TIME
;
860 context
->in_syscall
= 1;
861 context
->auditable
= !!(state
== AUDIT_RECORD_CONTEXT
);
865 * audit_syscall_exit - deallocate audit context after a system call
866 * @tsk: task being audited
867 * @valid: success/failure flag
868 * @return_code: syscall return value
870 * Tear down after system call. If the audit context has been marked as
871 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
872 * filtering, or because some other part of the kernel write an audit
873 * message), then write out the syscall information. In call cases,
874 * free the names stored from getname().
876 void audit_syscall_exit(int valid
, long return_code
)
878 struct task_struct
*tsk
= current
;
879 struct audit_context
*context
;
881 context
= audit_get_context(tsk
, valid
, return_code
);
883 if (likely(!context
))
886 if (context
->in_syscall
&& context
->auditable
)
887 audit_log_exit(context
, tsk
);
889 context
->in_syscall
= 0;
890 context
->auditable
= 0;
892 if (context
->previous
) {
893 struct audit_context
*new_context
= context
->previous
;
894 context
->previous
= NULL
;
895 audit_free_context(context
);
896 tsk
->audit_context
= new_context
;
898 audit_free_names(context
);
899 audit_free_aux(context
);
900 tsk
->audit_context
= context
;
905 * audit_getname - add a name to the list
908 * Add a name to the list of audit names for this context.
909 * Called from fs/namei.c:getname().
911 void audit_getname(const char *name
)
913 struct audit_context
*context
= current
->audit_context
;
915 if (!context
|| IS_ERR(name
) || !name
)
918 if (!context
->in_syscall
) {
920 printk(KERN_ERR
"%s:%d(:%d): ignoring getname(%p)\n",
921 __FILE__
, __LINE__
, context
->serial
, name
);
926 BUG_ON(context
->name_count
>= AUDIT_NAMES
);
927 context
->names
[context
->name_count
].name
= name
;
928 context
->names
[context
->name_count
].ino
= (unsigned long)-1;
929 ++context
->name_count
;
931 read_lock(¤t
->fs
->lock
);
932 context
->pwd
= dget(current
->fs
->pwd
);
933 context
->pwdmnt
= mntget(current
->fs
->pwdmnt
);
934 read_unlock(¤t
->fs
->lock
);
939 /* audit_putname - intercept a putname request
940 * @name: name to intercept and delay for putname
942 * If we have stored the name from getname in the audit context,
943 * then we delay the putname until syscall exit.
944 * Called from include/linux/fs.h:putname().
946 void audit_putname(const char *name
)
948 struct audit_context
*context
= current
->audit_context
;
951 if (!context
->in_syscall
) {
953 printk(KERN_ERR
"%s:%d(:%d): __putname(%p)\n",
954 __FILE__
, __LINE__
, context
->serial
, name
);
955 if (context
->name_count
) {
957 for (i
= 0; i
< context
->name_count
; i
++)
958 printk(KERN_ERR
"name[%d] = %p = %s\n", i
,
959 context
->names
[i
].name
,
960 context
->names
[i
].name
?: "(null)");
967 ++context
->put_count
;
968 if (context
->put_count
> context
->name_count
) {
969 printk(KERN_ERR
"%s:%d(:%d): major=%d"
970 " in_syscall=%d putname(%p) name_count=%d"
973 context
->serial
, context
->major
,
974 context
->in_syscall
, name
, context
->name_count
,
982 static void audit_inode_context(int idx
, const struct inode
*inode
)
984 struct audit_context
*context
= current
->audit_context
;
986 selinux_get_inode_sid(inode
, &context
->names
[idx
].osid
);
991 * audit_inode - store the inode and device from a lookup
992 * @name: name being audited
993 * @inode: inode being audited
994 * @flags: lookup flags (as used in path_lookup())
996 * Called from fs/namei.c:path_lookup().
998 void __audit_inode(const char *name
, const struct inode
*inode
, unsigned flags
)
1001 struct audit_context
*context
= current
->audit_context
;
1003 if (!context
->in_syscall
)
1005 if (context
->name_count
1006 && context
->names
[context
->name_count
-1].name
1007 && context
->names
[context
->name_count
-1].name
== name
)
1008 idx
= context
->name_count
- 1;
1009 else if (context
->name_count
> 1
1010 && context
->names
[context
->name_count
-2].name
1011 && context
->names
[context
->name_count
-2].name
== name
)
1012 idx
= context
->name_count
- 2;
1014 /* FIXME: how much do we care about inodes that have no
1015 * associated name? */
1016 if (context
->name_count
>= AUDIT_NAMES
- AUDIT_NAMES_RESERVED
)
1018 idx
= context
->name_count
++;
1019 context
->names
[idx
].name
= NULL
;
1021 ++context
->ino_count
;
1024 context
->names
[idx
].dev
= inode
->i_sb
->s_dev
;
1025 context
->names
[idx
].mode
= inode
->i_mode
;
1026 context
->names
[idx
].uid
= inode
->i_uid
;
1027 context
->names
[idx
].gid
= inode
->i_gid
;
1028 context
->names
[idx
].rdev
= inode
->i_rdev
;
1029 audit_inode_context(idx
, inode
);
1030 if ((flags
& LOOKUP_PARENT
) && (strcmp(name
, "/") != 0) &&
1031 (strcmp(name
, ".") != 0)) {
1032 context
->names
[idx
].ino
= (unsigned long)-1;
1033 context
->names
[idx
].pino
= inode
->i_ino
;
1035 context
->names
[idx
].ino
= inode
->i_ino
;
1036 context
->names
[idx
].pino
= (unsigned long)-1;
1041 * audit_inode_child - collect inode info for created/removed objects
1042 * @dname: inode's dentry name
1043 * @inode: inode being audited
1044 * @pino: inode number of dentry parent
1046 * For syscalls that create or remove filesystem objects, audit_inode
1047 * can only collect information for the filesystem object's parent.
1048 * This call updates the audit context with the child's information.
1049 * Syscalls that create a new filesystem object must be hooked after
1050 * the object is created. Syscalls that remove a filesystem object
1051 * must be hooked prior, in order to capture the target inode during
1052 * unsuccessful attempts.
1054 void __audit_inode_child(const char *dname
, const struct inode
*inode
,
1058 struct audit_context
*context
= current
->audit_context
;
1060 if (!context
->in_syscall
)
1063 /* determine matching parent */
1065 for (idx
= 0; idx
< context
->name_count
; idx
++)
1066 if (context
->names
[idx
].pino
== pino
) {
1068 const char *name
= context
->names
[idx
].name
;
1069 int dlen
= strlen(dname
);
1070 int nlen
= name
? strlen(name
) : 0;
1075 /* disregard trailing slashes */
1076 n
= name
+ nlen
- 1;
1077 while ((*n
== '/') && (n
> name
))
1080 /* find last path component */
1084 else if (n
> name
) {
1091 if (strncmp(n
, dname
, dlen
) == 0)
1092 goto update_context
;
1095 /* catch-all in case match not found */
1096 idx
= context
->name_count
++;
1097 context
->names
[idx
].name
= NULL
;
1098 context
->names
[idx
].pino
= pino
;
1100 context
->ino_count
++;
1105 context
->names
[idx
].ino
= inode
->i_ino
;
1106 context
->names
[idx
].dev
= inode
->i_sb
->s_dev
;
1107 context
->names
[idx
].mode
= inode
->i_mode
;
1108 context
->names
[idx
].uid
= inode
->i_uid
;
1109 context
->names
[idx
].gid
= inode
->i_gid
;
1110 context
->names
[idx
].rdev
= inode
->i_rdev
;
1111 audit_inode_context(idx
, inode
);
1116 * auditsc_get_stamp - get local copies of audit_context values
1117 * @ctx: audit_context for the task
1118 * @t: timespec to store time recorded in the audit_context
1119 * @serial: serial value that is recorded in the audit_context
1121 * Also sets the context as auditable.
1123 void auditsc_get_stamp(struct audit_context
*ctx
,
1124 struct timespec
*t
, unsigned int *serial
)
1127 ctx
->serial
= audit_serial();
1128 t
->tv_sec
= ctx
->ctime
.tv_sec
;
1129 t
->tv_nsec
= ctx
->ctime
.tv_nsec
;
1130 *serial
= ctx
->serial
;
1135 * audit_set_loginuid - set a task's audit_context loginuid
1136 * @task: task whose audit context is being modified
1137 * @loginuid: loginuid value
1141 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1143 int audit_set_loginuid(struct task_struct
*task
, uid_t loginuid
)
1145 if (task
->audit_context
) {
1146 struct audit_buffer
*ab
;
1148 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_LOGIN
);
1150 audit_log_format(ab
, "login pid=%d uid=%u "
1151 "old auid=%u new auid=%u",
1152 task
->pid
, task
->uid
,
1153 task
->audit_context
->loginuid
, loginuid
);
1156 task
->audit_context
->loginuid
= loginuid
;
1162 * audit_get_loginuid - get the loginuid for an audit_context
1163 * @ctx: the audit_context
1165 * Returns the context's loginuid or -1 if @ctx is NULL.
1167 uid_t
audit_get_loginuid(struct audit_context
*ctx
)
1169 return ctx
? ctx
->loginuid
: -1;
1173 * audit_ipc_obj - record audit data for ipc object
1174 * @ipcp: ipc permissions
1176 * Returns 0 for success or NULL context or < 0 on error.
1178 int audit_ipc_obj(struct kern_ipc_perm
*ipcp
)
1180 struct audit_aux_data_ipcctl
*ax
;
1181 struct audit_context
*context
= current
->audit_context
;
1183 if (likely(!context
))
1186 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1190 ax
->uid
= ipcp
->uid
;
1191 ax
->gid
= ipcp
->gid
;
1192 ax
->mode
= ipcp
->mode
;
1193 selinux_get_ipc_sid(ipcp
, &ax
->osid
);
1195 ax
->d
.type
= AUDIT_IPC
;
1196 ax
->d
.next
= context
->aux
;
1197 context
->aux
= (void *)ax
;
1202 * audit_ipc_set_perm - record audit data for new ipc permissions
1203 * @qbytes: msgq bytes
1204 * @uid: msgq user id
1205 * @gid: msgq group id
1206 * @mode: msgq mode (permissions)
1208 * Returns 0 for success or NULL context or < 0 on error.
1210 int audit_ipc_set_perm(unsigned long qbytes
, uid_t uid
, gid_t gid
, mode_t mode
, struct kern_ipc_perm
*ipcp
)
1212 struct audit_aux_data_ipcctl
*ax
;
1213 struct audit_context
*context
= current
->audit_context
;
1215 if (likely(!context
))
1218 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1222 ax
->qbytes
= qbytes
;
1226 selinux_get_ipc_sid(ipcp
, &ax
->osid
);
1228 ax
->d
.type
= AUDIT_IPC_SET_PERM
;
1229 ax
->d
.next
= context
->aux
;
1230 context
->aux
= (void *)ax
;
1235 * audit_socketcall - record audit data for sys_socketcall
1236 * @nargs: number of args
1239 * Returns 0 for success or NULL context or < 0 on error.
1241 int audit_socketcall(int nargs
, unsigned long *args
)
1243 struct audit_aux_data_socketcall
*ax
;
1244 struct audit_context
*context
= current
->audit_context
;
1246 if (likely(!context
))
1249 ax
= kmalloc(sizeof(*ax
) + nargs
* sizeof(unsigned long), GFP_KERNEL
);
1254 memcpy(ax
->args
, args
, nargs
* sizeof(unsigned long));
1256 ax
->d
.type
= AUDIT_SOCKETCALL
;
1257 ax
->d
.next
= context
->aux
;
1258 context
->aux
= (void *)ax
;
1263 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1264 * @len: data length in user space
1265 * @a: data address in kernel space
1267 * Returns 0 for success or NULL context or < 0 on error.
1269 int audit_sockaddr(int len
, void *a
)
1271 struct audit_aux_data_sockaddr
*ax
;
1272 struct audit_context
*context
= current
->audit_context
;
1274 if (likely(!context
))
1277 ax
= kmalloc(sizeof(*ax
) + len
, GFP_KERNEL
);
1282 memcpy(ax
->a
, a
, len
);
1284 ax
->d
.type
= AUDIT_SOCKADDR
;
1285 ax
->d
.next
= context
->aux
;
1286 context
->aux
= (void *)ax
;
1291 * audit_avc_path - record the granting or denial of permissions
1292 * @dentry: dentry to record
1293 * @mnt: mnt to record
1295 * Returns 0 for success or NULL context or < 0 on error.
1297 * Called from security/selinux/avc.c::avc_audit()
1299 int audit_avc_path(struct dentry
*dentry
, struct vfsmount
*mnt
)
1301 struct audit_aux_data_path
*ax
;
1302 struct audit_context
*context
= current
->audit_context
;
1304 if (likely(!context
))
1307 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1311 ax
->dentry
= dget(dentry
);
1312 ax
->mnt
= mntget(mnt
);
1314 ax
->d
.type
= AUDIT_AVC_PATH
;
1315 ax
->d
.next
= context
->aux
;
1316 context
->aux
= (void *)ax
;
1321 * audit_signal_info - record signal info for shutting down audit subsystem
1322 * @sig: signal value
1323 * @t: task being signaled
1325 * If the audit subsystem is being terminated, record the task (pid)
1326 * and uid that is doing that.
1328 void audit_signal_info(int sig
, struct task_struct
*t
)
1330 extern pid_t audit_sig_pid
;
1331 extern uid_t audit_sig_uid
;
1333 if (unlikely(audit_pid
&& t
->tgid
== audit_pid
)) {
1334 if (sig
== SIGTERM
|| sig
== SIGHUP
) {
1335 struct audit_context
*ctx
= current
->audit_context
;
1336 audit_sig_pid
= current
->pid
;
1338 audit_sig_uid
= ctx
->loginuid
;
1340 audit_sig_uid
= current
->uid
;