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.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
23 * Many of the ideas implemented here are from Stephen C. Tweedie,
24 * especially the idea of avoiding a copy by using getname.
26 * The method for actual interception of syscall entry and exit (not in
27 * this file -- see entry.S) is based on a GPL'd patch written by
28 * okir@suse.de and Copyright 2003 SuSE Linux AG.
32 #include <linux/init.h>
33 #include <asm/atomic.h>
34 #include <asm/types.h>
36 #include <linux/module.h>
37 #include <linux/mount.h>
38 #include <linux/socket.h>
39 #include <linux/audit.h>
40 #include <linux/personality.h>
41 #include <linux/time.h>
42 #include <asm/unistd.h>
45 1 = put_count checking
46 2 = verbose put_count checking
50 /* No syscall auditing will take place unless audit_enabled != 0. */
51 extern int audit_enabled
;
53 /* AUDIT_NAMES is the number of slots we reserve in the audit_context
54 * for saving names from getname(). */
55 #define AUDIT_NAMES 20
57 /* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
58 * audit_context from being used for nameless inodes from
60 #define AUDIT_NAMES_RESERVED 7
62 /* At task start time, the audit_state is set in the audit_context using
63 a per-task filter. At syscall entry, the audit_state is augmented by
64 the syscall filter. */
66 AUDIT_DISABLED
, /* Do not create per-task audit_context.
67 * No syscall-specific audit records can
69 AUDIT_SETUP_CONTEXT
, /* Create the per-task audit_context,
70 * but don't necessarily fill it in at
71 * syscall entry time (i.e., filter
73 AUDIT_BUILD_CONTEXT
, /* Create the per-task audit_context,
74 * and always fill it in at syscall
75 * entry time. This makes a full
76 * syscall record available if some
77 * other part of the kernel decides it
78 * should be recorded. */
79 AUDIT_RECORD_CONTEXT
/* Create the per-task audit_context,
80 * always fill it in at syscall entry
81 * time, and always write out the audit
82 * record at syscall exit time. */
85 /* When fs/namei.c:getname() is called, we store the pointer in name and
86 * we don't let putname() free it (instead we free all of the saved
87 * pointers at syscall exit time).
89 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
100 struct audit_aux_data
{
101 struct audit_aux_data
*next
;
105 #define AUDIT_AUX_IPCPERM 0
107 struct audit_aux_data_ipcctl
{
108 struct audit_aux_data d
;
110 unsigned long qbytes
;
116 struct audit_aux_data_socketcall
{
117 struct audit_aux_data d
;
119 unsigned long args
[0];
122 struct audit_aux_data_sockaddr
{
123 struct audit_aux_data d
;
128 struct audit_aux_data_path
{
129 struct audit_aux_data d
;
130 struct dentry
*dentry
;
131 struct vfsmount
*mnt
;
134 /* The per-task audit context. */
135 struct audit_context
{
136 int in_syscall
; /* 1 if task is in a syscall */
137 enum audit_state state
;
138 unsigned int serial
; /* serial number for record */
139 struct timespec ctime
; /* time of syscall entry */
140 uid_t loginuid
; /* login uid (identity) */
141 int major
; /* syscall number */
142 unsigned long argv
[4]; /* syscall arguments */
143 int return_valid
; /* return code is valid */
144 long return_code
;/* syscall return code */
145 int auditable
; /* 1 if record should be written */
147 struct audit_names names
[AUDIT_NAMES
];
149 struct vfsmount
* pwdmnt
;
150 struct audit_context
*previous
; /* For nested syscalls */
151 struct audit_aux_data
*aux
;
153 /* Save things to print about task_struct */
155 uid_t uid
, euid
, suid
, fsuid
;
156 gid_t gid
, egid
, sgid
, fsgid
;
157 unsigned long personality
;
167 /* There are three lists of rules -- one to search at task creation
168 * time, one to search at syscall entry time, and another to search at
169 * syscall exit time. */
170 static LIST_HEAD(audit_tsklist
);
171 static LIST_HEAD(audit_entlist
);
172 static LIST_HEAD(audit_extlist
);
175 struct list_head list
;
177 struct audit_rule rule
;
180 extern int audit_pid
;
182 /* Check to see if two rules are identical. It is called from
183 * audit_del_rule during AUDIT_DEL. */
184 static int audit_compare_rule(struct audit_rule
*a
, struct audit_rule
*b
)
188 if (a
->flags
!= b
->flags
)
191 if (a
->action
!= b
->action
)
194 if (a
->field_count
!= b
->field_count
)
197 for (i
= 0; i
< a
->field_count
; i
++) {
198 if (a
->fields
[i
] != b
->fields
[i
]
199 || a
->values
[i
] != b
->values
[i
])
203 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++)
204 if (a
->mask
[i
] != b
->mask
[i
])
210 /* Note that audit_add_rule and audit_del_rule are called via
211 * audit_receive() in audit.c, and are protected by
212 * audit_netlink_sem. */
213 static inline int audit_add_rule(struct audit_entry
*entry
,
214 struct list_head
*list
)
216 if (entry
->rule
.flags
& AUDIT_PREPEND
) {
217 entry
->rule
.flags
&= ~AUDIT_PREPEND
;
218 list_add_rcu(&entry
->list
, list
);
220 list_add_tail_rcu(&entry
->list
, list
);
225 static void audit_free_rule(struct rcu_head
*head
)
227 struct audit_entry
*e
= container_of(head
, struct audit_entry
, rcu
);
231 /* Note that audit_add_rule and audit_del_rule are called via
232 * audit_receive() in audit.c, and are protected by
233 * audit_netlink_sem. */
234 static inline int audit_del_rule(struct audit_rule
*rule
,
235 struct list_head
*list
)
237 struct audit_entry
*e
;
239 /* Do not use the _rcu iterator here, since this is the only
240 * deletion routine. */
241 list_for_each_entry(e
, list
, list
) {
242 if (!audit_compare_rule(rule
, &e
->rule
)) {
243 list_del_rcu(&e
->list
);
244 call_rcu(&e
->rcu
, audit_free_rule
);
248 return -EFAULT
; /* No matching rule */
251 /* Copy rule from user-space to kernel-space. Called during
253 static int audit_copy_rule(struct audit_rule
*d
, struct audit_rule
*s
)
257 if (s
->action
!= AUDIT_NEVER
258 && s
->action
!= AUDIT_POSSIBLE
259 && s
->action
!= AUDIT_ALWAYS
)
261 if (s
->field_count
< 0 || s
->field_count
> AUDIT_MAX_FIELDS
)
265 d
->action
= s
->action
;
266 d
->field_count
= s
->field_count
;
267 for (i
= 0; i
< d
->field_count
; i
++) {
268 d
->fields
[i
] = s
->fields
[i
];
269 d
->values
[i
] = s
->values
[i
];
271 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++) d
->mask
[i
] = s
->mask
[i
];
275 int audit_receive_filter(int type
, int pid
, int uid
, int seq
, void *data
,
279 struct audit_entry
*entry
;
284 /* The *_rcu iterators not needed here because we are
285 always called with audit_netlink_sem held. */
286 list_for_each_entry(entry
, &audit_tsklist
, list
)
287 audit_send_reply(pid
, seq
, AUDIT_LIST
, 0, 1,
288 &entry
->rule
, sizeof(entry
->rule
));
289 list_for_each_entry(entry
, &audit_entlist
, list
)
290 audit_send_reply(pid
, seq
, AUDIT_LIST
, 0, 1,
291 &entry
->rule
, sizeof(entry
->rule
));
292 list_for_each_entry(entry
, &audit_extlist
, list
)
293 audit_send_reply(pid
, seq
, AUDIT_LIST
, 0, 1,
294 &entry
->rule
, sizeof(entry
->rule
));
295 audit_send_reply(pid
, seq
, AUDIT_LIST
, 1, 1, NULL
, 0);
298 if (!(entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
)))
300 if (audit_copy_rule(&entry
->rule
, data
)) {
304 flags
= entry
->rule
.flags
;
305 if (!err
&& (flags
& AUDIT_PER_TASK
))
306 err
= audit_add_rule(entry
, &audit_tsklist
);
307 if (!err
&& (flags
& AUDIT_AT_ENTRY
))
308 err
= audit_add_rule(entry
, &audit_entlist
);
309 if (!err
&& (flags
& AUDIT_AT_EXIT
))
310 err
= audit_add_rule(entry
, &audit_extlist
);
311 audit_log(NULL
, AUDIT_CONFIG_CHANGE
,
312 "auid=%u added an audit rule\n", loginuid
);
315 flags
=((struct audit_rule
*)data
)->flags
;
316 if (!err
&& (flags
& AUDIT_PER_TASK
))
317 err
= audit_del_rule(data
, &audit_tsklist
);
318 if (!err
&& (flags
& AUDIT_AT_ENTRY
))
319 err
= audit_del_rule(data
, &audit_entlist
);
320 if (!err
&& (flags
& AUDIT_AT_EXIT
))
321 err
= audit_del_rule(data
, &audit_extlist
);
322 audit_log(NULL
, AUDIT_CONFIG_CHANGE
,
323 "auid=%u removed an audit rule\n", loginuid
);
332 /* Compare a task_struct with an audit_rule. Return 1 on match, 0
334 static int audit_filter_rules(struct task_struct
*tsk
,
335 struct audit_rule
*rule
,
336 struct audit_context
*ctx
,
337 enum audit_state
*state
)
341 for (i
= 0; i
< rule
->field_count
; i
++) {
342 u32 field
= rule
->fields
[i
] & ~AUDIT_NEGATE
;
343 u32 value
= rule
->values
[i
];
348 result
= (tsk
->pid
== value
);
351 result
= (tsk
->uid
== value
);
354 result
= (tsk
->euid
== value
);
357 result
= (tsk
->suid
== value
);
360 result
= (tsk
->fsuid
== value
);
363 result
= (tsk
->gid
== value
);
366 result
= (tsk
->egid
== value
);
369 result
= (tsk
->sgid
== value
);
372 result
= (tsk
->fsgid
== value
);
375 result
= (tsk
->personality
== value
);
379 result
= (ctx
->arch
== value
);
383 if (ctx
&& ctx
->return_valid
)
384 result
= (ctx
->return_code
== value
);
387 if (ctx
&& ctx
->return_valid
)
388 result
= (ctx
->return_valid
== AUDITSC_SUCCESS
);
392 for (j
= 0; j
< ctx
->name_count
; j
++) {
393 if (MAJOR(ctx
->names
[j
].dev
)==value
) {
402 for (j
= 0; j
< ctx
->name_count
; j
++) {
403 if (MINOR(ctx
->names
[j
].dev
)==value
) {
412 for (j
= 0; j
< ctx
->name_count
; j
++) {
413 if (ctx
->names
[j
].ino
== value
) {
423 result
= (ctx
->loginuid
== value
);
430 result
= (ctx
->argv
[field
-AUDIT_ARG0
]==value
);
434 if (rule
->fields
[i
] & AUDIT_NEGATE
)
439 switch (rule
->action
) {
440 case AUDIT_NEVER
: *state
= AUDIT_DISABLED
; break;
441 case AUDIT_POSSIBLE
: *state
= AUDIT_BUILD_CONTEXT
; break;
442 case AUDIT_ALWAYS
: *state
= AUDIT_RECORD_CONTEXT
; break;
447 /* At process creation time, we can determine if system-call auditing is
448 * completely disabled for this task. Since we only have the task
449 * structure at this point, we can only check uid and gid.
451 static enum audit_state
audit_filter_task(struct task_struct
*tsk
)
453 struct audit_entry
*e
;
454 enum audit_state state
;
457 list_for_each_entry_rcu(e
, &audit_tsklist
, list
) {
458 if (audit_filter_rules(tsk
, &e
->rule
, NULL
, &state
)) {
464 return AUDIT_BUILD_CONTEXT
;
467 /* At syscall entry and exit time, this filter is called if the
468 * audit_state is not low enough that auditing cannot take place, but is
469 * also not high enough that we already know we have to write an audit
470 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
472 static enum audit_state
audit_filter_syscall(struct task_struct
*tsk
,
473 struct audit_context
*ctx
,
474 struct list_head
*list
)
476 struct audit_entry
*e
;
477 enum audit_state state
;
478 int word
= AUDIT_WORD(ctx
->major
);
479 int bit
= AUDIT_BIT(ctx
->major
);
482 list_for_each_entry_rcu(e
, list
, list
) {
483 if ((e
->rule
.mask
[word
] & bit
) == bit
484 && audit_filter_rules(tsk
, &e
->rule
, ctx
, &state
)) {
490 return AUDIT_BUILD_CONTEXT
;
493 /* This should be called with task_lock() held. */
494 static inline struct audit_context
*audit_get_context(struct task_struct
*tsk
,
498 struct audit_context
*context
= tsk
->audit_context
;
500 if (likely(!context
))
502 context
->return_valid
= return_valid
;
503 context
->return_code
= return_code
;
505 if (context
->in_syscall
&& !context
->auditable
) {
506 enum audit_state state
;
507 state
= audit_filter_syscall(tsk
, context
, &audit_extlist
);
508 if (state
== AUDIT_RECORD_CONTEXT
)
509 context
->auditable
= 1;
512 context
->pid
= tsk
->pid
;
513 context
->uid
= tsk
->uid
;
514 context
->gid
= tsk
->gid
;
515 context
->euid
= tsk
->euid
;
516 context
->suid
= tsk
->suid
;
517 context
->fsuid
= tsk
->fsuid
;
518 context
->egid
= tsk
->egid
;
519 context
->sgid
= tsk
->sgid
;
520 context
->fsgid
= tsk
->fsgid
;
521 context
->personality
= tsk
->personality
;
522 tsk
->audit_context
= NULL
;
526 static inline void audit_free_names(struct audit_context
*context
)
531 if (context
->auditable
532 ||context
->put_count
+ context
->ino_count
!= context
->name_count
) {
533 printk(KERN_ERR
"audit.c:%d(:%d): major=%d in_syscall=%d"
534 " name_count=%d put_count=%d"
535 " ino_count=%d [NOT freeing]\n",
537 context
->serial
, context
->major
, context
->in_syscall
,
538 context
->name_count
, context
->put_count
,
540 for (i
= 0; i
< context
->name_count
; i
++)
541 printk(KERN_ERR
"names[%d] = %p = %s\n", i
,
542 context
->names
[i
].name
,
543 context
->names
[i
].name
);
549 context
->put_count
= 0;
550 context
->ino_count
= 0;
553 for (i
= 0; i
< context
->name_count
; i
++)
554 if (context
->names
[i
].name
)
555 __putname(context
->names
[i
].name
);
556 context
->name_count
= 0;
560 mntput(context
->pwdmnt
);
562 context
->pwdmnt
= NULL
;
565 static inline void audit_free_aux(struct audit_context
*context
)
567 struct audit_aux_data
*aux
;
569 while ((aux
= context
->aux
)) {
570 if (aux
->type
== AUDIT_AVC_PATH
) {
571 struct audit_aux_data_path
*axi
= (void *)aux
;
575 context
->aux
= aux
->next
;
580 static inline void audit_zero_context(struct audit_context
*context
,
581 enum audit_state state
)
583 uid_t loginuid
= context
->loginuid
;
585 memset(context
, 0, sizeof(*context
));
586 context
->state
= state
;
587 context
->loginuid
= loginuid
;
590 static inline struct audit_context
*audit_alloc_context(enum audit_state state
)
592 struct audit_context
*context
;
594 if (!(context
= kmalloc(sizeof(*context
), GFP_KERNEL
)))
596 audit_zero_context(context
, state
);
600 /* Filter on the task information and allocate a per-task audit context
601 * if necessary. Doing so turns on system call auditing for the
602 * specified task. This is called from copy_process, so no lock is
604 int audit_alloc(struct task_struct
*tsk
)
606 struct audit_context
*context
;
607 enum audit_state state
;
609 if (likely(!audit_enabled
))
610 return 0; /* Return if not auditing. */
612 state
= audit_filter_task(tsk
);
613 if (likely(state
== AUDIT_DISABLED
))
616 if (!(context
= audit_alloc_context(state
))) {
617 audit_log_lost("out of memory in audit_alloc");
621 /* Preserve login uid */
622 context
->loginuid
= -1;
623 if (current
->audit_context
)
624 context
->loginuid
= current
->audit_context
->loginuid
;
626 tsk
->audit_context
= context
;
627 set_tsk_thread_flag(tsk
, TIF_SYSCALL_AUDIT
);
631 static inline void audit_free_context(struct audit_context
*context
)
633 struct audit_context
*previous
;
637 previous
= context
->previous
;
638 if (previous
|| (count
&& count
< 10)) {
640 printk(KERN_ERR
"audit(:%d): major=%d name_count=%d:"
641 " freeing multiple contexts (%d)\n",
642 context
->serial
, context
->major
,
643 context
->name_count
, count
);
645 audit_free_names(context
);
646 audit_free_aux(context
);
651 printk(KERN_ERR
"audit: freed %d contexts\n", count
);
654 static void audit_log_task_info(struct audit_buffer
*ab
)
656 char name
[sizeof(current
->comm
)];
657 struct mm_struct
*mm
= current
->mm
;
658 struct vm_area_struct
*vma
;
660 get_task_comm(name
, current
);
661 audit_log_format(ab
, " comm=");
662 audit_log_untrustedstring(ab
, name
);
667 down_read(&mm
->mmap_sem
);
670 if ((vma
->vm_flags
& VM_EXECUTABLE
) &&
672 audit_log_d_path(ab
, "exe=",
673 vma
->vm_file
->f_dentry
,
674 vma
->vm_file
->f_vfsmnt
);
679 up_read(&mm
->mmap_sem
);
682 static void audit_log_exit(struct audit_context
*context
)
685 struct audit_buffer
*ab
;
686 struct audit_aux_data
*aux
;
688 ab
= audit_log_start(context
, AUDIT_SYSCALL
);
690 return; /* audit_panic has been called */
691 audit_log_format(ab
, "arch=%x syscall=%d",
692 context
->arch
, context
->major
);
693 if (context
->personality
!= PER_LINUX
)
694 audit_log_format(ab
, " per=%lx", context
->personality
);
695 if (context
->return_valid
)
696 audit_log_format(ab
, " success=%s exit=%ld",
697 (context
->return_valid
==AUDITSC_SUCCESS
)?"yes":"no",
698 context
->return_code
);
700 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
701 " pid=%d auid=%u uid=%u gid=%u"
702 " euid=%u suid=%u fsuid=%u"
703 " egid=%u sgid=%u fsgid=%u",
713 context
->euid
, context
->suid
, context
->fsuid
,
714 context
->egid
, context
->sgid
, context
->fsgid
);
715 audit_log_task_info(ab
);
718 for (aux
= context
->aux
; aux
; aux
= aux
->next
) {
720 ab
= audit_log_start(context
, aux
->type
);
722 continue; /* audit_panic has been called */
726 struct audit_aux_data_ipcctl
*axi
= (void *)aux
;
728 " qbytes=%lx iuid=%u igid=%u mode=%x",
729 axi
->qbytes
, axi
->uid
, axi
->gid
, axi
->mode
);
732 case AUDIT_SOCKETCALL
: {
734 struct audit_aux_data_socketcall
*axs
= (void *)aux
;
735 audit_log_format(ab
, "nargs=%d", axs
->nargs
);
736 for (i
=0; i
<axs
->nargs
; i
++)
737 audit_log_format(ab
, " a%d=%lx", i
, axs
->args
[i
]);
740 case AUDIT_SOCKADDR
: {
741 struct audit_aux_data_sockaddr
*axs
= (void *)aux
;
743 audit_log_format(ab
, "saddr=");
744 audit_log_hex(ab
, axs
->a
, axs
->len
);
747 case AUDIT_AVC_PATH
: {
748 struct audit_aux_data_path
*axi
= (void *)aux
;
749 audit_log_d_path(ab
, "path=", axi
->dentry
, axi
->mnt
);
756 if (context
->pwd
&& context
->pwdmnt
) {
757 ab
= audit_log_start(context
, AUDIT_CWD
);
759 audit_log_d_path(ab
, "cwd=", context
->pwd
, context
->pwdmnt
);
763 for (i
= 0; i
< context
->name_count
; i
++) {
764 ab
= audit_log_start(context
, AUDIT_PATH
);
766 continue; /* audit_panic has been called */
768 audit_log_format(ab
, "item=%d", i
);
769 if (context
->names
[i
].name
) {
770 audit_log_format(ab
, " name=");
771 audit_log_untrustedstring(ab
, context
->names
[i
].name
);
773 if (context
->names
[i
].ino
!= (unsigned long)-1)
774 audit_log_format(ab
, " inode=%lu dev=%02x:%02x mode=%#o"
775 " ouid=%u ogid=%u rdev=%02x:%02x",
776 context
->names
[i
].ino
,
777 MAJOR(context
->names
[i
].dev
),
778 MINOR(context
->names
[i
].dev
),
779 context
->names
[i
].mode
,
780 context
->names
[i
].uid
,
781 context
->names
[i
].gid
,
782 MAJOR(context
->names
[i
].rdev
),
783 MINOR(context
->names
[i
].rdev
));
788 /* Free a per-task audit context. Called from copy_process and
789 * __put_task_struct. */
790 void audit_free(struct task_struct
*tsk
)
792 struct audit_context
*context
;
795 context
= audit_get_context(tsk
, 0, 0);
798 if (likely(!context
))
801 /* Check for system calls that do not go through the exit
802 * function (e.g., exit_group), then free context block. */
803 if (context
->in_syscall
&& context
->auditable
&& context
->pid
!= audit_pid
)
804 audit_log_exit(context
);
806 audit_free_context(context
);
809 /* Fill in audit context at syscall entry. This only happens if the
810 * audit context was created when the task was created and the state or
811 * filters demand the audit context be built. If the state from the
812 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
813 * then the record will be written at syscall exit time (otherwise, it
814 * will only be written if another part of the kernel requests that it
816 void audit_syscall_entry(struct task_struct
*tsk
, int arch
, int major
,
817 unsigned long a1
, unsigned long a2
,
818 unsigned long a3
, unsigned long a4
)
820 struct audit_context
*context
= tsk
->audit_context
;
821 enum audit_state state
;
825 /* This happens only on certain architectures that make system
826 * calls in kernel_thread via the entry.S interface, instead of
827 * with direct calls. (If you are porting to a new
828 * architecture, hitting this condition can indicate that you
829 * got the _exit/_leave calls backward in entry.S.)
833 * ppc64 yes (see arch/ppc64/kernel/misc.S)
835 * This also happens with vm86 emulation in a non-nested manner
836 * (entries without exits), so this case must be caught.
838 if (context
->in_syscall
) {
839 struct audit_context
*newctx
;
841 #if defined(__NR_vm86) && defined(__NR_vm86old)
842 /* vm86 mode should only be entered once */
843 if (major
== __NR_vm86
|| major
== __NR_vm86old
)
848 "audit(:%d) pid=%d in syscall=%d;"
849 " entering syscall=%d\n",
850 context
->serial
, tsk
->pid
, context
->major
, major
);
852 newctx
= audit_alloc_context(context
->state
);
854 newctx
->previous
= context
;
856 tsk
->audit_context
= newctx
;
858 /* If we can't alloc a new context, the best we
859 * can do is to leak memory (any pending putname
860 * will be lost). The only other alternative is
861 * to abandon auditing. */
862 audit_zero_context(context
, context
->state
);
865 BUG_ON(context
->in_syscall
|| context
->name_count
);
870 context
->arch
= arch
;
871 context
->major
= major
;
872 context
->argv
[0] = a1
;
873 context
->argv
[1] = a2
;
874 context
->argv
[2] = a3
;
875 context
->argv
[3] = a4
;
877 state
= context
->state
;
878 if (state
== AUDIT_SETUP_CONTEXT
|| state
== AUDIT_BUILD_CONTEXT
)
879 state
= audit_filter_syscall(tsk
, context
, &audit_entlist
);
880 if (likely(state
== AUDIT_DISABLED
))
883 context
->serial
= audit_serial();
884 context
->ctime
= CURRENT_TIME
;
885 context
->in_syscall
= 1;
886 context
->auditable
= !!(state
== AUDIT_RECORD_CONTEXT
);
889 /* Tear down after system call. If the audit context has been marked as
890 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
891 * filtering, or because some other part of the kernel write an audit
892 * message), then write out the syscall information. In call cases,
893 * free the names stored from getname(). */
894 void audit_syscall_exit(struct task_struct
*tsk
, int valid
, long return_code
)
896 struct audit_context
*context
;
898 get_task_struct(tsk
);
900 context
= audit_get_context(tsk
, valid
, return_code
);
903 /* Not having a context here is ok, since the parent may have
904 * called __put_task_struct. */
905 if (likely(!context
))
908 if (context
->in_syscall
&& context
->auditable
&& context
->pid
!= audit_pid
)
909 audit_log_exit(context
);
911 context
->in_syscall
= 0;
912 context
->auditable
= 0;
914 if (context
->previous
) {
915 struct audit_context
*new_context
= context
->previous
;
916 context
->previous
= NULL
;
917 audit_free_context(context
);
918 tsk
->audit_context
= new_context
;
920 audit_free_names(context
);
921 audit_free_aux(context
);
922 audit_zero_context(context
, context
->state
);
923 tsk
->audit_context
= context
;
925 put_task_struct(tsk
);
928 /* Add a name to the list. Called from fs/namei.c:getname(). */
929 void audit_getname(const char *name
)
931 struct audit_context
*context
= current
->audit_context
;
933 if (!context
|| IS_ERR(name
) || !name
)
936 if (!context
->in_syscall
) {
938 printk(KERN_ERR
"%s:%d(:%d): ignoring getname(%p)\n",
939 __FILE__
, __LINE__
, context
->serial
, name
);
944 BUG_ON(context
->name_count
>= AUDIT_NAMES
);
945 context
->names
[context
->name_count
].name
= name
;
946 context
->names
[context
->name_count
].ino
= (unsigned long)-1;
947 ++context
->name_count
;
949 read_lock(¤t
->fs
->lock
);
950 context
->pwd
= dget(current
->fs
->pwd
);
951 context
->pwdmnt
= mntget(current
->fs
->pwdmnt
);
952 read_unlock(¤t
->fs
->lock
);
957 /* Intercept a putname request. Called from
958 * include/linux/fs.h:putname(). If we have stored the name from
959 * getname in the audit context, then we delay the putname until syscall
961 void audit_putname(const char *name
)
963 struct audit_context
*context
= current
->audit_context
;
966 if (!context
->in_syscall
) {
968 printk(KERN_ERR
"%s:%d(:%d): __putname(%p)\n",
969 __FILE__
, __LINE__
, context
->serial
, name
);
970 if (context
->name_count
) {
972 for (i
= 0; i
< context
->name_count
; i
++)
973 printk(KERN_ERR
"name[%d] = %p = %s\n", i
,
974 context
->names
[i
].name
,
975 context
->names
[i
].name
);
982 ++context
->put_count
;
983 if (context
->put_count
> context
->name_count
) {
984 printk(KERN_ERR
"%s:%d(:%d): major=%d"
985 " in_syscall=%d putname(%p) name_count=%d"
988 context
->serial
, context
->major
,
989 context
->in_syscall
, name
, context
->name_count
,
997 /* Store the inode and device from a lookup. Called from
998 * fs/namei.c:path_lookup(). */
999 void audit_inode(const char *name
, const struct inode
*inode
)
1002 struct audit_context
*context
= current
->audit_context
;
1004 if (!context
->in_syscall
)
1006 if (context
->name_count
1007 && context
->names
[context
->name_count
-1].name
1008 && context
->names
[context
->name_count
-1].name
== name
)
1009 idx
= context
->name_count
- 1;
1010 else if (context
->name_count
> 1
1011 && context
->names
[context
->name_count
-2].name
1012 && context
->names
[context
->name_count
-2].name
== name
)
1013 idx
= context
->name_count
- 2;
1015 /* FIXME: how much do we care about inodes that have no
1016 * associated name? */
1017 if (context
->name_count
>= AUDIT_NAMES
- AUDIT_NAMES_RESERVED
)
1019 idx
= context
->name_count
++;
1020 context
->names
[idx
].name
= NULL
;
1022 ++context
->ino_count
;
1025 context
->names
[idx
].ino
= inode
->i_ino
;
1026 context
->names
[idx
].dev
= inode
->i_sb
->s_dev
;
1027 context
->names
[idx
].mode
= inode
->i_mode
;
1028 context
->names
[idx
].uid
= inode
->i_uid
;
1029 context
->names
[idx
].gid
= inode
->i_gid
;
1030 context
->names
[idx
].rdev
= inode
->i_rdev
;
1033 void auditsc_get_stamp(struct audit_context
*ctx
,
1034 struct timespec
*t
, unsigned int *serial
)
1036 t
->tv_sec
= ctx
->ctime
.tv_sec
;
1037 t
->tv_nsec
= ctx
->ctime
.tv_nsec
;
1038 *serial
= ctx
->serial
;
1042 int audit_set_loginuid(struct task_struct
*task
, uid_t loginuid
)
1044 if (task
->audit_context
) {
1045 struct audit_buffer
*ab
;
1047 ab
= audit_log_start(NULL
, AUDIT_LOGIN
);
1049 audit_log_format(ab
, "login pid=%d uid=%u "
1050 "old auid=%u new auid=%u",
1051 task
->pid
, task
->uid
,
1052 task
->audit_context
->loginuid
, loginuid
);
1055 task
->audit_context
->loginuid
= loginuid
;
1060 uid_t
audit_get_loginuid(struct audit_context
*ctx
)
1062 return ctx
? ctx
->loginuid
: -1;
1065 int audit_ipc_perms(unsigned long qbytes
, uid_t uid
, gid_t gid
, mode_t mode
)
1067 struct audit_aux_data_ipcctl
*ax
;
1068 struct audit_context
*context
= current
->audit_context
;
1070 if (likely(!context
))
1073 ax
= kmalloc(sizeof(*ax
), GFP_KERNEL
);
1077 ax
->qbytes
= qbytes
;
1082 ax
->d
.type
= AUDIT_IPC
;
1083 ax
->d
.next
= context
->aux
;
1084 context
->aux
= (void *)ax
;
1088 int audit_socketcall(int nargs
, unsigned long *args
)
1090 struct audit_aux_data_socketcall
*ax
;
1091 struct audit_context
*context
= current
->audit_context
;
1093 if (likely(!context
))
1096 ax
= kmalloc(sizeof(*ax
) + nargs
* sizeof(unsigned long), GFP_KERNEL
);
1101 memcpy(ax
->args
, args
, nargs
* sizeof(unsigned long));
1103 ax
->d
.type
= AUDIT_SOCKETCALL
;
1104 ax
->d
.next
= context
->aux
;
1105 context
->aux
= (void *)ax
;
1109 int audit_sockaddr(int len
, void *a
)
1111 struct audit_aux_data_sockaddr
*ax
;
1112 struct audit_context
*context
= current
->audit_context
;
1114 if (likely(!context
))
1117 ax
= kmalloc(sizeof(*ax
) + len
, GFP_KERNEL
);
1122 memcpy(ax
->a
, a
, len
);
1124 ax
->d
.type
= AUDIT_SOCKADDR
;
1125 ax
->d
.next
= context
->aux
;
1126 context
->aux
= (void *)ax
;
1130 int audit_avc_path(struct dentry
*dentry
, struct vfsmount
*mnt
)
1132 struct audit_aux_data_path
*ax
;
1133 struct audit_context
*context
= current
->audit_context
;
1135 if (likely(!context
))
1138 ax
= kmalloc(sizeof(*ax
), GFP_ATOMIC
);
1142 ax
->dentry
= dget(dentry
);
1143 ax
->mnt
= mntget(mnt
);
1145 ax
->d
.type
= AUDIT_AVC_PATH
;
1146 ax
->d
.next
= context
->aux
;
1147 context
->aux
= (void *)ax
;
1151 void audit_signal_info(int sig
, struct task_struct
*t
)
1153 extern pid_t audit_sig_pid
;
1154 extern uid_t audit_sig_uid
;
1156 if (unlikely(audit_pid
&& t
->pid
== audit_pid
)) {
1157 if (sig
== SIGTERM
|| sig
== SIGHUP
) {
1158 struct audit_context
*ctx
= current
->audit_context
;
1159 audit_sig_pid
= current
->pid
;
1161 audit_sig_uid
= ctx
->loginuid
;
1163 audit_sig_uid
= current
->uid
;