|  | 85c8721 | 2005-04-29 16:23:29 +0100 | [diff] [blame] | 1 | /* auditsc.c -- System-call auditing support | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Handles all system-call specific auditing features. | 
|  | 3 | * | 
|  | 4 | * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina. | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 5 | * Copyright 2005 Hewlett-Packard Development Company, L.P. | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 6 | * Copyright (C) 2005, 2006 IBM Corporation | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * All Rights Reserved. | 
|  | 8 | * | 
|  | 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. | 
|  | 13 | * | 
|  | 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. | 
|  | 18 | * | 
|  | 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 | 
|  | 22 | * | 
|  | 23 | * Written by Rickard E. (Rik) Faith <faith@redhat.com> | 
|  | 24 | * | 
|  | 25 | * Many of the ideas implemented here are from Stephen C. Tweedie, | 
|  | 26 | * especially the idea of avoiding a copy by using getname. | 
|  | 27 | * | 
|  | 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. | 
|  | 31 | * | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 32 | * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>, | 
|  | 33 | * 2006. | 
|  | 34 | * | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 35 | * The support of additional filter rules compares (>, <, >=, <=) was | 
|  | 36 | * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005. | 
|  | 37 | * | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 38 | * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional | 
|  | 39 | * filesystem information. | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 40 | * | 
|  | 41 | * Subject and object context labeling support added by <danjones@us.ibm.com> | 
|  | 42 | * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | */ | 
|  | 44 |  | 
|  | 45 | #include <linux/init.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/types.h> | 
| Alan Cox | 715b49e | 2006-01-18 17:44:07 -0800 | [diff] [blame] | 47 | #include <asm/atomic.h> | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 48 | #include <linux/fs.h> | 
|  | 49 | #include <linux/namei.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/mm.h> | 
|  | 51 | #include <linux/module.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 52 | #include <linux/slab.h> | 
| Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 53 | #include <linux/mount.h> | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 54 | #include <linux/socket.h> | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 55 | #include <linux/mqueue.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <linux/audit.h> | 
|  | 57 | #include <linux/personality.h> | 
|  | 58 | #include <linux/time.h> | 
| David Woodhouse | 5bb289b | 2005-06-24 14:14:05 +0100 | [diff] [blame] | 59 | #include <linux/netlink.h> | 
| David Woodhouse | f556196 | 2005-07-13 22:47:07 +0100 | [diff] [blame] | 60 | #include <linux/compiler.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <asm/unistd.h> | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 62 | #include <linux/security.h> | 
| David Woodhouse | fe7752b | 2005-12-15 18:33:52 +0000 | [diff] [blame] | 63 | #include <linux/list.h> | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 64 | #include <linux/tty.h> | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 65 | #include <linux/binfmts.h> | 
| Al Viro | a1f8e7f | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 66 | #include <linux/highmem.h> | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 67 | #include <linux/syscalls.h> | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 68 | #include <linux/capability.h> | 
| Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 69 | #include <linux/fs_struct.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
| David Woodhouse | fe7752b | 2005-12-15 18:33:52 +0000 | [diff] [blame] | 71 | #include "audit.h" | 
|  | 72 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | 
|  | 76 |  | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 77 | /* Indicates that audit should log the full pathname. */ | 
|  | 78 | #define AUDIT_NAME_FULL -1 | 
|  | 79 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 80 | /* no execve audit message should be longer than this (userspace limits) */ | 
|  | 81 | #define MAX_EXECVE_AUDIT_LEN 7500 | 
|  | 82 |  | 
| Al Viro | 471a5c7 | 2006-07-10 08:29:24 -0400 | [diff] [blame] | 83 | /* number of audit rules */ | 
|  | 84 | int audit_n_rules; | 
|  | 85 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 86 | /* determines whether we collect data for signals sent */ | 
|  | 87 | int audit_signals; | 
|  | 88 |  | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 89 | struct audit_cap_data { | 
|  | 90 | kernel_cap_t		permitted; | 
|  | 91 | kernel_cap_t		inheritable; | 
|  | 92 | union { | 
|  | 93 | unsigned int	fE;		/* effective bit of a file capability */ | 
|  | 94 | kernel_cap_t	effective;	/* effective set of a process */ | 
|  | 95 | }; | 
|  | 96 | }; | 
|  | 97 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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). | 
|  | 101 | * | 
|  | 102 | * Further, in fs/namei.c:path_lookup() we store the inode and device. */ | 
|  | 103 | struct audit_names { | 
|  | 104 | const char	*name; | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 105 | int		name_len;	/* number of name's characters to log */ | 
|  | 106 | unsigned	name_put;	/* call __putname() for this name */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | unsigned long	ino; | 
|  | 108 | dev_t		dev; | 
|  | 109 | umode_t		mode; | 
|  | 110 | uid_t		uid; | 
|  | 111 | gid_t		gid; | 
|  | 112 | dev_t		rdev; | 
| Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 113 | u32		osid; | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 114 | struct audit_cap_data fcap; | 
|  | 115 | unsigned int	fcap_ver; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }; | 
|  | 117 |  | 
|  | 118 | struct audit_aux_data { | 
|  | 119 | struct audit_aux_data	*next; | 
|  | 120 | int			type; | 
|  | 121 | }; | 
|  | 122 |  | 
|  | 123 | #define AUDIT_AUX_IPCPERM	0 | 
|  | 124 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 125 | /* Number of target pids per aux struct. */ | 
|  | 126 | #define AUDIT_AUX_PIDS	16 | 
|  | 127 |  | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 128 | struct audit_aux_data_execve { | 
|  | 129 | struct audit_aux_data	d; | 
|  | 130 | int argc; | 
|  | 131 | int envc; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 132 | struct mm_struct *mm; | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 133 | }; | 
|  | 134 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 135 | struct audit_aux_data_pids { | 
|  | 136 | struct audit_aux_data	d; | 
|  | 137 | pid_t			target_pid[AUDIT_AUX_PIDS]; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 138 | uid_t			target_auid[AUDIT_AUX_PIDS]; | 
|  | 139 | uid_t			target_uid[AUDIT_AUX_PIDS]; | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 140 | unsigned int		target_sessionid[AUDIT_AUX_PIDS]; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 141 | u32			target_sid[AUDIT_AUX_PIDS]; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 142 | char 			target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN]; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 143 | int			pid_count; | 
|  | 144 | }; | 
|  | 145 |  | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 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; | 
|  | 152 | }; | 
|  | 153 |  | 
| Eric Paris | e68b75a0 | 2008-11-11 21:48:22 +1100 | [diff] [blame] | 154 | struct audit_aux_data_capset { | 
|  | 155 | struct audit_aux_data	d; | 
|  | 156 | pid_t			pid; | 
|  | 157 | struct audit_cap_data	cap; | 
|  | 158 | }; | 
|  | 159 |  | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 160 | struct audit_tree_refs { | 
|  | 161 | struct audit_tree_refs *next; | 
|  | 162 | struct audit_chunk *c[31]; | 
|  | 163 | }; | 
|  | 164 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | /* The per-task audit context. */ | 
|  | 166 | struct audit_context { | 
| Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 167 | int		    dummy;	/* must be the first element */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | int		    in_syscall;	/* 1 if task is in a syscall */ | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 169 | enum audit_state    state, current_state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | unsigned int	    serial;     /* serial number for record */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | int		    major;      /* syscall number */ | 
| Eric Paris | 44e51a1 | 2009-08-07 16:54:29 -0400 | [diff] [blame] | 172 | struct timespec	    ctime;      /* time of syscall entry */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | unsigned long	    argv[4];    /* syscall arguments */ | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 174 | long		    return_code;/* syscall return code */ | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 175 | u64		    prio; | 
| Eric Paris | 44e51a1 | 2009-08-07 16:54:29 -0400 | [diff] [blame] | 176 | int		    return_valid; /* return code is valid */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | int		    name_count; | 
|  | 178 | struct audit_names  names[AUDIT_NAMES]; | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 179 | char *		    filterkey;	/* key for rule that triggered record */ | 
| Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 180 | struct path	    pwd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | struct audit_context *previous; /* For nested syscalls */ | 
|  | 182 | struct audit_aux_data *aux; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 183 | struct audit_aux_data *aux_pids; | 
| Al Viro | 4f6b434 | 2008-12-09 19:50:34 -0500 | [diff] [blame] | 184 | struct sockaddr_storage *sockaddr; | 
|  | 185 | size_t sockaddr_len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* Save things to print about task_struct */ | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 187 | pid_t		    pid, ppid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | uid_t		    uid, euid, suid, fsuid; | 
|  | 189 | gid_t		    gid, egid, sgid, fsgid; | 
|  | 190 | unsigned long	    personality; | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 191 | int		    arch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 |  | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 193 | pid_t		    target_pid; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 194 | uid_t		    target_auid; | 
|  | 195 | uid_t		    target_uid; | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 196 | unsigned int	    target_sessionid; | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 197 | u32		    target_sid; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 198 | char		    target_comm[TASK_COMM_LEN]; | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 199 |  | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 200 | struct audit_tree_refs *trees, *first_trees; | 
| Al Viro | 916d757 | 2009-06-24 00:02:38 -0400 | [diff] [blame] | 201 | struct list_head killed_trees; | 
| Eric Paris | 44e51a1 | 2009-08-07 16:54:29 -0400 | [diff] [blame] | 202 | int tree_count; | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 203 |  | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 204 | int type; | 
|  | 205 | union { | 
|  | 206 | struct { | 
|  | 207 | int nargs; | 
|  | 208 | long args[6]; | 
|  | 209 | } socketcall; | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 210 | struct { | 
|  | 211 | uid_t			uid; | 
|  | 212 | gid_t			gid; | 
|  | 213 | mode_t			mode; | 
|  | 214 | u32			osid; | 
| Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 215 | int			has_perm; | 
|  | 216 | uid_t			perm_uid; | 
|  | 217 | gid_t			perm_gid; | 
|  | 218 | mode_t			perm_mode; | 
|  | 219 | unsigned long		qbytes; | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 220 | } ipc; | 
| Al Viro | 7392906 | 2008-12-10 06:58:59 -0500 | [diff] [blame] | 221 | struct { | 
|  | 222 | mqd_t			mqdes; | 
|  | 223 | struct mq_attr 		mqstat; | 
|  | 224 | } mq_getsetattr; | 
| Al Viro | 20114f7 | 2008-12-10 07:16:12 -0500 | [diff] [blame] | 225 | struct { | 
|  | 226 | mqd_t			mqdes; | 
|  | 227 | int			sigev_signo; | 
|  | 228 | } mq_notify; | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 229 | struct { | 
|  | 230 | mqd_t			mqdes; | 
|  | 231 | size_t			msg_len; | 
|  | 232 | unsigned int		msg_prio; | 
|  | 233 | struct timespec		abs_timeout; | 
|  | 234 | } mq_sendrecv; | 
| Al Viro | 564f699 | 2008-12-14 04:02:26 -0500 | [diff] [blame] | 235 | struct { | 
|  | 236 | int			oflag; | 
|  | 237 | mode_t			mode; | 
|  | 238 | struct mq_attr		attr; | 
|  | 239 | } mq_open; | 
| Al Viro | 57f71a0 | 2009-01-04 14:52:57 -0500 | [diff] [blame] | 240 | struct { | 
|  | 241 | pid_t			pid; | 
|  | 242 | struct audit_cap_data	cap; | 
|  | 243 | } capset; | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 244 | }; | 
| Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 245 | int fds[2]; | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 246 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | #if AUDIT_DEBUG | 
|  | 248 | int		    put_count; | 
|  | 249 | int		    ino_count; | 
|  | 250 | #endif | 
|  | 251 | }; | 
|  | 252 |  | 
| Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 253 | static inline int open_arg(int flags, int mask) | 
|  | 254 | { | 
|  | 255 | int n = ACC_MODE(flags); | 
|  | 256 | if (flags & (O_TRUNC | O_CREAT)) | 
|  | 257 | n |= AUDIT_PERM_WRITE; | 
|  | 258 | return n & mask; | 
|  | 259 | } | 
|  | 260 |  | 
|  | 261 | static int audit_match_perm(struct audit_context *ctx, int mask) | 
|  | 262 | { | 
| Cordelia | c4bacef | 2008-08-18 09:45:51 -0700 | [diff] [blame] | 263 | unsigned n; | 
| zhangxiliang | 1a61c88 | 2008-08-02 10:56:37 +0800 | [diff] [blame] | 264 | if (unlikely(!ctx)) | 
|  | 265 | return 0; | 
| Cordelia | c4bacef | 2008-08-18 09:45:51 -0700 | [diff] [blame] | 266 | n = ctx->major; | 
| Alan Cox | dbda4c0 | 2008-10-13 10:40:53 +0100 | [diff] [blame] | 267 |  | 
| Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 268 | switch (audit_classify_syscall(ctx->arch, n)) { | 
|  | 269 | case 0:	/* native */ | 
|  | 270 | if ((mask & AUDIT_PERM_WRITE) && | 
|  | 271 | audit_match_class(AUDIT_CLASS_WRITE, n)) | 
|  | 272 | return 1; | 
|  | 273 | if ((mask & AUDIT_PERM_READ) && | 
|  | 274 | audit_match_class(AUDIT_CLASS_READ, n)) | 
|  | 275 | return 1; | 
|  | 276 | if ((mask & AUDIT_PERM_ATTR) && | 
|  | 277 | audit_match_class(AUDIT_CLASS_CHATTR, n)) | 
|  | 278 | return 1; | 
|  | 279 | return 0; | 
|  | 280 | case 1: /* 32bit on biarch */ | 
|  | 281 | if ((mask & AUDIT_PERM_WRITE) && | 
|  | 282 | audit_match_class(AUDIT_CLASS_WRITE_32, n)) | 
|  | 283 | return 1; | 
|  | 284 | if ((mask & AUDIT_PERM_READ) && | 
|  | 285 | audit_match_class(AUDIT_CLASS_READ_32, n)) | 
|  | 286 | return 1; | 
|  | 287 | if ((mask & AUDIT_PERM_ATTR) && | 
|  | 288 | audit_match_class(AUDIT_CLASS_CHATTR_32, n)) | 
|  | 289 | return 1; | 
|  | 290 | return 0; | 
|  | 291 | case 2: /* open */ | 
|  | 292 | return mask & ACC_MODE(ctx->argv[1]); | 
|  | 293 | case 3: /* openat */ | 
|  | 294 | return mask & ACC_MODE(ctx->argv[2]); | 
|  | 295 | case 4: /* socketcall */ | 
|  | 296 | return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND); | 
|  | 297 | case 5: /* execve */ | 
|  | 298 | return mask & AUDIT_PERM_EXEC; | 
|  | 299 | default: | 
|  | 300 | return 0; | 
|  | 301 | } | 
|  | 302 | } | 
|  | 303 |  | 
| Al Viro | 8b67dca | 2008-04-28 04:15:49 -0400 | [diff] [blame] | 304 | static int audit_match_filetype(struct audit_context *ctx, int which) | 
|  | 305 | { | 
|  | 306 | unsigned index = which & ~S_IFMT; | 
|  | 307 | mode_t mode = which & S_IFMT; | 
| zhangxiliang | 1a61c88 | 2008-08-02 10:56:37 +0800 | [diff] [blame] | 308 |  | 
|  | 309 | if (unlikely(!ctx)) | 
|  | 310 | return 0; | 
|  | 311 |  | 
| Al Viro | 8b67dca | 2008-04-28 04:15:49 -0400 | [diff] [blame] | 312 | if (index >= ctx->name_count) | 
|  | 313 | return 0; | 
|  | 314 | if (ctx->names[index].ino == -1) | 
|  | 315 | return 0; | 
|  | 316 | if ((ctx->names[index].mode ^ mode) & S_IFMT) | 
|  | 317 | return 0; | 
|  | 318 | return 1; | 
|  | 319 | } | 
|  | 320 |  | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 321 | /* | 
|  | 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. | 
|  | 329 | */ | 
|  | 330 |  | 
|  | 331 | #ifdef CONFIG_AUDIT_TREE | 
| Eric Paris | 679173b | 2009-01-26 18:09:45 -0500 | [diff] [blame] | 332 | static void audit_set_auditable(struct audit_context *ctx) | 
|  | 333 | { | 
|  | 334 | if (!ctx->prio) { | 
|  | 335 | ctx->prio = 1; | 
|  | 336 | ctx->current_state = AUDIT_RECORD_CONTEXT; | 
|  | 337 | } | 
|  | 338 | } | 
|  | 339 |  | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 340 | static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk) | 
|  | 341 | { | 
|  | 342 | struct audit_tree_refs *p = ctx->trees; | 
|  | 343 | int left = ctx->tree_count; | 
|  | 344 | if (likely(left)) { | 
|  | 345 | p->c[--left] = chunk; | 
|  | 346 | ctx->tree_count = left; | 
|  | 347 | return 1; | 
|  | 348 | } | 
|  | 349 | if (!p) | 
|  | 350 | return 0; | 
|  | 351 | p = p->next; | 
|  | 352 | if (p) { | 
|  | 353 | p->c[30] = chunk; | 
|  | 354 | ctx->trees = p; | 
|  | 355 | ctx->tree_count = 30; | 
|  | 356 | return 1; | 
|  | 357 | } | 
|  | 358 | return 0; | 
|  | 359 | } | 
|  | 360 |  | 
|  | 361 | static int grow_tree_refs(struct audit_context *ctx) | 
|  | 362 | { | 
|  | 363 | struct audit_tree_refs *p = ctx->trees; | 
|  | 364 | ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL); | 
|  | 365 | if (!ctx->trees) { | 
|  | 366 | ctx->trees = p; | 
|  | 367 | return 0; | 
|  | 368 | } | 
|  | 369 | if (p) | 
|  | 370 | p->next = ctx->trees; | 
|  | 371 | else | 
|  | 372 | ctx->first_trees = ctx->trees; | 
|  | 373 | ctx->tree_count = 31; | 
|  | 374 | return 1; | 
|  | 375 | } | 
|  | 376 | #endif | 
|  | 377 |  | 
|  | 378 | static void unroll_tree_refs(struct audit_context *ctx, | 
|  | 379 | struct audit_tree_refs *p, int count) | 
|  | 380 | { | 
|  | 381 | #ifdef CONFIG_AUDIT_TREE | 
|  | 382 | struct audit_tree_refs *q; | 
|  | 383 | int n; | 
|  | 384 | if (!p) { | 
|  | 385 | /* we started with empty chain */ | 
|  | 386 | p = ctx->first_trees; | 
|  | 387 | count = 31; | 
|  | 388 | /* if the very first allocation has failed, nothing to do */ | 
|  | 389 | if (!p) | 
|  | 390 | return; | 
|  | 391 | } | 
|  | 392 | n = count; | 
|  | 393 | for (q = p; q != ctx->trees; q = q->next, n = 31) { | 
|  | 394 | while (n--) { | 
|  | 395 | audit_put_chunk(q->c[n]); | 
|  | 396 | q->c[n] = NULL; | 
|  | 397 | } | 
|  | 398 | } | 
|  | 399 | while (n-- > ctx->tree_count) { | 
|  | 400 | audit_put_chunk(q->c[n]); | 
|  | 401 | q->c[n] = NULL; | 
|  | 402 | } | 
|  | 403 | ctx->trees = p; | 
|  | 404 | ctx->tree_count = count; | 
|  | 405 | #endif | 
|  | 406 | } | 
|  | 407 |  | 
|  | 408 | static void free_tree_refs(struct audit_context *ctx) | 
|  | 409 | { | 
|  | 410 | struct audit_tree_refs *p, *q; | 
|  | 411 | for (p = ctx->first_trees; p; p = q) { | 
|  | 412 | q = p->next; | 
|  | 413 | kfree(p); | 
|  | 414 | } | 
|  | 415 | } | 
|  | 416 |  | 
|  | 417 | static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree) | 
|  | 418 | { | 
|  | 419 | #ifdef CONFIG_AUDIT_TREE | 
|  | 420 | struct audit_tree_refs *p; | 
|  | 421 | int n; | 
|  | 422 | if (!tree) | 
|  | 423 | return 0; | 
|  | 424 | /* full ones */ | 
|  | 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)) | 
|  | 428 | return 1; | 
|  | 429 | } | 
|  | 430 | /* partial */ | 
|  | 431 | if (p) { | 
|  | 432 | for (n = ctx->tree_count; n < 31; n++) | 
|  | 433 | if (audit_tree_match(p->c[n], tree)) | 
|  | 434 | return 1; | 
|  | 435 | } | 
|  | 436 | #endif | 
|  | 437 | return 0; | 
|  | 438 | } | 
|  | 439 |  | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 440 | /* Determine if any context name data matches a rule's watch data */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | /* Compare a task_struct with an audit_rule.  Return 1 on match, 0 | 
|  | 442 | * otherwise. */ | 
|  | 443 | static int audit_filter_rules(struct task_struct *tsk, | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 444 | struct audit_krule *rule, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | struct audit_context *ctx, | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 446 | struct audit_names *name, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | enum audit_state *state) | 
|  | 448 | { | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 449 | const struct cred *cred = get_task_cred(tsk); | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 450 | int i, j, need_sid = 1; | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 451 | u32 sid; | 
|  | 452 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | for (i = 0; i < rule->field_count; i++) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 454 | struct audit_field *f = &rule->fields[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | int result = 0; | 
|  | 456 |  | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 457 | switch (f->type) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | case AUDIT_PID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 459 | result = audit_comparator(tsk->pid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | break; | 
| Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 461 | case AUDIT_PPID: | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 462 | if (ctx) { | 
|  | 463 | if (!ctx->ppid) | 
|  | 464 | ctx->ppid = sys_getppid(); | 
| Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 465 | result = audit_comparator(ctx->ppid, f->op, f->val); | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 466 | } | 
| Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 467 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | case AUDIT_UID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 469 | result = audit_comparator(cred->uid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | break; | 
|  | 471 | case AUDIT_EUID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 472 | result = audit_comparator(cred->euid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | break; | 
|  | 474 | case AUDIT_SUID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 475 | result = audit_comparator(cred->suid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | break; | 
|  | 477 | case AUDIT_FSUID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 478 | result = audit_comparator(cred->fsuid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | break; | 
|  | 480 | case AUDIT_GID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 481 | result = audit_comparator(cred->gid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | break; | 
|  | 483 | case AUDIT_EGID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 484 | result = audit_comparator(cred->egid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | break; | 
|  | 486 | case AUDIT_SGID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 487 | result = audit_comparator(cred->sgid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | break; | 
|  | 489 | case AUDIT_FSGID: | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 490 | result = audit_comparator(cred->fsgid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | break; | 
|  | 492 | case AUDIT_PERS: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 493 | result = audit_comparator(tsk->personality, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | break; | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 495 | case AUDIT_ARCH: | 
| Daniel Walker | 9f8dbe9 | 2007-10-18 03:06:09 -0700 | [diff] [blame] | 496 | if (ctx) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 497 | result = audit_comparator(ctx->arch, f->op, f->val); | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 498 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 |  | 
|  | 500 | case AUDIT_EXIT: | 
|  | 501 | if (ctx && ctx->return_valid) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 502 | result = audit_comparator(ctx->return_code, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | break; | 
|  | 504 | case AUDIT_SUCCESS: | 
| David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 505 | if (ctx && ctx->return_valid) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 506 | if (f->val) | 
|  | 507 | result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS); | 
| David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 508 | else | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 509 | result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE); | 
| David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 510 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | break; | 
|  | 512 | case AUDIT_DEVMAJOR: | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 513 | if (name) | 
|  | 514 | result = audit_comparator(MAJOR(name->dev), | 
|  | 515 | f->op, f->val); | 
|  | 516 | else if (ctx) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | for (j = 0; j < ctx->name_count; j++) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 518 | if (audit_comparator(MAJOR(ctx->names[j].dev),	f->op, f->val)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | ++result; | 
|  | 520 | break; | 
|  | 521 | } | 
|  | 522 | } | 
|  | 523 | } | 
|  | 524 | break; | 
|  | 525 | case AUDIT_DEVMINOR: | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 526 | if (name) | 
|  | 527 | result = audit_comparator(MINOR(name->dev), | 
|  | 528 | f->op, f->val); | 
|  | 529 | else if (ctx) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | for (j = 0; j < ctx->name_count; j++) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 531 | if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | ++result; | 
|  | 533 | break; | 
|  | 534 | } | 
|  | 535 | } | 
|  | 536 | } | 
|  | 537 | break; | 
|  | 538 | case AUDIT_INODE: | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 539 | if (name) | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 540 | result = (name->ino == f->val); | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 541 | else if (ctx) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | for (j = 0; j < ctx->name_count; j++) { | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 543 | if (audit_comparator(ctx->names[j].ino, f->op, f->val)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | ++result; | 
|  | 545 | break; | 
|  | 546 | } | 
|  | 547 | } | 
|  | 548 | } | 
|  | 549 | break; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 550 | case AUDIT_WATCH: | 
| Eric Paris | ae7b8f4 | 2009-12-17 20:12:04 -0500 | [diff] [blame] | 551 | if (name) | 
|  | 552 | result = audit_watch_compare(rule->watch, name->ino, name->dev); | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 553 | break; | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 554 | case AUDIT_DIR: | 
|  | 555 | if (ctx) | 
|  | 556 | result = match_tree_refs(ctx, rule->tree); | 
|  | 557 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | case AUDIT_LOGINUID: | 
|  | 559 | result = 0; | 
|  | 560 | if (ctx) | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 561 | result = audit_comparator(tsk->loginuid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | break; | 
| Darrel Goeddel | 3a6b9f8 | 2006-06-29 16:56:39 -0500 | [diff] [blame] | 563 | case AUDIT_SUBJ_USER: | 
|  | 564 | case AUDIT_SUBJ_ROLE: | 
|  | 565 | case AUDIT_SUBJ_TYPE: | 
|  | 566 | case AUDIT_SUBJ_SEN: | 
|  | 567 | case AUDIT_SUBJ_CLR: | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 568 | /* NOTE: this may return negative values indicating | 
|  | 569 | a temporary error.  We simply treat this as a | 
|  | 570 | match for now to avoid losing information that | 
|  | 571 | may be wanted.   An error message will also be | 
|  | 572 | logged upon error */ | 
| Ahmed S. Darwish | 04305e4 | 2008-04-19 09:59:43 +1000 | [diff] [blame] | 573 | if (f->lsm_rule) { | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 574 | if (need_sid) { | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 575 | security_task_getsecid(tsk, &sid); | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 576 | need_sid = 0; | 
|  | 577 | } | 
| Ahmed S. Darwish | d7a96f3 | 2008-03-01 22:01:11 +0200 | [diff] [blame] | 578 | result = security_audit_rule_match(sid, f->type, | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 579 | f->op, | 
| Ahmed S. Darwish | 04305e4 | 2008-04-19 09:59:43 +1000 | [diff] [blame] | 580 | f->lsm_rule, | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 581 | ctx); | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 582 | } | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 583 | break; | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 584 | case AUDIT_OBJ_USER: | 
|  | 585 | case AUDIT_OBJ_ROLE: | 
|  | 586 | case AUDIT_OBJ_TYPE: | 
|  | 587 | case AUDIT_OBJ_LEV_LOW: | 
|  | 588 | case AUDIT_OBJ_LEV_HIGH: | 
|  | 589 | /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR | 
|  | 590 | also applies here */ | 
| Ahmed S. Darwish | 04305e4 | 2008-04-19 09:59:43 +1000 | [diff] [blame] | 591 | if (f->lsm_rule) { | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 592 | /* Find files that match */ | 
|  | 593 | if (name) { | 
| Ahmed S. Darwish | d7a96f3 | 2008-03-01 22:01:11 +0200 | [diff] [blame] | 594 | result = security_audit_rule_match( | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 595 | name->osid, f->type, f->op, | 
| Ahmed S. Darwish | 04305e4 | 2008-04-19 09:59:43 +1000 | [diff] [blame] | 596 | f->lsm_rule, ctx); | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 597 | } else if (ctx) { | 
|  | 598 | for (j = 0; j < ctx->name_count; j++) { | 
| Ahmed S. Darwish | d7a96f3 | 2008-03-01 22:01:11 +0200 | [diff] [blame] | 599 | if (security_audit_rule_match( | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 600 | ctx->names[j].osid, | 
|  | 601 | f->type, f->op, | 
| Ahmed S. Darwish | 04305e4 | 2008-04-19 09:59:43 +1000 | [diff] [blame] | 602 | f->lsm_rule, ctx)) { | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 603 | ++result; | 
|  | 604 | break; | 
|  | 605 | } | 
|  | 606 | } | 
|  | 607 | } | 
|  | 608 | /* Find ipc objects that match */ | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 609 | if (!ctx || ctx->type != AUDIT_IPC) | 
|  | 610 | break; | 
|  | 611 | if (security_audit_rule_match(ctx->ipc.osid, | 
|  | 612 | f->type, f->op, | 
|  | 613 | f->lsm_rule, ctx)) | 
|  | 614 | ++result; | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 615 | } | 
|  | 616 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | case AUDIT_ARG0: | 
|  | 618 | case AUDIT_ARG1: | 
|  | 619 | case AUDIT_ARG2: | 
|  | 620 | case AUDIT_ARG3: | 
|  | 621 | if (ctx) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 622 | result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | break; | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 624 | case AUDIT_FILTERKEY: | 
|  | 625 | /* ignore this field for filtering */ | 
|  | 626 | result = 1; | 
|  | 627 | break; | 
| Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 628 | case AUDIT_PERM: | 
|  | 629 | result = audit_match_perm(ctx, f->val); | 
|  | 630 | break; | 
| Al Viro | 8b67dca | 2008-04-28 04:15:49 -0400 | [diff] [blame] | 631 | case AUDIT_FILETYPE: | 
|  | 632 | result = audit_match_filetype(ctx, f->val); | 
|  | 633 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | } | 
|  | 635 |  | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 636 | if (!result) { | 
|  | 637 | put_cred(cred); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | return 0; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 639 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 641 |  | 
|  | 642 | if (ctx) { | 
|  | 643 | if (rule->prio <= ctx->prio) | 
|  | 644 | return 0; | 
|  | 645 | if (rule->filterkey) { | 
|  | 646 | kfree(ctx->filterkey); | 
|  | 647 | ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC); | 
|  | 648 | } | 
|  | 649 | ctx->prio = rule->prio; | 
|  | 650 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | switch (rule->action) { | 
|  | 652 | case AUDIT_NEVER:    *state = AUDIT_DISABLED;	    break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | case AUDIT_ALWAYS:   *state = AUDIT_RECORD_CONTEXT; break; | 
|  | 654 | } | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 655 | put_cred(cred); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | return 1; | 
|  | 657 | } | 
|  | 658 |  | 
|  | 659 | /* At process creation time, we can determine if system-call auditing is | 
|  | 660 | * completely disabled for this task.  Since we only have the task | 
|  | 661 | * structure at this point, we can only check uid and gid. | 
|  | 662 | */ | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 663 | static enum audit_state audit_filter_task(struct task_struct *tsk, char **key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { | 
|  | 665 | struct audit_entry *e; | 
|  | 666 | enum audit_state   state; | 
|  | 667 |  | 
|  | 668 | rcu_read_lock(); | 
| David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 669 | list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) { | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 670 | if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) { | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 671 | if (state == AUDIT_RECORD_CONTEXT) | 
|  | 672 | *key = kstrdup(e->rule.filterkey, GFP_ATOMIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | rcu_read_unlock(); | 
|  | 674 | return state; | 
|  | 675 | } | 
|  | 676 | } | 
|  | 677 | rcu_read_unlock(); | 
|  | 678 | return AUDIT_BUILD_CONTEXT; | 
|  | 679 | } | 
|  | 680 |  | 
|  | 681 | /* At syscall entry and exit time, this filter is called if the | 
|  | 682 | * audit_state is not low enough that auditing cannot take place, but is | 
| Steve Grubb | 23f32d1 | 2005-05-13 18:35:15 +0100 | [diff] [blame] | 683 | * also not high enough that we already know we have to write an audit | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 684 | * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | */ | 
|  | 686 | static enum audit_state audit_filter_syscall(struct task_struct *tsk, | 
|  | 687 | struct audit_context *ctx, | 
|  | 688 | struct list_head *list) | 
|  | 689 | { | 
|  | 690 | struct audit_entry *e; | 
| David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 691 | enum audit_state state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 |  | 
| David Woodhouse | 351bb72 | 2005-07-14 14:40:06 +0100 | [diff] [blame] | 693 | if (audit_pid && tsk->tgid == audit_pid) | 
| David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 694 | return AUDIT_DISABLED; | 
|  | 695 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | rcu_read_lock(); | 
| David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 697 | if (!list_empty(list)) { | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 698 | int word = AUDIT_WORD(ctx->major); | 
|  | 699 | int bit  = AUDIT_BIT(ctx->major); | 
| David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 700 |  | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 701 | list_for_each_entry_rcu(e, list, list) { | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 702 | if ((e->rule.mask[word] & bit) == bit && | 
|  | 703 | audit_filter_rules(tsk, &e->rule, ctx, NULL, | 
|  | 704 | &state)) { | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 705 | rcu_read_unlock(); | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 706 | ctx->current_state = state; | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 707 | return state; | 
|  | 708 | } | 
|  | 709 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } | 
|  | 711 | rcu_read_unlock(); | 
|  | 712 | return AUDIT_BUILD_CONTEXT; | 
|  | 713 | } | 
|  | 714 |  | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 715 | /* At syscall exit time, this filter is called if any audit_names[] have been | 
|  | 716 | * collected during syscall processing.  We only check rules in sublists at hash | 
|  | 717 | * buckets applicable to the inode numbers in audit_names[]. | 
|  | 718 | * Regarding audit_state, same rules apply as for audit_filter_syscall(). | 
|  | 719 | */ | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 720 | void audit_filter_inodes(struct task_struct *tsk, struct audit_context *ctx) | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 721 | { | 
|  | 722 | int i; | 
|  | 723 | struct audit_entry *e; | 
|  | 724 | enum audit_state state; | 
|  | 725 |  | 
|  | 726 | if (audit_pid && tsk->tgid == audit_pid) | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 727 | return; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 728 |  | 
|  | 729 | rcu_read_lock(); | 
|  | 730 | for (i = 0; i < ctx->name_count; i++) { | 
|  | 731 | int word = AUDIT_WORD(ctx->major); | 
|  | 732 | int bit  = AUDIT_BIT(ctx->major); | 
|  | 733 | struct audit_names *n = &ctx->names[i]; | 
|  | 734 | int h = audit_hash_ino((u32)n->ino); | 
|  | 735 | struct list_head *list = &audit_inode_hash[h]; | 
|  | 736 |  | 
|  | 737 | if (list_empty(list)) | 
|  | 738 | continue; | 
|  | 739 |  | 
|  | 740 | list_for_each_entry_rcu(e, list, list) { | 
|  | 741 | if ((e->rule.mask[word] & bit) == bit && | 
|  | 742 | audit_filter_rules(tsk, &e->rule, ctx, n, &state)) { | 
|  | 743 | rcu_read_unlock(); | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 744 | ctx->current_state = state; | 
|  | 745 | return; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 746 | } | 
|  | 747 | } | 
|  | 748 | } | 
|  | 749 | rcu_read_unlock(); | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 750 | } | 
|  | 751 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | static inline struct audit_context *audit_get_context(struct task_struct *tsk, | 
|  | 753 | int return_valid, | 
| Paul Moore | 6d208da | 2009-04-01 15:47:27 -0400 | [diff] [blame] | 754 | long return_code) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | { | 
|  | 756 | struct audit_context *context = tsk->audit_context; | 
|  | 757 |  | 
|  | 758 | if (likely(!context)) | 
|  | 759 | return NULL; | 
|  | 760 | context->return_valid = return_valid; | 
| Eric Paris | f701b75 | 2008-01-07 13:34:51 -0500 | [diff] [blame] | 761 |  | 
|  | 762 | /* | 
|  | 763 | * we need to fix up the return code in the audit logs if the actual | 
|  | 764 | * return codes are later going to be fixed up by the arch specific | 
|  | 765 | * signal handlers | 
|  | 766 | * | 
|  | 767 | * This is actually a test for: | 
|  | 768 | * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) || | 
|  | 769 | * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK) | 
|  | 770 | * | 
|  | 771 | * but is faster than a bunch of || | 
|  | 772 | */ | 
|  | 773 | if (unlikely(return_code <= -ERESTARTSYS) && | 
|  | 774 | (return_code >= -ERESTART_RESTARTBLOCK) && | 
|  | 775 | (return_code != -ENOIOCTLCMD)) | 
|  | 776 | context->return_code = -EINTR; | 
|  | 777 | else | 
|  | 778 | context->return_code  = return_code; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 |  | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 780 | if (context->in_syscall && !context->dummy) { | 
|  | 781 | audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]); | 
|  | 782 | audit_filter_inodes(tsk, context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } | 
|  | 784 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | tsk->audit_context = NULL; | 
|  | 786 | return context; | 
|  | 787 | } | 
|  | 788 |  | 
|  | 789 | static inline void audit_free_names(struct audit_context *context) | 
|  | 790 | { | 
|  | 791 | int i; | 
|  | 792 |  | 
|  | 793 | #if AUDIT_DEBUG == 2 | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 794 | if (context->put_count + context->ino_count != context->name_count) { | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 795 | printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | " name_count=%d put_count=%d" | 
|  | 797 | " ino_count=%d [NOT freeing]\n", | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 798 | __FILE__, __LINE__, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | context->serial, context->major, context->in_syscall, | 
|  | 800 | context->name_count, context->put_count, | 
|  | 801 | context->ino_count); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 802 | for (i = 0; i < context->name_count; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | printk(KERN_ERR "names[%d] = %p = %s\n", i, | 
|  | 804 | context->names[i].name, | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 805 | context->names[i].name ?: "(null)"); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 806 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | dump_stack(); | 
|  | 808 | return; | 
|  | 809 | } | 
|  | 810 | #endif | 
|  | 811 | #if AUDIT_DEBUG | 
|  | 812 | context->put_count  = 0; | 
|  | 813 | context->ino_count  = 0; | 
|  | 814 | #endif | 
|  | 815 |  | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 816 | for (i = 0; i < context->name_count; i++) { | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 817 | if (context->names[i].name && context->names[i].name_put) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | __putname(context->names[i].name); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 819 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | context->name_count = 0; | 
| Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 821 | path_put(&context->pwd); | 
|  | 822 | context->pwd.dentry = NULL; | 
|  | 823 | context->pwd.mnt = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | } | 
|  | 825 |  | 
|  | 826 | static inline void audit_free_aux(struct audit_context *context) | 
|  | 827 | { | 
|  | 828 | struct audit_aux_data *aux; | 
|  | 829 |  | 
|  | 830 | while ((aux = context->aux)) { | 
|  | 831 | context->aux = aux->next; | 
|  | 832 | kfree(aux); | 
|  | 833 | } | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 834 | while ((aux = context->aux_pids)) { | 
|  | 835 | context->aux_pids = aux->next; | 
|  | 836 | kfree(aux); | 
|  | 837 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } | 
|  | 839 |  | 
|  | 840 | static inline void audit_zero_context(struct audit_context *context, | 
|  | 841 | enum audit_state state) | 
|  | 842 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | memset(context, 0, sizeof(*context)); | 
|  | 844 | context->state      = state; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 845 | context->prio = state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | } | 
|  | 847 |  | 
|  | 848 | static inline struct audit_context *audit_alloc_context(enum audit_state state) | 
|  | 849 | { | 
|  | 850 | struct audit_context *context; | 
|  | 851 |  | 
|  | 852 | if (!(context = kmalloc(sizeof(*context), GFP_KERNEL))) | 
|  | 853 | return NULL; | 
|  | 854 | audit_zero_context(context, state); | 
| Al Viro | 916d757 | 2009-06-24 00:02:38 -0400 | [diff] [blame] | 855 | INIT_LIST_HEAD(&context->killed_trees); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | return context; | 
|  | 857 | } | 
|  | 858 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 859 | /** | 
|  | 860 | * audit_alloc - allocate an audit context block for a task | 
|  | 861 | * @tsk: task | 
|  | 862 | * | 
|  | 863 | * Filter on the task information and allocate a per-task audit context | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 866 | * needed. | 
|  | 867 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | int audit_alloc(struct task_struct *tsk) | 
|  | 869 | { | 
|  | 870 | struct audit_context *context; | 
|  | 871 | enum audit_state     state; | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 872 | char *key = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 |  | 
| Eric Paris | b593d38 | 2008-01-08 17:38:31 -0500 | [diff] [blame] | 874 | if (likely(!audit_ever_enabled)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | return 0; /* Return if not auditing. */ | 
|  | 876 |  | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 877 | state = audit_filter_task(tsk, &key); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | if (likely(state == AUDIT_DISABLED)) | 
|  | 879 | return 0; | 
|  | 880 |  | 
|  | 881 | if (!(context = audit_alloc_context(state))) { | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 882 | kfree(key); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | audit_log_lost("out of memory in audit_alloc"); | 
|  | 884 | return -ENOMEM; | 
|  | 885 | } | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 886 | context->filterkey = key; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | tsk->audit_context  = context; | 
|  | 889 | set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT); | 
|  | 890 | return 0; | 
|  | 891 | } | 
|  | 892 |  | 
|  | 893 | static inline void audit_free_context(struct audit_context *context) | 
|  | 894 | { | 
|  | 895 | struct audit_context *previous; | 
|  | 896 | int		     count = 0; | 
|  | 897 |  | 
|  | 898 | do { | 
|  | 899 | previous = context->previous; | 
|  | 900 | if (previous || (count &&  count < 10)) { | 
|  | 901 | ++count; | 
|  | 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); | 
|  | 906 | } | 
|  | 907 | audit_free_names(context); | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 908 | unroll_tree_refs(context, NULL, 0); | 
|  | 909 | free_tree_refs(context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | audit_free_aux(context); | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 911 | kfree(context->filterkey); | 
| Al Viro | 4f6b434 | 2008-12-09 19:50:34 -0500 | [diff] [blame] | 912 | kfree(context->sockaddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | kfree(context); | 
|  | 914 | context  = previous; | 
|  | 915 | } while (context); | 
|  | 916 | if (count >= 10) | 
|  | 917 | printk(KERN_ERR "audit: freed %d contexts\n", count); | 
|  | 918 | } | 
|  | 919 |  | 
| Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 920 | void audit_log_task_context(struct audit_buffer *ab) | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 921 | { | 
|  | 922 | char *ctx = NULL; | 
| Al Viro | c4823bc | 2007-03-12 16:17:42 +0000 | [diff] [blame] | 923 | unsigned len; | 
|  | 924 | int error; | 
|  | 925 | u32 sid; | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 926 |  | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 927 | security_task_getsecid(current, &sid); | 
| Al Viro | c4823bc | 2007-03-12 16:17:42 +0000 | [diff] [blame] | 928 | if (!sid) | 
|  | 929 | return; | 
|  | 930 |  | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 931 | error = security_secid_to_secctx(sid, &ctx, &len); | 
| Al Viro | c4823bc | 2007-03-12 16:17:42 +0000 | [diff] [blame] | 932 | if (error) { | 
|  | 933 | if (error != -EINVAL) | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 934 | goto error_path; | 
|  | 935 | return; | 
|  | 936 | } | 
|  | 937 |  | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 938 | audit_log_format(ab, " subj=%s", ctx); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 939 | security_release_secctx(ctx, len); | 
| Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 940 | return; | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 941 |  | 
|  | 942 | error_path: | 
| Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 943 | audit_panic("error in audit_log_task_context"); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 944 | return; | 
|  | 945 | } | 
|  | 946 |  | 
| Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 947 | EXPORT_SYMBOL(audit_log_task_context); | 
|  | 948 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 949 | static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk) | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 950 | { | 
| Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 951 | char name[sizeof(tsk->comm)]; | 
|  | 952 | struct mm_struct *mm = tsk->mm; | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 953 | struct vm_area_struct *vma; | 
|  | 954 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 955 | /* tsk == current */ | 
|  | 956 |  | 
| Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 957 | get_task_comm(name, tsk); | 
| David Woodhouse | 99e45ee | 2005-05-23 21:57:41 +0100 | [diff] [blame] | 958 | audit_log_format(ab, " comm="); | 
|  | 959 | audit_log_untrustedstring(ab, name); | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 960 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 961 | if (mm) { | 
|  | 962 | down_read(&mm->mmap_sem); | 
|  | 963 | vma = mm->mmap; | 
|  | 964 | while (vma) { | 
|  | 965 | if ((vma->vm_flags & VM_EXECUTABLE) && | 
|  | 966 | vma->vm_file) { | 
|  | 967 | audit_log_d_path(ab, "exe=", | 
| Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 968 | &vma->vm_file->f_path); | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 969 | break; | 
|  | 970 | } | 
|  | 971 | vma = vma->vm_next; | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 972 | } | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 973 | up_read(&mm->mmap_sem); | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 974 | } | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 975 | audit_log_task_context(ab); | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 976 | } | 
|  | 977 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 978 | static int audit_log_pid_context(struct audit_context *context, pid_t pid, | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 979 | uid_t auid, uid_t uid, unsigned int sessionid, | 
|  | 980 | u32 sid, char *comm) | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 981 | { | 
|  | 982 | struct audit_buffer *ab; | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 983 | char *ctx = NULL; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 984 | u32 len; | 
|  | 985 | int rc = 0; | 
|  | 986 |  | 
|  | 987 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID); | 
|  | 988 | if (!ab) | 
| Eric Paris | 6246cca | 2008-01-07 14:01:18 -0500 | [diff] [blame] | 989 | return rc; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 990 |  | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 991 | audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid, auid, | 
|  | 992 | uid, sessionid); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 993 | if (security_secid_to_secctx(sid, &ctx, &len)) { | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 994 | audit_log_format(ab, " obj=(none)"); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 995 | rc = 1; | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 996 | } else { | 
|  | 997 | audit_log_format(ab, " obj=%s", ctx); | 
|  | 998 | security_release_secctx(ctx, len); | 
|  | 999 | } | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 1000 | audit_log_format(ab, " ocomm="); | 
|  | 1001 | audit_log_untrustedstring(ab, comm); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1002 | audit_log_end(ab); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1003 |  | 
|  | 1004 | return rc; | 
|  | 1005 | } | 
|  | 1006 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1007 | /* | 
|  | 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) | 
|  | 1011 | * | 
|  | 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. | 
|  | 1017 | */ | 
|  | 1018 | static int audit_log_single_execve_arg(struct audit_context *context, | 
|  | 1019 | struct audit_buffer **ab, | 
|  | 1020 | int arg_num, | 
|  | 1021 | size_t *len_sent, | 
|  | 1022 | const char __user *p, | 
|  | 1023 | char *buf) | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1024 | { | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1025 | char arg_num_len_buf[12]; | 
|  | 1026 | const char __user *tmp_p = p; | 
| Eric Paris | b87ce6e | 2009-06-11 14:31:34 -0400 | [diff] [blame] | 1027 | /* how many digits are in arg_num? 5 is the length of ' a=""' */ | 
|  | 1028 | size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 5; | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 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; | 
|  | 1032 | int ret; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1033 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1034 | /* strnlen_user includes the null we don't want to send */ | 
|  | 1035 | len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1036 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1037 | /* | 
|  | 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 | 
|  | 1041 | * any. | 
|  | 1042 | */ | 
| Eric Paris | b0abcfc | 2008-02-18 18:23:16 -0500 | [diff] [blame] | 1043 | if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) { | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1044 | WARN_ON(1); | 
|  | 1045 | send_sig(SIGKILL, current, 0); | 
| Eric Paris | b0abcfc | 2008-02-18 18:23:16 -0500 | [diff] [blame] | 1046 | return -1; | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1047 | } | 
| Peter Zijlstra | 040b3a2 | 2007-07-28 00:55:18 +0200 | [diff] [blame] | 1048 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1049 | /* walk the whole argument looking for non-ascii chars */ | 
|  | 1050 | do { | 
|  | 1051 | if (len_left > MAX_EXECVE_AUDIT_LEN) | 
|  | 1052 | to_send = MAX_EXECVE_AUDIT_LEN; | 
|  | 1053 | else | 
|  | 1054 | to_send = len_left; | 
|  | 1055 | ret = copy_from_user(buf, tmp_p, to_send); | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1056 | /* | 
|  | 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- | 
|  | 1059 | * space yet. | 
|  | 1060 | */ | 
| Peter Zijlstra | 040b3a2 | 2007-07-28 00:55:18 +0200 | [diff] [blame] | 1061 | if (ret) { | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1062 | WARN_ON(1); | 
|  | 1063 | send_sig(SIGKILL, current, 0); | 
| Eric Paris | b0abcfc | 2008-02-18 18:23:16 -0500 | [diff] [blame] | 1064 | return -1; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1065 | } | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1066 | buf[to_send] = '\0'; | 
|  | 1067 | has_cntl = audit_string_contains_control(buf, to_send); | 
|  | 1068 | if (has_cntl) { | 
|  | 1069 | /* | 
|  | 1070 | * hex messages get logged as 2 bytes, so we can only | 
|  | 1071 | * send half as much in each message | 
|  | 1072 | */ | 
|  | 1073 | max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2; | 
|  | 1074 | break; | 
|  | 1075 | } | 
|  | 1076 | len_left -= to_send; | 
|  | 1077 | tmp_p += to_send; | 
|  | 1078 | } while (len_left > 0); | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1079 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1080 | len_left = len; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1081 |  | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1082 | if (len > max_execve_audit_len) | 
|  | 1083 | too_long = 1; | 
|  | 1084 |  | 
|  | 1085 | /* rewalk the argument actually logging the message */ | 
|  | 1086 | for (i = 0; len_left > 0; i++) { | 
|  | 1087 | int room_left; | 
|  | 1088 |  | 
|  | 1089 | if (len_left > max_execve_audit_len) | 
|  | 1090 | to_send = max_execve_audit_len; | 
|  | 1091 | else | 
|  | 1092 | to_send = len_left; | 
|  | 1093 |  | 
|  | 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; | 
|  | 1096 | if (has_cntl) | 
|  | 1097 | room_left -= (to_send * 2); | 
|  | 1098 | else | 
|  | 1099 | room_left -= to_send; | 
|  | 1100 | if (room_left < 0) { | 
|  | 1101 | *len_sent = 0; | 
|  | 1102 | audit_log_end(*ab); | 
|  | 1103 | *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE); | 
|  | 1104 | if (!*ab) | 
|  | 1105 | return 0; | 
|  | 1106 | } | 
|  | 1107 |  | 
|  | 1108 | /* | 
|  | 1109 | * first record needs to say how long the original string was | 
|  | 1110 | * so we can be sure nothing was lost. | 
|  | 1111 | */ | 
|  | 1112 | if ((i == 0) && (too_long)) | 
| Jiri Pirko | ca96a89 | 2009-01-09 16:44:16 +0100 | [diff] [blame] | 1113 | audit_log_format(*ab, " a%d_len=%zu", arg_num, | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1114 | has_cntl ? 2*len : len); | 
|  | 1115 |  | 
|  | 1116 | /* | 
|  | 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 | 
|  | 1120 | */ | 
|  | 1121 | if (len >= max_execve_audit_len) | 
|  | 1122 | ret = copy_from_user(buf, p, to_send); | 
|  | 1123 | else | 
|  | 1124 | ret = 0; | 
|  | 1125 | if (ret) { | 
|  | 1126 | WARN_ON(1); | 
|  | 1127 | send_sig(SIGKILL, current, 0); | 
| Eric Paris | b0abcfc | 2008-02-18 18:23:16 -0500 | [diff] [blame] | 1128 | return -1; | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1129 | } | 
|  | 1130 | buf[to_send] = '\0'; | 
|  | 1131 |  | 
|  | 1132 | /* actually log it */ | 
| Jiri Pirko | ca96a89 | 2009-01-09 16:44:16 +0100 | [diff] [blame] | 1133 | audit_log_format(*ab, " a%d", arg_num); | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1134 | if (too_long) | 
|  | 1135 | audit_log_format(*ab, "[%d]", i); | 
|  | 1136 | audit_log_format(*ab, "="); | 
|  | 1137 | if (has_cntl) | 
| Eric Paris | b556f8a | 2008-04-18 10:12:59 -0400 | [diff] [blame] | 1138 | audit_log_n_hex(*ab, buf, to_send); | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1139 | else | 
| Eric Paris | 9d96098 | 2009-06-11 14:31:37 -0400 | [diff] [blame] | 1140 | audit_log_string(*ab, buf); | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1141 |  | 
|  | 1142 | p += to_send; | 
|  | 1143 | len_left -= to_send; | 
|  | 1144 | *len_sent += arg_num_len; | 
|  | 1145 | if (has_cntl) | 
|  | 1146 | *len_sent += to_send * 2; | 
|  | 1147 | else | 
|  | 1148 | *len_sent += to_send; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1149 | } | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1150 | /* include the null we didn't log */ | 
|  | 1151 | return len + 1; | 
|  | 1152 | } | 
|  | 1153 |  | 
|  | 1154 | static void audit_log_execve_info(struct audit_context *context, | 
|  | 1155 | struct audit_buffer **ab, | 
|  | 1156 | struct audit_aux_data_execve *axi) | 
|  | 1157 | { | 
|  | 1158 | int i; | 
|  | 1159 | size_t len, len_sent = 0; | 
|  | 1160 | const char __user *p; | 
|  | 1161 | char *buf; | 
|  | 1162 |  | 
|  | 1163 | if (axi->mm != current->mm) | 
|  | 1164 | return; /* execve failed, no additional info */ | 
|  | 1165 |  | 
|  | 1166 | p = (const char __user *)axi->mm->arg_start; | 
|  | 1167 |  | 
| Jiri Pirko | ca96a89 | 2009-01-09 16:44:16 +0100 | [diff] [blame] | 1168 | audit_log_format(*ab, "argc=%d", axi->argc); | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1169 |  | 
|  | 1170 | /* | 
|  | 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. | 
|  | 1175 | */ | 
|  | 1176 | buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL); | 
|  | 1177 | if (!buf) { | 
|  | 1178 | audit_panic("out of memory for argv string\n"); | 
|  | 1179 | return; | 
|  | 1180 | } | 
|  | 1181 |  | 
|  | 1182 | for (i = 0; i < axi->argc; i++) { | 
|  | 1183 | len = audit_log_single_execve_arg(context, ab, i, | 
|  | 1184 | &len_sent, p, buf); | 
|  | 1185 | if (len <= 0) | 
|  | 1186 | break; | 
|  | 1187 | p += len; | 
|  | 1188 | } | 
|  | 1189 | kfree(buf); | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1190 | } | 
|  | 1191 |  | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 1192 | static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap) | 
|  | 1193 | { | 
|  | 1194 | int i; | 
|  | 1195 |  | 
|  | 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]); | 
|  | 1199 | } | 
|  | 1200 | } | 
|  | 1201 |  | 
|  | 1202 | static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name) | 
|  | 1203 | { | 
|  | 1204 | kernel_cap_t *perm = &name->fcap.permitted; | 
|  | 1205 | kernel_cap_t *inh = &name->fcap.inheritable; | 
|  | 1206 | int log = 0; | 
|  | 1207 |  | 
|  | 1208 | if (!cap_isclear(*perm)) { | 
|  | 1209 | audit_log_cap(ab, "cap_fp", perm); | 
|  | 1210 | log = 1; | 
|  | 1211 | } | 
|  | 1212 | if (!cap_isclear(*inh)) { | 
|  | 1213 | audit_log_cap(ab, "cap_fi", inh); | 
|  | 1214 | log = 1; | 
|  | 1215 | } | 
|  | 1216 |  | 
|  | 1217 | if (log) | 
|  | 1218 | audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver); | 
|  | 1219 | } | 
|  | 1220 |  | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 1221 | static void show_special(struct audit_context *context, int *call_panic) | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 1222 | { | 
|  | 1223 | struct audit_buffer *ab; | 
|  | 1224 | int i; | 
|  | 1225 |  | 
|  | 1226 | ab = audit_log_start(context, GFP_KERNEL, context->type); | 
|  | 1227 | if (!ab) | 
|  | 1228 | return; | 
|  | 1229 |  | 
|  | 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]); | 
|  | 1237 | break; } | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 1238 | case AUDIT_IPC: { | 
|  | 1239 | u32 osid = context->ipc.osid; | 
|  | 1240 |  | 
|  | 1241 | audit_log_format(ab, "ouid=%u ogid=%u mode=%#o", | 
|  | 1242 | context->ipc.uid, context->ipc.gid, context->ipc.mode); | 
|  | 1243 | if (osid) { | 
|  | 1244 | char *ctx = NULL; | 
|  | 1245 | u32 len; | 
|  | 1246 | if (security_secid_to_secctx(osid, &ctx, &len)) { | 
|  | 1247 | audit_log_format(ab, " osid=%u", osid); | 
|  | 1248 | *call_panic = 1; | 
|  | 1249 | } else { | 
|  | 1250 | audit_log_format(ab, " obj=%s", ctx); | 
|  | 1251 | security_release_secctx(ctx, len); | 
|  | 1252 | } | 
|  | 1253 | } | 
| Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 1254 | if (context->ipc.has_perm) { | 
|  | 1255 | audit_log_end(ab); | 
|  | 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); | 
|  | 1264 | if (!ab) | 
|  | 1265 | return; | 
|  | 1266 | } | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 1267 | break; } | 
| Al Viro | 564f699 | 2008-12-14 04:02:26 -0500 | [diff] [blame] | 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); | 
|  | 1277 | break; } | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 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); | 
|  | 1287 | break; } | 
| Al Viro | 20114f7 | 2008-12-10 07:16:12 -0500 | [diff] [blame] | 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); | 
|  | 1292 | break; } | 
| Al Viro | 7392906 | 2008-12-10 06:58:59 -0500 | [diff] [blame] | 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 " | 
|  | 1297 | "mq_curmsgs=%ld ", | 
|  | 1298 | context->mq_getsetattr.mqdes, | 
|  | 1299 | attr->mq_flags, attr->mq_maxmsg, | 
|  | 1300 | attr->mq_msgsize, attr->mq_curmsgs); | 
|  | 1301 | break; } | 
| Al Viro | 57f71a0 | 2009-01-04 14:52:57 -0500 | [diff] [blame] | 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); | 
|  | 1307 | break; } | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 1308 | } | 
|  | 1309 | audit_log_end(ab); | 
|  | 1310 | } | 
|  | 1311 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1312 | static void audit_log_exit(struct audit_context *context, struct task_struct *tsk) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | { | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1314 | const struct cred *cred; | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1315 | int i, call_panic = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | struct audit_buffer *ab; | 
| David Woodhouse | 7551ced | 2005-05-26 12:04:57 +0100 | [diff] [blame] | 1317 | struct audit_aux_data *aux; | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 1318 | const char *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1320 | /* tsk == current */ | 
| Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 1321 | context->pid = tsk->pid; | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 1322 | if (!context->ppid) | 
|  | 1323 | context->ppid = sys_getppid(); | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1324 | cred = current_cred(); | 
|  | 1325 | context->uid   = cred->uid; | 
|  | 1326 | context->gid   = cred->gid; | 
|  | 1327 | context->euid  = cred->euid; | 
|  | 1328 | context->suid  = cred->suid; | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1329 | context->fsuid = cred->fsuid; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1330 | context->egid  = cred->egid; | 
|  | 1331 | context->sgid  = cred->sgid; | 
| David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1332 | context->fsgid = cred->fsgid; | 
| Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 1333 | context->personality = tsk->personality; | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1334 |  | 
|  | 1335 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | if (!ab) | 
|  | 1337 | return;		/* audit_panic has been called */ | 
| David Woodhouse | bccf6ae | 2005-05-23 21:35:28 +0100 | [diff] [blame] | 1338 | audit_log_format(ab, "arch=%x syscall=%d", | 
|  | 1339 | context->arch, context->major); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | if (context->personality != PER_LINUX) | 
|  | 1341 | audit_log_format(ab, " per=%lx", context->personality); | 
|  | 1342 | if (context->return_valid) | 
| Daniel Walker | 9f8dbe9 | 2007-10-18 03:06:09 -0700 | [diff] [blame] | 1343 | audit_log_format(ab, " success=%s exit=%ld", | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1344 | (context->return_valid==AUDITSC_SUCCESS)?"yes":"no", | 
|  | 1345 | context->return_code); | 
| Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 1346 |  | 
| Alan Cox | dbda4c0 | 2008-10-13 10:40:53 +0100 | [diff] [blame] | 1347 | spin_lock_irq(&tsk->sighand->siglock); | 
| Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 1348 | if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name) | 
|  | 1349 | tty = tsk->signal->tty->name; | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 1350 | else | 
|  | 1351 | tty = "(none)"; | 
| Alan Cox | dbda4c0 | 2008-10-13 10:40:53 +0100 | [diff] [blame] | 1352 | spin_unlock_irq(&tsk->sighand->siglock); | 
|  | 1353 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | audit_log_format(ab, | 
|  | 1355 | " a0=%lx a1=%lx a2=%lx a3=%lx items=%d" | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 1356 | " ppid=%d pid=%d auid=%u uid=%u gid=%u" | 
| Steve Grubb | 326e9c8 | 2005-05-21 00:22:31 +0100 | [diff] [blame] | 1357 | " euid=%u suid=%u fsuid=%u" | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 1358 | " egid=%u sgid=%u fsgid=%u tty=%s ses=%u", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | context->argv[0], | 
|  | 1360 | context->argv[1], | 
|  | 1361 | context->argv[2], | 
|  | 1362 | context->argv[3], | 
|  | 1363 | context->name_count, | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 1364 | context->ppid, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | context->pid, | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 1366 | tsk->loginuid, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | context->uid, | 
|  | 1368 | context->gid, | 
|  | 1369 | context->euid, context->suid, context->fsuid, | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 1370 | context->egid, context->sgid, context->fsgid, tty, | 
|  | 1371 | tsk->sessionid); | 
| Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 1372 |  | 
| Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 1373 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1374 | audit_log_task_info(ab, tsk); | 
| Eric Paris | 9d96098 | 2009-06-11 14:31:37 -0400 | [diff] [blame] | 1375 | audit_log_key(ab, context->filterkey); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | audit_log_end(ab); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 |  | 
| David Woodhouse | 7551ced | 2005-05-26 12:04:57 +0100 | [diff] [blame] | 1378 | for (aux = context->aux; aux; aux = aux->next) { | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 1379 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1380 | ab = audit_log_start(context, GFP_KERNEL, aux->type); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | if (!ab) | 
|  | 1382 | continue; /* audit_panic has been called */ | 
|  | 1383 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | switch (aux->type) { | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1385 |  | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1386 | case AUDIT_EXECVE: { | 
|  | 1387 | struct audit_aux_data_execve *axi = (void *)aux; | 
| Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1388 | audit_log_execve_info(context, &ab, axi); | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1389 | break; } | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1390 |  | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 1391 | case AUDIT_BPRM_FCAPS: { | 
|  | 1392 | struct audit_aux_data_bprm_fcaps *axs = (void *)aux; | 
|  | 1393 | audit_log_format(ab, "fver=%x", axs->fcap_ver); | 
|  | 1394 | audit_log_cap(ab, "fp", &axs->fcap.permitted); | 
|  | 1395 | audit_log_cap(ab, "fi", &axs->fcap.inheritable); | 
|  | 1396 | audit_log_format(ab, " fe=%d", axs->fcap.fE); | 
|  | 1397 | audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted); | 
|  | 1398 | audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable); | 
|  | 1399 | audit_log_cap(ab, "old_pe", &axs->old_pcap.effective); | 
|  | 1400 | audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted); | 
|  | 1401 | audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable); | 
|  | 1402 | audit_log_cap(ab, "new_pe", &axs->new_pcap.effective); | 
|  | 1403 | break; } | 
|  | 1404 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | } | 
|  | 1406 | audit_log_end(ab); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | } | 
|  | 1408 |  | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 1409 | if (context->type) | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 1410 | show_special(context, &call_panic); | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 1411 |  | 
| Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 1412 | if (context->fds[0] >= 0) { | 
|  | 1413 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_FD_PAIR); | 
|  | 1414 | if (ab) { | 
|  | 1415 | audit_log_format(ab, "fd0=%d fd1=%d", | 
|  | 1416 | context->fds[0], context->fds[1]); | 
|  | 1417 | audit_log_end(ab); | 
|  | 1418 | } | 
|  | 1419 | } | 
|  | 1420 |  | 
| Al Viro | 4f6b434 | 2008-12-09 19:50:34 -0500 | [diff] [blame] | 1421 | if (context->sockaddr_len) { | 
|  | 1422 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR); | 
|  | 1423 | if (ab) { | 
|  | 1424 | audit_log_format(ab, "saddr="); | 
|  | 1425 | audit_log_n_hex(ab, (void *)context->sockaddr, | 
|  | 1426 | context->sockaddr_len); | 
|  | 1427 | audit_log_end(ab); | 
|  | 1428 | } | 
|  | 1429 | } | 
|  | 1430 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1431 | for (aux = context->aux_pids; aux; aux = aux->next) { | 
|  | 1432 | struct audit_aux_data_pids *axs = (void *)aux; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1433 |  | 
|  | 1434 | for (i = 0; i < axs->pid_count; i++) | 
|  | 1435 | if (audit_log_pid_context(context, axs->target_pid[i], | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 1436 | axs->target_auid[i], | 
|  | 1437 | axs->target_uid[i], | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 1438 | axs->target_sessionid[i], | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 1439 | axs->target_sid[i], | 
|  | 1440 | axs->target_comm[i])) | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1441 | call_panic = 1; | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 1442 | } | 
|  | 1443 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1444 | if (context->target_pid && | 
|  | 1445 | audit_log_pid_context(context, context->target_pid, | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 1446 | context->target_auid, context->target_uid, | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 1447 | context->target_sessionid, | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 1448 | context->target_sid, context->target_comm)) | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1449 | call_panic = 1; | 
|  | 1450 |  | 
| Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1451 | if (context->pwd.dentry && context->pwd.mnt) { | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1452 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD); | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1453 | if (ab) { | 
| Jan Blunck | 44707fd | 2008-02-14 19:38:33 -0800 | [diff] [blame] | 1454 | audit_log_d_path(ab, "cwd=", &context->pwd); | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1455 | audit_log_end(ab); | 
|  | 1456 | } | 
|  | 1457 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | for (i = 0; i < context->name_count; i++) { | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1459 | struct audit_names *n = &context->names[i]; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1460 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1461 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | if (!ab) | 
|  | 1463 | continue; /* audit_panic has been called */ | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1464 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | audit_log_format(ab, "item=%d", i); | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1466 |  | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1467 | if (n->name) { | 
|  | 1468 | switch(n->name_len) { | 
|  | 1469 | case AUDIT_NAME_FULL: | 
|  | 1470 | /* log the full path */ | 
|  | 1471 | audit_log_format(ab, " name="); | 
|  | 1472 | audit_log_untrustedstring(ab, n->name); | 
|  | 1473 | break; | 
|  | 1474 | case 0: | 
|  | 1475 | /* name was specified as a relative path and the | 
|  | 1476 | * directory component is the cwd */ | 
| Eric Paris | def5754 | 2009-03-10 18:00:14 -0400 | [diff] [blame] | 1477 | audit_log_d_path(ab, "name=", &context->pwd); | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1478 | break; | 
|  | 1479 | default: | 
|  | 1480 | /* log the name's directory component */ | 
|  | 1481 | audit_log_format(ab, " name="); | 
| Eric Paris | b556f8a | 2008-04-18 10:12:59 -0400 | [diff] [blame] | 1482 | audit_log_n_untrustedstring(ab, n->name, | 
|  | 1483 | n->name_len); | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1484 | } | 
|  | 1485 | } else | 
|  | 1486 | audit_log_format(ab, " name=(null)"); | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1487 |  | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1488 | if (n->ino != (unsigned long)-1) { | 
|  | 1489 | audit_log_format(ab, " inode=%lu" | 
|  | 1490 | " dev=%02x:%02x mode=%#o" | 
|  | 1491 | " ouid=%u ogid=%u rdev=%02x:%02x", | 
|  | 1492 | n->ino, | 
|  | 1493 | MAJOR(n->dev), | 
|  | 1494 | MINOR(n->dev), | 
|  | 1495 | n->mode, | 
|  | 1496 | n->uid, | 
|  | 1497 | n->gid, | 
|  | 1498 | MAJOR(n->rdev), | 
|  | 1499 | MINOR(n->rdev)); | 
|  | 1500 | } | 
|  | 1501 | if (n->osid != 0) { | 
| Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 1502 | char *ctx = NULL; | 
|  | 1503 | u32 len; | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 1504 | if (security_secid_to_secctx( | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1505 | n->osid, &ctx, &len)) { | 
|  | 1506 | audit_log_format(ab, " osid=%u", n->osid); | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1507 | call_panic = 2; | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 1508 | } else { | 
| Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 1509 | audit_log_format(ab, " obj=%s", ctx); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 1510 | security_release_secctx(ctx, len); | 
|  | 1511 | } | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1512 | } | 
|  | 1513 |  | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 1514 | audit_log_fcaps(ab, n); | 
|  | 1515 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | audit_log_end(ab); | 
|  | 1517 | } | 
| Eric Paris | c0641f2 | 2008-01-07 13:49:15 -0500 | [diff] [blame] | 1518 |  | 
|  | 1519 | /* Send end of event record to help user space know we are finished */ | 
|  | 1520 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE); | 
|  | 1521 | if (ab) | 
|  | 1522 | audit_log_end(ab); | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1523 | if (call_panic) | 
|  | 1524 | audit_panic("error converting sid to string"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | } | 
|  | 1526 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1527 | /** | 
|  | 1528 | * audit_free - free a per-task audit context | 
|  | 1529 | * @tsk: task whose audit context block to free | 
|  | 1530 | * | 
| Al Viro | fa84cb9 | 2006-03-29 20:30:19 -0500 | [diff] [blame] | 1531 | * Called from copy_process and do_exit | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1532 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | void audit_free(struct task_struct *tsk) | 
|  | 1534 | { | 
|  | 1535 | struct audit_context *context; | 
|  | 1536 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | context = audit_get_context(tsk, 0, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | if (likely(!context)) | 
|  | 1539 | return; | 
|  | 1540 |  | 
|  | 1541 | /* Check for system calls that do not go through the exit | 
| Daniel Walker | 9f8dbe9 | 2007-10-18 03:06:09 -0700 | [diff] [blame] | 1542 | * function (e.g., exit_group), then free context block. | 
|  | 1543 | * We use GFP_ATOMIC here because we might be doing this | 
| David Woodhouse | f556196 | 2005-07-13 22:47:07 +0100 | [diff] [blame] | 1544 | * in the context of the idle thread */ | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1545 | /* that can happen only if we are called from do_exit() */ | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1546 | if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT) | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1547 | audit_log_exit(context, tsk); | 
| Al Viro | 916d757 | 2009-06-24 00:02:38 -0400 | [diff] [blame] | 1548 | if (!list_empty(&context->killed_trees)) | 
|  | 1549 | audit_kill_trees(&context->killed_trees); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 |  | 
|  | 1551 | audit_free_context(context); | 
|  | 1552 | } | 
|  | 1553 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1554 | /** | 
|  | 1555 | * audit_syscall_entry - fill in an audit record at syscall entry | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1556 | * @arch: architecture type | 
|  | 1557 | * @major: major syscall type (function) | 
|  | 1558 | * @a1: additional syscall register 1 | 
|  | 1559 | * @a2: additional syscall register 2 | 
|  | 1560 | * @a3: additional syscall register 3 | 
|  | 1561 | * @a4: additional syscall register 4 | 
|  | 1562 | * | 
|  | 1563 | * Fill in audit context at syscall entry.  This only happens if the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | * audit context was created when the task was created and the state or | 
|  | 1565 | * filters demand the audit context be built.  If the state from the | 
|  | 1566 | * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT, | 
|  | 1567 | * then the record will be written at syscall exit time (otherwise, it | 
|  | 1568 | * will only be written if another part of the kernel requests that it | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1569 | * be written). | 
|  | 1570 | */ | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1571 | void audit_syscall_entry(int arch, int major, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | unsigned long a1, unsigned long a2, | 
|  | 1573 | unsigned long a3, unsigned long a4) | 
|  | 1574 | { | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1575 | struct task_struct *tsk = current; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | struct audit_context *context = tsk->audit_context; | 
|  | 1577 | enum audit_state     state; | 
|  | 1578 |  | 
| Roland McGrath | 86a1c34 | 2008-06-23 15:37:04 -0700 | [diff] [blame] | 1579 | if (unlikely(!context)) | 
|  | 1580 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1582 | /* | 
|  | 1583 | * This happens only on certain architectures that make system | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | * calls in kernel_thread via the entry.S interface, instead of | 
|  | 1585 | * with direct calls.  (If you are porting to a new | 
|  | 1586 | * architecture, hitting this condition can indicate that you | 
|  | 1587 | * got the _exit/_leave calls backward in entry.S.) | 
|  | 1588 | * | 
|  | 1589 | * i386     no | 
|  | 1590 | * x86_64   no | 
| Jon Mason | 2ef9481 | 2006-01-23 10:58:20 -0600 | [diff] [blame] | 1591 | * ppc64    yes (see arch/powerpc/platforms/iseries/misc.S) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | * | 
|  | 1593 | * This also happens with vm86 emulation in a non-nested manner | 
|  | 1594 | * (entries without exits), so this case must be caught. | 
|  | 1595 | */ | 
|  | 1596 | if (context->in_syscall) { | 
|  | 1597 | struct audit_context *newctx; | 
|  | 1598 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | #if AUDIT_DEBUG | 
|  | 1600 | printk(KERN_ERR | 
|  | 1601 | "audit(:%d) pid=%d in syscall=%d;" | 
|  | 1602 | " entering syscall=%d\n", | 
|  | 1603 | context->serial, tsk->pid, context->major, major); | 
|  | 1604 | #endif | 
|  | 1605 | newctx = audit_alloc_context(context->state); | 
|  | 1606 | if (newctx) { | 
|  | 1607 | newctx->previous   = context; | 
|  | 1608 | context		   = newctx; | 
|  | 1609 | tsk->audit_context = newctx; | 
|  | 1610 | } else	{ | 
|  | 1611 | /* If we can't alloc a new context, the best we | 
|  | 1612 | * can do is to leak memory (any pending putname | 
|  | 1613 | * will be lost).  The only other alternative is | 
|  | 1614 | * to abandon auditing. */ | 
|  | 1615 | audit_zero_context(context, context->state); | 
|  | 1616 | } | 
|  | 1617 | } | 
|  | 1618 | BUG_ON(context->in_syscall || context->name_count); | 
|  | 1619 |  | 
|  | 1620 | if (!audit_enabled) | 
|  | 1621 | return; | 
|  | 1622 |  | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1623 | context->arch	    = arch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | context->major      = major; | 
|  | 1625 | context->argv[0]    = a1; | 
|  | 1626 | context->argv[1]    = a2; | 
|  | 1627 | context->argv[2]    = a3; | 
|  | 1628 | context->argv[3]    = a4; | 
|  | 1629 |  | 
|  | 1630 | state = context->state; | 
| Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 1631 | context->dummy = !audit_n_rules; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1632 | if (!context->dummy && state == AUDIT_BUILD_CONTEXT) { | 
|  | 1633 | context->prio = 0; | 
| David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 1634 | state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]); | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1635 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | if (likely(state == AUDIT_DISABLED)) | 
|  | 1637 | return; | 
|  | 1638 |  | 
| David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 1639 | context->serial     = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | context->ctime      = CURRENT_TIME; | 
|  | 1641 | context->in_syscall = 1; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1642 | context->current_state  = state; | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 1643 | context->ppid       = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | } | 
|  | 1645 |  | 
| Al Viro | a64e649 | 2008-11-12 18:37:41 -0500 | [diff] [blame] | 1646 | void audit_finish_fork(struct task_struct *child) | 
|  | 1647 | { | 
|  | 1648 | struct audit_context *ctx = current->audit_context; | 
|  | 1649 | struct audit_context *p = child->audit_context; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1650 | if (!p || !ctx) | 
|  | 1651 | return; | 
|  | 1652 | if (!ctx->in_syscall || ctx->current_state != AUDIT_RECORD_CONTEXT) | 
| Al Viro | a64e649 | 2008-11-12 18:37:41 -0500 | [diff] [blame] | 1653 | return; | 
|  | 1654 | p->arch = ctx->arch; | 
|  | 1655 | p->major = ctx->major; | 
|  | 1656 | memcpy(p->argv, ctx->argv, sizeof(ctx->argv)); | 
|  | 1657 | p->ctime = ctx->ctime; | 
|  | 1658 | p->dummy = ctx->dummy; | 
| Al Viro | a64e649 | 2008-11-12 18:37:41 -0500 | [diff] [blame] | 1659 | p->in_syscall = ctx->in_syscall; | 
|  | 1660 | p->filterkey = kstrdup(ctx->filterkey, GFP_KERNEL); | 
|  | 1661 | p->ppid = current->pid; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1662 | p->prio = ctx->prio; | 
|  | 1663 | p->current_state = ctx->current_state; | 
| Al Viro | a64e649 | 2008-11-12 18:37:41 -0500 | [diff] [blame] | 1664 | } | 
|  | 1665 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1666 | /** | 
|  | 1667 | * audit_syscall_exit - deallocate audit context after a system call | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1668 | * @valid: success/failure flag | 
|  | 1669 | * @return_code: syscall return value | 
|  | 1670 | * | 
|  | 1671 | * Tear down after system call.  If the audit context has been marked as | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | * auditable (either because of the AUDIT_RECORD_CONTEXT state from | 
|  | 1673 | * filtering, or because some other part of the kernel write an audit | 
|  | 1674 | * message), then write out the syscall information.  In call cases, | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1675 | * free the names stored from getname(). | 
|  | 1676 | */ | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1677 | void audit_syscall_exit(int valid, long return_code) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | { | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1679 | struct task_struct *tsk = current; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | struct audit_context *context; | 
|  | 1681 |  | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1682 | context = audit_get_context(tsk, valid, return_code); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | if (likely(!context)) | 
| Al Viro | 97e94c4 | 2006-03-29 20:26:24 -0500 | [diff] [blame] | 1685 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 |  | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1687 | if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT) | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1688 | audit_log_exit(context, tsk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 |  | 
|  | 1690 | context->in_syscall = 0; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 1691 | context->prio = context->state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0; | 
|  | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1692 |  | 
| Al Viro | 916d757 | 2009-06-24 00:02:38 -0400 | [diff] [blame] | 1693 | if (!list_empty(&context->killed_trees)) | 
|  | 1694 | audit_kill_trees(&context->killed_trees); | 
|  | 1695 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | if (context->previous) { | 
|  | 1697 | struct audit_context *new_context = context->previous; | 
|  | 1698 | context->previous  = NULL; | 
|  | 1699 | audit_free_context(context); | 
|  | 1700 | tsk->audit_context = new_context; | 
|  | 1701 | } else { | 
|  | 1702 | audit_free_names(context); | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1703 | unroll_tree_refs(context, NULL, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | audit_free_aux(context); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1705 | context->aux = NULL; | 
|  | 1706 | context->aux_pids = NULL; | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 1707 | context->target_pid = 0; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1708 | context->target_sid = 0; | 
| Al Viro | 4f6b434 | 2008-12-09 19:50:34 -0500 | [diff] [blame] | 1709 | context->sockaddr_len = 0; | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 1710 | context->type = 0; | 
| Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 1711 | context->fds[0] = -1; | 
| Al Viro | e048e02 | 2008-12-16 03:51:22 -0500 | [diff] [blame] | 1712 | if (context->state != AUDIT_RECORD_CONTEXT) { | 
|  | 1713 | kfree(context->filterkey); | 
|  | 1714 | context->filterkey = NULL; | 
|  | 1715 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | tsk->audit_context = context; | 
|  | 1717 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | } | 
|  | 1719 |  | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1720 | static inline void handle_one(const struct inode *inode) | 
|  | 1721 | { | 
|  | 1722 | #ifdef CONFIG_AUDIT_TREE | 
|  | 1723 | struct audit_context *context; | 
|  | 1724 | struct audit_tree_refs *p; | 
|  | 1725 | struct audit_chunk *chunk; | 
|  | 1726 | int count; | 
| Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 1727 | if (likely(hlist_empty(&inode->i_fsnotify_marks))) | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1728 | return; | 
|  | 1729 | context = current->audit_context; | 
|  | 1730 | p = context->trees; | 
|  | 1731 | count = context->tree_count; | 
|  | 1732 | rcu_read_lock(); | 
|  | 1733 | chunk = audit_tree_lookup(inode); | 
|  | 1734 | rcu_read_unlock(); | 
|  | 1735 | if (!chunk) | 
|  | 1736 | return; | 
|  | 1737 | if (likely(put_tree_ref(context, chunk))) | 
|  | 1738 | return; | 
|  | 1739 | if (unlikely(!grow_tree_refs(context))) { | 
| Eric Paris | 436c405 | 2008-04-18 10:01:04 -0400 | [diff] [blame] | 1740 | printk(KERN_WARNING "out of memory, audit has lost a tree reference\n"); | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1741 | audit_set_auditable(context); | 
|  | 1742 | audit_put_chunk(chunk); | 
|  | 1743 | unroll_tree_refs(context, p, count); | 
|  | 1744 | return; | 
|  | 1745 | } | 
|  | 1746 | put_tree_ref(context, chunk); | 
|  | 1747 | #endif | 
|  | 1748 | } | 
|  | 1749 |  | 
|  | 1750 | static void handle_path(const struct dentry *dentry) | 
|  | 1751 | { | 
|  | 1752 | #ifdef CONFIG_AUDIT_TREE | 
|  | 1753 | struct audit_context *context; | 
|  | 1754 | struct audit_tree_refs *p; | 
|  | 1755 | const struct dentry *d, *parent; | 
|  | 1756 | struct audit_chunk *drop; | 
|  | 1757 | unsigned long seq; | 
|  | 1758 | int count; | 
|  | 1759 |  | 
|  | 1760 | context = current->audit_context; | 
|  | 1761 | p = context->trees; | 
|  | 1762 | count = context->tree_count; | 
|  | 1763 | retry: | 
|  | 1764 | drop = NULL; | 
|  | 1765 | d = dentry; | 
|  | 1766 | rcu_read_lock(); | 
|  | 1767 | seq = read_seqbegin(&rename_lock); | 
|  | 1768 | for(;;) { | 
|  | 1769 | struct inode *inode = d->d_inode; | 
| Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 1770 | if (inode && unlikely(!hlist_empty(&inode->i_fsnotify_marks))) { | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1771 | struct audit_chunk *chunk; | 
|  | 1772 | chunk = audit_tree_lookup(inode); | 
|  | 1773 | if (chunk) { | 
|  | 1774 | if (unlikely(!put_tree_ref(context, chunk))) { | 
|  | 1775 | drop = chunk; | 
|  | 1776 | break; | 
|  | 1777 | } | 
|  | 1778 | } | 
|  | 1779 | } | 
|  | 1780 | parent = d->d_parent; | 
|  | 1781 | if (parent == d) | 
|  | 1782 | break; | 
|  | 1783 | d = parent; | 
|  | 1784 | } | 
|  | 1785 | if (unlikely(read_seqretry(&rename_lock, seq) || drop)) {  /* in this order */ | 
|  | 1786 | rcu_read_unlock(); | 
|  | 1787 | if (!drop) { | 
|  | 1788 | /* just a race with rename */ | 
|  | 1789 | unroll_tree_refs(context, p, count); | 
|  | 1790 | goto retry; | 
|  | 1791 | } | 
|  | 1792 | audit_put_chunk(drop); | 
|  | 1793 | if (grow_tree_refs(context)) { | 
|  | 1794 | /* OK, got more space */ | 
|  | 1795 | unroll_tree_refs(context, p, count); | 
|  | 1796 | goto retry; | 
|  | 1797 | } | 
|  | 1798 | /* too bad */ | 
|  | 1799 | printk(KERN_WARNING | 
| Eric Paris | 436c405 | 2008-04-18 10:01:04 -0400 | [diff] [blame] | 1800 | "out of memory, audit has lost a tree reference\n"); | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1801 | unroll_tree_refs(context, p, count); | 
|  | 1802 | audit_set_auditable(context); | 
|  | 1803 | return; | 
|  | 1804 | } | 
|  | 1805 | rcu_read_unlock(); | 
|  | 1806 | #endif | 
|  | 1807 | } | 
|  | 1808 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1809 | /** | 
|  | 1810 | * audit_getname - add a name to the list | 
|  | 1811 | * @name: name to add | 
|  | 1812 | * | 
|  | 1813 | * Add a name to the list of audit names for this context. | 
|  | 1814 | * Called from fs/namei.c:getname(). | 
|  | 1815 | */ | 
| Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1816 | void __audit_getname(const char *name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | { | 
|  | 1818 | struct audit_context *context = current->audit_context; | 
|  | 1819 |  | 
| Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1820 | if (IS_ERR(name) || !name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | return; | 
|  | 1822 |  | 
|  | 1823 | if (!context->in_syscall) { | 
|  | 1824 | #if AUDIT_DEBUG == 2 | 
|  | 1825 | printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n", | 
|  | 1826 | __FILE__, __LINE__, context->serial, name); | 
|  | 1827 | dump_stack(); | 
|  | 1828 | #endif | 
|  | 1829 | return; | 
|  | 1830 | } | 
|  | 1831 | BUG_ON(context->name_count >= AUDIT_NAMES); | 
|  | 1832 | context->names[context->name_count].name = name; | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1833 | context->names[context->name_count].name_len = AUDIT_NAME_FULL; | 
|  | 1834 | context->names[context->name_count].name_put = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | context->names[context->name_count].ino  = (unsigned long)-1; | 
| Amy Griffis | e41e8bd | 2007-02-13 14:14:09 -0500 | [diff] [blame] | 1836 | context->names[context->name_count].osid = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | ++context->name_count; | 
| Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 1838 | if (!context->pwd.dentry) | 
|  | 1839 | get_fs_pwd(current->fs, &context->pwd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | } | 
|  | 1841 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1842 | /* audit_putname - intercept a putname request | 
|  | 1843 | * @name: name to intercept and delay for putname | 
|  | 1844 | * | 
|  | 1845 | * If we have stored the name from getname in the audit context, | 
|  | 1846 | * then we delay the putname until syscall exit. | 
|  | 1847 | * Called from include/linux/fs.h:putname(). | 
|  | 1848 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | void audit_putname(const char *name) | 
|  | 1850 | { | 
|  | 1851 | struct audit_context *context = current->audit_context; | 
|  | 1852 |  | 
|  | 1853 | BUG_ON(!context); | 
|  | 1854 | if (!context->in_syscall) { | 
|  | 1855 | #if AUDIT_DEBUG == 2 | 
|  | 1856 | printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n", | 
|  | 1857 | __FILE__, __LINE__, context->serial, name); | 
|  | 1858 | if (context->name_count) { | 
|  | 1859 | int i; | 
|  | 1860 | for (i = 0; i < context->name_count; i++) | 
|  | 1861 | printk(KERN_ERR "name[%d] = %p = %s\n", i, | 
|  | 1862 | context->names[i].name, | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1863 | context->names[i].name ?: "(null)"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | } | 
|  | 1865 | #endif | 
|  | 1866 | __putname(name); | 
|  | 1867 | } | 
|  | 1868 | #if AUDIT_DEBUG | 
|  | 1869 | else { | 
|  | 1870 | ++context->put_count; | 
|  | 1871 | if (context->put_count > context->name_count) { | 
|  | 1872 | printk(KERN_ERR "%s:%d(:%d): major=%d" | 
|  | 1873 | " in_syscall=%d putname(%p) name_count=%d" | 
|  | 1874 | " put_count=%d\n", | 
|  | 1875 | __FILE__, __LINE__, | 
|  | 1876 | context->serial, context->major, | 
|  | 1877 | context->in_syscall, name, context->name_count, | 
|  | 1878 | context->put_count); | 
|  | 1879 | dump_stack(); | 
|  | 1880 | } | 
|  | 1881 | } | 
|  | 1882 | #endif | 
|  | 1883 | } | 
|  | 1884 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1885 | static int audit_inc_name_count(struct audit_context *context, | 
|  | 1886 | const struct inode *inode) | 
|  | 1887 | { | 
|  | 1888 | if (context->name_count >= AUDIT_NAMES) { | 
|  | 1889 | if (inode) | 
| Eric Paris | 449cedf | 2010-04-05 16:16:26 -0400 | [diff] [blame] | 1890 | printk(KERN_DEBUG "audit: name_count maxed, losing inode data: " | 
| Eric Paris | 436c405 | 2008-04-18 10:01:04 -0400 | [diff] [blame] | 1891 | "dev=%02x:%02x, inode=%lu\n", | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1892 | MAJOR(inode->i_sb->s_dev), | 
|  | 1893 | MINOR(inode->i_sb->s_dev), | 
|  | 1894 | inode->i_ino); | 
|  | 1895 |  | 
|  | 1896 | else | 
| Eric Paris | 436c405 | 2008-04-18 10:01:04 -0400 | [diff] [blame] | 1897 | printk(KERN_DEBUG "name_count maxed, losing inode data\n"); | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1898 | return 1; | 
|  | 1899 | } | 
|  | 1900 | context->name_count++; | 
|  | 1901 | #if AUDIT_DEBUG | 
|  | 1902 | context->ino_count++; | 
|  | 1903 | #endif | 
|  | 1904 | return 0; | 
|  | 1905 | } | 
|  | 1906 |  | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 1907 |  | 
|  | 1908 | static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry) | 
|  | 1909 | { | 
|  | 1910 | struct cpu_vfs_cap_data caps; | 
|  | 1911 | int rc; | 
|  | 1912 |  | 
|  | 1913 | memset(&name->fcap.permitted, 0, sizeof(kernel_cap_t)); | 
|  | 1914 | memset(&name->fcap.inheritable, 0, sizeof(kernel_cap_t)); | 
|  | 1915 | name->fcap.fE = 0; | 
|  | 1916 | name->fcap_ver = 0; | 
|  | 1917 |  | 
|  | 1918 | if (!dentry) | 
|  | 1919 | return 0; | 
|  | 1920 |  | 
|  | 1921 | rc = get_vfs_caps_from_disk(dentry, &caps); | 
|  | 1922 | if (rc) | 
|  | 1923 | return rc; | 
|  | 1924 |  | 
|  | 1925 | name->fcap.permitted = caps.permitted; | 
|  | 1926 | name->fcap.inheritable = caps.inheritable; | 
|  | 1927 | name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE); | 
|  | 1928 | name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT; | 
|  | 1929 |  | 
|  | 1930 | return 0; | 
|  | 1931 | } | 
|  | 1932 |  | 
|  | 1933 |  | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1934 | /* Copy inode data into an audit_names. */ | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 1935 | static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry, | 
|  | 1936 | const struct inode *inode) | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1937 | { | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1938 | name->ino   = inode->i_ino; | 
|  | 1939 | name->dev   = inode->i_sb->s_dev; | 
|  | 1940 | name->mode  = inode->i_mode; | 
|  | 1941 | name->uid   = inode->i_uid; | 
|  | 1942 | name->gid   = inode->i_gid; | 
|  | 1943 | name->rdev  = inode->i_rdev; | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 1944 | security_inode_getsecid(inode, &name->osid); | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 1945 | audit_copy_fcaps(name, dentry); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1946 | } | 
|  | 1947 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1948 | /** | 
|  | 1949 | * audit_inode - store the inode and device from a lookup | 
|  | 1950 | * @name: name being audited | 
| Randy Dunlap | 481968f | 2007-10-21 20:59:53 -0700 | [diff] [blame] | 1951 | * @dentry: dentry being audited | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1952 | * | 
|  | 1953 | * Called from fs/namei.c:path_lookup(). | 
|  | 1954 | */ | 
| Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 1955 | void __audit_inode(const char *name, const struct dentry *dentry) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | { | 
|  | 1957 | int idx; | 
|  | 1958 | struct audit_context *context = current->audit_context; | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1959 | const struct inode *inode = dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 |  | 
|  | 1961 | if (!context->in_syscall) | 
|  | 1962 | return; | 
|  | 1963 | if (context->name_count | 
|  | 1964 | && context->names[context->name_count-1].name | 
|  | 1965 | && context->names[context->name_count-1].name == name) | 
|  | 1966 | idx = context->name_count - 1; | 
|  | 1967 | else if (context->name_count > 1 | 
|  | 1968 | && context->names[context->name_count-2].name | 
|  | 1969 | && context->names[context->name_count-2].name == name) | 
|  | 1970 | idx = context->name_count - 2; | 
|  | 1971 | else { | 
|  | 1972 | /* FIXME: how much do we care about inodes that have no | 
|  | 1973 | * associated name? */ | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1974 | if (audit_inc_name_count(context, inode)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | return; | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1976 | idx = context->name_count - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | context->names[idx].name = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | } | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 1979 | handle_path(dentry); | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 1980 | audit_copy_inode(&context->names[idx], dentry, inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | } | 
|  | 1982 |  | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1983 | /** | 
|  | 1984 | * audit_inode_child - collect inode info for created/removed objects | 
| Randy Dunlap | 481968f | 2007-10-21 20:59:53 -0700 | [diff] [blame] | 1985 | * @dentry: dentry being audited | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1986 | * @parent: inode of dentry parent | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1987 | * | 
|  | 1988 | * For syscalls that create or remove filesystem objects, audit_inode | 
|  | 1989 | * can only collect information for the filesystem object's parent. | 
|  | 1990 | * This call updates the audit context with the child's information. | 
|  | 1991 | * Syscalls that create a new filesystem object must be hooked after | 
|  | 1992 | * the object is created.  Syscalls that remove a filesystem object | 
|  | 1993 | * must be hooked prior, in order to capture the target inode during | 
|  | 1994 | * unsuccessful attempts. | 
|  | 1995 | */ | 
| Al Viro | cccc6bb | 2009-12-25 05:07:33 -0500 | [diff] [blame] | 1996 | void __audit_inode_child(const struct dentry *dentry, | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1997 | const struct inode *parent) | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1998 | { | 
|  | 1999 | int idx; | 
|  | 2000 | struct audit_context *context = current->audit_context; | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2001 | const char *found_parent = NULL, *found_child = NULL; | 
| Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 2002 | const struct inode *inode = dentry->d_inode; | 
| Al Viro | cccc6bb | 2009-12-25 05:07:33 -0500 | [diff] [blame] | 2003 | const char *dname = dentry->d_name.name; | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 2004 | int dirlen = 0; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 2005 |  | 
|  | 2006 | if (!context->in_syscall) | 
|  | 2007 | return; | 
|  | 2008 |  | 
| Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 2009 | if (inode) | 
|  | 2010 | handle_one(inode); | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 2011 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2012 | /* parent is more likely, look for it first */ | 
|  | 2013 | for (idx = 0; idx < context->name_count; idx++) { | 
|  | 2014 | struct audit_names *n = &context->names[idx]; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 2015 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2016 | if (!n->name) | 
|  | 2017 | continue; | 
|  | 2018 |  | 
|  | 2019 | if (n->ino == parent->i_ino && | 
|  | 2020 | !audit_compare_dname_path(dname, n->name, &dirlen)) { | 
|  | 2021 | n->name_len = dirlen; /* update parent data in place */ | 
|  | 2022 | found_parent = n->name; | 
|  | 2023 | goto add_names; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 2024 | } | 
| Steve Grubb | ac9910c | 2006-09-28 14:31:32 -0400 | [diff] [blame] | 2025 | } | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 2026 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2027 | /* no matching parent, look for matching child */ | 
|  | 2028 | for (idx = 0; idx < context->name_count; idx++) { | 
|  | 2029 | struct audit_names *n = &context->names[idx]; | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 2030 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2031 | if (!n->name) | 
|  | 2032 | continue; | 
|  | 2033 |  | 
|  | 2034 | /* strcmp() is the more likely scenario */ | 
|  | 2035 | if (!strcmp(dname, n->name) || | 
|  | 2036 | !audit_compare_dname_path(dname, n->name, &dirlen)) { | 
|  | 2037 | if (inode) | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 2038 | audit_copy_inode(n, NULL, inode); | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2039 | else | 
|  | 2040 | n->ino = (unsigned long)-1; | 
|  | 2041 | found_child = n->name; | 
|  | 2042 | goto add_names; | 
| Steve Grubb | ac9910c | 2006-09-28 14:31:32 -0400 | [diff] [blame] | 2043 | } | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2044 | } | 
|  | 2045 |  | 
|  | 2046 | add_names: | 
|  | 2047 | if (!found_parent) { | 
|  | 2048 | if (audit_inc_name_count(context, parent)) | 
|  | 2049 | return; | 
|  | 2050 | idx = context->name_count - 1; | 
|  | 2051 | context->names[idx].name = NULL; | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 2052 | audit_copy_inode(&context->names[idx], NULL, parent); | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 2053 | } | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2054 |  | 
|  | 2055 | if (!found_child) { | 
|  | 2056 | if (audit_inc_name_count(context, inode)) | 
|  | 2057 | return; | 
|  | 2058 | idx = context->name_count - 1; | 
|  | 2059 |  | 
|  | 2060 | /* Re-use the name belonging to the slot for a matching parent | 
|  | 2061 | * directory. All names for this context are relinquished in | 
|  | 2062 | * audit_free_names() */ | 
|  | 2063 | if (found_parent) { | 
|  | 2064 | context->names[idx].name = found_parent; | 
|  | 2065 | context->names[idx].name_len = AUDIT_NAME_FULL; | 
|  | 2066 | /* don't call __putname() */ | 
|  | 2067 | context->names[idx].name_put = 0; | 
|  | 2068 | } else { | 
|  | 2069 | context->names[idx].name = NULL; | 
|  | 2070 | } | 
|  | 2071 |  | 
|  | 2072 | if (inode) | 
| Eric Paris | 851f7ff | 2008-11-11 21:48:14 +1100 | [diff] [blame] | 2073 | audit_copy_inode(&context->names[idx], NULL, inode); | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 2074 | else | 
|  | 2075 | context->names[idx].ino = (unsigned long)-1; | 
|  | 2076 | } | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 2077 | } | 
| Trond Myklebust | 50e437d | 2007-06-07 22:44:34 -0400 | [diff] [blame] | 2078 | EXPORT_SYMBOL_GPL(__audit_inode_child); | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 2079 |  | 
|  | 2080 | /** | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2081 | * auditsc_get_stamp - get local copies of audit_context values | 
|  | 2082 | * @ctx: audit_context for the task | 
|  | 2083 | * @t: timespec to store time recorded in the audit_context | 
|  | 2084 | * @serial: serial value that is recorded in the audit_context | 
|  | 2085 | * | 
|  | 2086 | * Also sets the context as auditable. | 
|  | 2087 | */ | 
| Al Viro | 48887e6 | 2008-12-06 01:05:50 -0500 | [diff] [blame] | 2088 | int auditsc_get_stamp(struct audit_context *ctx, | 
| David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 2089 | struct timespec *t, unsigned int *serial) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | { | 
| Al Viro | 48887e6 | 2008-12-06 01:05:50 -0500 | [diff] [blame] | 2091 | if (!ctx->in_syscall) | 
|  | 2092 | return 0; | 
| David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 2093 | if (!ctx->serial) | 
|  | 2094 | ctx->serial = audit_serial(); | 
| David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 2095 | t->tv_sec  = ctx->ctime.tv_sec; | 
|  | 2096 | t->tv_nsec = ctx->ctime.tv_nsec; | 
|  | 2097 | *serial    = ctx->serial; | 
| Al Viro | 0590b93 | 2008-12-14 23:45:27 -0500 | [diff] [blame] | 2098 | if (!ctx->prio) { | 
|  | 2099 | ctx->prio = 1; | 
|  | 2100 | ctx->current_state = AUDIT_RECORD_CONTEXT; | 
|  | 2101 | } | 
| Al Viro | 48887e6 | 2008-12-06 01:05:50 -0500 | [diff] [blame] | 2102 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | } | 
|  | 2104 |  | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2105 | /* global counter which is incremented every time something logs in */ | 
|  | 2106 | static atomic_t session_id = ATOMIC_INIT(0); | 
|  | 2107 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2108 | /** | 
|  | 2109 | * audit_set_loginuid - set a task's audit_context loginuid | 
|  | 2110 | * @task: task whose audit context is being modified | 
|  | 2111 | * @loginuid: loginuid value | 
|  | 2112 | * | 
|  | 2113 | * Returns 0. | 
|  | 2114 | * | 
|  | 2115 | * Called (set) from fs/proc/base.c::proc_loginuid_write(). | 
|  | 2116 | */ | 
| Steve Grubb | 456be6c | 2005-04-29 17:30:07 +0100 | [diff] [blame] | 2117 | int audit_set_loginuid(struct task_struct *task, uid_t loginuid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | { | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2119 | unsigned int sessionid = atomic_inc_return(&session_id); | 
| Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 2120 | struct audit_context *context = task->audit_context; | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 2121 |  | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 2122 | if (context && context->in_syscall) { | 
|  | 2123 | struct audit_buffer *ab; | 
| Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 2124 |  | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 2125 | ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN); | 
|  | 2126 | if (ab) { | 
|  | 2127 | audit_log_format(ab, "login pid=%d uid=%u " | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2128 | "old auid=%u new auid=%u" | 
|  | 2129 | " old ses=%u new ses=%u", | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2130 | task->pid, task_uid(task), | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2131 | task->loginuid, loginuid, | 
|  | 2132 | task->sessionid, sessionid); | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 2133 | audit_log_end(ab); | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 2134 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | } | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2136 | task->sessionid = sessionid; | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 2137 | task->loginuid = loginuid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | return 0; | 
|  | 2139 | } | 
|  | 2140 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2141 | /** | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2142 | * __audit_mq_open - record audit data for a POSIX MQ open | 
|  | 2143 | * @oflag: open flag | 
|  | 2144 | * @mode: mode bits | 
| Randy Dunlap | 6b96255 | 2009-01-05 13:41:13 -0800 | [diff] [blame] | 2145 | * @attr: queue attributes | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2146 | * | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2147 | */ | 
| Al Viro | 564f699 | 2008-12-14 04:02:26 -0500 | [diff] [blame] | 2148 | void __audit_mq_open(int oflag, mode_t mode, struct mq_attr *attr) | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2149 | { | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2150 | struct audit_context *context = current->audit_context; | 
|  | 2151 |  | 
| Al Viro | 564f699 | 2008-12-14 04:02:26 -0500 | [diff] [blame] | 2152 | if (attr) | 
|  | 2153 | memcpy(&context->mq_open.attr, attr, sizeof(struct mq_attr)); | 
|  | 2154 | else | 
|  | 2155 | memset(&context->mq_open.attr, 0, sizeof(struct mq_attr)); | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2156 |  | 
| Al Viro | 564f699 | 2008-12-14 04:02:26 -0500 | [diff] [blame] | 2157 | context->mq_open.oflag = oflag; | 
|  | 2158 | context->mq_open.mode = mode; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2159 |  | 
| Al Viro | 564f699 | 2008-12-14 04:02:26 -0500 | [diff] [blame] | 2160 | context->type = AUDIT_MQ_OPEN; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2161 | } | 
|  | 2162 |  | 
|  | 2163 | /** | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2164 | * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2165 | * @mqdes: MQ descriptor | 
|  | 2166 | * @msg_len: Message length | 
|  | 2167 | * @msg_prio: Message priority | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2168 | * @abs_timeout: Message timeout in absolute time | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2169 | * | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2170 | */ | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2171 | void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, | 
|  | 2172 | const struct timespec *abs_timeout) | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2173 | { | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2174 | struct audit_context *context = current->audit_context; | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2175 | struct timespec *p = &context->mq_sendrecv.abs_timeout; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2176 |  | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2177 | if (abs_timeout) | 
|  | 2178 | memcpy(p, abs_timeout, sizeof(struct timespec)); | 
|  | 2179 | else | 
|  | 2180 | memset(p, 0, sizeof(struct timespec)); | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2181 |  | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2182 | context->mq_sendrecv.mqdes = mqdes; | 
|  | 2183 | context->mq_sendrecv.msg_len = msg_len; | 
|  | 2184 | context->mq_sendrecv.msg_prio = msg_prio; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2185 |  | 
| Al Viro | c32c8af | 2008-12-14 03:46:48 -0500 | [diff] [blame] | 2186 | context->type = AUDIT_MQ_SENDRECV; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2187 | } | 
|  | 2188 |  | 
|  | 2189 | /** | 
|  | 2190 | * __audit_mq_notify - record audit data for a POSIX MQ notify | 
|  | 2191 | * @mqdes: MQ descriptor | 
| Randy Dunlap | 6b96255 | 2009-01-05 13:41:13 -0800 | [diff] [blame] | 2192 | * @notification: Notification event | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2193 | * | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2194 | */ | 
|  | 2195 |  | 
| Al Viro | 20114f7 | 2008-12-10 07:16:12 -0500 | [diff] [blame] | 2196 | void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification) | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2197 | { | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2198 | struct audit_context *context = current->audit_context; | 
|  | 2199 |  | 
| Al Viro | 20114f7 | 2008-12-10 07:16:12 -0500 | [diff] [blame] | 2200 | if (notification) | 
|  | 2201 | context->mq_notify.sigev_signo = notification->sigev_signo; | 
|  | 2202 | else | 
|  | 2203 | context->mq_notify.sigev_signo = 0; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2204 |  | 
| Al Viro | 20114f7 | 2008-12-10 07:16:12 -0500 | [diff] [blame] | 2205 | context->mq_notify.mqdes = mqdes; | 
|  | 2206 | context->type = AUDIT_MQ_NOTIFY; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2207 | } | 
|  | 2208 |  | 
|  | 2209 | /** | 
|  | 2210 | * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute | 
|  | 2211 | * @mqdes: MQ descriptor | 
|  | 2212 | * @mqstat: MQ flags | 
|  | 2213 | * | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2214 | */ | 
| Al Viro | 7392906 | 2008-12-10 06:58:59 -0500 | [diff] [blame] | 2215 | void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat) | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2216 | { | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2217 | struct audit_context *context = current->audit_context; | 
| Al Viro | 7392906 | 2008-12-10 06:58:59 -0500 | [diff] [blame] | 2218 | context->mq_getsetattr.mqdes = mqdes; | 
|  | 2219 | context->mq_getsetattr.mqstat = *mqstat; | 
|  | 2220 | context->type = AUDIT_MQ_GETSETATTR; | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 2221 | } | 
|  | 2222 |  | 
|  | 2223 | /** | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 2224 | * audit_ipc_obj - record audit data for ipc object | 
|  | 2225 | * @ipcp: ipc permissions | 
|  | 2226 | * | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 2227 | */ | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 2228 | void __audit_ipc_obj(struct kern_ipc_perm *ipcp) | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 2229 | { | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 2230 | struct audit_context *context = current->audit_context; | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 2231 | context->ipc.uid = ipcp->uid; | 
|  | 2232 | context->ipc.gid = ipcp->gid; | 
|  | 2233 | context->ipc.mode = ipcp->mode; | 
| Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 2234 | context->ipc.has_perm = 0; | 
| Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 2235 | security_ipc_getsecid(ipcp, &context->ipc.osid); | 
|  | 2236 | context->type = AUDIT_IPC; | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 2237 | } | 
|  | 2238 |  | 
|  | 2239 | /** | 
|  | 2240 | * audit_ipc_set_perm - record audit data for new ipc permissions | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2241 | * @qbytes: msgq bytes | 
|  | 2242 | * @uid: msgq user id | 
|  | 2243 | * @gid: msgq group id | 
|  | 2244 | * @mode: msgq mode (permissions) | 
|  | 2245 | * | 
| Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 2246 | * Called only after audit_ipc_obj(). | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2247 | */ | 
| Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 2248 | void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | struct audit_context *context = current->audit_context; | 
|  | 2251 |  | 
| Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 2252 | context->ipc.qbytes = qbytes; | 
|  | 2253 | context->ipc.perm_uid = uid; | 
|  | 2254 | context->ipc.perm_gid = gid; | 
|  | 2255 | context->ipc.perm_mode = mode; | 
|  | 2256 | context->ipc.has_perm = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | } | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2258 |  | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 2259 | int audit_bprm(struct linux_binprm *bprm) | 
|  | 2260 | { | 
|  | 2261 | struct audit_aux_data_execve *ax; | 
|  | 2262 | struct audit_context *context = current->audit_context; | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 2263 |  | 
| Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 2264 | if (likely(!audit_enabled || !context || context->dummy)) | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 2265 | return 0; | 
|  | 2266 |  | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 2267 | ax = kmalloc(sizeof(*ax), GFP_KERNEL); | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 2268 | if (!ax) | 
|  | 2269 | return -ENOMEM; | 
|  | 2270 |  | 
|  | 2271 | ax->argc = bprm->argc; | 
|  | 2272 | ax->envc = bprm->envc; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 2273 | ax->mm = bprm->mm; | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 2274 | ax->d.type = AUDIT_EXECVE; | 
|  | 2275 | ax->d.next = context->aux; | 
|  | 2276 | context->aux = (void *)ax; | 
|  | 2277 | return 0; | 
|  | 2278 | } | 
|  | 2279 |  | 
|  | 2280 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2281 | /** | 
|  | 2282 | * audit_socketcall - record audit data for sys_socketcall | 
|  | 2283 | * @nargs: number of args | 
|  | 2284 | * @args: args array | 
|  | 2285 | * | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2286 | */ | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 2287 | void audit_socketcall(int nargs, unsigned long *args) | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2288 | { | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2289 | struct audit_context *context = current->audit_context; | 
|  | 2290 |  | 
| Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 2291 | if (likely(!context || context->dummy)) | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 2292 | return; | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2293 |  | 
| Al Viro | f3298dc | 2008-12-10 03:16:51 -0500 | [diff] [blame] | 2294 | context->type = AUDIT_SOCKETCALL; | 
|  | 2295 | context->socketcall.nargs = nargs; | 
|  | 2296 | memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long)); | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2297 | } | 
|  | 2298 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2299 | /** | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 2300 | * __audit_fd_pair - record audit data for pipe and socketpair | 
|  | 2301 | * @fd1: the first file descriptor | 
|  | 2302 | * @fd2: the second file descriptor | 
|  | 2303 | * | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 2304 | */ | 
| Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 2305 | void __audit_fd_pair(int fd1, int fd2) | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 2306 | { | 
|  | 2307 | struct audit_context *context = current->audit_context; | 
| Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 2308 | context->fds[0] = fd1; | 
|  | 2309 | context->fds[1] = fd2; | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 2310 | } | 
|  | 2311 |  | 
|  | 2312 | /** | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2313 | * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto | 
|  | 2314 | * @len: data length in user space | 
|  | 2315 | * @a: data address in kernel space | 
|  | 2316 | * | 
|  | 2317 | * Returns 0 for success or NULL context or < 0 on error. | 
|  | 2318 | */ | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2319 | int audit_sockaddr(int len, void *a) | 
|  | 2320 | { | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2321 | struct audit_context *context = current->audit_context; | 
|  | 2322 |  | 
| Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 2323 | if (likely(!context || context->dummy)) | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2324 | return 0; | 
|  | 2325 |  | 
| Al Viro | 4f6b434 | 2008-12-09 19:50:34 -0500 | [diff] [blame] | 2326 | if (!context->sockaddr) { | 
|  | 2327 | void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL); | 
|  | 2328 | if (!p) | 
|  | 2329 | return -ENOMEM; | 
|  | 2330 | context->sockaddr = p; | 
|  | 2331 | } | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2332 |  | 
| Al Viro | 4f6b434 | 2008-12-09 19:50:34 -0500 | [diff] [blame] | 2333 | context->sockaddr_len = len; | 
|  | 2334 | memcpy(context->sockaddr, a, len); | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2335 | return 0; | 
|  | 2336 | } | 
|  | 2337 |  | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 2338 | void __audit_ptrace(struct task_struct *t) | 
|  | 2339 | { | 
|  | 2340 | struct audit_context *context = current->audit_context; | 
|  | 2341 |  | 
|  | 2342 | context->target_pid = t->pid; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 2343 | context->target_auid = audit_get_loginuid(t); | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2344 | context->target_uid = task_uid(t); | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2345 | context->target_sessionid = audit_get_sessionid(t); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2346 | security_task_getsecid(t, &context->target_sid); | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 2347 | memcpy(context->target_comm, t->comm, TASK_COMM_LEN); | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 2348 | } | 
|  | 2349 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2350 | /** | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 2351 | * audit_signal_info - record signal info for shutting down audit subsystem | 
|  | 2352 | * @sig: signal value | 
|  | 2353 | * @t: task being signaled | 
|  | 2354 | * | 
|  | 2355 | * If the audit subsystem is being terminated, record the task (pid) | 
|  | 2356 | * and uid that is doing that. | 
|  | 2357 | */ | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2358 | int __audit_signal_info(int sig, struct task_struct *t) | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2359 | { | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2360 | struct audit_aux_data_pids *axp; | 
|  | 2361 | struct task_struct *tsk = current; | 
|  | 2362 | struct audit_context *ctx = tsk->audit_context; | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2363 | uid_t uid = current_uid(), t_uid = task_uid(t); | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2364 |  | 
| Al Viro | 175fc48 | 2007-08-08 00:01:46 +0100 | [diff] [blame] | 2365 | if (audit_pid && t->tgid == audit_pid) { | 
| Eric Paris | ee1d315 | 2008-07-07 10:49:45 -0400 | [diff] [blame] | 2366 | if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) { | 
| Al Viro | 175fc48 | 2007-08-08 00:01:46 +0100 | [diff] [blame] | 2367 | audit_sig_pid = tsk->pid; | 
| Al Viro | bfef93a | 2008-01-10 04:53:18 -0500 | [diff] [blame] | 2368 | if (tsk->loginuid != -1) | 
|  | 2369 | audit_sig_uid = tsk->loginuid; | 
| Al Viro | 175fc48 | 2007-08-08 00:01:46 +0100 | [diff] [blame] | 2370 | else | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2371 | audit_sig_uid = uid; | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2372 | security_task_getsecid(tsk, &audit_sig_sid); | 
| Al Viro | 175fc48 | 2007-08-08 00:01:46 +0100 | [diff] [blame] | 2373 | } | 
|  | 2374 | if (!audit_signals || audit_dummy_context()) | 
|  | 2375 | return 0; | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2376 | } | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2377 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2378 | /* optimize the common case by putting first signal recipient directly | 
|  | 2379 | * in audit_context */ | 
|  | 2380 | if (!ctx->target_pid) { | 
|  | 2381 | ctx->target_pid = t->tgid; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 2382 | ctx->target_auid = audit_get_loginuid(t); | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2383 | ctx->target_uid = t_uid; | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2384 | ctx->target_sessionid = audit_get_sessionid(t); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2385 | security_task_getsecid(t, &ctx->target_sid); | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 2386 | memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2387 | return 0; | 
|  | 2388 | } | 
|  | 2389 |  | 
|  | 2390 | axp = (void *)ctx->aux_pids; | 
|  | 2391 | if (!axp || axp->pid_count == AUDIT_AUX_PIDS) { | 
|  | 2392 | axp = kzalloc(sizeof(*axp), GFP_ATOMIC); | 
|  | 2393 | if (!axp) | 
|  | 2394 | return -ENOMEM; | 
|  | 2395 |  | 
|  | 2396 | axp->d.type = AUDIT_OBJ_PID; | 
|  | 2397 | axp->d.next = ctx->aux_pids; | 
|  | 2398 | ctx->aux_pids = (void *)axp; | 
|  | 2399 | } | 
| Adrian Bunk | 88ae704 | 2007-08-22 14:01:05 -0700 | [diff] [blame] | 2400 | BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2401 |  | 
|  | 2402 | axp->target_pid[axp->pid_count] = t->tgid; | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 2403 | axp->target_auid[axp->pid_count] = audit_get_loginuid(t); | 
| David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 2404 | axp->target_uid[axp->pid_count] = t_uid; | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2405 | axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2406 | security_task_getsecid(t, &axp->target_sid[axp->pid_count]); | 
| Eric Paris | c2a7780 | 2008-01-07 13:40:17 -0500 | [diff] [blame] | 2407 | memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2408 | axp->pid_count++; | 
|  | 2409 |  | 
|  | 2410 | return 0; | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2411 | } | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2412 |  | 
|  | 2413 | /** | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2414 | * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2415 | * @bprm: pointer to the bprm being processed | 
|  | 2416 | * @new: the proposed new credentials | 
|  | 2417 | * @old: the old credentials | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2418 | * | 
|  | 2419 | * Simply check if the proc already has the caps given by the file and if not | 
|  | 2420 | * store the priv escalation info for later auditing at the end of the syscall | 
|  | 2421 | * | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2422 | * -Eric | 
|  | 2423 | */ | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2424 | int __audit_log_bprm_fcaps(struct linux_binprm *bprm, | 
|  | 2425 | const struct cred *new, const struct cred *old) | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2426 | { | 
|  | 2427 | struct audit_aux_data_bprm_fcaps *ax; | 
|  | 2428 | struct audit_context *context = current->audit_context; | 
|  | 2429 | struct cpu_vfs_cap_data vcaps; | 
|  | 2430 | struct dentry *dentry; | 
|  | 2431 |  | 
|  | 2432 | ax = kmalloc(sizeof(*ax), GFP_KERNEL); | 
|  | 2433 | if (!ax) | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2434 | return -ENOMEM; | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2435 |  | 
|  | 2436 | ax->d.type = AUDIT_BPRM_FCAPS; | 
|  | 2437 | ax->d.next = context->aux; | 
|  | 2438 | context->aux = (void *)ax; | 
|  | 2439 |  | 
|  | 2440 | dentry = dget(bprm->file->f_dentry); | 
|  | 2441 | get_vfs_caps_from_disk(dentry, &vcaps); | 
|  | 2442 | dput(dentry); | 
|  | 2443 |  | 
|  | 2444 | ax->fcap.permitted = vcaps.permitted; | 
|  | 2445 | ax->fcap.inheritable = vcaps.inheritable; | 
|  | 2446 | ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE); | 
|  | 2447 | ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT; | 
|  | 2448 |  | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2449 | ax->old_pcap.permitted   = old->cap_permitted; | 
|  | 2450 | ax->old_pcap.inheritable = old->cap_inheritable; | 
|  | 2451 | ax->old_pcap.effective   = old->cap_effective; | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2452 |  | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2453 | ax->new_pcap.permitted   = new->cap_permitted; | 
|  | 2454 | ax->new_pcap.inheritable = new->cap_inheritable; | 
|  | 2455 | ax->new_pcap.effective   = new->cap_effective; | 
|  | 2456 | return 0; | 
| Eric Paris | 3fc689e | 2008-11-11 21:48:18 +1100 | [diff] [blame] | 2457 | } | 
|  | 2458 |  | 
|  | 2459 | /** | 
| Eric Paris | e68b75a0 | 2008-11-11 21:48:22 +1100 | [diff] [blame] | 2460 | * __audit_log_capset - store information about the arguments to the capset syscall | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2461 | * @pid: target pid of the capset call | 
|  | 2462 | * @new: the new credentials | 
|  | 2463 | * @old: the old (current) credentials | 
| Eric Paris | e68b75a0 | 2008-11-11 21:48:22 +1100 | [diff] [blame] | 2464 | * | 
|  | 2465 | * Record the aguments userspace sent to sys_capset for later printing by the | 
|  | 2466 | * audit system if applicable | 
|  | 2467 | */ | 
| Al Viro | 57f71a0 | 2009-01-04 14:52:57 -0500 | [diff] [blame] | 2468 | void __audit_log_capset(pid_t pid, | 
| David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2469 | const struct cred *new, const struct cred *old) | 
| Eric Paris | e68b75a0 | 2008-11-11 21:48:22 +1100 | [diff] [blame] | 2470 | { | 
| Eric Paris | e68b75a0 | 2008-11-11 21:48:22 +1100 | [diff] [blame] | 2471 | struct audit_context *context = current->audit_context; | 
| Al Viro | 57f71a0 | 2009-01-04 14:52:57 -0500 | [diff] [blame] | 2472 | context->capset.pid = pid; | 
|  | 2473 | context->capset.cap.effective   = new->cap_effective; | 
|  | 2474 | context->capset.cap.inheritable = new->cap_effective; | 
|  | 2475 | context->capset.cap.permitted   = new->cap_permitted; | 
|  | 2476 | context->type = AUDIT_CAPSET; | 
| Eric Paris | e68b75a0 | 2008-11-11 21:48:22 +1100 | [diff] [blame] | 2477 | } | 
|  | 2478 |  | 
|  | 2479 | /** | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2480 | * audit_core_dumps - record information about processes that end abnormally | 
| Henrik Kretzschmar | 6d9525b | 2007-07-15 23:41:10 -0700 | [diff] [blame] | 2481 | * @signr: signal value | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2482 | * | 
|  | 2483 | * If a process ends with a core dump, something fishy is going on and we | 
|  | 2484 | * should record the event for investigation. | 
|  | 2485 | */ | 
|  | 2486 | void audit_core_dumps(long signr) | 
|  | 2487 | { | 
|  | 2488 | struct audit_buffer *ab; | 
|  | 2489 | u32 sid; | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 2490 | uid_t auid = audit_get_loginuid(current), uid; | 
|  | 2491 | gid_t gid; | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2492 | unsigned int sessionid = audit_get_sessionid(current); | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2493 |  | 
|  | 2494 | if (!audit_enabled) | 
|  | 2495 | return; | 
|  | 2496 |  | 
|  | 2497 | if (signr == SIGQUIT)	/* don't care for those */ | 
|  | 2498 | return; | 
|  | 2499 |  | 
|  | 2500 | ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND); | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 2501 | current_uid_gid(&uid, &gid); | 
| Eric Paris | 4746ec5 | 2008-01-08 10:06:53 -0500 | [diff] [blame] | 2502 | audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u", | 
| David Howells | 76aac0e | 2008-11-14 10:39:12 +1100 | [diff] [blame] | 2503 | auid, uid, gid, sessionid); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2504 | security_task_getsecid(current, &sid); | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2505 | if (sid) { | 
|  | 2506 | char *ctx = NULL; | 
|  | 2507 | u32 len; | 
|  | 2508 |  | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2509 | if (security_secid_to_secctx(sid, &ctx, &len)) | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2510 | audit_log_format(ab, " ssid=%u", sid); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2511 | else { | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2512 | audit_log_format(ab, " subj=%s", ctx); | 
| Ahmed S. Darwish | 2a862b3 | 2008-03-01 21:54:38 +0200 | [diff] [blame] | 2513 | security_release_secctx(ctx, len); | 
|  | 2514 | } | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2515 | } | 
|  | 2516 | audit_log_format(ab, " pid=%d comm=", current->pid); | 
|  | 2517 | audit_log_untrustedstring(ab, current->comm); | 
|  | 2518 | audit_log_format(ab, " sig=%ld", signr); | 
|  | 2519 | audit_log_end(ab); | 
|  | 2520 | } | 
| Al Viro | 916d757 | 2009-06-24 00:02:38 -0400 | [diff] [blame] | 2521 |  | 
|  | 2522 | struct list_head *audit_killed_trees(void) | 
|  | 2523 | { | 
|  | 2524 | struct audit_context *ctx = current->audit_context; | 
|  | 2525 | if (likely(!ctx || !ctx->in_syscall)) | 
|  | 2526 | return NULL; | 
|  | 2527 | return &ctx->killed_trees; | 
|  | 2528 | } |