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, 2006 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 * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>,
35 * The support of additional filter rules compares (>, <, >=, <=) was
36 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
38 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
39 * filesystem information.
41 * Subject and object context labeling support added by <danjones@us.ibm.com>
42 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
45 #include <linux/init.h>
46 #include <asm/types.h>
47 #include <asm/atomic.h>
48 #include <asm/types.h>
50 #include <linux/namei.h>
52 #include <linux/module.h>
53 #include <linux/mount.h>
54 #include <linux/socket.h>
55 #include <linux/mqueue.h>
56 #include <linux/audit.h>
57 #include <linux/personality.h>
58 #include <linux/time.h>
59 #include <linux/netlink.h>
60 #include <linux/compiler.h>
61 #include <asm/unistd.h>
62 #include <linux/security.h>
63 #include <linux/list.h>
64 #include <linux/tty.h>
65 #include <linux/selinux.h>
66 #include <linux/binfmts.h>
67 #include <linux/syscalls.h>
71 extern struct list_head audit_filter_list
[];
73 /* No syscall auditing will take place unless audit_enabled != 0. */
74 extern int audit_enabled
;
76 /* AUDIT_NAMES is the number of slots we reserve in the audit_context
77 * for saving names from getname(). */
78 #define AUDIT_NAMES 20
80 /* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
81 * audit_context from being used for nameless inodes from
83 #define AUDIT_NAMES_RESERVED 7
85 /* Indicates that audit should log the full pathname. */
86 #define AUDIT_NAME_FULL -1
88 /* When fs/namei.c:getname() is called, we store the pointer in name and
89 * we don't let putname() free it (instead we free all of the saved
90 * pointers at syscall exit time).
92 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
95 int name_len
; /* number of name's characters to log */
96 unsigned name_put
; /* call __putname() for this name */
106 struct audit_aux_data
{
107 struct audit_aux_data
*next
;
111 #define AUDIT_AUX_IPCPERM 0
113 struct audit_aux_data_mq_open
{
114 struct audit_aux_data d
;
120 struct audit_aux_data_mq_sendrecv
{
121 struct audit_aux_data d
;
124 unsigned int msg_prio
;
125 struct timespec abs_timeout
;
128 struct audit_aux_data_mq_notify
{
129 struct audit_aux_data d
;
131 struct sigevent notification
;
134 struct audit_aux_data_mq_getsetattr
{
135 struct audit_aux_data d
;
137 struct mq_attr mqstat
;
140 struct audit_aux_data_ipcctl
{
141 struct audit_aux_data d
;
143 unsigned long qbytes
;
150 struct audit_aux_data_execve
{
151 struct audit_aux_data d
;
157 struct audit_aux_data_socketcall
{
158 struct audit_aux_data d
;
160 unsigned long args
[0];
163 struct audit_aux_data_sockaddr
{
164 struct audit_aux_data d
;
169 struct audit_aux_data_path
{
170 struct audit_aux_data d
;
171 struct dentry
*dentry
;
172 struct vfsmount
*mnt
;
175 /* The per-task audit context. */
176 struct audit_context
{
177 int in_syscall
; /* 1 if task is in a syscall */
178 enum audit_state state
;
179 unsigned int serial
; /* serial number for record */
180 struct timespec ctime
; /* time of syscall entry */
181 uid_t loginuid
; /* login uid (identity) */
182 int major
; /* syscall number */
183 unsigned long argv
[4]; /* syscall arguments */
184 int return_valid
; /* return code is valid */
185 long return_code
;/* syscall return code */
186 int auditable
; /* 1 if record should be written */
188 struct audit_names names
[AUDIT_NAMES
];
189 char * filterkey
; /* key for rule that triggered record */
191 struct vfsmount
* pwdmnt
;
192 struct audit_context
*previous
; /* For nested syscalls */
193 struct audit_aux_data
*aux
;
195 /* Save things to print about task_struct */
197 uid_t uid
, euid
, suid
, fsuid
;
198 gid_t gid
, egid
, sgid
, fsgid
;
199 unsigned long personality
;
208 /* Determine if any context name data matches a rule's watch data */
209 /* Compare a task_struct with an audit_rule. Return 1 on match, 0
211 static int audit_filter_rules(struct task_struct
*tsk
,
212 struct audit_krule
*rule
,
213 struct audit_context
*ctx
,
214 struct audit_names
*name
,
215 enum audit_state
*state
)
217 int i
, j
, need_sid
= 1;
220 for (i
= 0; i
< rule
->field_count
; i
++) {
221 struct audit_field
*f
= &rule
->fields
[i
];
226 result
= audit_comparator(tsk
->pid
, f
->op
, f
->val
);
230 result
= audit_comparator(ctx
->ppid
, f
->op
, f
->val
);
233 result
= audit_comparator(tsk
->uid
, f
->op
, f
->val
);
236 result
= audit_comparator(tsk
->euid
, f
->op
, f
->val
);
239 result
= audit_comparator(tsk
->suid
, f
->op
, f
->val
);
242 result
= audit_comparator(tsk
->fsuid
, f
->op
, f
->val
);
245 result
= audit_comparator(tsk
->gid
, f
->op
, f
->val
);
248 result
= audit_comparator(tsk
->egid
, f
->op
, f
->val
);
251 result
= audit_comparator(tsk
->sgid
, f
->op
, f
->val
);
254 result
= audit_comparator(tsk
->fsgid
, f
->op
, f
->val
);
257 result
= audit_comparator(tsk
->personality
, f
->op
, f
->val
);
261 result
= audit_comparator(ctx
->arch
, f
->op
, f
->val
);
265 if (ctx
&& ctx
->return_valid
)
266 result
= audit_comparator(ctx
->return_code
, f
->op
, f
->val
);
269 if (ctx
&& ctx
->return_valid
) {
271 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_SUCCESS
);
273 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_FAILURE
);
278 result
= audit_comparator(MAJOR(name
->dev
),
281 for (j
= 0; j
< ctx
->name_count
; j
++) {
282 if (audit_comparator(MAJOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
291 result
= audit_comparator(MINOR(name
->dev
),
294 for (j
= 0; j
< ctx
->name_count
; j
++) {
295 if (audit_comparator(MINOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
304 result
= (name
->ino
== f
->val
);
306 for (j
= 0; j
< ctx
->name_count
; j
++) {
307 if (audit_comparator(ctx
->names
[j
].ino
, f
->op
, f
->val
)) {
315 if (name
&& rule
->watch
->ino
!= (unsigned long)-1)
316 result
= (name
->dev
== rule
->watch
->dev
&&
317 name
->ino
== rule
->watch
->ino
);
322 result
= audit_comparator(ctx
->loginuid
, f
->op
, f
->val
);
324 case AUDIT_SUBJ_USER
:
325 case AUDIT_SUBJ_ROLE
:
326 case AUDIT_SUBJ_TYPE
:
329 /* NOTE: this may return negative values indicating
330 a temporary error. We simply treat this as a
331 match for now to avoid losing information that
332 may be wanted. An error message will also be
336 selinux_task_ctxid(tsk
, &sid
);
339 result
= selinux_audit_rule_match(sid
, f
->type
,
348 case AUDIT_OBJ_LEV_LOW
:
349 case AUDIT_OBJ_LEV_HIGH
:
350 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
353 /* Find files that match */
355 result
= selinux_audit_rule_match(
356 name
->osid
, f
->type
, f
->op
,
359 for (j
= 0; j
< ctx
->name_count
; j
++) {
360 if (selinux_audit_rule_match(
369 /* Find ipc objects that match */
371 struct audit_aux_data
*aux
;
372 for (aux
= ctx
->aux
; aux
;
374 if (aux
->type
== AUDIT_IPC
) {
375 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
376 if (selinux_audit_rule_match(axi
->osid
, f
->type
, f
->op
, f
->se_rule
, ctx
)) {
390 result
= audit_comparator(ctx
->argv
[f
->type
-AUDIT_ARG0
], f
->op
, f
->val
);
392 case AUDIT_FILTERKEY
:
393 /* ignore this field for filtering */
402 ctx
->filterkey
= kstrdup(rule
->filterkey
, GFP_ATOMIC
);
403 switch (rule
->action
) {
404 case AUDIT_NEVER
: *state
= AUDIT_DISABLED
; break;
405 case AUDIT_ALWAYS
: *state
= AUDIT_RECORD_CONTEXT
; break;
410 /* At process creation time, we can determine if system-call auditing is
411 * completely disabled for this task. Since we only have the task
412 * structure at this point, we can only check uid and gid.
414 static enum audit_state
audit_filter_task(struct task_struct
*tsk
)
416 struct audit_entry
*e
;
417 enum audit_state state
;
420 list_for_each_entry_rcu(e
, &audit_filter_list
[AUDIT_FILTER_TASK
], list
) {
421 if (audit_filter_rules(tsk
, &e
->rule
, NULL
, NULL
, &state
)) {
427 return AUDIT_BUILD_CONTEXT
;
430 /* At syscall entry and exit time, this filter is called if the
431 * audit_state is not low enough that auditing cannot take place, but is
432 * also not high enough that we already know we have to write an audit
433 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
435 static enum audit_state
audit_filter_syscall(struct task_struct
*tsk
,
436 struct audit_context
*ctx
,
437 struct list_head
*list
)
439 struct audit_entry
*e
;
440 enum audit_state state
;
442 if (audit_pid
&& tsk
->tgid
== audit_pid
)
443 return AUDIT_DISABLED
;
446 if (!list_empty(list
)) {
447 int word
= AUDIT_WORD(ctx
->major
);
448 int bit
= AUDIT_BIT(ctx
->major
);
450 list_for_each_entry_rcu(e
, list
, list
) {
451 if ((e
->rule
.mask
[word
] & bit
) == bit
&&
452 audit_filter_rules(tsk
, &e
->rule
, ctx
, NULL
,
460 return AUDIT_BUILD_CONTEXT
;
463 /* At syscall exit time, this filter is called if any audit_names[] have been
464 * collected during syscall processing. We only check rules in sublists at hash
465 * buckets applicable to the inode numbers in audit_names[].
466 * Regarding audit_state, same rules apply as for audit_filter_syscall().
468 enum audit_state
audit_filter_inodes(struct task_struct
*tsk
,
469 struct audit_context
*ctx
)
472 struct audit_entry
*e
;
473 enum audit_state state
;
475 if (audit_pid
&& tsk
->tgid
== audit_pid
)
476 return AUDIT_DISABLED
;
479 for (i
= 0; i
< ctx
->name_count
; i
++) {
480 int word
= AUDIT_WORD(ctx
->major
);
481 int bit
= AUDIT_BIT(ctx
->major
);
482 struct audit_names
*n
= &ctx
->names
[i
];
483 int h
= audit_hash_ino((u32
)n
->ino
);
484 struct list_head
*list
= &audit_inode_hash
[h
];
486 if (list_empty(list
))
489 list_for_each_entry_rcu(e
, list
, list
) {
490 if ((e
->rule
.mask
[word
] & bit
) == bit
&&
491 audit_filter_rules(tsk
, &e
->rule
, ctx
, n
, &state
)) {
498 return AUDIT_BUILD_CONTEXT
;
501 void audit_set_auditable(struct audit_context
*ctx
)
506 static inline struct audit_context
*audit_get_context(struct task_struct
*tsk
,
510 struct audit_context
*context
= tsk
->audit_context
;
512 if (likely(!context
))
514 context
->return_valid
= return_valid
;
515 context
->return_code
= return_code
;
517 if (context
->in_syscall
&& !context
->auditable
) {
518 enum audit_state state
;
520 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_EXIT
]);
521 if (state
== AUDIT_RECORD_CONTEXT
) {
522 context
->auditable
= 1;
526 state
= audit_filter_inodes(tsk
, context
);
527 if (state
== AUDIT_RECORD_CONTEXT
)
528 context
->auditable
= 1;
533 context
->pid
= tsk
->pid
;
534 context
->ppid
= sys_getppid(); /* sic. tsk == current in all cases */
535 context
->uid
= tsk
->uid
;
536 context
->gid
= tsk
->gid
;
537 context
->euid
= tsk
->euid
;
538 context
->suid
= tsk
->suid
;
539 context
->fsuid
= tsk
->fsuid
;
540 context
->egid
= tsk
->egid
;
541 context
->sgid
= tsk
->sgid
;
542 context
->fsgid
= tsk
->fsgid
;
543 context
->personality
= tsk
->personality
;
544 tsk
->audit_context
= NULL
;
548 static inline void audit_free_names(struct audit_context
*context
)
553 if (context
->auditable
554 ||context
->put_count
+ context
->ino_count
!= context
->name_count
) {
555 printk(KERN_ERR
"%s:%d(:%d): major=%d in_syscall=%d"
556 " name_count=%d put_count=%d"
557 " ino_count=%d [NOT freeing]\n",
559 context
->serial
, context
->major
, context
->in_syscall
,
560 context
->name_count
, context
->put_count
,
562 for (i
= 0; i
< context
->name_count
; i
++) {
563 printk(KERN_ERR
"names[%d] = %p = %s\n", i
,
564 context
->names
[i
].name
,
565 context
->names
[i
].name
?: "(null)");
572 context
->put_count
= 0;
573 context
->ino_count
= 0;
576 for (i
= 0; i
< context
->name_count
; i
++) {
577 if (context
->names
[i
].name
&& context
->names
[i
].name_put
)
578 __putname(context
->names
[i
].name
);
580 context
->name_count
= 0;
584 mntput(context
->pwdmnt
);
586 context
->pwdmnt
= NULL
;
589 static inline void audit_free_aux(struct audit_context
*context
)
591 struct audit_aux_data
*aux
;
593 while ((aux
= context
->aux
)) {
594 if (aux
->type
== AUDIT_AVC_PATH
) {
595 struct audit_aux_data_path
*axi
= (void *)aux
;
600 context
->aux
= aux
->next
;
605 static inline void audit_zero_context(struct audit_context
*context
,
606 enum audit_state state
)
608 uid_t loginuid
= context
->loginuid
;
610 memset(context
, 0, sizeof(*context
));
611 context
->state
= state
;
612 context
->loginuid
= loginuid
;
615 static inline struct audit_context
*audit_alloc_context(enum audit_state state
)
617 struct audit_context
*context
;
619 if (!(context
= kmalloc(sizeof(*context
), GFP_KERNEL
)))
621 audit_zero_context(context
, state
);
626 * audit_alloc - allocate an audit context block for a task
629 * Filter on the task information and allocate a per-task audit context
630 * if necessary. Doing so turns on system call auditing for the
631 * specified task. This is called from copy_process, so no lock is
634 int audit_alloc(struct task_struct
*tsk
)
636 struct audit_context
*context
;
637 enum audit_state state
;
639 if (likely(!audit_enabled
))
640 return 0; /* Return if not auditing. */
642 state
= audit_filter_task(tsk
);
643 if (likely(state
== AUDIT_DISABLED
))
646 if (!(context
= audit_alloc_context(state
))) {
647 audit_log_lost("out of memory in audit_alloc");
651 /* Preserve login uid */
652 context
->loginuid
= -1;
653 if (current
->audit_context
)
654 context
->loginuid
= current
->audit_context
->loginuid
;
656 tsk
->audit_context
= context
;
657 set_tsk_thread_flag(tsk
, TIF_SYSCALL_AUDIT
);
661 static inline void audit_free_context(struct audit_context
*context
)
663 struct audit_context
*previous
;
667 previous
= context
->previous
;
668 if (previous
|| (count
&& count
< 10)) {
670 printk(KERN_ERR
"audit(:%d): major=%d name_count=%d:"
671 " freeing multiple contexts (%d)\n",
672 context
->serial
, context
->major
,
673 context
->name_count
, count
);
675 audit_free_names(context
);
676 audit_free_aux(context
);
677 kfree(context
->filterkey
);
682 printk(KERN_ERR
"audit: freed %d contexts\n", count
);
685 static void audit_log_task_context(struct audit_buffer
*ab
)
690 len
= security_getprocattr(current
, "current", NULL
, 0);
697 ctx
= kmalloc(len
, GFP_KERNEL
);
701 len
= security_getprocattr(current
, "current", ctx
, len
);
705 audit_log_format(ab
, " subj=%s", ctx
);
710 audit_panic("error in audit_log_task_context");
714 static void audit_log_task_info(struct audit_buffer
*ab
, struct task_struct
*tsk
)
716 char name
[sizeof(tsk
->comm
)];
717 struct mm_struct
*mm
= tsk
->mm
;
718 struct vm_area_struct
*vma
;
722 get_task_comm(name
, tsk
);
723 audit_log_format(ab
, " comm=");
724 audit_log_untrustedstring(ab
, name
);
727 down_read(&mm
->mmap_sem
);
730 if ((vma
->vm_flags
& VM_EXECUTABLE
) &&
732 audit_log_d_path(ab
, "exe=",
733 vma
->vm_file
->f_dentry
,
734 vma
->vm_file
->f_vfsmnt
);
739 up_read(&mm
->mmap_sem
);
741 audit_log_task_context(ab
);
744 static void audit_log_exit(struct audit_context
*context
, struct task_struct
*tsk
)
746 int i
, call_panic
= 0;
747 struct audit_buffer
*ab
;
748 struct audit_aux_data
*aux
;
753 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_SYSCALL
);
755 return; /* audit_panic has been called */
756 audit_log_format(ab
, "arch=%x syscall=%d",
757 context
->arch
, context
->major
);
758 if (context
->personality
!= PER_LINUX
)
759 audit_log_format(ab
, " per=%lx", context
->personality
);
760 if (context
->return_valid
)
761 audit_log_format(ab
, " success=%s exit=%ld",
762 (context
->return_valid
==AUDITSC_SUCCESS
)?"yes":"no",
763 context
->return_code
);
764 if (tsk
->signal
&& tsk
->signal
->tty
&& tsk
->signal
->tty
->name
)
765 tty
= tsk
->signal
->tty
->name
;
769 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
770 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
771 " euid=%u suid=%u fsuid=%u"
772 " egid=%u sgid=%u fsgid=%u tty=%s",
783 context
->euid
, context
->suid
, context
->fsuid
,
784 context
->egid
, context
->sgid
, context
->fsgid
, tty
);
785 audit_log_task_info(ab
, tsk
);
786 if (context
->filterkey
) {
787 audit_log_format(ab
, " key=");
788 audit_log_untrustedstring(ab
, context
->filterkey
);
790 audit_log_format(ab
, " key=(null)");
793 for (aux
= context
->aux
; aux
; aux
= aux
->next
) {
795 ab
= audit_log_start(context
, GFP_KERNEL
, aux
->type
);
797 continue; /* audit_panic has been called */
800 case AUDIT_MQ_OPEN
: {
801 struct audit_aux_data_mq_open
*axi
= (void *)aux
;
803 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
804 "mq_msgsize=%ld mq_curmsgs=%ld",
805 axi
->oflag
, axi
->mode
, axi
->attr
.mq_flags
,
806 axi
->attr
.mq_maxmsg
, axi
->attr
.mq_msgsize
,
807 axi
->attr
.mq_curmsgs
);
810 case AUDIT_MQ_SENDRECV
: {
811 struct audit_aux_data_mq_sendrecv
*axi
= (void *)aux
;
813 "mqdes=%d msg_len=%zd msg_prio=%u "
814 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
815 axi
->mqdes
, axi
->msg_len
, axi
->msg_prio
,
816 axi
->abs_timeout
.tv_sec
, axi
->abs_timeout
.tv_nsec
);
819 case AUDIT_MQ_NOTIFY
: {
820 struct audit_aux_data_mq_notify
*axi
= (void *)aux
;
822 "mqdes=%d sigev_signo=%d",
824 axi
->notification
.sigev_signo
);
827 case AUDIT_MQ_GETSETATTR
: {
828 struct audit_aux_data_mq_getsetattr
*axi
= (void *)aux
;
830 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
833 axi
->mqstat
.mq_flags
, axi
->mqstat
.mq_maxmsg
,
834 axi
->mqstat
.mq_msgsize
, axi
->mqstat
.mq_curmsgs
);
838 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
840 "ouid=%u ogid=%u mode=%x",
841 axi
->uid
, axi
->gid
, axi
->mode
);
842 if (axi
->osid
!= 0) {
845 if (selinux_ctxid_to_string(
846 axi
->osid
, &ctx
, &len
)) {
847 audit_log_format(ab
, " osid=%u",
851 audit_log_format(ab
, " obj=%s", ctx
);
856 case AUDIT_IPC_SET_PERM
: {
857 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
859 "qbytes=%lx ouid=%u ogid=%u mode=%x",
860 axi
->qbytes
, axi
->uid
, axi
->gid
, axi
->mode
);
864 struct audit_aux_data_execve
*axi
= (void *)aux
;
867 for (i
= 0, p
= axi
->mem
; i
< axi
->argc
; i
++) {
868 audit_log_format(ab
, "a%d=", i
);
869 p
= audit_log_untrustedstring(ab
, p
);
870 audit_log_format(ab
, "\n");
874 case AUDIT_SOCKETCALL
: {
876 struct audit_aux_data_socketcall
*axs
= (void *)aux
;
877 audit_log_format(ab
, "nargs=%d", axs
->nargs
);
878 for (i
=0; i
<axs
->nargs
; i
++)
879 audit_log_format(ab
, " a%d=%lx", i
, axs
->args
[i
]);
882 case AUDIT_SOCKADDR
: {
883 struct audit_aux_data_sockaddr
*axs
= (void *)aux
;
885 audit_log_format(ab
, "saddr=");
886 audit_log_hex(ab
, axs
->a
, axs
->len
);
889 case AUDIT_AVC_PATH
: {
890 struct audit_aux_data_path
*axi
= (void *)aux
;
891 audit_log_d_path(ab
, "path=", axi
->dentry
, axi
->mnt
);
898 if (context
->pwd
&& context
->pwdmnt
) {
899 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_CWD
);
901 audit_log_d_path(ab
, "cwd=", context
->pwd
, context
->pwdmnt
);
905 for (i
= 0; i
< context
->name_count
; i
++) {
906 struct audit_names
*n
= &context
->names
[i
];
908 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_PATH
);
910 continue; /* audit_panic has been called */
912 audit_log_format(ab
, "item=%d", i
);
915 switch(n
->name_len
) {
916 case AUDIT_NAME_FULL
:
917 /* log the full path */
918 audit_log_format(ab
, " name=");
919 audit_log_untrustedstring(ab
, n
->name
);
922 /* name was specified as a relative path and the
923 * directory component is the cwd */
924 audit_log_d_path(ab
, " name=", context
->pwd
,
928 /* log the name's directory component */
929 audit_log_format(ab
, " name=");
930 audit_log_n_untrustedstring(ab
, n
->name_len
,
934 audit_log_format(ab
, " name=(null)");
936 if (n
->ino
!= (unsigned long)-1) {
937 audit_log_format(ab
, " inode=%lu"
938 " dev=%02x:%02x mode=%#o"
939 " ouid=%u ogid=%u rdev=%02x:%02x",
952 if (selinux_ctxid_to_string(
953 n
->osid
, &ctx
, &len
)) {
954 audit_log_format(ab
, " osid=%u", n
->osid
);
957 audit_log_format(ab
, " obj=%s", ctx
);
964 audit_panic("error converting sid to string");
968 * audit_free - free a per-task audit context
969 * @tsk: task whose audit context block to free
971 * Called from copy_process and do_exit
973 void audit_free(struct task_struct
*tsk
)
975 struct audit_context
*context
;
977 context
= audit_get_context(tsk
, 0, 0);
978 if (likely(!context
))
981 /* Check for system calls that do not go through the exit
982 * function (e.g., exit_group), then free context block.
983 * We use GFP_ATOMIC here because we might be doing this
984 * in the context of the idle thread */
985 /* that can happen only if we are called from do_exit() */
986 if (context
->in_syscall
&& context
->auditable
)
987 audit_log_exit(context
, tsk
);
989 audit_free_context(context
);
993 * audit_syscall_entry - fill in an audit record at syscall entry
994 * @tsk: task being audited
995 * @arch: architecture type
996 * @major: major syscall type (function)
997 * @a1: additional syscall register 1
998 * @a2: additional syscall register 2
999 * @a3: additional syscall register 3
1000 * @a4: additional syscall register 4
1002 * Fill in audit context at syscall entry. This only happens if the
1003 * audit context was created when the task was created and the state or
1004 * filters demand the audit context be built. If the state from the
1005 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1006 * then the record will be written at syscall exit time (otherwise, it
1007 * will only be written if another part of the kernel requests that it
1010 void audit_syscall_entry(int arch
, int major
,
1011 unsigned long a1
, unsigned long a2
,
1012 unsigned long a3
, unsigned long a4
)
1014 struct task_struct
*tsk
= current
;
1015 struct audit_context
*context
= tsk
->audit_context
;
1016 enum audit_state state
;
1021 * This happens only on certain architectures that make system
1022 * calls in kernel_thread via the entry.S interface, instead of
1023 * with direct calls. (If you are porting to a new
1024 * architecture, hitting this condition can indicate that you
1025 * got the _exit/_leave calls backward in entry.S.)
1029 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
1031 * This also happens with vm86 emulation in a non-nested manner
1032 * (entries without exits), so this case must be caught.
1034 if (context
->in_syscall
) {
1035 struct audit_context
*newctx
;
1039 "audit(:%d) pid=%d in syscall=%d;"
1040 " entering syscall=%d\n",
1041 context
->serial
, tsk
->pid
, context
->major
, major
);
1043 newctx
= audit_alloc_context(context
->state
);
1045 newctx
->previous
= context
;
1047 tsk
->audit_context
= newctx
;
1049 /* If we can't alloc a new context, the best we
1050 * can do is to leak memory (any pending putname
1051 * will be lost). The only other alternative is
1052 * to abandon auditing. */
1053 audit_zero_context(context
, context
->state
);
1056 BUG_ON(context
->in_syscall
|| context
->name_count
);
1061 context
->arch
= arch
;
1062 context
->major
= major
;
1063 context
->argv
[0] = a1
;
1064 context
->argv
[1] = a2
;
1065 context
->argv
[2] = a3
;
1066 context
->argv
[3] = a4
;
1068 state
= context
->state
;
1069 if (state
== AUDIT_SETUP_CONTEXT
|| state
== AUDIT_BUILD_CONTEXT
)
1070 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_ENTRY
]);
1071 if (likely(state
== AUDIT_DISABLED
))
1074 context
->serial
= 0;
1075 context
->ctime
= CURRENT_TIME
;
1076 context
->in_syscall
= 1;
1077 context
->auditable
= !!(state
== AUDIT_RECORD_CONTEXT
);
1081 * audit_syscall_exit - deallocate audit context after a system call
1082 * @tsk: task being audited
1083 * @valid: success/failure flag
1084 * @return_code: syscall return value
1086 * Tear down after system call. If the audit context has been marked as
1087 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1088 * filtering, or because some other part of the kernel write an audit
1089 * message), then write out the syscall information. In call cases,
1090 * free the names stored from getname().
1092 void audit_syscall_exit(int valid
, long return_code
)
1094 struct task_struct
*tsk
= current
;
1095 struct audit_context
*context
;
1097 context
= audit_get_context(tsk
, valid
, return_code
);
1099 if (likely(!context
))
1102 if (context
->in_syscall
&& context
->auditable
)
1103 audit_log_exit(context
, tsk
);
1105 context
->in_syscall
= 0;
1106 context
->auditable
= 0;
1108 if (context
->previous
) {
1109 struct audit_context
*new_context
= context
->previous
;
1110 context
->previous
= NULL
;
1111 audit_free_context(context
);
1112 tsk
->audit_context
= new_context
;
1114 audit_free_names(context
);
1115 audit_free_aux(context
);
1116 kfree(context
->filterkey
);
1117 context
->filterkey
= NULL
;
1118 tsk
->audit_context
= context
;
1123 * audit_getname - add a name to the list
1124 * @name: name to add
1126 * Add a name to the list of audit names for this context.
1127 * Called from fs/namei.c:getname().
1129 void __audit_getname(const char *name
)
1131 struct audit_context
*context
= current
->audit_context
;
1133 if (IS_ERR(name
) || !name
)
1136 if (!context
->in_syscall
) {
1137 #if AUDIT_DEBUG == 2
1138 printk(KERN_ERR
"%s:%d(:%d): ignoring getname(%p)\n",
1139 __FILE__
, __LINE__
, context
->serial
, name
);
1144 BUG_ON(context
->name_count
>= AUDIT_NAMES
);
1145 context
->names
[context
->name_count
].name
= name
;
1146 context
->names
[context
->name_count
].name_len
= AUDIT_NAME_FULL
;
1147 context
->names
[context
->name_count
].name_put
= 1;
1148 context
->names
[context
->name_count
].ino
= (unsigned long)-1;
1149 ++context
->name_count
;
1150 if (!context
->pwd
) {
1151 read_lock(¤t
->fs
->lock
);
1152 context
->pwd
= dget(current
->fs
->pwd
);
1153 context
->pwdmnt
= mntget(current
->fs
->pwdmnt
);
1154 read_unlock(¤t
->fs
->lock
);
1159 /* audit_putname - intercept a putname request
1160 * @name: name to intercept and delay for putname
1162 * If we have stored the name from getname in the audit context,
1163 * then we delay the putname until syscall exit.
1164 * Called from include/linux/fs.h:putname().
1166 void audit_putname(const char *name
)
1168 struct audit_context
*context
= current
->audit_context
;
1171 if (!context
->in_syscall
) {
1172 #if AUDIT_DEBUG == 2
1173 printk(KERN_ERR
"%s:%d(:%d): __putname(%p)\n",
1174 __FILE__
, __LINE__
, context
->serial
, name
);
1175 if (context
->name_count
) {
1177 for (i
= 0; i
< context
->name_count
; i
++)
1178 printk(KERN_ERR
"name[%d] = %p = %s\n", i
,
1179 context
->names
[i
].name
,
1180 context
->names
[i
].name
?: "(null)");
1187 ++context
->put_count
;
1188 if (context
->put_count
> context
->name_count
) {
1189 printk(KERN_ERR
"%s:%d(:%d): major=%d"
1190 " in_syscall=%d putname(%p) name_count=%d"
1193 context
->serial
, context
->major
,
1194 context
->in_syscall
, name
, context
->name_count
,
1195 context
->put_count
);
1202 static void audit_inode_context(int idx
, const struct inode
*inode
)
1204 struct audit_context
*context
= current
->audit_context
;
1206 selinux_get_inode_sid(inode
, &context
->names
[idx
].osid
);
1211 * audit_inode - store the inode and device from a lookup
1212 * @name: name being audited
1213 * @inode: inode being audited
1215 * Called from fs/namei.c:path_lookup().
1217 void __audit_inode(const char *name
, const struct inode
*inode
)
1220 struct audit_context
*context
= current
->audit_context
;
1222 if (!context
->in_syscall
)
1224 if (context
->name_count
1225 && context
->names
[context
->name_count
-1].name
1226 && context
->names
[context
->name_count
-1].name
== name
)
1227 idx
= context
->name_count
- 1;
1228 else if (context
->name_count
> 1
1229 && context
->names
[context
->name_count
-2].name
1230 && context
->names
[context
->name_count
-2].name
== name
)
1231 idx
= context
->name_count
- 2;
1233 /* FIXME: how much do we care about inodes that have no
1234 * associated name? */
1235 if (context
->name_count
>= AUDIT_NAMES
- AUDIT_NAMES_RESERVED
)
1237 idx
= context
->name_count
++;
1238 context
->names
[idx
].name
= NULL
;
1240 ++context
->ino_count
;
1243 context
->names
[idx
].ino
= inode
->i_ino
;
1244 context
->names
[idx
].dev
= inode
->i_sb
->s_dev
;
1245 context
->names
[idx
].mode
= inode
->i_mode
;
1246 context
->names
[idx
].uid
= inode
->i_uid
;
1247 context
->names
[idx
].gid
= inode
->i_gid
;
1248 context
->names
[idx
].rdev
= inode
->i_rdev
;
1249 audit_inode_context(idx
, inode
);
1253 * audit_inode_child - collect inode info for created/removed objects
1254 * @dname: inode's dentry name
1255 * @inode: inode being audited
1256 * @pino: inode number of dentry parent
1258 * For syscalls that create or remove filesystem objects, audit_inode
1259 * can only collect information for the filesystem object's parent.
1260 * This call updates the audit context with the child's information.
1261 * Syscalls that create a new filesystem object must be hooked after
1262 * the object is created. Syscalls that remove a filesystem object
1263 * must be hooked prior, in order to capture the target inode during
1264 * unsuccessful attempts.
1266 void __audit_inode_child(const char *dname
, const struct inode
*inode
,
1270 struct audit_context
*context
= current
->audit_context
;
1271 const char *found_name
= NULL
;
1274 if (!context
->in_syscall
)
1277 /* determine matching parent */
1279 goto update_context
;
1280 for (idx
= 0; idx
< context
->name_count
; idx
++)
1281 if (context
->names
[idx
].ino
== pino
) {
1282 const char *name
= context
->names
[idx
].name
;
1287 if (audit_compare_dname_path(dname
, name
, &dirlen
) == 0) {
1288 context
->names
[idx
].name_len
= dirlen
;
1295 idx
= context
->name_count
++;
1297 context
->ino_count
++;
1299 /* Re-use the name belonging to the slot for a matching parent directory.
1300 * All names for this context are relinquished in audit_free_names() */
1301 context
->names
[idx
].name
= found_name
;
1302 context
->names
[idx
].name_len
= AUDIT_NAME_FULL
;
1303 context
->names
[idx
].name_put
= 0; /* don't call __putname() */
1306 context
->names
[idx
].ino
= inode
->i_ino
;
1307 context
->names
[idx
].dev
= inode
->i_sb
->s_dev
;
1308 context
->names
[idx
].mode
= inode
->i_mode
;
1309 context
->names
[idx
].uid
= inode
->i_uid
;
1310 context
->names
[idx
].gid
= inode
->i_gid
;
1311 context
->names
[idx
].rdev
= inode
->i_rdev
;
1312 audit_inode_context(idx
, inode
);
1314 context
->names
[idx
].ino
= (unsigned long)-1;
1318 * auditsc_get_stamp - get local copies of audit_context values
1319 * @ctx: audit_context for the task
1320 * @t: timespec to store time recorded in the audit_context
1321 * @serial: serial value that is recorded in the audit_context
1323 * Also sets the context as auditable.
1325 void auditsc_get_stamp(struct audit_context
*ctx
,
1326 struct timespec
*t
, unsigned int *serial
)
1329 ctx
->serial
= audit_serial();
1330 t
->tv_sec
= ctx
->ctime
.tv_sec
;
1331 t
->tv_nsec
= ctx
->ctime
.tv_nsec
;
1332 *serial
= ctx
->serial
;
1337 * audit_set_loginuid - set a task's audit_context loginuid
1338 * @task: task whose audit context is being modified
1339 * @loginuid: loginuid value
1343 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1345 int audit_set_loginuid(struct task_struct
*task
, uid_t loginuid
)
1347 struct audit_context
*context
= task
->audit_context
;
1350 /* Only log if audit is enabled */
1351 if (context
->in_syscall
) {
1352 struct audit_buffer
*ab
;
1354 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_LOGIN
);
1356 audit_log_format(ab
, "login pid=%d uid=%u "
1357 "old auid=%u new auid=%u",
1358 task
->pid
, task
->uid
,
1359 context
->loginuid
, loginuid
);
1363 context
->loginuid
= loginuid
;
1369 * audit_get_loginuid - get the loginuid for an audit_context
1370 * @ctx: the audit_context
1372 * Returns the context's loginuid or -1 if @ctx is NULL.
1374 uid_t
audit_get_loginuid(struct audit_context
*ctx
)
1376 return ctx
? ctx
->loginuid
: -1;
1380 * __audit_mq_open - record audit data for a POSIX MQ open
1383 * @u_attr: queue attributes
1385 * Returns 0 for success or NULL context or < 0 on error.
1387 int __audit_mq_open(int oflag
, mode_t mode
, struct mq_attr __user
*u_attr
)
1389 struct audit_aux_data_mq_open
*ax
;
1390 struct audit_context
*context
= current
->audit_context
;
1395 if (likely(!context
))
1398 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1402 if (u_attr
!= NULL
) {
1403 if (copy_from_user(&ax
->attr
, u_attr
, sizeof(ax
->attr
))) {
1408 memset(&ax
->attr
, 0, sizeof(ax
->attr
));
1413 ax
->d
.type
= AUDIT_MQ_OPEN
;
1414 ax
->d
.next
= context
->aux
;
1415 context
->aux
= (void *)ax
;
1420 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1421 * @mqdes: MQ descriptor
1422 * @msg_len: Message length
1423 * @msg_prio: Message priority
1424 * @u_abs_timeout: Message timeout in absolute time
1426 * Returns 0 for success or NULL context or < 0 on error.
1428 int __audit_mq_timedsend(mqd_t mqdes
, size_t msg_len
, unsigned int msg_prio
,
1429 const struct timespec __user
*u_abs_timeout
)
1431 struct audit_aux_data_mq_sendrecv
*ax
;
1432 struct audit_context
*context
= current
->audit_context
;
1437 if (likely(!context
))
1440 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1444 if (u_abs_timeout
!= NULL
) {
1445 if (copy_from_user(&ax
->abs_timeout
, u_abs_timeout
, sizeof(ax
->abs_timeout
))) {
1450 memset(&ax
->abs_timeout
, 0, sizeof(ax
->abs_timeout
));
1453 ax
->msg_len
= msg_len
;
1454 ax
->msg_prio
= msg_prio
;
1456 ax
->d
.type
= AUDIT_MQ_SENDRECV
;
1457 ax
->d
.next
= context
->aux
;
1458 context
->aux
= (void *)ax
;
1463 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1464 * @mqdes: MQ descriptor
1465 * @msg_len: Message length
1466 * @u_msg_prio: Message priority
1467 * @u_abs_timeout: Message timeout in absolute time
1469 * Returns 0 for success or NULL context or < 0 on error.
1471 int __audit_mq_timedreceive(mqd_t mqdes
, size_t msg_len
,
1472 unsigned int __user
*u_msg_prio
,
1473 const struct timespec __user
*u_abs_timeout
)
1475 struct audit_aux_data_mq_sendrecv
*ax
;
1476 struct audit_context
*context
= current
->audit_context
;
1481 if (likely(!context
))
1484 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1488 if (u_msg_prio
!= NULL
) {
1489 if (get_user(ax
->msg_prio
, u_msg_prio
)) {
1496 if (u_abs_timeout
!= NULL
) {
1497 if (copy_from_user(&ax
->abs_timeout
, u_abs_timeout
, sizeof(ax
->abs_timeout
))) {
1502 memset(&ax
->abs_timeout
, 0, sizeof(ax
->abs_timeout
));
1505 ax
->msg_len
= msg_len
;
1507 ax
->d
.type
= AUDIT_MQ_SENDRECV
;
1508 ax
->d
.next
= context
->aux
;
1509 context
->aux
= (void *)ax
;
1514 * __audit_mq_notify - record audit data for a POSIX MQ notify
1515 * @mqdes: MQ descriptor
1516 * @u_notification: Notification event
1518 * Returns 0 for success or NULL context or < 0 on error.
1521 int __audit_mq_notify(mqd_t mqdes
, const struct sigevent __user
*u_notification
)
1523 struct audit_aux_data_mq_notify
*ax
;
1524 struct audit_context
*context
= current
->audit_context
;
1529 if (likely(!context
))
1532 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1536 if (u_notification
!= NULL
) {
1537 if (copy_from_user(&ax
->notification
, u_notification
, sizeof(ax
->notification
))) {
1542 memset(&ax
->notification
, 0, sizeof(ax
->notification
));
1546 ax
->d
.type
= AUDIT_MQ_NOTIFY
;
1547 ax
->d
.next
= context
->aux
;
1548 context
->aux
= (void *)ax
;
1553 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1554 * @mqdes: MQ descriptor
1557 * Returns 0 for success or NULL context or < 0 on error.
1559 int __audit_mq_getsetattr(mqd_t mqdes
, struct mq_attr
*mqstat
)
1561 struct audit_aux_data_mq_getsetattr
*ax
;
1562 struct audit_context
*context
= current
->audit_context
;
1567 if (likely(!context
))
1570 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1575 ax
->mqstat
= *mqstat
;
1577 ax
->d
.type
= AUDIT_MQ_GETSETATTR
;
1578 ax
->d
.next
= context
->aux
;
1579 context
->aux
= (void *)ax
;
1584 * audit_ipc_obj - record audit data for ipc object
1585 * @ipcp: ipc permissions
1587 * Returns 0 for success or NULL context or < 0 on error.
1589 int __audit_ipc_obj(struct kern_ipc_perm
*ipcp
)
1591 struct audit_aux_data_ipcctl
*ax
;
1592 struct audit_context
*context
= current
->audit_context
;
1594 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1598 ax
->uid
= ipcp
->uid
;
1599 ax
->gid
= ipcp
->gid
;
1600 ax
->mode
= ipcp
->mode
;
1601 selinux_get_ipc_sid(ipcp
, &ax
->osid
);
1603 ax
->d
.type
= AUDIT_IPC
;
1604 ax
->d
.next
= context
->aux
;
1605 context
->aux
= (void *)ax
;
1610 * audit_ipc_set_perm - record audit data for new ipc permissions
1611 * @qbytes: msgq bytes
1612 * @uid: msgq user id
1613 * @gid: msgq group id
1614 * @mode: msgq mode (permissions)
1616 * Returns 0 for success or NULL context or < 0 on error.
1618 int __audit_ipc_set_perm(unsigned long qbytes
, uid_t uid
, gid_t gid
, mode_t mode
)
1620 struct audit_aux_data_ipcctl
*ax
;
1621 struct audit_context
*context
= current
->audit_context
;
1623 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1627 ax
->qbytes
= qbytes
;
1632 ax
->d
.type
= AUDIT_IPC_SET_PERM
;
1633 ax
->d
.next
= context
->aux
;
1634 context
->aux
= (void *)ax
;
1638 int audit_bprm(struct linux_binprm
*bprm
)
1640 struct audit_aux_data_execve
*ax
;
1641 struct audit_context
*context
= current
->audit_context
;
1642 unsigned long p
, next
;
1645 if (likely(!audit_enabled
|| !context
))
1648 ax
= kmalloc(sizeof(*ax
) + PAGE_SIZE
* MAX_ARG_PAGES
- bprm
->p
,
1653 ax
->argc
= bprm
->argc
;
1654 ax
->envc
= bprm
->envc
;
1655 for (p
= bprm
->p
, to
= ax
->mem
; p
< MAX_ARG_PAGES
*PAGE_SIZE
; p
= next
) {
1656 struct page
*page
= bprm
->page
[p
/ PAGE_SIZE
];
1657 void *kaddr
= kmap(page
);
1658 next
= (p
+ PAGE_SIZE
) & ~(PAGE_SIZE
- 1);
1659 memcpy(to
, kaddr
+ (p
& (PAGE_SIZE
- 1)), next
- p
);
1664 ax
->d
.type
= AUDIT_EXECVE
;
1665 ax
->d
.next
= context
->aux
;
1666 context
->aux
= (void *)ax
;
1672 * audit_socketcall - record audit data for sys_socketcall
1673 * @nargs: number of args
1676 * Returns 0 for success or NULL context or < 0 on error.
1678 int audit_socketcall(int nargs
, unsigned long *args
)
1680 struct audit_aux_data_socketcall
*ax
;
1681 struct audit_context
*context
= current
->audit_context
;
1683 if (likely(!context
))
1686 ax
= kmalloc(sizeof(*ax
) + nargs
* sizeof(unsigned long), GFP_KERNEL
);
1691 memcpy(ax
->args
, args
, nargs
* sizeof(unsigned long));
1693 ax
->d
.type
= AUDIT_SOCKETCALL
;
1694 ax
->d
.next
= context
->aux
;
1695 context
->aux
= (void *)ax
;
1700 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1701 * @len: data length in user space
1702 * @a: data address in kernel space
1704 * Returns 0 for success or NULL context or < 0 on error.
1706 int audit_sockaddr(int len
, void *a
)
1708 struct audit_aux_data_sockaddr
*ax
;
1709 struct audit_context
*context
= current
->audit_context
;
1711 if (likely(!context
))
1714 ax
= kmalloc(sizeof(*ax
) + len
, GFP_KERNEL
);
1719 memcpy(ax
->a
, a
, len
);
1721 ax
->d
.type
= AUDIT_SOCKADDR
;
1722 ax
->d
.next
= context
->aux
;
1723 context
->aux
= (void *)ax
;
1728 * audit_avc_path - record the granting or denial of permissions
1729 * @dentry: dentry to record
1730 * @mnt: mnt to record
1732 * Returns 0 for success or NULL context or < 0 on error.
1734 * Called from security/selinux/avc.c::avc_audit()
1736 int audit_avc_path(struct dentry
*dentry
, struct vfsmount
*mnt
)
1738 struct audit_aux_data_path
*ax
;
1739 struct audit_context
*context
= current
->audit_context
;
1741 if (likely(!context
))
1744 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1748 ax
->dentry
= dget(dentry
);
1749 ax
->mnt
= mntget(mnt
);
1751 ax
->d
.type
= AUDIT_AVC_PATH
;
1752 ax
->d
.next
= context
->aux
;
1753 context
->aux
= (void *)ax
;
1758 * audit_signal_info - record signal info for shutting down audit subsystem
1759 * @sig: signal value
1760 * @t: task being signaled
1762 * If the audit subsystem is being terminated, record the task (pid)
1763 * and uid that is doing that.
1765 void __audit_signal_info(int sig
, struct task_struct
*t
)
1767 extern pid_t audit_sig_pid
;
1768 extern uid_t audit_sig_uid
;
1769 extern u32 audit_sig_sid
;
1771 if (sig
== SIGTERM
|| sig
== SIGHUP
|| sig
== SIGUSR1
) {
1772 struct task_struct
*tsk
= current
;
1773 struct audit_context
*ctx
= tsk
->audit_context
;
1774 audit_sig_pid
= tsk
->pid
;
1776 audit_sig_uid
= ctx
->loginuid
;
1778 audit_sig_uid
= tsk
->uid
;
1779 selinux_get_task_sid(tsk
, &audit_sig_sid
);