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/highmem.h>
68 #include <linux/syscalls.h>
72 extern struct list_head audit_filter_list
[];
74 /* No syscall auditing will take place unless audit_enabled != 0. */
75 extern int audit_enabled
;
77 /* AUDIT_NAMES is the number of slots we reserve in the audit_context
78 * for saving names from getname(). */
79 #define AUDIT_NAMES 20
81 /* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
82 * audit_context from being used for nameless inodes from
84 #define AUDIT_NAMES_RESERVED 7
86 /* Indicates that audit should log the full pathname. */
87 #define AUDIT_NAME_FULL -1
89 /* number of audit rules */
92 /* When fs/namei.c:getname() is called, we store the pointer in name and
93 * we don't let putname() free it (instead we free all of the saved
94 * pointers at syscall exit time).
96 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
99 int name_len
; /* number of name's characters to log */
100 unsigned name_put
; /* call __putname() for this name */
110 struct audit_aux_data
{
111 struct audit_aux_data
*next
;
115 #define AUDIT_AUX_IPCPERM 0
117 struct audit_aux_data_mq_open
{
118 struct audit_aux_data d
;
124 struct audit_aux_data_mq_sendrecv
{
125 struct audit_aux_data d
;
128 unsigned int msg_prio
;
129 struct timespec abs_timeout
;
132 struct audit_aux_data_mq_notify
{
133 struct audit_aux_data d
;
135 struct sigevent notification
;
138 struct audit_aux_data_mq_getsetattr
{
139 struct audit_aux_data d
;
141 struct mq_attr mqstat
;
144 struct audit_aux_data_ipcctl
{
145 struct audit_aux_data d
;
147 unsigned long qbytes
;
154 struct audit_aux_data_execve
{
155 struct audit_aux_data d
;
161 struct audit_aux_data_socketcall
{
162 struct audit_aux_data d
;
164 unsigned long args
[0];
167 struct audit_aux_data_sockaddr
{
168 struct audit_aux_data d
;
173 struct audit_aux_data_fd_pair
{
174 struct audit_aux_data d
;
178 struct audit_aux_data_path
{
179 struct audit_aux_data d
;
180 struct dentry
*dentry
;
181 struct vfsmount
*mnt
;
184 /* The per-task audit context. */
185 struct audit_context
{
186 int dummy
; /* must be the first element */
187 int in_syscall
; /* 1 if task is in a syscall */
188 enum audit_state state
;
189 unsigned int serial
; /* serial number for record */
190 struct timespec ctime
; /* time of syscall entry */
191 uid_t loginuid
; /* login uid (identity) */
192 int major
; /* syscall number */
193 unsigned long argv
[4]; /* syscall arguments */
194 int return_valid
; /* return code is valid */
195 long return_code
;/* syscall return code */
196 int auditable
; /* 1 if record should be written */
198 struct audit_names names
[AUDIT_NAMES
];
199 char * filterkey
; /* key for rule that triggered record */
201 struct vfsmount
* pwdmnt
;
202 struct audit_context
*previous
; /* For nested syscalls */
203 struct audit_aux_data
*aux
;
205 /* Save things to print about task_struct */
207 uid_t uid
, euid
, suid
, fsuid
;
208 gid_t gid
, egid
, sgid
, fsgid
;
209 unsigned long personality
;
218 #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
219 static inline int open_arg(int flags
, int mask
)
221 int n
= ACC_MODE(flags
);
222 if (flags
& (O_TRUNC
| O_CREAT
))
223 n
|= AUDIT_PERM_WRITE
;
227 static int audit_match_perm(struct audit_context
*ctx
, int mask
)
229 unsigned n
= ctx
->major
;
230 switch (audit_classify_syscall(ctx
->arch
, n
)) {
232 if ((mask
& AUDIT_PERM_WRITE
) &&
233 audit_match_class(AUDIT_CLASS_WRITE
, n
))
235 if ((mask
& AUDIT_PERM_READ
) &&
236 audit_match_class(AUDIT_CLASS_READ
, n
))
238 if ((mask
& AUDIT_PERM_ATTR
) &&
239 audit_match_class(AUDIT_CLASS_CHATTR
, n
))
242 case 1: /* 32bit on biarch */
243 if ((mask
& AUDIT_PERM_WRITE
) &&
244 audit_match_class(AUDIT_CLASS_WRITE_32
, n
))
246 if ((mask
& AUDIT_PERM_READ
) &&
247 audit_match_class(AUDIT_CLASS_READ_32
, n
))
249 if ((mask
& AUDIT_PERM_ATTR
) &&
250 audit_match_class(AUDIT_CLASS_CHATTR_32
, n
))
254 return mask
& ACC_MODE(ctx
->argv
[1]);
256 return mask
& ACC_MODE(ctx
->argv
[2]);
257 case 4: /* socketcall */
258 return ((mask
& AUDIT_PERM_WRITE
) && ctx
->argv
[0] == SYS_BIND
);
260 return mask
& AUDIT_PERM_EXEC
;
266 /* Determine if any context name data matches a rule's watch data */
267 /* Compare a task_struct with an audit_rule. Return 1 on match, 0
269 static int audit_filter_rules(struct task_struct
*tsk
,
270 struct audit_krule
*rule
,
271 struct audit_context
*ctx
,
272 struct audit_names
*name
,
273 enum audit_state
*state
)
275 int i
, j
, need_sid
= 1;
278 for (i
= 0; i
< rule
->field_count
; i
++) {
279 struct audit_field
*f
= &rule
->fields
[i
];
284 result
= audit_comparator(tsk
->pid
, f
->op
, f
->val
);
289 ctx
->ppid
= sys_getppid();
290 result
= audit_comparator(ctx
->ppid
, f
->op
, f
->val
);
294 result
= audit_comparator(tsk
->uid
, f
->op
, f
->val
);
297 result
= audit_comparator(tsk
->euid
, f
->op
, f
->val
);
300 result
= audit_comparator(tsk
->suid
, f
->op
, f
->val
);
303 result
= audit_comparator(tsk
->fsuid
, f
->op
, f
->val
);
306 result
= audit_comparator(tsk
->gid
, f
->op
, f
->val
);
309 result
= audit_comparator(tsk
->egid
, f
->op
, f
->val
);
312 result
= audit_comparator(tsk
->sgid
, f
->op
, f
->val
);
315 result
= audit_comparator(tsk
->fsgid
, f
->op
, f
->val
);
318 result
= audit_comparator(tsk
->personality
, f
->op
, f
->val
);
322 result
= audit_comparator(ctx
->arch
, f
->op
, f
->val
);
326 if (ctx
&& ctx
->return_valid
)
327 result
= audit_comparator(ctx
->return_code
, f
->op
, f
->val
);
330 if (ctx
&& ctx
->return_valid
) {
332 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_SUCCESS
);
334 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_FAILURE
);
339 result
= audit_comparator(MAJOR(name
->dev
),
342 for (j
= 0; j
< ctx
->name_count
; j
++) {
343 if (audit_comparator(MAJOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
352 result
= audit_comparator(MINOR(name
->dev
),
355 for (j
= 0; j
< ctx
->name_count
; j
++) {
356 if (audit_comparator(MINOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
365 result
= (name
->ino
== f
->val
);
367 for (j
= 0; j
< ctx
->name_count
; j
++) {
368 if (audit_comparator(ctx
->names
[j
].ino
, f
->op
, f
->val
)) {
376 if (name
&& rule
->watch
->ino
!= (unsigned long)-1)
377 result
= (name
->dev
== rule
->watch
->dev
&&
378 name
->ino
== rule
->watch
->ino
);
383 result
= audit_comparator(ctx
->loginuid
, f
->op
, f
->val
);
385 case AUDIT_SUBJ_USER
:
386 case AUDIT_SUBJ_ROLE
:
387 case AUDIT_SUBJ_TYPE
:
390 /* NOTE: this may return negative values indicating
391 a temporary error. We simply treat this as a
392 match for now to avoid losing information that
393 may be wanted. An error message will also be
397 selinux_get_task_sid(tsk
, &sid
);
400 result
= selinux_audit_rule_match(sid
, f
->type
,
409 case AUDIT_OBJ_LEV_LOW
:
410 case AUDIT_OBJ_LEV_HIGH
:
411 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
414 /* Find files that match */
416 result
= selinux_audit_rule_match(
417 name
->osid
, f
->type
, f
->op
,
420 for (j
= 0; j
< ctx
->name_count
; j
++) {
421 if (selinux_audit_rule_match(
430 /* Find ipc objects that match */
432 struct audit_aux_data
*aux
;
433 for (aux
= ctx
->aux
; aux
;
435 if (aux
->type
== AUDIT_IPC
) {
436 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
437 if (selinux_audit_rule_match(axi
->osid
, f
->type
, f
->op
, f
->se_rule
, ctx
)) {
451 result
= audit_comparator(ctx
->argv
[f
->type
-AUDIT_ARG0
], f
->op
, f
->val
);
453 case AUDIT_FILTERKEY
:
454 /* ignore this field for filtering */
458 result
= audit_match_perm(ctx
, f
->val
);
466 ctx
->filterkey
= kstrdup(rule
->filterkey
, GFP_ATOMIC
);
467 switch (rule
->action
) {
468 case AUDIT_NEVER
: *state
= AUDIT_DISABLED
; break;
469 case AUDIT_ALWAYS
: *state
= AUDIT_RECORD_CONTEXT
; break;
474 /* At process creation time, we can determine if system-call auditing is
475 * completely disabled for this task. Since we only have the task
476 * structure at this point, we can only check uid and gid.
478 static enum audit_state
audit_filter_task(struct task_struct
*tsk
)
480 struct audit_entry
*e
;
481 enum audit_state state
;
484 list_for_each_entry_rcu(e
, &audit_filter_list
[AUDIT_FILTER_TASK
], list
) {
485 if (audit_filter_rules(tsk
, &e
->rule
, NULL
, NULL
, &state
)) {
491 return AUDIT_BUILD_CONTEXT
;
494 /* At syscall entry and exit time, this filter is called if the
495 * audit_state is not low enough that auditing cannot take place, but is
496 * also not high enough that we already know we have to write an audit
497 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
499 static enum audit_state
audit_filter_syscall(struct task_struct
*tsk
,
500 struct audit_context
*ctx
,
501 struct list_head
*list
)
503 struct audit_entry
*e
;
504 enum audit_state state
;
506 if (audit_pid
&& tsk
->tgid
== audit_pid
)
507 return AUDIT_DISABLED
;
510 if (!list_empty(list
)) {
511 int word
= AUDIT_WORD(ctx
->major
);
512 int bit
= AUDIT_BIT(ctx
->major
);
514 list_for_each_entry_rcu(e
, list
, list
) {
515 if ((e
->rule
.mask
[word
] & bit
) == bit
&&
516 audit_filter_rules(tsk
, &e
->rule
, ctx
, NULL
,
524 return AUDIT_BUILD_CONTEXT
;
527 /* At syscall exit time, this filter is called if any audit_names[] have been
528 * collected during syscall processing. We only check rules in sublists at hash
529 * buckets applicable to the inode numbers in audit_names[].
530 * Regarding audit_state, same rules apply as for audit_filter_syscall().
532 enum audit_state
audit_filter_inodes(struct task_struct
*tsk
,
533 struct audit_context
*ctx
)
536 struct audit_entry
*e
;
537 enum audit_state state
;
539 if (audit_pid
&& tsk
->tgid
== audit_pid
)
540 return AUDIT_DISABLED
;
543 for (i
= 0; i
< ctx
->name_count
; i
++) {
544 int word
= AUDIT_WORD(ctx
->major
);
545 int bit
= AUDIT_BIT(ctx
->major
);
546 struct audit_names
*n
= &ctx
->names
[i
];
547 int h
= audit_hash_ino((u32
)n
->ino
);
548 struct list_head
*list
= &audit_inode_hash
[h
];
550 if (list_empty(list
))
553 list_for_each_entry_rcu(e
, list
, list
) {
554 if ((e
->rule
.mask
[word
] & bit
) == bit
&&
555 audit_filter_rules(tsk
, &e
->rule
, ctx
, n
, &state
)) {
562 return AUDIT_BUILD_CONTEXT
;
565 void audit_set_auditable(struct audit_context
*ctx
)
570 static inline struct audit_context
*audit_get_context(struct task_struct
*tsk
,
574 struct audit_context
*context
= tsk
->audit_context
;
576 if (likely(!context
))
578 context
->return_valid
= return_valid
;
579 context
->return_code
= return_code
;
581 if (context
->in_syscall
&& !context
->dummy
&& !context
->auditable
) {
582 enum audit_state state
;
584 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_EXIT
]);
585 if (state
== AUDIT_RECORD_CONTEXT
) {
586 context
->auditable
= 1;
590 state
= audit_filter_inodes(tsk
, context
);
591 if (state
== AUDIT_RECORD_CONTEXT
)
592 context
->auditable
= 1;
598 tsk
->audit_context
= NULL
;
602 static inline void audit_free_names(struct audit_context
*context
)
607 if (context
->auditable
608 ||context
->put_count
+ context
->ino_count
!= context
->name_count
) {
609 printk(KERN_ERR
"%s:%d(:%d): major=%d in_syscall=%d"
610 " name_count=%d put_count=%d"
611 " ino_count=%d [NOT freeing]\n",
613 context
->serial
, context
->major
, context
->in_syscall
,
614 context
->name_count
, context
->put_count
,
616 for (i
= 0; i
< context
->name_count
; i
++) {
617 printk(KERN_ERR
"names[%d] = %p = %s\n", i
,
618 context
->names
[i
].name
,
619 context
->names
[i
].name
?: "(null)");
626 context
->put_count
= 0;
627 context
->ino_count
= 0;
630 for (i
= 0; i
< context
->name_count
; i
++) {
631 if (context
->names
[i
].name
&& context
->names
[i
].name_put
)
632 __putname(context
->names
[i
].name
);
634 context
->name_count
= 0;
638 mntput(context
->pwdmnt
);
640 context
->pwdmnt
= NULL
;
643 static inline void audit_free_aux(struct audit_context
*context
)
645 struct audit_aux_data
*aux
;
647 while ((aux
= context
->aux
)) {
648 if (aux
->type
== AUDIT_AVC_PATH
) {
649 struct audit_aux_data_path
*axi
= (void *)aux
;
654 context
->aux
= aux
->next
;
659 static inline void audit_zero_context(struct audit_context
*context
,
660 enum audit_state state
)
662 uid_t loginuid
= context
->loginuid
;
664 memset(context
, 0, sizeof(*context
));
665 context
->state
= state
;
666 context
->loginuid
= loginuid
;
669 static inline struct audit_context
*audit_alloc_context(enum audit_state state
)
671 struct audit_context
*context
;
673 if (!(context
= kmalloc(sizeof(*context
), GFP_KERNEL
)))
675 audit_zero_context(context
, state
);
680 * audit_alloc - allocate an audit context block for a task
683 * Filter on the task information and allocate a per-task audit context
684 * if necessary. Doing so turns on system call auditing for the
685 * specified task. This is called from copy_process, so no lock is
688 int audit_alloc(struct task_struct
*tsk
)
690 struct audit_context
*context
;
691 enum audit_state state
;
693 if (likely(!audit_enabled
))
694 return 0; /* Return if not auditing. */
696 state
= audit_filter_task(tsk
);
697 if (likely(state
== AUDIT_DISABLED
))
700 if (!(context
= audit_alloc_context(state
))) {
701 audit_log_lost("out of memory in audit_alloc");
705 /* Preserve login uid */
706 context
->loginuid
= -1;
707 if (current
->audit_context
)
708 context
->loginuid
= current
->audit_context
->loginuid
;
710 tsk
->audit_context
= context
;
711 set_tsk_thread_flag(tsk
, TIF_SYSCALL_AUDIT
);
715 static inline void audit_free_context(struct audit_context
*context
)
717 struct audit_context
*previous
;
721 previous
= context
->previous
;
722 if (previous
|| (count
&& count
< 10)) {
724 printk(KERN_ERR
"audit(:%d): major=%d name_count=%d:"
725 " freeing multiple contexts (%d)\n",
726 context
->serial
, context
->major
,
727 context
->name_count
, count
);
729 audit_free_names(context
);
730 audit_free_aux(context
);
731 kfree(context
->filterkey
);
736 printk(KERN_ERR
"audit: freed %d contexts\n", count
);
739 void audit_log_task_context(struct audit_buffer
*ab
)
746 selinux_get_task_sid(current
, &sid
);
750 error
= selinux_sid_to_string(sid
, &ctx
, &len
);
752 if (error
!= -EINVAL
)
757 audit_log_format(ab
, " subj=%s", ctx
);
762 audit_panic("error in audit_log_task_context");
766 EXPORT_SYMBOL(audit_log_task_context
);
768 static void audit_log_task_info(struct audit_buffer
*ab
, struct task_struct
*tsk
)
770 char name
[sizeof(tsk
->comm
)];
771 struct mm_struct
*mm
= tsk
->mm
;
772 struct vm_area_struct
*vma
;
776 get_task_comm(name
, tsk
);
777 audit_log_format(ab
, " comm=");
778 audit_log_untrustedstring(ab
, name
);
781 down_read(&mm
->mmap_sem
);
784 if ((vma
->vm_flags
& VM_EXECUTABLE
) &&
786 audit_log_d_path(ab
, "exe=",
787 vma
->vm_file
->f_path
.dentry
,
788 vma
->vm_file
->f_path
.mnt
);
793 up_read(&mm
->mmap_sem
);
795 audit_log_task_context(ab
);
798 static void audit_log_exit(struct audit_context
*context
, struct task_struct
*tsk
)
800 int i
, call_panic
= 0;
801 struct audit_buffer
*ab
;
802 struct audit_aux_data
*aux
;
806 context
->pid
= tsk
->pid
;
808 context
->ppid
= sys_getppid();
809 context
->uid
= tsk
->uid
;
810 context
->gid
= tsk
->gid
;
811 context
->euid
= tsk
->euid
;
812 context
->suid
= tsk
->suid
;
813 context
->fsuid
= tsk
->fsuid
;
814 context
->egid
= tsk
->egid
;
815 context
->sgid
= tsk
->sgid
;
816 context
->fsgid
= tsk
->fsgid
;
817 context
->personality
= tsk
->personality
;
819 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_SYSCALL
);
821 return; /* audit_panic has been called */
822 audit_log_format(ab
, "arch=%x syscall=%d",
823 context
->arch
, context
->major
);
824 if (context
->personality
!= PER_LINUX
)
825 audit_log_format(ab
, " per=%lx", context
->personality
);
826 if (context
->return_valid
)
827 audit_log_format(ab
, " success=%s exit=%ld",
828 (context
->return_valid
==AUDITSC_SUCCESS
)?"yes":"no",
829 context
->return_code
);
831 mutex_lock(&tty_mutex
);
832 read_lock(&tasklist_lock
);
833 if (tsk
->signal
&& tsk
->signal
->tty
&& tsk
->signal
->tty
->name
)
834 tty
= tsk
->signal
->tty
->name
;
837 read_unlock(&tasklist_lock
);
839 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
840 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
841 " euid=%u suid=%u fsuid=%u"
842 " egid=%u sgid=%u fsgid=%u tty=%s",
853 context
->euid
, context
->suid
, context
->fsuid
,
854 context
->egid
, context
->sgid
, context
->fsgid
, tty
);
856 mutex_unlock(&tty_mutex
);
858 audit_log_task_info(ab
, tsk
);
859 if (context
->filterkey
) {
860 audit_log_format(ab
, " key=");
861 audit_log_untrustedstring(ab
, context
->filterkey
);
863 audit_log_format(ab
, " key=(null)");
866 for (aux
= context
->aux
; aux
; aux
= aux
->next
) {
868 ab
= audit_log_start(context
, GFP_KERNEL
, aux
->type
);
870 continue; /* audit_panic has been called */
873 case AUDIT_MQ_OPEN
: {
874 struct audit_aux_data_mq_open
*axi
= (void *)aux
;
876 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
877 "mq_msgsize=%ld mq_curmsgs=%ld",
878 axi
->oflag
, axi
->mode
, axi
->attr
.mq_flags
,
879 axi
->attr
.mq_maxmsg
, axi
->attr
.mq_msgsize
,
880 axi
->attr
.mq_curmsgs
);
883 case AUDIT_MQ_SENDRECV
: {
884 struct audit_aux_data_mq_sendrecv
*axi
= (void *)aux
;
886 "mqdes=%d msg_len=%zd msg_prio=%u "
887 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
888 axi
->mqdes
, axi
->msg_len
, axi
->msg_prio
,
889 axi
->abs_timeout
.tv_sec
, axi
->abs_timeout
.tv_nsec
);
892 case AUDIT_MQ_NOTIFY
: {
893 struct audit_aux_data_mq_notify
*axi
= (void *)aux
;
895 "mqdes=%d sigev_signo=%d",
897 axi
->notification
.sigev_signo
);
900 case AUDIT_MQ_GETSETATTR
: {
901 struct audit_aux_data_mq_getsetattr
*axi
= (void *)aux
;
903 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
906 axi
->mqstat
.mq_flags
, axi
->mqstat
.mq_maxmsg
,
907 axi
->mqstat
.mq_msgsize
, axi
->mqstat
.mq_curmsgs
);
911 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
913 "ouid=%u ogid=%u mode=%x",
914 axi
->uid
, axi
->gid
, axi
->mode
);
915 if (axi
->osid
!= 0) {
918 if (selinux_sid_to_string(
919 axi
->osid
, &ctx
, &len
)) {
920 audit_log_format(ab
, " osid=%u",
924 audit_log_format(ab
, " obj=%s", ctx
);
929 case AUDIT_IPC_SET_PERM
: {
930 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
932 "qbytes=%lx ouid=%u ogid=%u mode=%x",
933 axi
->qbytes
, axi
->uid
, axi
->gid
, axi
->mode
);
937 struct audit_aux_data_execve
*axi
= (void *)aux
;
940 for (i
= 0, p
= axi
->mem
; i
< axi
->argc
; i
++) {
941 audit_log_format(ab
, "a%d=", i
);
942 p
= audit_log_untrustedstring(ab
, p
);
943 audit_log_format(ab
, "\n");
947 case AUDIT_SOCKETCALL
: {
949 struct audit_aux_data_socketcall
*axs
= (void *)aux
;
950 audit_log_format(ab
, "nargs=%d", axs
->nargs
);
951 for (i
=0; i
<axs
->nargs
; i
++)
952 audit_log_format(ab
, " a%d=%lx", i
, axs
->args
[i
]);
955 case AUDIT_SOCKADDR
: {
956 struct audit_aux_data_sockaddr
*axs
= (void *)aux
;
958 audit_log_format(ab
, "saddr=");
959 audit_log_hex(ab
, axs
->a
, axs
->len
);
962 case AUDIT_AVC_PATH
: {
963 struct audit_aux_data_path
*axi
= (void *)aux
;
964 audit_log_d_path(ab
, "path=", axi
->dentry
, axi
->mnt
);
967 case AUDIT_FD_PAIR
: {
968 struct audit_aux_data_fd_pair
*axs
= (void *)aux
;
969 audit_log_format(ab
, "fd0=%d fd1=%d", axs
->fd
[0], axs
->fd
[1]);
976 if (context
->pwd
&& context
->pwdmnt
) {
977 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_CWD
);
979 audit_log_d_path(ab
, "cwd=", context
->pwd
, context
->pwdmnt
);
983 for (i
= 0; i
< context
->name_count
; i
++) {
984 struct audit_names
*n
= &context
->names
[i
];
986 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_PATH
);
988 continue; /* audit_panic has been called */
990 audit_log_format(ab
, "item=%d", i
);
993 switch(n
->name_len
) {
994 case AUDIT_NAME_FULL
:
995 /* log the full path */
996 audit_log_format(ab
, " name=");
997 audit_log_untrustedstring(ab
, n
->name
);
1000 /* name was specified as a relative path and the
1001 * directory component is the cwd */
1002 audit_log_d_path(ab
, " name=", context
->pwd
,
1006 /* log the name's directory component */
1007 audit_log_format(ab
, " name=");
1008 audit_log_n_untrustedstring(ab
, n
->name_len
,
1012 audit_log_format(ab
, " name=(null)");
1014 if (n
->ino
!= (unsigned long)-1) {
1015 audit_log_format(ab
, " inode=%lu"
1016 " dev=%02x:%02x mode=%#o"
1017 " ouid=%u ogid=%u rdev=%02x:%02x",
1030 if (selinux_sid_to_string(
1031 n
->osid
, &ctx
, &len
)) {
1032 audit_log_format(ab
, " osid=%u", n
->osid
);
1035 audit_log_format(ab
, " obj=%s", ctx
);
1042 audit_panic("error converting sid to string");
1046 * audit_free - free a per-task audit context
1047 * @tsk: task whose audit context block to free
1049 * Called from copy_process and do_exit
1051 void audit_free(struct task_struct
*tsk
)
1053 struct audit_context
*context
;
1055 context
= audit_get_context(tsk
, 0, 0);
1056 if (likely(!context
))
1059 /* Check for system calls that do not go through the exit
1060 * function (e.g., exit_group), then free context block.
1061 * We use GFP_ATOMIC here because we might be doing this
1062 * in the context of the idle thread */
1063 /* that can happen only if we are called from do_exit() */
1064 if (context
->in_syscall
&& context
->auditable
)
1065 audit_log_exit(context
, tsk
);
1067 audit_free_context(context
);
1071 * audit_syscall_entry - fill in an audit record at syscall entry
1072 * @tsk: task being audited
1073 * @arch: architecture type
1074 * @major: major syscall type (function)
1075 * @a1: additional syscall register 1
1076 * @a2: additional syscall register 2
1077 * @a3: additional syscall register 3
1078 * @a4: additional syscall register 4
1080 * Fill in audit context at syscall entry. This only happens if the
1081 * audit context was created when the task was created and the state or
1082 * filters demand the audit context be built. If the state from the
1083 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1084 * then the record will be written at syscall exit time (otherwise, it
1085 * will only be written if another part of the kernel requests that it
1088 void audit_syscall_entry(int arch
, int major
,
1089 unsigned long a1
, unsigned long a2
,
1090 unsigned long a3
, unsigned long a4
)
1092 struct task_struct
*tsk
= current
;
1093 struct audit_context
*context
= tsk
->audit_context
;
1094 enum audit_state state
;
1099 * This happens only on certain architectures that make system
1100 * calls in kernel_thread via the entry.S interface, instead of
1101 * with direct calls. (If you are porting to a new
1102 * architecture, hitting this condition can indicate that you
1103 * got the _exit/_leave calls backward in entry.S.)
1107 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
1109 * This also happens with vm86 emulation in a non-nested manner
1110 * (entries without exits), so this case must be caught.
1112 if (context
->in_syscall
) {
1113 struct audit_context
*newctx
;
1117 "audit(:%d) pid=%d in syscall=%d;"
1118 " entering syscall=%d\n",
1119 context
->serial
, tsk
->pid
, context
->major
, major
);
1121 newctx
= audit_alloc_context(context
->state
);
1123 newctx
->previous
= context
;
1125 tsk
->audit_context
= newctx
;
1127 /* If we can't alloc a new context, the best we
1128 * can do is to leak memory (any pending putname
1129 * will be lost). The only other alternative is
1130 * to abandon auditing. */
1131 audit_zero_context(context
, context
->state
);
1134 BUG_ON(context
->in_syscall
|| context
->name_count
);
1139 context
->arch
= arch
;
1140 context
->major
= major
;
1141 context
->argv
[0] = a1
;
1142 context
->argv
[1] = a2
;
1143 context
->argv
[2] = a3
;
1144 context
->argv
[3] = a4
;
1146 state
= context
->state
;
1147 context
->dummy
= !audit_n_rules
;
1148 if (!context
->dummy
&& (state
== AUDIT_SETUP_CONTEXT
|| state
== AUDIT_BUILD_CONTEXT
))
1149 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_ENTRY
]);
1150 if (likely(state
== AUDIT_DISABLED
))
1153 context
->serial
= 0;
1154 context
->ctime
= CURRENT_TIME
;
1155 context
->in_syscall
= 1;
1156 context
->auditable
= !!(state
== AUDIT_RECORD_CONTEXT
);
1161 * audit_syscall_exit - deallocate audit context after a system call
1162 * @tsk: task being audited
1163 * @valid: success/failure flag
1164 * @return_code: syscall return value
1166 * Tear down after system call. If the audit context has been marked as
1167 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1168 * filtering, or because some other part of the kernel write an audit
1169 * message), then write out the syscall information. In call cases,
1170 * free the names stored from getname().
1172 void audit_syscall_exit(int valid
, long return_code
)
1174 struct task_struct
*tsk
= current
;
1175 struct audit_context
*context
;
1177 context
= audit_get_context(tsk
, valid
, return_code
);
1179 if (likely(!context
))
1182 if (context
->in_syscall
&& context
->auditable
)
1183 audit_log_exit(context
, tsk
);
1185 context
->in_syscall
= 0;
1186 context
->auditable
= 0;
1188 if (context
->previous
) {
1189 struct audit_context
*new_context
= context
->previous
;
1190 context
->previous
= NULL
;
1191 audit_free_context(context
);
1192 tsk
->audit_context
= new_context
;
1194 audit_free_names(context
);
1195 audit_free_aux(context
);
1196 kfree(context
->filterkey
);
1197 context
->filterkey
= NULL
;
1198 tsk
->audit_context
= context
;
1203 * audit_getname - add a name to the list
1204 * @name: name to add
1206 * Add a name to the list of audit names for this context.
1207 * Called from fs/namei.c:getname().
1209 void __audit_getname(const char *name
)
1211 struct audit_context
*context
= current
->audit_context
;
1213 if (IS_ERR(name
) || !name
)
1216 if (!context
->in_syscall
) {
1217 #if AUDIT_DEBUG == 2
1218 printk(KERN_ERR
"%s:%d(:%d): ignoring getname(%p)\n",
1219 __FILE__
, __LINE__
, context
->serial
, name
);
1224 BUG_ON(context
->name_count
>= AUDIT_NAMES
);
1225 context
->names
[context
->name_count
].name
= name
;
1226 context
->names
[context
->name_count
].name_len
= AUDIT_NAME_FULL
;
1227 context
->names
[context
->name_count
].name_put
= 1;
1228 context
->names
[context
->name_count
].ino
= (unsigned long)-1;
1229 ++context
->name_count
;
1230 if (!context
->pwd
) {
1231 read_lock(¤t
->fs
->lock
);
1232 context
->pwd
= dget(current
->fs
->pwd
);
1233 context
->pwdmnt
= mntget(current
->fs
->pwdmnt
);
1234 read_unlock(¤t
->fs
->lock
);
1239 /* audit_putname - intercept a putname request
1240 * @name: name to intercept and delay for putname
1242 * If we have stored the name from getname in the audit context,
1243 * then we delay the putname until syscall exit.
1244 * Called from include/linux/fs.h:putname().
1246 void audit_putname(const char *name
)
1248 struct audit_context
*context
= current
->audit_context
;
1251 if (!context
->in_syscall
) {
1252 #if AUDIT_DEBUG == 2
1253 printk(KERN_ERR
"%s:%d(:%d): __putname(%p)\n",
1254 __FILE__
, __LINE__
, context
->serial
, name
);
1255 if (context
->name_count
) {
1257 for (i
= 0; i
< context
->name_count
; i
++)
1258 printk(KERN_ERR
"name[%d] = %p = %s\n", i
,
1259 context
->names
[i
].name
,
1260 context
->names
[i
].name
?: "(null)");
1267 ++context
->put_count
;
1268 if (context
->put_count
> context
->name_count
) {
1269 printk(KERN_ERR
"%s:%d(:%d): major=%d"
1270 " in_syscall=%d putname(%p) name_count=%d"
1273 context
->serial
, context
->major
,
1274 context
->in_syscall
, name
, context
->name_count
,
1275 context
->put_count
);
1282 /* Copy inode data into an audit_names. */
1283 static void audit_copy_inode(struct audit_names
*name
, const struct inode
*inode
)
1285 name
->ino
= inode
->i_ino
;
1286 name
->dev
= inode
->i_sb
->s_dev
;
1287 name
->mode
= inode
->i_mode
;
1288 name
->uid
= inode
->i_uid
;
1289 name
->gid
= inode
->i_gid
;
1290 name
->rdev
= inode
->i_rdev
;
1291 selinux_get_inode_sid(inode
, &name
->osid
);
1295 * audit_inode - store the inode and device from a lookup
1296 * @name: name being audited
1297 * @inode: inode being audited
1299 * Called from fs/namei.c:path_lookup().
1301 void __audit_inode(const char *name
, const struct inode
*inode
)
1304 struct audit_context
*context
= current
->audit_context
;
1306 if (!context
->in_syscall
)
1308 if (context
->name_count
1309 && context
->names
[context
->name_count
-1].name
1310 && context
->names
[context
->name_count
-1].name
== name
)
1311 idx
= context
->name_count
- 1;
1312 else if (context
->name_count
> 1
1313 && context
->names
[context
->name_count
-2].name
1314 && context
->names
[context
->name_count
-2].name
== name
)
1315 idx
= context
->name_count
- 2;
1317 /* FIXME: how much do we care about inodes that have no
1318 * associated name? */
1319 if (context
->name_count
>= AUDIT_NAMES
- AUDIT_NAMES_RESERVED
)
1321 idx
= context
->name_count
++;
1322 context
->names
[idx
].name
= NULL
;
1324 ++context
->ino_count
;
1327 audit_copy_inode(&context
->names
[idx
], inode
);
1331 * audit_inode_child - collect inode info for created/removed objects
1332 * @dname: inode's dentry name
1333 * @inode: inode being audited
1334 * @parent: inode of dentry parent
1336 * For syscalls that create or remove filesystem objects, audit_inode
1337 * can only collect information for the filesystem object's parent.
1338 * This call updates the audit context with the child's information.
1339 * Syscalls that create a new filesystem object must be hooked after
1340 * the object is created. Syscalls that remove a filesystem object
1341 * must be hooked prior, in order to capture the target inode during
1342 * unsuccessful attempts.
1344 void __audit_inode_child(const char *dname
, const struct inode
*inode
,
1345 const struct inode
*parent
)
1348 struct audit_context
*context
= current
->audit_context
;
1349 const char *found_name
= NULL
;
1352 if (!context
->in_syscall
)
1355 /* determine matching parent */
1357 goto update_context
;
1358 for (idx
= 0; idx
< context
->name_count
; idx
++)
1359 if (context
->names
[idx
].ino
== parent
->i_ino
) {
1360 const char *name
= context
->names
[idx
].name
;
1365 if (audit_compare_dname_path(dname
, name
, &dirlen
) == 0) {
1366 context
->names
[idx
].name_len
= dirlen
;
1373 idx
= context
->name_count
;
1374 if (context
->name_count
== AUDIT_NAMES
) {
1375 printk(KERN_DEBUG
"name_count maxed and losing %s\n",
1376 found_name
?: "(null)");
1379 context
->name_count
++;
1381 context
->ino_count
++;
1383 /* Re-use the name belonging to the slot for a matching parent directory.
1384 * All names for this context are relinquished in audit_free_names() */
1385 context
->names
[idx
].name
= found_name
;
1386 context
->names
[idx
].name_len
= AUDIT_NAME_FULL
;
1387 context
->names
[idx
].name_put
= 0; /* don't call __putname() */
1390 context
->names
[idx
].ino
= (unsigned long)-1;
1392 audit_copy_inode(&context
->names
[idx
], inode
);
1394 /* A parent was not found in audit_names, so copy the inode data for the
1395 * provided parent. */
1397 idx
= context
->name_count
;
1398 if (context
->name_count
== AUDIT_NAMES
) {
1400 "name_count maxed and losing parent inode data: dev=%02x:%02x, inode=%lu",
1401 MAJOR(parent
->i_sb
->s_dev
),
1402 MINOR(parent
->i_sb
->s_dev
),
1406 context
->name_count
++;
1408 context
->ino_count
++;
1410 audit_copy_inode(&context
->names
[idx
], parent
);
1415 * audit_inode_update - update inode info for last collected name
1416 * @inode: inode being audited
1418 * When open() is called on an existing object with the O_CREAT flag, the inode
1419 * data audit initially collects is incorrect. This additional hook ensures
1420 * audit has the inode data for the actual object to be opened.
1422 void __audit_inode_update(const struct inode
*inode
)
1424 struct audit_context
*context
= current
->audit_context
;
1427 if (!context
->in_syscall
|| !inode
)
1430 if (context
->name_count
== 0) {
1431 context
->name_count
++;
1433 context
->ino_count
++;
1436 idx
= context
->name_count
- 1;
1438 audit_copy_inode(&context
->names
[idx
], inode
);
1442 * auditsc_get_stamp - get local copies of audit_context values
1443 * @ctx: audit_context for the task
1444 * @t: timespec to store time recorded in the audit_context
1445 * @serial: serial value that is recorded in the audit_context
1447 * Also sets the context as auditable.
1449 void auditsc_get_stamp(struct audit_context
*ctx
,
1450 struct timespec
*t
, unsigned int *serial
)
1453 ctx
->serial
= audit_serial();
1454 t
->tv_sec
= ctx
->ctime
.tv_sec
;
1455 t
->tv_nsec
= ctx
->ctime
.tv_nsec
;
1456 *serial
= ctx
->serial
;
1461 * audit_set_loginuid - set a task's audit_context loginuid
1462 * @task: task whose audit context is being modified
1463 * @loginuid: loginuid value
1467 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1469 int audit_set_loginuid(struct task_struct
*task
, uid_t loginuid
)
1471 struct audit_context
*context
= task
->audit_context
;
1474 /* Only log if audit is enabled */
1475 if (context
->in_syscall
) {
1476 struct audit_buffer
*ab
;
1478 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_LOGIN
);
1480 audit_log_format(ab
, "login pid=%d uid=%u "
1481 "old auid=%u new auid=%u",
1482 task
->pid
, task
->uid
,
1483 context
->loginuid
, loginuid
);
1487 context
->loginuid
= loginuid
;
1493 * audit_get_loginuid - get the loginuid for an audit_context
1494 * @ctx: the audit_context
1496 * Returns the context's loginuid or -1 if @ctx is NULL.
1498 uid_t
audit_get_loginuid(struct audit_context
*ctx
)
1500 return ctx
? ctx
->loginuid
: -1;
1503 EXPORT_SYMBOL(audit_get_loginuid
);
1506 * __audit_mq_open - record audit data for a POSIX MQ open
1509 * @u_attr: queue attributes
1511 * Returns 0 for success or NULL context or < 0 on error.
1513 int __audit_mq_open(int oflag
, mode_t mode
, struct mq_attr __user
*u_attr
)
1515 struct audit_aux_data_mq_open
*ax
;
1516 struct audit_context
*context
= current
->audit_context
;
1521 if (likely(!context
))
1524 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1528 if (u_attr
!= NULL
) {
1529 if (copy_from_user(&ax
->attr
, u_attr
, sizeof(ax
->attr
))) {
1534 memset(&ax
->attr
, 0, sizeof(ax
->attr
));
1539 ax
->d
.type
= AUDIT_MQ_OPEN
;
1540 ax
->d
.next
= context
->aux
;
1541 context
->aux
= (void *)ax
;
1546 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1547 * @mqdes: MQ descriptor
1548 * @msg_len: Message length
1549 * @msg_prio: Message priority
1550 * @u_abs_timeout: Message timeout in absolute time
1552 * Returns 0 for success or NULL context or < 0 on error.
1554 int __audit_mq_timedsend(mqd_t mqdes
, size_t msg_len
, unsigned int msg_prio
,
1555 const struct timespec __user
*u_abs_timeout
)
1557 struct audit_aux_data_mq_sendrecv
*ax
;
1558 struct audit_context
*context
= current
->audit_context
;
1563 if (likely(!context
))
1566 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1570 if (u_abs_timeout
!= NULL
) {
1571 if (copy_from_user(&ax
->abs_timeout
, u_abs_timeout
, sizeof(ax
->abs_timeout
))) {
1576 memset(&ax
->abs_timeout
, 0, sizeof(ax
->abs_timeout
));
1579 ax
->msg_len
= msg_len
;
1580 ax
->msg_prio
= msg_prio
;
1582 ax
->d
.type
= AUDIT_MQ_SENDRECV
;
1583 ax
->d
.next
= context
->aux
;
1584 context
->aux
= (void *)ax
;
1589 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1590 * @mqdes: MQ descriptor
1591 * @msg_len: Message length
1592 * @u_msg_prio: Message priority
1593 * @u_abs_timeout: Message timeout in absolute time
1595 * Returns 0 for success or NULL context or < 0 on error.
1597 int __audit_mq_timedreceive(mqd_t mqdes
, size_t msg_len
,
1598 unsigned int __user
*u_msg_prio
,
1599 const struct timespec __user
*u_abs_timeout
)
1601 struct audit_aux_data_mq_sendrecv
*ax
;
1602 struct audit_context
*context
= current
->audit_context
;
1607 if (likely(!context
))
1610 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1614 if (u_msg_prio
!= NULL
) {
1615 if (get_user(ax
->msg_prio
, u_msg_prio
)) {
1622 if (u_abs_timeout
!= NULL
) {
1623 if (copy_from_user(&ax
->abs_timeout
, u_abs_timeout
, sizeof(ax
->abs_timeout
))) {
1628 memset(&ax
->abs_timeout
, 0, sizeof(ax
->abs_timeout
));
1631 ax
->msg_len
= msg_len
;
1633 ax
->d
.type
= AUDIT_MQ_SENDRECV
;
1634 ax
->d
.next
= context
->aux
;
1635 context
->aux
= (void *)ax
;
1640 * __audit_mq_notify - record audit data for a POSIX MQ notify
1641 * @mqdes: MQ descriptor
1642 * @u_notification: Notification event
1644 * Returns 0 for success or NULL context or < 0 on error.
1647 int __audit_mq_notify(mqd_t mqdes
, const struct sigevent __user
*u_notification
)
1649 struct audit_aux_data_mq_notify
*ax
;
1650 struct audit_context
*context
= current
->audit_context
;
1655 if (likely(!context
))
1658 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1662 if (u_notification
!= NULL
) {
1663 if (copy_from_user(&ax
->notification
, u_notification
, sizeof(ax
->notification
))) {
1668 memset(&ax
->notification
, 0, sizeof(ax
->notification
));
1672 ax
->d
.type
= AUDIT_MQ_NOTIFY
;
1673 ax
->d
.next
= context
->aux
;
1674 context
->aux
= (void *)ax
;
1679 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1680 * @mqdes: MQ descriptor
1683 * Returns 0 for success or NULL context or < 0 on error.
1685 int __audit_mq_getsetattr(mqd_t mqdes
, struct mq_attr
*mqstat
)
1687 struct audit_aux_data_mq_getsetattr
*ax
;
1688 struct audit_context
*context
= current
->audit_context
;
1693 if (likely(!context
))
1696 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1701 ax
->mqstat
= *mqstat
;
1703 ax
->d
.type
= AUDIT_MQ_GETSETATTR
;
1704 ax
->d
.next
= context
->aux
;
1705 context
->aux
= (void *)ax
;
1710 * audit_ipc_obj - record audit data for ipc object
1711 * @ipcp: ipc permissions
1713 * Returns 0 for success or NULL context or < 0 on error.
1715 int __audit_ipc_obj(struct kern_ipc_perm
*ipcp
)
1717 struct audit_aux_data_ipcctl
*ax
;
1718 struct audit_context
*context
= current
->audit_context
;
1720 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1724 ax
->uid
= ipcp
->uid
;
1725 ax
->gid
= ipcp
->gid
;
1726 ax
->mode
= ipcp
->mode
;
1727 selinux_get_ipc_sid(ipcp
, &ax
->osid
);
1729 ax
->d
.type
= AUDIT_IPC
;
1730 ax
->d
.next
= context
->aux
;
1731 context
->aux
= (void *)ax
;
1736 * audit_ipc_set_perm - record audit data for new ipc permissions
1737 * @qbytes: msgq bytes
1738 * @uid: msgq user id
1739 * @gid: msgq group id
1740 * @mode: msgq mode (permissions)
1742 * Returns 0 for success or NULL context or < 0 on error.
1744 int __audit_ipc_set_perm(unsigned long qbytes
, uid_t uid
, gid_t gid
, mode_t mode
)
1746 struct audit_aux_data_ipcctl
*ax
;
1747 struct audit_context
*context
= current
->audit_context
;
1749 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1753 ax
->qbytes
= qbytes
;
1758 ax
->d
.type
= AUDIT_IPC_SET_PERM
;
1759 ax
->d
.next
= context
->aux
;
1760 context
->aux
= (void *)ax
;
1764 int audit_bprm(struct linux_binprm
*bprm
)
1766 struct audit_aux_data_execve
*ax
;
1767 struct audit_context
*context
= current
->audit_context
;
1768 unsigned long p
, next
;
1771 if (likely(!audit_enabled
|| !context
|| context
->dummy
))
1774 ax
= kmalloc(sizeof(*ax
) + PAGE_SIZE
* MAX_ARG_PAGES
- bprm
->p
,
1779 ax
->argc
= bprm
->argc
;
1780 ax
->envc
= bprm
->envc
;
1781 for (p
= bprm
->p
, to
= ax
->mem
; p
< MAX_ARG_PAGES
*PAGE_SIZE
; p
= next
) {
1782 struct page
*page
= bprm
->page
[p
/ PAGE_SIZE
];
1783 void *kaddr
= kmap(page
);
1784 next
= (p
+ PAGE_SIZE
) & ~(PAGE_SIZE
- 1);
1785 memcpy(to
, kaddr
+ (p
& (PAGE_SIZE
- 1)), next
- p
);
1790 ax
->d
.type
= AUDIT_EXECVE
;
1791 ax
->d
.next
= context
->aux
;
1792 context
->aux
= (void *)ax
;
1798 * audit_socketcall - record audit data for sys_socketcall
1799 * @nargs: number of args
1802 * Returns 0 for success or NULL context or < 0 on error.
1804 int audit_socketcall(int nargs
, unsigned long *args
)
1806 struct audit_aux_data_socketcall
*ax
;
1807 struct audit_context
*context
= current
->audit_context
;
1809 if (likely(!context
|| context
->dummy
))
1812 ax
= kmalloc(sizeof(*ax
) + nargs
* sizeof(unsigned long), GFP_KERNEL
);
1817 memcpy(ax
->args
, args
, nargs
* sizeof(unsigned long));
1819 ax
->d
.type
= AUDIT_SOCKETCALL
;
1820 ax
->d
.next
= context
->aux
;
1821 context
->aux
= (void *)ax
;
1826 * __audit_fd_pair - record audit data for pipe and socketpair
1827 * @fd1: the first file descriptor
1828 * @fd2: the second file descriptor
1830 * Returns 0 for success or NULL context or < 0 on error.
1832 int __audit_fd_pair(int fd1
, int fd2
)
1834 struct audit_context
*context
= current
->audit_context
;
1835 struct audit_aux_data_fd_pair
*ax
;
1837 if (likely(!context
)) {
1841 ax
= kmalloc(sizeof(*ax
), GFP_KERNEL
);
1849 ax
->d
.type
= AUDIT_FD_PAIR
;
1850 ax
->d
.next
= context
->aux
;
1851 context
->aux
= (void *)ax
;
1856 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1857 * @len: data length in user space
1858 * @a: data address in kernel space
1860 * Returns 0 for success or NULL context or < 0 on error.
1862 int audit_sockaddr(int len
, void *a
)
1864 struct audit_aux_data_sockaddr
*ax
;
1865 struct audit_context
*context
= current
->audit_context
;
1867 if (likely(!context
|| context
->dummy
))
1870 ax
= kmalloc(sizeof(*ax
) + len
, GFP_KERNEL
);
1875 memcpy(ax
->a
, a
, len
);
1877 ax
->d
.type
= AUDIT_SOCKADDR
;
1878 ax
->d
.next
= context
->aux
;
1879 context
->aux
= (void *)ax
;
1884 * audit_avc_path - record the granting or denial of permissions
1885 * @dentry: dentry to record
1886 * @mnt: mnt to record
1888 * Returns 0 for success or NULL context or < 0 on error.
1890 * Called from security/selinux/avc.c::avc_audit()
1892 int audit_avc_path(struct dentry
*dentry
, struct vfsmount
*mnt
)
1894 struct audit_aux_data_path
*ax
;
1895 struct audit_context
*context
= current
->audit_context
;
1897 if (likely(!context
))
1900 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1904 ax
->dentry
= dget(dentry
);
1905 ax
->mnt
= mntget(mnt
);
1907 ax
->d
.type
= AUDIT_AVC_PATH
;
1908 ax
->d
.next
= context
->aux
;
1909 context
->aux
= (void *)ax
;
1914 * audit_signal_info - record signal info for shutting down audit subsystem
1915 * @sig: signal value
1916 * @t: task being signaled
1918 * If the audit subsystem is being terminated, record the task (pid)
1919 * and uid that is doing that.
1921 void __audit_signal_info(int sig
, struct task_struct
*t
)
1923 extern pid_t audit_sig_pid
;
1924 extern uid_t audit_sig_uid
;
1925 extern u32 audit_sig_sid
;
1927 if (sig
== SIGTERM
|| sig
== SIGHUP
|| sig
== SIGUSR1
) {
1928 struct task_struct
*tsk
= current
;
1929 struct audit_context
*ctx
= tsk
->audit_context
;
1930 audit_sig_pid
= tsk
->pid
;
1932 audit_sig_uid
= ctx
->loginuid
;
1934 audit_sig_uid
= tsk
->uid
;
1935 selinux_get_task_sid(tsk
, &audit_sig_sid
);