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>
49 #include <linux/namei.h>
51 #include <linux/module.h>
52 #include <linux/mount.h>
53 #include <linux/socket.h>
54 #include <linux/mqueue.h>
55 #include <linux/audit.h>
56 #include <linux/personality.h>
57 #include <linux/time.h>
58 #include <linux/netlink.h>
59 #include <linux/compiler.h>
60 #include <asm/unistd.h>
61 #include <linux/security.h>
62 #include <linux/list.h>
63 #include <linux/tty.h>
64 #include <linux/binfmts.h>
65 #include <linux/highmem.h>
66 #include <linux/syscalls.h>
67 #include <linux/inotify.h>
68 #include <linux/capability.h>
69 #include <linux/fs_struct.h>
73 /* AUDIT_NAMES is the number of slots we reserve in the audit_context
74 * for saving names from getname(). */
75 #define AUDIT_NAMES 20
77 /* Indicates that audit should log the full pathname. */
78 #define AUDIT_NAME_FULL -1
80 /* no execve audit message should be longer than this (userspace limits) */
81 #define MAX_EXECVE_AUDIT_LEN 7500
83 /* number of audit rules */
86 /* determines whether we collect data for signals sent */
89 struct audit_cap_data
{
90 kernel_cap_t permitted
;
91 kernel_cap_t inheritable
;
93 unsigned int fE
; /* effective bit of a file capability */
94 kernel_cap_t effective
; /* effective set of a process */
98 /* When fs/namei.c:getname() is called, we store the pointer in name and
99 * we don't let putname() free it (instead we free all of the saved
100 * pointers at syscall exit time).
102 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
105 int name_len
; /* number of name's characters to log */
106 unsigned name_put
; /* call __putname() for this name */
114 struct audit_cap_data fcap
;
115 unsigned int fcap_ver
;
118 struct audit_aux_data
{
119 struct audit_aux_data
*next
;
123 #define AUDIT_AUX_IPCPERM 0
125 /* Number of target pids per aux struct. */
126 #define AUDIT_AUX_PIDS 16
128 struct audit_aux_data_execve
{
129 struct audit_aux_data d
;
132 struct mm_struct
*mm
;
135 struct audit_aux_data_pids
{
136 struct audit_aux_data d
;
137 pid_t target_pid
[AUDIT_AUX_PIDS
];
138 uid_t target_auid
[AUDIT_AUX_PIDS
];
139 uid_t target_uid
[AUDIT_AUX_PIDS
];
140 unsigned int target_sessionid
[AUDIT_AUX_PIDS
];
141 u32 target_sid
[AUDIT_AUX_PIDS
];
142 char target_comm
[AUDIT_AUX_PIDS
][TASK_COMM_LEN
];
146 struct audit_aux_data_bprm_fcaps
{
147 struct audit_aux_data d
;
148 struct audit_cap_data fcap
;
149 unsigned int fcap_ver
;
150 struct audit_cap_data old_pcap
;
151 struct audit_cap_data new_pcap
;
154 struct audit_aux_data_capset
{
155 struct audit_aux_data d
;
157 struct audit_cap_data cap
;
160 struct audit_tree_refs
{
161 struct audit_tree_refs
*next
;
162 struct audit_chunk
*c
[31];
165 /* The per-task audit context. */
166 struct audit_context
{
167 int dummy
; /* must be the first element */
168 int in_syscall
; /* 1 if task is in a syscall */
169 enum audit_state state
, current_state
;
170 unsigned int serial
; /* serial number for record */
171 struct timespec ctime
; /* time of syscall entry */
172 int major
; /* syscall number */
173 unsigned long argv
[4]; /* syscall arguments */
174 int return_valid
; /* return code is valid */
175 long return_code
;/* syscall return code */
178 struct audit_names names
[AUDIT_NAMES
];
179 char * filterkey
; /* key for rule that triggered record */
181 struct audit_context
*previous
; /* For nested syscalls */
182 struct audit_aux_data
*aux
;
183 struct audit_aux_data
*aux_pids
;
184 struct sockaddr_storage
*sockaddr
;
186 /* Save things to print about task_struct */
188 uid_t uid
, euid
, suid
, fsuid
;
189 gid_t gid
, egid
, sgid
, fsgid
;
190 unsigned long personality
;
196 unsigned int target_sessionid
;
198 char target_comm
[TASK_COMM_LEN
];
200 struct audit_tree_refs
*trees
, *first_trees
;
218 unsigned long qbytes
;
222 struct mq_attr mqstat
;
231 unsigned int msg_prio
;
232 struct timespec abs_timeout
;
241 struct audit_cap_data cap
;
252 #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
253 static inline int open_arg(int flags
, int mask
)
255 int n
= ACC_MODE(flags
);
256 if (flags
& (O_TRUNC
| O_CREAT
))
257 n
|= AUDIT_PERM_WRITE
;
261 static int audit_match_perm(struct audit_context
*ctx
, int mask
)
268 switch (audit_classify_syscall(ctx
->arch
, n
)) {
270 if ((mask
& AUDIT_PERM_WRITE
) &&
271 audit_match_class(AUDIT_CLASS_WRITE
, n
))
273 if ((mask
& AUDIT_PERM_READ
) &&
274 audit_match_class(AUDIT_CLASS_READ
, n
))
276 if ((mask
& AUDIT_PERM_ATTR
) &&
277 audit_match_class(AUDIT_CLASS_CHATTR
, n
))
280 case 1: /* 32bit on biarch */
281 if ((mask
& AUDIT_PERM_WRITE
) &&
282 audit_match_class(AUDIT_CLASS_WRITE_32
, n
))
284 if ((mask
& AUDIT_PERM_READ
) &&
285 audit_match_class(AUDIT_CLASS_READ_32
, n
))
287 if ((mask
& AUDIT_PERM_ATTR
) &&
288 audit_match_class(AUDIT_CLASS_CHATTR_32
, n
))
292 return mask
& ACC_MODE(ctx
->argv
[1]);
294 return mask
& ACC_MODE(ctx
->argv
[2]);
295 case 4: /* socketcall */
296 return ((mask
& AUDIT_PERM_WRITE
) && ctx
->argv
[0] == SYS_BIND
);
298 return mask
& AUDIT_PERM_EXEC
;
304 static int audit_match_filetype(struct audit_context
*ctx
, int which
)
306 unsigned index
= which
& ~S_IFMT
;
307 mode_t mode
= which
& S_IFMT
;
312 if (index
>= ctx
->name_count
)
314 if (ctx
->names
[index
].ino
== -1)
316 if ((ctx
->names
[index
].mode
^ mode
) & S_IFMT
)
322 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
323 * ->first_trees points to its beginning, ->trees - to the current end of data.
324 * ->tree_count is the number of free entries in array pointed to by ->trees.
325 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
326 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
327 * it's going to remain 1-element for almost any setup) until we free context itself.
328 * References in it _are_ dropped - at the same time we free/drop aux stuff.
331 #ifdef CONFIG_AUDIT_TREE
332 static void audit_set_auditable(struct audit_context
*ctx
)
336 ctx
->current_state
= AUDIT_RECORD_CONTEXT
;
340 static int put_tree_ref(struct audit_context
*ctx
, struct audit_chunk
*chunk
)
342 struct audit_tree_refs
*p
= ctx
->trees
;
343 int left
= ctx
->tree_count
;
345 p
->c
[--left
] = chunk
;
346 ctx
->tree_count
= left
;
355 ctx
->tree_count
= 30;
361 static int grow_tree_refs(struct audit_context
*ctx
)
363 struct audit_tree_refs
*p
= ctx
->trees
;
364 ctx
->trees
= kzalloc(sizeof(struct audit_tree_refs
), GFP_KERNEL
);
370 p
->next
= ctx
->trees
;
372 ctx
->first_trees
= ctx
->trees
;
373 ctx
->tree_count
= 31;
378 static void unroll_tree_refs(struct audit_context
*ctx
,
379 struct audit_tree_refs
*p
, int count
)
381 #ifdef CONFIG_AUDIT_TREE
382 struct audit_tree_refs
*q
;
385 /* we started with empty chain */
386 p
= ctx
->first_trees
;
388 /* if the very first allocation has failed, nothing to do */
393 for (q
= p
; q
!= ctx
->trees
; q
= q
->next
, n
= 31) {
395 audit_put_chunk(q
->c
[n
]);
399 while (n
-- > ctx
->tree_count
) {
400 audit_put_chunk(q
->c
[n
]);
404 ctx
->tree_count
= count
;
408 static void free_tree_refs(struct audit_context
*ctx
)
410 struct audit_tree_refs
*p
, *q
;
411 for (p
= ctx
->first_trees
; p
; p
= q
) {
417 static int match_tree_refs(struct audit_context
*ctx
, struct audit_tree
*tree
)
419 #ifdef CONFIG_AUDIT_TREE
420 struct audit_tree_refs
*p
;
425 for (p
= ctx
->first_trees
; p
!= ctx
->trees
; p
= p
->next
) {
426 for (n
= 0; n
< 31; n
++)
427 if (audit_tree_match(p
->c
[n
], tree
))
432 for (n
= ctx
->tree_count
; n
< 31; n
++)
433 if (audit_tree_match(p
->c
[n
], tree
))
440 /* Determine if any context name data matches a rule's watch data */
441 /* Compare a task_struct with an audit_rule. Return 1 on match, 0
443 static int audit_filter_rules(struct task_struct
*tsk
,
444 struct audit_krule
*rule
,
445 struct audit_context
*ctx
,
446 struct audit_names
*name
,
447 enum audit_state
*state
)
449 const struct cred
*cred
= get_task_cred(tsk
);
450 int i
, j
, need_sid
= 1;
453 for (i
= 0; i
< rule
->field_count
; i
++) {
454 struct audit_field
*f
= &rule
->fields
[i
];
459 result
= audit_comparator(tsk
->pid
, f
->op
, f
->val
);
464 ctx
->ppid
= sys_getppid();
465 result
= audit_comparator(ctx
->ppid
, f
->op
, f
->val
);
469 result
= audit_comparator(cred
->uid
, f
->op
, f
->val
);
472 result
= audit_comparator(cred
->euid
, f
->op
, f
->val
);
475 result
= audit_comparator(cred
->suid
, f
->op
, f
->val
);
478 result
= audit_comparator(cred
->fsuid
, f
->op
, f
->val
);
481 result
= audit_comparator(cred
->gid
, f
->op
, f
->val
);
484 result
= audit_comparator(cred
->egid
, f
->op
, f
->val
);
487 result
= audit_comparator(cred
->sgid
, f
->op
, f
->val
);
490 result
= audit_comparator(cred
->fsgid
, f
->op
, f
->val
);
493 result
= audit_comparator(tsk
->personality
, f
->op
, f
->val
);
497 result
= audit_comparator(ctx
->arch
, f
->op
, f
->val
);
501 if (ctx
&& ctx
->return_valid
)
502 result
= audit_comparator(ctx
->return_code
, f
->op
, f
->val
);
505 if (ctx
&& ctx
->return_valid
) {
507 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_SUCCESS
);
509 result
= audit_comparator(ctx
->return_valid
, f
->op
, AUDITSC_FAILURE
);
514 result
= audit_comparator(MAJOR(name
->dev
),
517 for (j
= 0; j
< ctx
->name_count
; j
++) {
518 if (audit_comparator(MAJOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
527 result
= audit_comparator(MINOR(name
->dev
),
530 for (j
= 0; j
< ctx
->name_count
; j
++) {
531 if (audit_comparator(MINOR(ctx
->names
[j
].dev
), f
->op
, f
->val
)) {
540 result
= (name
->ino
== f
->val
);
542 for (j
= 0; j
< ctx
->name_count
; j
++) {
543 if (audit_comparator(ctx
->names
[j
].ino
, f
->op
, f
->val
)) {
551 if (name
&& rule
->watch
->ino
!= (unsigned long)-1)
552 result
= (name
->dev
== rule
->watch
->dev
&&
553 name
->ino
== rule
->watch
->ino
);
557 result
= match_tree_refs(ctx
, rule
->tree
);
562 result
= audit_comparator(tsk
->loginuid
, f
->op
, f
->val
);
564 case AUDIT_SUBJ_USER
:
565 case AUDIT_SUBJ_ROLE
:
566 case AUDIT_SUBJ_TYPE
:
569 /* NOTE: this may return negative values indicating
570 a temporary error. We simply treat this as a
571 match for now to avoid losing information that
572 may be wanted. An error message will also be
576 security_task_getsecid(tsk
, &sid
);
579 result
= security_audit_rule_match(sid
, f
->type
,
588 case AUDIT_OBJ_LEV_LOW
:
589 case AUDIT_OBJ_LEV_HIGH
:
590 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
593 /* Find files that match */
595 result
= security_audit_rule_match(
596 name
->osid
, f
->type
, f
->op
,
599 for (j
= 0; j
< ctx
->name_count
; j
++) {
600 if (security_audit_rule_match(
609 /* Find ipc objects that match */
610 if (!ctx
|| ctx
->type
!= AUDIT_IPC
)
612 if (security_audit_rule_match(ctx
->ipc
.osid
,
623 result
= audit_comparator(ctx
->argv
[f
->type
-AUDIT_ARG0
], f
->op
, f
->val
);
625 case AUDIT_FILTERKEY
:
626 /* ignore this field for filtering */
630 result
= audit_match_perm(ctx
, f
->val
);
633 result
= audit_match_filetype(ctx
, f
->val
);
644 if (rule
->prio
<= ctx
->prio
)
646 if (rule
->filterkey
) {
647 kfree(ctx
->filterkey
);
648 ctx
->filterkey
= kstrdup(rule
->filterkey
, GFP_ATOMIC
);
650 ctx
->prio
= rule
->prio
;
652 switch (rule
->action
) {
653 case AUDIT_NEVER
: *state
= AUDIT_DISABLED
; break;
654 case AUDIT_ALWAYS
: *state
= AUDIT_RECORD_CONTEXT
; break;
660 /* At process creation time, we can determine if system-call auditing is
661 * completely disabled for this task. Since we only have the task
662 * structure at this point, we can only check uid and gid.
664 static enum audit_state
audit_filter_task(struct task_struct
*tsk
, char **key
)
666 struct audit_entry
*e
;
667 enum audit_state state
;
670 list_for_each_entry_rcu(e
, &audit_filter_list
[AUDIT_FILTER_TASK
], list
) {
671 if (audit_filter_rules(tsk
, &e
->rule
, NULL
, NULL
, &state
)) {
672 if (state
== AUDIT_RECORD_CONTEXT
)
673 *key
= kstrdup(e
->rule
.filterkey
, GFP_ATOMIC
);
679 return AUDIT_BUILD_CONTEXT
;
682 /* At syscall entry and exit time, this filter is called if the
683 * audit_state is not low enough that auditing cannot take place, but is
684 * also not high enough that we already know we have to write an audit
685 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
687 static enum audit_state
audit_filter_syscall(struct task_struct
*tsk
,
688 struct audit_context
*ctx
,
689 struct list_head
*list
)
691 struct audit_entry
*e
;
692 enum audit_state state
;
694 if (audit_pid
&& tsk
->tgid
== audit_pid
)
695 return AUDIT_DISABLED
;
698 if (!list_empty(list
)) {
699 int word
= AUDIT_WORD(ctx
->major
);
700 int bit
= AUDIT_BIT(ctx
->major
);
702 list_for_each_entry_rcu(e
, list
, list
) {
703 if ((e
->rule
.mask
[word
] & bit
) == bit
&&
704 audit_filter_rules(tsk
, &e
->rule
, ctx
, NULL
,
707 ctx
->current_state
= state
;
713 return AUDIT_BUILD_CONTEXT
;
716 /* At syscall exit time, this filter is called if any audit_names[] have been
717 * collected during syscall processing. We only check rules in sublists at hash
718 * buckets applicable to the inode numbers in audit_names[].
719 * Regarding audit_state, same rules apply as for audit_filter_syscall().
721 void audit_filter_inodes(struct task_struct
*tsk
, struct audit_context
*ctx
)
724 struct audit_entry
*e
;
725 enum audit_state state
;
727 if (audit_pid
&& tsk
->tgid
== audit_pid
)
731 for (i
= 0; i
< ctx
->name_count
; i
++) {
732 int word
= AUDIT_WORD(ctx
->major
);
733 int bit
= AUDIT_BIT(ctx
->major
);
734 struct audit_names
*n
= &ctx
->names
[i
];
735 int h
= audit_hash_ino((u32
)n
->ino
);
736 struct list_head
*list
= &audit_inode_hash
[h
];
738 if (list_empty(list
))
741 list_for_each_entry_rcu(e
, list
, list
) {
742 if ((e
->rule
.mask
[word
] & bit
) == bit
&&
743 audit_filter_rules(tsk
, &e
->rule
, ctx
, n
, &state
)) {
745 ctx
->current_state
= state
;
753 static inline struct audit_context
*audit_get_context(struct task_struct
*tsk
,
757 struct audit_context
*context
= tsk
->audit_context
;
759 if (likely(!context
))
761 context
->return_valid
= return_valid
;
764 * we need to fix up the return code in the audit logs if the actual
765 * return codes are later going to be fixed up by the arch specific
768 * This is actually a test for:
769 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
770 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
772 * but is faster than a bunch of ||
774 if (unlikely(return_code
<= -ERESTARTSYS
) &&
775 (return_code
>= -ERESTART_RESTARTBLOCK
) &&
776 (return_code
!= -ENOIOCTLCMD
))
777 context
->return_code
= -EINTR
;
779 context
->return_code
= return_code
;
781 if (context
->in_syscall
&& !context
->dummy
) {
782 audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_EXIT
]);
783 audit_filter_inodes(tsk
, context
);
786 tsk
->audit_context
= NULL
;
790 static inline void audit_free_names(struct audit_context
*context
)
795 if (context
->put_count
+ context
->ino_count
!= context
->name_count
) {
796 printk(KERN_ERR
"%s:%d(:%d): major=%d in_syscall=%d"
797 " name_count=%d put_count=%d"
798 " ino_count=%d [NOT freeing]\n",
800 context
->serial
, context
->major
, context
->in_syscall
,
801 context
->name_count
, context
->put_count
,
803 for (i
= 0; i
< context
->name_count
; i
++) {
804 printk(KERN_ERR
"names[%d] = %p = %s\n", i
,
805 context
->names
[i
].name
,
806 context
->names
[i
].name
?: "(null)");
813 context
->put_count
= 0;
814 context
->ino_count
= 0;
817 for (i
= 0; i
< context
->name_count
; i
++) {
818 if (context
->names
[i
].name
&& context
->names
[i
].name_put
)
819 __putname(context
->names
[i
].name
);
821 context
->name_count
= 0;
822 path_put(&context
->pwd
);
823 context
->pwd
.dentry
= NULL
;
824 context
->pwd
.mnt
= NULL
;
827 static inline void audit_free_aux(struct audit_context
*context
)
829 struct audit_aux_data
*aux
;
831 while ((aux
= context
->aux
)) {
832 context
->aux
= aux
->next
;
835 while ((aux
= context
->aux_pids
)) {
836 context
->aux_pids
= aux
->next
;
841 static inline void audit_zero_context(struct audit_context
*context
,
842 enum audit_state state
)
844 memset(context
, 0, sizeof(*context
));
845 context
->state
= state
;
846 context
->prio
= state
== AUDIT_RECORD_CONTEXT
? ~0ULL : 0;
849 static inline struct audit_context
*audit_alloc_context(enum audit_state state
)
851 struct audit_context
*context
;
853 if (!(context
= kmalloc(sizeof(*context
), GFP_KERNEL
)))
855 audit_zero_context(context
, state
);
860 * audit_alloc - allocate an audit context block for a task
863 * Filter on the task information and allocate a per-task audit context
864 * if necessary. Doing so turns on system call auditing for the
865 * specified task. This is called from copy_process, so no lock is
868 int audit_alloc(struct task_struct
*tsk
)
870 struct audit_context
*context
;
871 enum audit_state state
;
874 if (likely(!audit_ever_enabled
))
875 return 0; /* Return if not auditing. */
877 state
= audit_filter_task(tsk
, &key
);
878 if (likely(state
== AUDIT_DISABLED
))
881 if (!(context
= audit_alloc_context(state
))) {
883 audit_log_lost("out of memory in audit_alloc");
886 context
->filterkey
= key
;
888 tsk
->audit_context
= context
;
889 set_tsk_thread_flag(tsk
, TIF_SYSCALL_AUDIT
);
893 static inline void audit_free_context(struct audit_context
*context
)
895 struct audit_context
*previous
;
899 previous
= context
->previous
;
900 if (previous
|| (count
&& count
< 10)) {
902 printk(KERN_ERR
"audit(:%d): major=%d name_count=%d:"
903 " freeing multiple contexts (%d)\n",
904 context
->serial
, context
->major
,
905 context
->name_count
, count
);
907 audit_free_names(context
);
908 unroll_tree_refs(context
, NULL
, 0);
909 free_tree_refs(context
);
910 audit_free_aux(context
);
911 kfree(context
->filterkey
);
912 kfree(context
->sockaddr
);
917 printk(KERN_ERR
"audit: freed %d contexts\n", count
);
920 void audit_log_task_context(struct audit_buffer
*ab
)
927 security_task_getsecid(current
, &sid
);
931 error
= security_secid_to_secctx(sid
, &ctx
, &len
);
933 if (error
!= -EINVAL
)
938 audit_log_format(ab
, " subj=%s", ctx
);
939 security_release_secctx(ctx
, len
);
943 audit_panic("error in audit_log_task_context");
947 EXPORT_SYMBOL(audit_log_task_context
);
949 static void audit_log_task_info(struct audit_buffer
*ab
, struct task_struct
*tsk
)
951 char name
[sizeof(tsk
->comm
)];
952 struct mm_struct
*mm
= tsk
->mm
;
953 struct vm_area_struct
*vma
;
957 get_task_comm(name
, tsk
);
958 audit_log_format(ab
, " comm=");
959 audit_log_untrustedstring(ab
, name
);
962 down_read(&mm
->mmap_sem
);
965 if ((vma
->vm_flags
& VM_EXECUTABLE
) &&
967 audit_log_d_path(ab
, "exe=",
968 &vma
->vm_file
->f_path
);
973 up_read(&mm
->mmap_sem
);
975 audit_log_task_context(ab
);
978 static int audit_log_pid_context(struct audit_context
*context
, pid_t pid
,
979 uid_t auid
, uid_t uid
, unsigned int sessionid
,
982 struct audit_buffer
*ab
;
987 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_OBJ_PID
);
991 audit_log_format(ab
, "opid=%d oauid=%d ouid=%d oses=%d", pid
, auid
,
993 if (security_secid_to_secctx(sid
, &ctx
, &len
)) {
994 audit_log_format(ab
, " obj=(none)");
997 audit_log_format(ab
, " obj=%s", ctx
);
998 security_release_secctx(ctx
, len
);
1000 audit_log_format(ab
, " ocomm=");
1001 audit_log_untrustedstring(ab
, comm
);
1008 * to_send and len_sent accounting are very loose estimates. We aren't
1009 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
1010 * within about 500 bytes (next page boundry)
1012 * why snprintf? an int is up to 12 digits long. if we just assumed when
1013 * logging that a[%d]= was going to be 16 characters long we would be wasting
1014 * space in every audit message. In one 7500 byte message we can log up to
1015 * about 1000 min size arguments. That comes down to about 50% waste of space
1016 * if we didn't do the snprintf to find out how long arg_num_len was.
1018 static int audit_log_single_execve_arg(struct audit_context
*context
,
1019 struct audit_buffer
**ab
,
1022 const char __user
*p
,
1025 char arg_num_len_buf
[12];
1026 const char __user
*tmp_p
= p
;
1027 /* how many digits are in arg_num? 3 is the length of " a=" */
1028 size_t arg_num_len
= snprintf(arg_num_len_buf
, 12, "%d", arg_num
) + 3;
1029 size_t len
, len_left
, to_send
;
1030 size_t max_execve_audit_len
= MAX_EXECVE_AUDIT_LEN
;
1031 unsigned int i
, has_cntl
= 0, too_long
= 0;
1034 /* strnlen_user includes the null we don't want to send */
1035 len_left
= len
= strnlen_user(p
, MAX_ARG_STRLEN
) - 1;
1038 * We just created this mm, if we can't find the strings
1039 * we just copied into it something is _very_ wrong. Similar
1040 * for strings that are too long, we should not have created
1043 if (unlikely((len
== -1) || len
> MAX_ARG_STRLEN
- 1)) {
1045 send_sig(SIGKILL
, current
, 0);
1049 /* walk the whole argument looking for non-ascii chars */
1051 if (len_left
> MAX_EXECVE_AUDIT_LEN
)
1052 to_send
= MAX_EXECVE_AUDIT_LEN
;
1055 ret
= copy_from_user(buf
, tmp_p
, to_send
);
1057 * There is no reason for this copy to be short. We just
1058 * copied them here, and the mm hasn't been exposed to user-
1063 send_sig(SIGKILL
, current
, 0);
1066 buf
[to_send
] = '\0';
1067 has_cntl
= audit_string_contains_control(buf
, to_send
);
1070 * hex messages get logged as 2 bytes, so we can only
1071 * send half as much in each message
1073 max_execve_audit_len
= MAX_EXECVE_AUDIT_LEN
/ 2;
1076 len_left
-= to_send
;
1078 } while (len_left
> 0);
1082 if (len
> max_execve_audit_len
)
1085 /* rewalk the argument actually logging the message */
1086 for (i
= 0; len_left
> 0; i
++) {
1089 if (len_left
> max_execve_audit_len
)
1090 to_send
= max_execve_audit_len
;
1094 /* do we have space left to send this argument in this ab? */
1095 room_left
= MAX_EXECVE_AUDIT_LEN
- arg_num_len
- *len_sent
;
1097 room_left
-= (to_send
* 2);
1099 room_left
-= to_send
;
1100 if (room_left
< 0) {
1103 *ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_EXECVE
);
1109 * first record needs to say how long the original string was
1110 * so we can be sure nothing was lost.
1112 if ((i
== 0) && (too_long
))
1113 audit_log_format(*ab
, " a%d_len=%zu", arg_num
,
1114 has_cntl
? 2*len
: len
);
1117 * normally arguments are small enough to fit and we already
1118 * filled buf above when we checked for control characters
1119 * so don't bother with another copy_from_user
1121 if (len
>= max_execve_audit_len
)
1122 ret
= copy_from_user(buf
, p
, to_send
);
1127 send_sig(SIGKILL
, current
, 0);
1130 buf
[to_send
] = '\0';
1132 /* actually log it */
1133 audit_log_format(*ab
, " a%d", arg_num
);
1135 audit_log_format(*ab
, "[%d]", i
);
1136 audit_log_format(*ab
, "=");
1138 audit_log_n_hex(*ab
, buf
, to_send
);
1140 audit_log_format(*ab
, "\"%s\"", buf
);
1143 len_left
-= to_send
;
1144 *len_sent
+= arg_num_len
;
1146 *len_sent
+= to_send
* 2;
1148 *len_sent
+= to_send
;
1150 /* include the null we didn't log */
1154 static void audit_log_execve_info(struct audit_context
*context
,
1155 struct audit_buffer
**ab
,
1156 struct audit_aux_data_execve
*axi
)
1159 size_t len
, len_sent
= 0;
1160 const char __user
*p
;
1163 if (axi
->mm
!= current
->mm
)
1164 return; /* execve failed, no additional info */
1166 p
= (const char __user
*)axi
->mm
->arg_start
;
1168 audit_log_format(*ab
, "argc=%d", axi
->argc
);
1171 * we need some kernel buffer to hold the userspace args. Just
1172 * allocate one big one rather than allocating one of the right size
1173 * for every single argument inside audit_log_single_execve_arg()
1174 * should be <8k allocation so should be pretty safe.
1176 buf
= kmalloc(MAX_EXECVE_AUDIT_LEN
+ 1, GFP_KERNEL
);
1178 audit_panic("out of memory for argv string\n");
1182 for (i
= 0; i
< axi
->argc
; i
++) {
1183 len
= audit_log_single_execve_arg(context
, ab
, i
,
1192 static void audit_log_cap(struct audit_buffer
*ab
, char *prefix
, kernel_cap_t
*cap
)
1196 audit_log_format(ab
, " %s=", prefix
);
1197 CAP_FOR_EACH_U32(i
) {
1198 audit_log_format(ab
, "%08x", cap
->cap
[(_KERNEL_CAPABILITY_U32S
-1) - i
]);
1202 static void audit_log_fcaps(struct audit_buffer
*ab
, struct audit_names
*name
)
1204 kernel_cap_t
*perm
= &name
->fcap
.permitted
;
1205 kernel_cap_t
*inh
= &name
->fcap
.inheritable
;
1208 if (!cap_isclear(*perm
)) {
1209 audit_log_cap(ab
, "cap_fp", perm
);
1212 if (!cap_isclear(*inh
)) {
1213 audit_log_cap(ab
, "cap_fi", inh
);
1218 audit_log_format(ab
, " cap_fe=%d cap_fver=%x", name
->fcap
.fE
, name
->fcap_ver
);
1221 static void show_special(struct audit_context
*context
, int *call_panic
)
1223 struct audit_buffer
*ab
;
1226 ab
= audit_log_start(context
, GFP_KERNEL
, context
->type
);
1230 switch (context
->type
) {
1231 case AUDIT_SOCKETCALL
: {
1232 int nargs
= context
->socketcall
.nargs
;
1233 audit_log_format(ab
, "nargs=%d", nargs
);
1234 for (i
= 0; i
< nargs
; i
++)
1235 audit_log_format(ab
, " a%d=%lx", i
,
1236 context
->socketcall
.args
[i
]);
1239 u32 osid
= context
->ipc
.osid
;
1241 audit_log_format(ab
, "ouid=%u ogid=%u mode=%#o",
1242 context
->ipc
.uid
, context
->ipc
.gid
, context
->ipc
.mode
);
1246 if (security_secid_to_secctx(osid
, &ctx
, &len
)) {
1247 audit_log_format(ab
, " osid=%u", osid
);
1250 audit_log_format(ab
, " obj=%s", ctx
);
1251 security_release_secctx(ctx
, len
);
1254 if (context
->ipc
.has_perm
) {
1256 ab
= audit_log_start(context
, GFP_KERNEL
,
1257 AUDIT_IPC_SET_PERM
);
1258 audit_log_format(ab
,
1259 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
1260 context
->ipc
.qbytes
,
1261 context
->ipc
.perm_uid
,
1262 context
->ipc
.perm_gid
,
1263 context
->ipc
.perm_mode
);
1268 case AUDIT_MQ_OPEN
: {
1269 audit_log_format(ab
,
1270 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
1271 "mq_msgsize=%ld mq_curmsgs=%ld",
1272 context
->mq_open
.oflag
, context
->mq_open
.mode
,
1273 context
->mq_open
.attr
.mq_flags
,
1274 context
->mq_open
.attr
.mq_maxmsg
,
1275 context
->mq_open
.attr
.mq_msgsize
,
1276 context
->mq_open
.attr
.mq_curmsgs
);
1278 case AUDIT_MQ_SENDRECV
: {
1279 audit_log_format(ab
,
1280 "mqdes=%d msg_len=%zd msg_prio=%u "
1281 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1282 context
->mq_sendrecv
.mqdes
,
1283 context
->mq_sendrecv
.msg_len
,
1284 context
->mq_sendrecv
.msg_prio
,
1285 context
->mq_sendrecv
.abs_timeout
.tv_sec
,
1286 context
->mq_sendrecv
.abs_timeout
.tv_nsec
);
1288 case AUDIT_MQ_NOTIFY
: {
1289 audit_log_format(ab
, "mqdes=%d sigev_signo=%d",
1290 context
->mq_notify
.mqdes
,
1291 context
->mq_notify
.sigev_signo
);
1293 case AUDIT_MQ_GETSETATTR
: {
1294 struct mq_attr
*attr
= &context
->mq_getsetattr
.mqstat
;
1295 audit_log_format(ab
,
1296 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1298 context
->mq_getsetattr
.mqdes
,
1299 attr
->mq_flags
, attr
->mq_maxmsg
,
1300 attr
->mq_msgsize
, attr
->mq_curmsgs
);
1302 case AUDIT_CAPSET
: {
1303 audit_log_format(ab
, "pid=%d", context
->capset
.pid
);
1304 audit_log_cap(ab
, "cap_pi", &context
->capset
.cap
.inheritable
);
1305 audit_log_cap(ab
, "cap_pp", &context
->capset
.cap
.permitted
);
1306 audit_log_cap(ab
, "cap_pe", &context
->capset
.cap
.effective
);
1312 static void audit_log_exit(struct audit_context
*context
, struct task_struct
*tsk
)
1314 const struct cred
*cred
;
1315 int i
, call_panic
= 0;
1316 struct audit_buffer
*ab
;
1317 struct audit_aux_data
*aux
;
1320 /* tsk == current */
1321 context
->pid
= tsk
->pid
;
1323 context
->ppid
= sys_getppid();
1324 cred
= current_cred();
1325 context
->uid
= cred
->uid
;
1326 context
->gid
= cred
->gid
;
1327 context
->euid
= cred
->euid
;
1328 context
->suid
= cred
->suid
;
1329 context
->fsuid
= cred
->fsuid
;
1330 context
->egid
= cred
->egid
;
1331 context
->sgid
= cred
->sgid
;
1332 context
->fsgid
= cred
->fsgid
;
1333 context
->personality
= tsk
->personality
;
1335 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_SYSCALL
);
1337 return; /* audit_panic has been called */
1338 audit_log_format(ab
, "arch=%x syscall=%d",
1339 context
->arch
, context
->major
);
1340 if (context
->personality
!= PER_LINUX
)
1341 audit_log_format(ab
, " per=%lx", context
->personality
);
1342 if (context
->return_valid
)
1343 audit_log_format(ab
, " success=%s exit=%ld",
1344 (context
->return_valid
==AUDITSC_SUCCESS
)?"yes":"no",
1345 context
->return_code
);
1347 spin_lock_irq(&tsk
->sighand
->siglock
);
1348 if (tsk
->signal
&& tsk
->signal
->tty
&& tsk
->signal
->tty
->name
)
1349 tty
= tsk
->signal
->tty
->name
;
1352 spin_unlock_irq(&tsk
->sighand
->siglock
);
1354 audit_log_format(ab
,
1355 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
1356 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
1357 " euid=%u suid=%u fsuid=%u"
1358 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
1363 context
->name_count
,
1369 context
->euid
, context
->suid
, context
->fsuid
,
1370 context
->egid
, context
->sgid
, context
->fsgid
, tty
,
1374 audit_log_task_info(ab
, tsk
);
1375 if (context
->filterkey
) {
1376 audit_log_format(ab
, " key=");
1377 audit_log_untrustedstring(ab
, context
->filterkey
);
1379 audit_log_format(ab
, " key=(null)");
1382 for (aux
= context
->aux
; aux
; aux
= aux
->next
) {
1384 ab
= audit_log_start(context
, GFP_KERNEL
, aux
->type
);
1386 continue; /* audit_panic has been called */
1388 switch (aux
->type
) {
1390 case AUDIT_EXECVE
: {
1391 struct audit_aux_data_execve
*axi
= (void *)aux
;
1392 audit_log_execve_info(context
, &ab
, axi
);
1395 case AUDIT_BPRM_FCAPS
: {
1396 struct audit_aux_data_bprm_fcaps
*axs
= (void *)aux
;
1397 audit_log_format(ab
, "fver=%x", axs
->fcap_ver
);
1398 audit_log_cap(ab
, "fp", &axs
->fcap
.permitted
);
1399 audit_log_cap(ab
, "fi", &axs
->fcap
.inheritable
);
1400 audit_log_format(ab
, " fe=%d", axs
->fcap
.fE
);
1401 audit_log_cap(ab
, "old_pp", &axs
->old_pcap
.permitted
);
1402 audit_log_cap(ab
, "old_pi", &axs
->old_pcap
.inheritable
);
1403 audit_log_cap(ab
, "old_pe", &axs
->old_pcap
.effective
);
1404 audit_log_cap(ab
, "new_pp", &axs
->new_pcap
.permitted
);
1405 audit_log_cap(ab
, "new_pi", &axs
->new_pcap
.inheritable
);
1406 audit_log_cap(ab
, "new_pe", &axs
->new_pcap
.effective
);
1414 show_special(context
, &call_panic
);
1416 if (context
->fds
[0] >= 0) {
1417 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_FD_PAIR
);
1419 audit_log_format(ab
, "fd0=%d fd1=%d",
1420 context
->fds
[0], context
->fds
[1]);
1425 if (context
->sockaddr_len
) {
1426 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_SOCKADDR
);
1428 audit_log_format(ab
, "saddr=");
1429 audit_log_n_hex(ab
, (void *)context
->sockaddr
,
1430 context
->sockaddr_len
);
1435 for (aux
= context
->aux_pids
; aux
; aux
= aux
->next
) {
1436 struct audit_aux_data_pids
*axs
= (void *)aux
;
1438 for (i
= 0; i
< axs
->pid_count
; i
++)
1439 if (audit_log_pid_context(context
, axs
->target_pid
[i
],
1440 axs
->target_auid
[i
],
1442 axs
->target_sessionid
[i
],
1444 axs
->target_comm
[i
]))
1448 if (context
->target_pid
&&
1449 audit_log_pid_context(context
, context
->target_pid
,
1450 context
->target_auid
, context
->target_uid
,
1451 context
->target_sessionid
,
1452 context
->target_sid
, context
->target_comm
))
1455 if (context
->pwd
.dentry
&& context
->pwd
.mnt
) {
1456 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_CWD
);
1458 audit_log_d_path(ab
, "cwd=", &context
->pwd
);
1462 for (i
= 0; i
< context
->name_count
; i
++) {
1463 struct audit_names
*n
= &context
->names
[i
];
1465 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_PATH
);
1467 continue; /* audit_panic has been called */
1469 audit_log_format(ab
, "item=%d", i
);
1472 switch(n
->name_len
) {
1473 case AUDIT_NAME_FULL
:
1474 /* log the full path */
1475 audit_log_format(ab
, " name=");
1476 audit_log_untrustedstring(ab
, n
->name
);
1479 /* name was specified as a relative path and the
1480 * directory component is the cwd */
1481 audit_log_d_path(ab
, "name=", &context
->pwd
);
1484 /* log the name's directory component */
1485 audit_log_format(ab
, " name=");
1486 audit_log_n_untrustedstring(ab
, n
->name
,
1490 audit_log_format(ab
, " name=(null)");
1492 if (n
->ino
!= (unsigned long)-1) {
1493 audit_log_format(ab
, " inode=%lu"
1494 " dev=%02x:%02x mode=%#o"
1495 " ouid=%u ogid=%u rdev=%02x:%02x",
1508 if (security_secid_to_secctx(
1509 n
->osid
, &ctx
, &len
)) {
1510 audit_log_format(ab
, " osid=%u", n
->osid
);
1513 audit_log_format(ab
, " obj=%s", ctx
);
1514 security_release_secctx(ctx
, len
);
1518 audit_log_fcaps(ab
, n
);
1523 /* Send end of event record to help user space know we are finished */
1524 ab
= audit_log_start(context
, GFP_KERNEL
, AUDIT_EOE
);
1528 audit_panic("error converting sid to string");
1532 * audit_free - free a per-task audit context
1533 * @tsk: task whose audit context block to free
1535 * Called from copy_process and do_exit
1537 void audit_free(struct task_struct
*tsk
)
1539 struct audit_context
*context
;
1541 context
= audit_get_context(tsk
, 0, 0);
1542 if (likely(!context
))
1545 /* Check for system calls that do not go through the exit
1546 * function (e.g., exit_group), then free context block.
1547 * We use GFP_ATOMIC here because we might be doing this
1548 * in the context of the idle thread */
1549 /* that can happen only if we are called from do_exit() */
1550 if (context
->in_syscall
&& context
->current_state
== AUDIT_RECORD_CONTEXT
)
1551 audit_log_exit(context
, tsk
);
1553 audit_free_context(context
);
1557 * audit_syscall_entry - fill in an audit record at syscall entry
1558 * @arch: architecture type
1559 * @major: major syscall type (function)
1560 * @a1: additional syscall register 1
1561 * @a2: additional syscall register 2
1562 * @a3: additional syscall register 3
1563 * @a4: additional syscall register 4
1565 * Fill in audit context at syscall entry. This only happens if the
1566 * audit context was created when the task was created and the state or
1567 * filters demand the audit context be built. If the state from the
1568 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1569 * then the record will be written at syscall exit time (otherwise, it
1570 * will only be written if another part of the kernel requests that it
1573 void audit_syscall_entry(int arch
, int major
,
1574 unsigned long a1
, unsigned long a2
,
1575 unsigned long a3
, unsigned long a4
)
1577 struct task_struct
*tsk
= current
;
1578 struct audit_context
*context
= tsk
->audit_context
;
1579 enum audit_state state
;
1581 if (unlikely(!context
))
1585 * This happens only on certain architectures that make system
1586 * calls in kernel_thread via the entry.S interface, instead of
1587 * with direct calls. (If you are porting to a new
1588 * architecture, hitting this condition can indicate that you
1589 * got the _exit/_leave calls backward in entry.S.)
1593 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
1595 * This also happens with vm86 emulation in a non-nested manner
1596 * (entries without exits), so this case must be caught.
1598 if (context
->in_syscall
) {
1599 struct audit_context
*newctx
;
1603 "audit(:%d) pid=%d in syscall=%d;"
1604 " entering syscall=%d\n",
1605 context
->serial
, tsk
->pid
, context
->major
, major
);
1607 newctx
= audit_alloc_context(context
->state
);
1609 newctx
->previous
= context
;
1611 tsk
->audit_context
= newctx
;
1613 /* If we can't alloc a new context, the best we
1614 * can do is to leak memory (any pending putname
1615 * will be lost). The only other alternative is
1616 * to abandon auditing. */
1617 audit_zero_context(context
, context
->state
);
1620 BUG_ON(context
->in_syscall
|| context
->name_count
);
1625 context
->arch
= arch
;
1626 context
->major
= major
;
1627 context
->argv
[0] = a1
;
1628 context
->argv
[1] = a2
;
1629 context
->argv
[2] = a3
;
1630 context
->argv
[3] = a4
;
1632 state
= context
->state
;
1633 context
->dummy
= !audit_n_rules
;
1634 if (!context
->dummy
&& state
== AUDIT_BUILD_CONTEXT
) {
1636 state
= audit_filter_syscall(tsk
, context
, &audit_filter_list
[AUDIT_FILTER_ENTRY
]);
1638 if (likely(state
== AUDIT_DISABLED
))
1641 context
->serial
= 0;
1642 context
->ctime
= CURRENT_TIME
;
1643 context
->in_syscall
= 1;
1644 context
->current_state
= state
;
1648 void audit_finish_fork(struct task_struct
*child
)
1650 struct audit_context
*ctx
= current
->audit_context
;
1651 struct audit_context
*p
= child
->audit_context
;
1654 if (!ctx
->in_syscall
|| ctx
->current_state
!= AUDIT_RECORD_CONTEXT
)
1656 p
->arch
= ctx
->arch
;
1657 p
->major
= ctx
->major
;
1658 memcpy(p
->argv
, ctx
->argv
, sizeof(ctx
->argv
));
1659 p
->ctime
= ctx
->ctime
;
1660 p
->dummy
= ctx
->dummy
;
1661 p
->in_syscall
= ctx
->in_syscall
;
1662 p
->filterkey
= kstrdup(ctx
->filterkey
, GFP_KERNEL
);
1663 p
->ppid
= current
->pid
;
1664 p
->prio
= ctx
->prio
;
1665 p
->current_state
= ctx
->current_state
;
1669 * audit_syscall_exit - deallocate audit context after a system call
1670 * @valid: success/failure flag
1671 * @return_code: syscall return value
1673 * Tear down after system call. If the audit context has been marked as
1674 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1675 * filtering, or because some other part of the kernel write an audit
1676 * message), then write out the syscall information. In call cases,
1677 * free the names stored from getname().
1679 void audit_syscall_exit(int valid
, long return_code
)
1681 struct task_struct
*tsk
= current
;
1682 struct audit_context
*context
;
1684 context
= audit_get_context(tsk
, valid
, return_code
);
1686 if (likely(!context
))
1689 if (context
->in_syscall
&& context
->current_state
== AUDIT_RECORD_CONTEXT
)
1690 audit_log_exit(context
, tsk
);
1692 context
->in_syscall
= 0;
1693 context
->prio
= context
->state
== AUDIT_RECORD_CONTEXT
? ~0ULL : 0;
1695 if (context
->previous
) {
1696 struct audit_context
*new_context
= context
->previous
;
1697 context
->previous
= NULL
;
1698 audit_free_context(context
);
1699 tsk
->audit_context
= new_context
;
1701 audit_free_names(context
);
1702 unroll_tree_refs(context
, NULL
, 0);
1703 audit_free_aux(context
);
1704 context
->aux
= NULL
;
1705 context
->aux_pids
= NULL
;
1706 context
->target_pid
= 0;
1707 context
->target_sid
= 0;
1708 context
->sockaddr_len
= 0;
1710 context
->fds
[0] = -1;
1711 if (context
->state
!= AUDIT_RECORD_CONTEXT
) {
1712 kfree(context
->filterkey
);
1713 context
->filterkey
= NULL
;
1715 tsk
->audit_context
= context
;
1719 static inline void handle_one(const struct inode
*inode
)
1721 #ifdef CONFIG_AUDIT_TREE
1722 struct audit_context
*context
;
1723 struct audit_tree_refs
*p
;
1724 struct audit_chunk
*chunk
;
1726 if (likely(list_empty(&inode
->inotify_watches
)))
1728 context
= current
->audit_context
;
1730 count
= context
->tree_count
;
1732 chunk
= audit_tree_lookup(inode
);
1736 if (likely(put_tree_ref(context
, chunk
)))
1738 if (unlikely(!grow_tree_refs(context
))) {
1739 printk(KERN_WARNING
"out of memory, audit has lost a tree reference\n");
1740 audit_set_auditable(context
);
1741 audit_put_chunk(chunk
);
1742 unroll_tree_refs(context
, p
, count
);
1745 put_tree_ref(context
, chunk
);
1749 static void handle_path(const struct dentry
*dentry
)
1751 #ifdef CONFIG_AUDIT_TREE
1752 struct audit_context
*context
;
1753 struct audit_tree_refs
*p
;
1754 const struct dentry
*d
, *parent
;
1755 struct audit_chunk
*drop
;
1759 context
= current
->audit_context
;
1761 count
= context
->tree_count
;
1766 seq
= read_seqbegin(&rename_lock
);
1768 struct inode
*inode
= d
->d_inode
;
1769 if (inode
&& unlikely(!list_empty(&inode
->inotify_watches
))) {
1770 struct audit_chunk
*chunk
;
1771 chunk
= audit_tree_lookup(inode
);
1773 if (unlikely(!put_tree_ref(context
, chunk
))) {
1779 parent
= d
->d_parent
;
1784 if (unlikely(read_seqretry(&rename_lock
, seq
) || drop
)) { /* in this order */
1787 /* just a race with rename */
1788 unroll_tree_refs(context
, p
, count
);
1791 audit_put_chunk(drop
);
1792 if (grow_tree_refs(context
)) {
1793 /* OK, got more space */
1794 unroll_tree_refs(context
, p
, count
);
1799 "out of memory, audit has lost a tree reference\n");
1800 unroll_tree_refs(context
, p
, count
);
1801 audit_set_auditable(context
);
1809 * audit_getname - add a name to the list
1810 * @name: name to add
1812 * Add a name to the list of audit names for this context.
1813 * Called from fs/namei.c:getname().
1815 void __audit_getname(const char *name
)
1817 struct audit_context
*context
= current
->audit_context
;
1819 if (IS_ERR(name
) || !name
)
1822 if (!context
->in_syscall
) {
1823 #if AUDIT_DEBUG == 2
1824 printk(KERN_ERR
"%s:%d(:%d): ignoring getname(%p)\n",
1825 __FILE__
, __LINE__
, context
->serial
, name
);
1830 BUG_ON(context
->name_count
>= AUDIT_NAMES
);
1831 context
->names
[context
->name_count
].name
= name
;
1832 context
->names
[context
->name_count
].name_len
= AUDIT_NAME_FULL
;
1833 context
->names
[context
->name_count
].name_put
= 1;
1834 context
->names
[context
->name_count
].ino
= (unsigned long)-1;
1835 context
->names
[context
->name_count
].osid
= 0;
1836 ++context
->name_count
;
1837 if (!context
->pwd
.dentry
) {
1838 read_lock(¤t
->fs
->lock
);
1839 context
->pwd
= current
->fs
->pwd
;
1840 path_get(¤t
->fs
->pwd
);
1841 read_unlock(¤t
->fs
->lock
);
1846 /* audit_putname - intercept a putname request
1847 * @name: name to intercept and delay for putname
1849 * If we have stored the name from getname in the audit context,
1850 * then we delay the putname until syscall exit.
1851 * Called from include/linux/fs.h:putname().
1853 void audit_putname(const char *name
)
1855 struct audit_context
*context
= current
->audit_context
;
1858 if (!context
->in_syscall
) {
1859 #if AUDIT_DEBUG == 2
1860 printk(KERN_ERR
"%s:%d(:%d): __putname(%p)\n",
1861 __FILE__
, __LINE__
, context
->serial
, name
);
1862 if (context
->name_count
) {
1864 for (i
= 0; i
< context
->name_count
; i
++)
1865 printk(KERN_ERR
"name[%d] = %p = %s\n", i
,
1866 context
->names
[i
].name
,
1867 context
->names
[i
].name
?: "(null)");
1874 ++context
->put_count
;
1875 if (context
->put_count
> context
->name_count
) {
1876 printk(KERN_ERR
"%s:%d(:%d): major=%d"
1877 " in_syscall=%d putname(%p) name_count=%d"
1880 context
->serial
, context
->major
,
1881 context
->in_syscall
, name
, context
->name_count
,
1882 context
->put_count
);
1889 static int audit_inc_name_count(struct audit_context
*context
,
1890 const struct inode
*inode
)
1892 if (context
->name_count
>= AUDIT_NAMES
) {
1894 printk(KERN_DEBUG
"name_count maxed, losing inode data: "
1895 "dev=%02x:%02x, inode=%lu\n",
1896 MAJOR(inode
->i_sb
->s_dev
),
1897 MINOR(inode
->i_sb
->s_dev
),
1901 printk(KERN_DEBUG
"name_count maxed, losing inode data\n");
1904 context
->name_count
++;
1906 context
->ino_count
++;
1912 static inline int audit_copy_fcaps(struct audit_names
*name
, const struct dentry
*dentry
)
1914 struct cpu_vfs_cap_data caps
;
1917 memset(&name
->fcap
.permitted
, 0, sizeof(kernel_cap_t
));
1918 memset(&name
->fcap
.inheritable
, 0, sizeof(kernel_cap_t
));
1925 rc
= get_vfs_caps_from_disk(dentry
, &caps
);
1929 name
->fcap
.permitted
= caps
.permitted
;
1930 name
->fcap
.inheritable
= caps
.inheritable
;
1931 name
->fcap
.fE
= !!(caps
.magic_etc
& VFS_CAP_FLAGS_EFFECTIVE
);
1932 name
->fcap_ver
= (caps
.magic_etc
& VFS_CAP_REVISION_MASK
) >> VFS_CAP_REVISION_SHIFT
;
1938 /* Copy inode data into an audit_names. */
1939 static void audit_copy_inode(struct audit_names
*name
, const struct dentry
*dentry
,
1940 const struct inode
*inode
)
1942 name
->ino
= inode
->i_ino
;
1943 name
->dev
= inode
->i_sb
->s_dev
;
1944 name
->mode
= inode
->i_mode
;
1945 name
->uid
= inode
->i_uid
;
1946 name
->gid
= inode
->i_gid
;
1947 name
->rdev
= inode
->i_rdev
;
1948 security_inode_getsecid(inode
, &name
->osid
);
1949 audit_copy_fcaps(name
, dentry
);
1953 * audit_inode - store the inode and device from a lookup
1954 * @name: name being audited
1955 * @dentry: dentry being audited
1957 * Called from fs/namei.c:path_lookup().
1959 void __audit_inode(const char *name
, const struct dentry
*dentry
)
1962 struct audit_context
*context
= current
->audit_context
;
1963 const struct inode
*inode
= dentry
->d_inode
;
1965 if (!context
->in_syscall
)
1967 if (context
->name_count
1968 && context
->names
[context
->name_count
-1].name
1969 && context
->names
[context
->name_count
-1].name
== name
)
1970 idx
= context
->name_count
- 1;
1971 else if (context
->name_count
> 1
1972 && context
->names
[context
->name_count
-2].name
1973 && context
->names
[context
->name_count
-2].name
== name
)
1974 idx
= context
->name_count
- 2;
1976 /* FIXME: how much do we care about inodes that have no
1977 * associated name? */
1978 if (audit_inc_name_count(context
, inode
))
1980 idx
= context
->name_count
- 1;
1981 context
->names
[idx
].name
= NULL
;
1983 handle_path(dentry
);
1984 audit_copy_inode(&context
->names
[idx
], dentry
, inode
);
1988 * audit_inode_child - collect inode info for created/removed objects
1989 * @dname: inode's dentry name
1990 * @dentry: dentry being audited
1991 * @parent: inode of dentry parent
1993 * For syscalls that create or remove filesystem objects, audit_inode
1994 * can only collect information for the filesystem object's parent.
1995 * This call updates the audit context with the child's information.
1996 * Syscalls that create a new filesystem object must be hooked after
1997 * the object is created. Syscalls that remove a filesystem object
1998 * must be hooked prior, in order to capture the target inode during
1999 * unsuccessful attempts.
2001 void __audit_inode_child(const char *dname
, const struct dentry
*dentry
,
2002 const struct inode
*parent
)
2005 struct audit_context
*context
= current
->audit_context
;
2006 const char *found_parent
= NULL
, *found_child
= NULL
;
2007 const struct inode
*inode
= dentry
->d_inode
;
2010 if (!context
->in_syscall
)
2015 /* determine matching parent */
2019 /* parent is more likely, look for it first */
2020 for (idx
= 0; idx
< context
->name_count
; idx
++) {
2021 struct audit_names
*n
= &context
->names
[idx
];
2026 if (n
->ino
== parent
->i_ino
&&
2027 !audit_compare_dname_path(dname
, n
->name
, &dirlen
)) {
2028 n
->name_len
= dirlen
; /* update parent data in place */
2029 found_parent
= n
->name
;
2034 /* no matching parent, look for matching child */
2035 for (idx
= 0; idx
< context
->name_count
; idx
++) {
2036 struct audit_names
*n
= &context
->names
[idx
];
2041 /* strcmp() is the more likely scenario */
2042 if (!strcmp(dname
, n
->name
) ||
2043 !audit_compare_dname_path(dname
, n
->name
, &dirlen
)) {
2045 audit_copy_inode(n
, NULL
, inode
);
2047 n
->ino
= (unsigned long)-1;
2048 found_child
= n
->name
;
2054 if (!found_parent
) {
2055 if (audit_inc_name_count(context
, parent
))
2057 idx
= context
->name_count
- 1;
2058 context
->names
[idx
].name
= NULL
;
2059 audit_copy_inode(&context
->names
[idx
], NULL
, parent
);
2063 if (audit_inc_name_count(context
, inode
))
2065 idx
= context
->name_count
- 1;
2067 /* Re-use the name belonging to the slot for a matching parent
2068 * directory. All names for this context are relinquished in
2069 * audit_free_names() */
2071 context
->names
[idx
].name
= found_parent
;
2072 context
->names
[idx
].name_len
= AUDIT_NAME_FULL
;
2073 /* don't call __putname() */
2074 context
->names
[idx
].name_put
= 0;
2076 context
->names
[idx
].name
= NULL
;
2080 audit_copy_inode(&context
->names
[idx
], NULL
, inode
);
2082 context
->names
[idx
].ino
= (unsigned long)-1;
2085 EXPORT_SYMBOL_GPL(__audit_inode_child
);
2088 * auditsc_get_stamp - get local copies of audit_context values
2089 * @ctx: audit_context for the task
2090 * @t: timespec to store time recorded in the audit_context
2091 * @serial: serial value that is recorded in the audit_context
2093 * Also sets the context as auditable.
2095 int auditsc_get_stamp(struct audit_context
*ctx
,
2096 struct timespec
*t
, unsigned int *serial
)
2098 if (!ctx
->in_syscall
)
2101 ctx
->serial
= audit_serial();
2102 t
->tv_sec
= ctx
->ctime
.tv_sec
;
2103 t
->tv_nsec
= ctx
->ctime
.tv_nsec
;
2104 *serial
= ctx
->serial
;
2107 ctx
->current_state
= AUDIT_RECORD_CONTEXT
;
2112 /* global counter which is incremented every time something logs in */
2113 static atomic_t session_id
= ATOMIC_INIT(0);
2116 * audit_set_loginuid - set a task's audit_context loginuid
2117 * @task: task whose audit context is being modified
2118 * @loginuid: loginuid value
2122 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2124 int audit_set_loginuid(struct task_struct
*task
, uid_t loginuid
)
2126 unsigned int sessionid
= atomic_inc_return(&session_id
);
2127 struct audit_context
*context
= task
->audit_context
;
2129 if (context
&& context
->in_syscall
) {
2130 struct audit_buffer
*ab
;
2132 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_LOGIN
);
2134 audit_log_format(ab
, "login pid=%d uid=%u "
2135 "old auid=%u new auid=%u"
2136 " old ses=%u new ses=%u",
2137 task
->pid
, task_uid(task
),
2138 task
->loginuid
, loginuid
,
2139 task
->sessionid
, sessionid
);
2143 task
->sessionid
= sessionid
;
2144 task
->loginuid
= loginuid
;
2149 * __audit_mq_open - record audit data for a POSIX MQ open
2152 * @attr: queue attributes
2155 void __audit_mq_open(int oflag
, mode_t mode
, struct mq_attr
*attr
)
2157 struct audit_context
*context
= current
->audit_context
;
2160 memcpy(&context
->mq_open
.attr
, attr
, sizeof(struct mq_attr
));
2162 memset(&context
->mq_open
.attr
, 0, sizeof(struct mq_attr
));
2164 context
->mq_open
.oflag
= oflag
;
2165 context
->mq_open
.mode
= mode
;
2167 context
->type
= AUDIT_MQ_OPEN
;
2171 * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
2172 * @mqdes: MQ descriptor
2173 * @msg_len: Message length
2174 * @msg_prio: Message priority
2175 * @abs_timeout: Message timeout in absolute time
2178 void __audit_mq_sendrecv(mqd_t mqdes
, size_t msg_len
, unsigned int msg_prio
,
2179 const struct timespec
*abs_timeout
)
2181 struct audit_context
*context
= current
->audit_context
;
2182 struct timespec
*p
= &context
->mq_sendrecv
.abs_timeout
;
2185 memcpy(p
, abs_timeout
, sizeof(struct timespec
));
2187 memset(p
, 0, sizeof(struct timespec
));
2189 context
->mq_sendrecv
.mqdes
= mqdes
;
2190 context
->mq_sendrecv
.msg_len
= msg_len
;
2191 context
->mq_sendrecv
.msg_prio
= msg_prio
;
2193 context
->type
= AUDIT_MQ_SENDRECV
;
2197 * __audit_mq_notify - record audit data for a POSIX MQ notify
2198 * @mqdes: MQ descriptor
2199 * @notification: Notification event
2203 void __audit_mq_notify(mqd_t mqdes
, const struct sigevent
*notification
)
2205 struct audit_context
*context
= current
->audit_context
;
2208 context
->mq_notify
.sigev_signo
= notification
->sigev_signo
;
2210 context
->mq_notify
.sigev_signo
= 0;
2212 context
->mq_notify
.mqdes
= mqdes
;
2213 context
->type
= AUDIT_MQ_NOTIFY
;
2217 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2218 * @mqdes: MQ descriptor
2222 void __audit_mq_getsetattr(mqd_t mqdes
, struct mq_attr
*mqstat
)
2224 struct audit_context
*context
= current
->audit_context
;
2225 context
->mq_getsetattr
.mqdes
= mqdes
;
2226 context
->mq_getsetattr
.mqstat
= *mqstat
;
2227 context
->type
= AUDIT_MQ_GETSETATTR
;
2231 * audit_ipc_obj - record audit data for ipc object
2232 * @ipcp: ipc permissions
2235 void __audit_ipc_obj(struct kern_ipc_perm
*ipcp
)
2237 struct audit_context
*context
= current
->audit_context
;
2238 context
->ipc
.uid
= ipcp
->uid
;
2239 context
->ipc
.gid
= ipcp
->gid
;
2240 context
->ipc
.mode
= ipcp
->mode
;
2241 context
->ipc
.has_perm
= 0;
2242 security_ipc_getsecid(ipcp
, &context
->ipc
.osid
);
2243 context
->type
= AUDIT_IPC
;
2247 * audit_ipc_set_perm - record audit data for new ipc permissions
2248 * @qbytes: msgq bytes
2249 * @uid: msgq user id
2250 * @gid: msgq group id
2251 * @mode: msgq mode (permissions)
2253 * Called only after audit_ipc_obj().
2255 void __audit_ipc_set_perm(unsigned long qbytes
, uid_t uid
, gid_t gid
, mode_t mode
)
2257 struct audit_context
*context
= current
->audit_context
;
2259 context
->ipc
.qbytes
= qbytes
;
2260 context
->ipc
.perm_uid
= uid
;
2261 context
->ipc
.perm_gid
= gid
;
2262 context
->ipc
.perm_mode
= mode
;
2263 context
->ipc
.has_perm
= 1;
2266 int audit_bprm(struct linux_binprm
*bprm
)
2268 struct audit_aux_data_execve
*ax
;
2269 struct audit_context
*context
= current
->audit_context
;
2271 if (likely(!audit_enabled
|| !context
|| context
->dummy
))
2274 ax
= kmalloc(sizeof(*ax
), GFP_KERNEL
);
2278 ax
->argc
= bprm
->argc
;
2279 ax
->envc
= bprm
->envc
;
2281 ax
->d
.type
= AUDIT_EXECVE
;
2282 ax
->d
.next
= context
->aux
;
2283 context
->aux
= (void *)ax
;
2289 * audit_socketcall - record audit data for sys_socketcall
2290 * @nargs: number of args
2294 void audit_socketcall(int nargs
, unsigned long *args
)
2296 struct audit_context
*context
= current
->audit_context
;
2298 if (likely(!context
|| context
->dummy
))
2301 context
->type
= AUDIT_SOCKETCALL
;
2302 context
->socketcall
.nargs
= nargs
;
2303 memcpy(context
->socketcall
.args
, args
, nargs
* sizeof(unsigned long));
2307 * __audit_fd_pair - record audit data for pipe and socketpair
2308 * @fd1: the first file descriptor
2309 * @fd2: the second file descriptor
2312 void __audit_fd_pair(int fd1
, int fd2
)
2314 struct audit_context
*context
= current
->audit_context
;
2315 context
->fds
[0] = fd1
;
2316 context
->fds
[1] = fd2
;
2320 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2321 * @len: data length in user space
2322 * @a: data address in kernel space
2324 * Returns 0 for success or NULL context or < 0 on error.
2326 int audit_sockaddr(int len
, void *a
)
2328 struct audit_context
*context
= current
->audit_context
;
2330 if (likely(!context
|| context
->dummy
))
2333 if (!context
->sockaddr
) {
2334 void *p
= kmalloc(sizeof(struct sockaddr_storage
), GFP_KERNEL
);
2337 context
->sockaddr
= p
;
2340 context
->sockaddr_len
= len
;
2341 memcpy(context
->sockaddr
, a
, len
);
2345 void __audit_ptrace(struct task_struct
*t
)
2347 struct audit_context
*context
= current
->audit_context
;
2349 context
->target_pid
= t
->pid
;
2350 context
->target_auid
= audit_get_loginuid(t
);
2351 context
->target_uid
= task_uid(t
);
2352 context
->target_sessionid
= audit_get_sessionid(t
);
2353 security_task_getsecid(t
, &context
->target_sid
);
2354 memcpy(context
->target_comm
, t
->comm
, TASK_COMM_LEN
);
2358 * audit_signal_info - record signal info for shutting down audit subsystem
2359 * @sig: signal value
2360 * @t: task being signaled
2362 * If the audit subsystem is being terminated, record the task (pid)
2363 * and uid that is doing that.
2365 int __audit_signal_info(int sig
, struct task_struct
*t
)
2367 struct audit_aux_data_pids
*axp
;
2368 struct task_struct
*tsk
= current
;
2369 struct audit_context
*ctx
= tsk
->audit_context
;
2370 uid_t uid
= current_uid(), t_uid
= task_uid(t
);
2372 if (audit_pid
&& t
->tgid
== audit_pid
) {
2373 if (sig
== SIGTERM
|| sig
== SIGHUP
|| sig
== SIGUSR1
|| sig
== SIGUSR2
) {
2374 audit_sig_pid
= tsk
->pid
;
2375 if (tsk
->loginuid
!= -1)
2376 audit_sig_uid
= tsk
->loginuid
;
2378 audit_sig_uid
= uid
;
2379 security_task_getsecid(tsk
, &audit_sig_sid
);
2381 if (!audit_signals
|| audit_dummy_context())
2385 /* optimize the common case by putting first signal recipient directly
2386 * in audit_context */
2387 if (!ctx
->target_pid
) {
2388 ctx
->target_pid
= t
->tgid
;
2389 ctx
->target_auid
= audit_get_loginuid(t
);
2390 ctx
->target_uid
= t_uid
;
2391 ctx
->target_sessionid
= audit_get_sessionid(t
);
2392 security_task_getsecid(t
, &ctx
->target_sid
);
2393 memcpy(ctx
->target_comm
, t
->comm
, TASK_COMM_LEN
);
2397 axp
= (void *)ctx
->aux_pids
;
2398 if (!axp
|| axp
->pid_count
== AUDIT_AUX_PIDS
) {
2399 axp
= kzalloc(sizeof(*axp
), GFP_ATOMIC
);
2403 axp
->d
.type
= AUDIT_OBJ_PID
;
2404 axp
->d
.next
= ctx
->aux_pids
;
2405 ctx
->aux_pids
= (void *)axp
;
2407 BUG_ON(axp
->pid_count
>= AUDIT_AUX_PIDS
);
2409 axp
->target_pid
[axp
->pid_count
] = t
->tgid
;
2410 axp
->target_auid
[axp
->pid_count
] = audit_get_loginuid(t
);
2411 axp
->target_uid
[axp
->pid_count
] = t_uid
;
2412 axp
->target_sessionid
[axp
->pid_count
] = audit_get_sessionid(t
);
2413 security_task_getsecid(t
, &axp
->target_sid
[axp
->pid_count
]);
2414 memcpy(axp
->target_comm
[axp
->pid_count
], t
->comm
, TASK_COMM_LEN
);
2421 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
2422 * @bprm: pointer to the bprm being processed
2423 * @new: the proposed new credentials
2424 * @old: the old credentials
2426 * Simply check if the proc already has the caps given by the file and if not
2427 * store the priv escalation info for later auditing at the end of the syscall
2431 int __audit_log_bprm_fcaps(struct linux_binprm
*bprm
,
2432 const struct cred
*new, const struct cred
*old
)
2434 struct audit_aux_data_bprm_fcaps
*ax
;
2435 struct audit_context
*context
= current
->audit_context
;
2436 struct cpu_vfs_cap_data vcaps
;
2437 struct dentry
*dentry
;
2439 ax
= kmalloc(sizeof(*ax
), GFP_KERNEL
);
2443 ax
->d
.type
= AUDIT_BPRM_FCAPS
;
2444 ax
->d
.next
= context
->aux
;
2445 context
->aux
= (void *)ax
;
2447 dentry
= dget(bprm
->file
->f_dentry
);
2448 get_vfs_caps_from_disk(dentry
, &vcaps
);
2451 ax
->fcap
.permitted
= vcaps
.permitted
;
2452 ax
->fcap
.inheritable
= vcaps
.inheritable
;
2453 ax
->fcap
.fE
= !!(vcaps
.magic_etc
& VFS_CAP_FLAGS_EFFECTIVE
);
2454 ax
->fcap_ver
= (vcaps
.magic_etc
& VFS_CAP_REVISION_MASK
) >> VFS_CAP_REVISION_SHIFT
;
2456 ax
->old_pcap
.permitted
= old
->cap_permitted
;
2457 ax
->old_pcap
.inheritable
= old
->cap_inheritable
;
2458 ax
->old_pcap
.effective
= old
->cap_effective
;
2460 ax
->new_pcap
.permitted
= new->cap_permitted
;
2461 ax
->new_pcap
.inheritable
= new->cap_inheritable
;
2462 ax
->new_pcap
.effective
= new->cap_effective
;
2467 * __audit_log_capset - store information about the arguments to the capset syscall
2468 * @pid: target pid of the capset call
2469 * @new: the new credentials
2470 * @old: the old (current) credentials
2472 * Record the aguments userspace sent to sys_capset for later printing by the
2473 * audit system if applicable
2475 void __audit_log_capset(pid_t pid
,
2476 const struct cred
*new, const struct cred
*old
)
2478 struct audit_context
*context
= current
->audit_context
;
2479 context
->capset
.pid
= pid
;
2480 context
->capset
.cap
.effective
= new->cap_effective
;
2481 context
->capset
.cap
.inheritable
= new->cap_effective
;
2482 context
->capset
.cap
.permitted
= new->cap_permitted
;
2483 context
->type
= AUDIT_CAPSET
;
2487 * audit_core_dumps - record information about processes that end abnormally
2488 * @signr: signal value
2490 * If a process ends with a core dump, something fishy is going on and we
2491 * should record the event for investigation.
2493 void audit_core_dumps(long signr
)
2495 struct audit_buffer
*ab
;
2497 uid_t auid
= audit_get_loginuid(current
), uid
;
2499 unsigned int sessionid
= audit_get_sessionid(current
);
2504 if (signr
== SIGQUIT
) /* don't care for those */
2507 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_ANOM_ABEND
);
2508 current_uid_gid(&uid
, &gid
);
2509 audit_log_format(ab
, "auid=%u uid=%u gid=%u ses=%u",
2510 auid
, uid
, gid
, sessionid
);
2511 security_task_getsecid(current
, &sid
);
2516 if (security_secid_to_secctx(sid
, &ctx
, &len
))
2517 audit_log_format(ab
, " ssid=%u", sid
);
2519 audit_log_format(ab
, " subj=%s", ctx
);
2520 security_release_secctx(ctx
, len
);
2523 audit_log_format(ab
, " pid=%d comm=", current
->pid
);
2524 audit_log_untrustedstring(ab
, current
->comm
);
2525 audit_log_format(ab
, " sig=%ld", signr
);