| 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 <asm/types.h> | 
 | 49 | #include <linux/fs.h> | 
 | 50 | #include <linux/namei.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/mm.h> | 
 | 52 | #include <linux/module.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> | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 65 | #include <linux/selinux.h> | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 66 | #include <linux/binfmts.h> | 
| Al Viro | a1f8e7f7 | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 67 | #include <linux/highmem.h> | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 68 | #include <linux/syscalls.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 |  | 
| David Woodhouse | fe7752b | 2005-12-15 18:33:52 +0000 | [diff] [blame] | 70 | #include "audit.h" | 
 | 71 |  | 
 | 72 | extern struct list_head audit_filter_list[]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* AUDIT_NAMES is the number of slots we reserve in the audit_context | 
 | 75 |  * for saving names from getname(). */ | 
 | 76 | #define AUDIT_NAMES    20 | 
 | 77 |  | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 78 | /* Indicates that audit should log the full pathname. */ | 
 | 79 | #define AUDIT_NAME_FULL -1 | 
 | 80 |  | 
| Al Viro | 471a5c7 | 2006-07-10 08:29:24 -0400 | [diff] [blame] | 81 | /* number of audit rules */ | 
 | 82 | int audit_n_rules; | 
 | 83 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 84 | /* determines whether we collect data for signals sent */ | 
 | 85 | int audit_signals; | 
 | 86 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* When fs/namei.c:getname() is called, we store the pointer in name and | 
 | 88 |  * we don't let putname() free it (instead we free all of the saved | 
 | 89 |  * pointers at syscall exit time). | 
 | 90 |  * | 
 | 91 |  * Further, in fs/namei.c:path_lookup() we store the inode and device. */ | 
 | 92 | struct audit_names { | 
 | 93 | 	const char	*name; | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 94 | 	int		name_len;	/* number of name's characters to log */ | 
 | 95 | 	unsigned	name_put;	/* call __putname() for this name */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | 	unsigned long	ino; | 
 | 97 | 	dev_t		dev; | 
 | 98 | 	umode_t		mode; | 
 | 99 | 	uid_t		uid; | 
 | 100 | 	gid_t		gid; | 
 | 101 | 	dev_t		rdev; | 
| Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 102 | 	u32		osid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | }; | 
 | 104 |  | 
 | 105 | struct audit_aux_data { | 
 | 106 | 	struct audit_aux_data	*next; | 
 | 107 | 	int			type; | 
 | 108 | }; | 
 | 109 |  | 
 | 110 | #define AUDIT_AUX_IPCPERM	0 | 
 | 111 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 112 | /* Number of target pids per aux struct. */ | 
 | 113 | #define AUDIT_AUX_PIDS	16 | 
 | 114 |  | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 115 | struct audit_aux_data_mq_open { | 
 | 116 | 	struct audit_aux_data	d; | 
 | 117 | 	int			oflag; | 
 | 118 | 	mode_t			mode; | 
 | 119 | 	struct mq_attr		attr; | 
 | 120 | }; | 
 | 121 |  | 
 | 122 | struct audit_aux_data_mq_sendrecv { | 
 | 123 | 	struct audit_aux_data	d; | 
 | 124 | 	mqd_t			mqdes; | 
 | 125 | 	size_t			msg_len; | 
 | 126 | 	unsigned int		msg_prio; | 
 | 127 | 	struct timespec		abs_timeout; | 
 | 128 | }; | 
 | 129 |  | 
 | 130 | struct audit_aux_data_mq_notify { | 
 | 131 | 	struct audit_aux_data	d; | 
 | 132 | 	mqd_t			mqdes; | 
 | 133 | 	struct sigevent 	notification; | 
 | 134 | }; | 
 | 135 |  | 
 | 136 | struct audit_aux_data_mq_getsetattr { | 
 | 137 | 	struct audit_aux_data	d; | 
 | 138 | 	mqd_t			mqdes; | 
 | 139 | 	struct mq_attr 		mqstat; | 
 | 140 | }; | 
 | 141 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | struct audit_aux_data_ipcctl { | 
 | 143 | 	struct audit_aux_data	d; | 
 | 144 | 	struct ipc_perm		p; | 
 | 145 | 	unsigned long		qbytes; | 
 | 146 | 	uid_t			uid; | 
 | 147 | 	gid_t			gid; | 
 | 148 | 	mode_t			mode; | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 149 | 	u32			osid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | }; | 
 | 151 |  | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 152 | struct audit_aux_data_execve { | 
 | 153 | 	struct audit_aux_data	d; | 
 | 154 | 	int argc; | 
 | 155 | 	int envc; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 156 | 	struct mm_struct *mm; | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 157 | }; | 
 | 158 |  | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 159 | struct audit_aux_data_socketcall { | 
 | 160 | 	struct audit_aux_data	d; | 
 | 161 | 	int			nargs; | 
 | 162 | 	unsigned long		args[0]; | 
 | 163 | }; | 
 | 164 |  | 
 | 165 | struct audit_aux_data_sockaddr { | 
 | 166 | 	struct audit_aux_data	d; | 
 | 167 | 	int			len; | 
 | 168 | 	char			a[0]; | 
 | 169 | }; | 
 | 170 |  | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 171 | struct audit_aux_data_fd_pair { | 
 | 172 | 	struct	audit_aux_data d; | 
 | 173 | 	int	fd[2]; | 
 | 174 | }; | 
 | 175 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 176 | struct audit_aux_data_pids { | 
 | 177 | 	struct audit_aux_data	d; | 
 | 178 | 	pid_t			target_pid[AUDIT_AUX_PIDS]; | 
 | 179 | 	u32			target_sid[AUDIT_AUX_PIDS]; | 
 | 180 | 	int			pid_count; | 
 | 181 | }; | 
 | 182 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* The per-task audit context. */ | 
 | 184 | struct audit_context { | 
| Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 185 | 	int		    dummy;	/* must be the first element */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | 	int		    in_syscall;	/* 1 if task is in a syscall */ | 
 | 187 | 	enum audit_state    state; | 
 | 188 | 	unsigned int	    serial;     /* serial number for record */ | 
 | 189 | 	struct timespec	    ctime;      /* time of syscall entry */ | 
 | 190 | 	uid_t		    loginuid;   /* login uid (identity) */ | 
 | 191 | 	int		    major;      /* syscall number */ | 
 | 192 | 	unsigned long	    argv[4];    /* syscall arguments */ | 
 | 193 | 	int		    return_valid; /* return code is valid */ | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 194 | 	long		    return_code;/* syscall return code */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | 	int		    auditable;  /* 1 if record should be written */ | 
 | 196 | 	int		    name_count; | 
 | 197 | 	struct audit_names  names[AUDIT_NAMES]; | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 198 | 	char *		    filterkey;	/* key for rule that triggered record */ | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 199 | 	struct dentry *	    pwd; | 
 | 200 | 	struct vfsmount *   pwdmnt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | 	struct audit_context *previous; /* For nested syscalls */ | 
 | 202 | 	struct audit_aux_data *aux; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 203 | 	struct audit_aux_data *aux_pids; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 |  | 
 | 205 | 				/* Save things to print about task_struct */ | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 206 | 	pid_t		    pid, ppid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | 	uid_t		    uid, euid, suid, fsuid; | 
 | 208 | 	gid_t		    gid, egid, sgid, fsgid; | 
 | 209 | 	unsigned long	    personality; | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 210 | 	int		    arch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 |  | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 212 | 	pid_t		    target_pid; | 
 | 213 | 	u32		    target_sid; | 
 | 214 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | #if AUDIT_DEBUG | 
 | 216 | 	int		    put_count; | 
 | 217 | 	int		    ino_count; | 
 | 218 | #endif | 
 | 219 | }; | 
 | 220 |  | 
| Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 221 | #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE]) | 
 | 222 | static inline int open_arg(int flags, int mask) | 
 | 223 | { | 
 | 224 | 	int n = ACC_MODE(flags); | 
 | 225 | 	if (flags & (O_TRUNC | O_CREAT)) | 
 | 226 | 		n |= AUDIT_PERM_WRITE; | 
 | 227 | 	return n & mask; | 
 | 228 | } | 
 | 229 |  | 
 | 230 | static int audit_match_perm(struct audit_context *ctx, int mask) | 
 | 231 | { | 
 | 232 | 	unsigned n = ctx->major; | 
 | 233 | 	switch (audit_classify_syscall(ctx->arch, n)) { | 
 | 234 | 	case 0:	/* native */ | 
 | 235 | 		if ((mask & AUDIT_PERM_WRITE) && | 
 | 236 | 		     audit_match_class(AUDIT_CLASS_WRITE, n)) | 
 | 237 | 			return 1; | 
 | 238 | 		if ((mask & AUDIT_PERM_READ) && | 
 | 239 | 		     audit_match_class(AUDIT_CLASS_READ, n)) | 
 | 240 | 			return 1; | 
 | 241 | 		if ((mask & AUDIT_PERM_ATTR) && | 
 | 242 | 		     audit_match_class(AUDIT_CLASS_CHATTR, n)) | 
 | 243 | 			return 1; | 
 | 244 | 		return 0; | 
 | 245 | 	case 1: /* 32bit on biarch */ | 
 | 246 | 		if ((mask & AUDIT_PERM_WRITE) && | 
 | 247 | 		     audit_match_class(AUDIT_CLASS_WRITE_32, n)) | 
 | 248 | 			return 1; | 
 | 249 | 		if ((mask & AUDIT_PERM_READ) && | 
 | 250 | 		     audit_match_class(AUDIT_CLASS_READ_32, n)) | 
 | 251 | 			return 1; | 
 | 252 | 		if ((mask & AUDIT_PERM_ATTR) && | 
 | 253 | 		     audit_match_class(AUDIT_CLASS_CHATTR_32, n)) | 
 | 254 | 			return 1; | 
 | 255 | 		return 0; | 
 | 256 | 	case 2: /* open */ | 
 | 257 | 		return mask & ACC_MODE(ctx->argv[1]); | 
 | 258 | 	case 3: /* openat */ | 
 | 259 | 		return mask & ACC_MODE(ctx->argv[2]); | 
 | 260 | 	case 4: /* socketcall */ | 
 | 261 | 		return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND); | 
 | 262 | 	case 5: /* execve */ | 
 | 263 | 		return mask & AUDIT_PERM_EXEC; | 
 | 264 | 	default: | 
 | 265 | 		return 0; | 
 | 266 | 	} | 
 | 267 | } | 
 | 268 |  | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 269 | /* Determine if any context name data matches a rule's watch data */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | /* Compare a task_struct with an audit_rule.  Return 1 on match, 0 | 
 | 271 |  * otherwise. */ | 
 | 272 | static int audit_filter_rules(struct task_struct *tsk, | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 273 | 			      struct audit_krule *rule, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | 			      struct audit_context *ctx, | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 275 | 			      struct audit_names *name, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | 			      enum audit_state *state) | 
 | 277 | { | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 278 | 	int i, j, need_sid = 1; | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 279 | 	u32 sid; | 
 | 280 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | 	for (i = 0; i < rule->field_count; i++) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 282 | 		struct audit_field *f = &rule->fields[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | 		int result = 0; | 
 | 284 |  | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 285 | 		switch (f->type) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | 		case AUDIT_PID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 287 | 			result = audit_comparator(tsk->pid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | 			break; | 
| Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 289 | 		case AUDIT_PPID: | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 290 | 			if (ctx) { | 
 | 291 | 				if (!ctx->ppid) | 
 | 292 | 					ctx->ppid = sys_getppid(); | 
| Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 293 | 				result = audit_comparator(ctx->ppid, f->op, f->val); | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 294 | 			} | 
| Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 295 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | 		case AUDIT_UID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 297 | 			result = audit_comparator(tsk->uid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | 			break; | 
 | 299 | 		case AUDIT_EUID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 300 | 			result = audit_comparator(tsk->euid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | 			break; | 
 | 302 | 		case AUDIT_SUID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 303 | 			result = audit_comparator(tsk->suid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | 			break; | 
 | 305 | 		case AUDIT_FSUID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 306 | 			result = audit_comparator(tsk->fsuid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | 			break; | 
 | 308 | 		case AUDIT_GID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 309 | 			result = audit_comparator(tsk->gid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | 			break; | 
 | 311 | 		case AUDIT_EGID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 312 | 			result = audit_comparator(tsk->egid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | 			break; | 
 | 314 | 		case AUDIT_SGID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 315 | 			result = audit_comparator(tsk->sgid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | 			break; | 
 | 317 | 		case AUDIT_FSGID: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 318 | 			result = audit_comparator(tsk->fsgid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | 			break; | 
 | 320 | 		case AUDIT_PERS: | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 321 | 			result = audit_comparator(tsk->personality, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | 			break; | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 323 | 		case AUDIT_ARCH: | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 324 |  			if (ctx) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 325 | 				result = audit_comparator(ctx->arch, f->op, f->val); | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 326 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 |  | 
 | 328 | 		case AUDIT_EXIT: | 
 | 329 | 			if (ctx && ctx->return_valid) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 330 | 				result = audit_comparator(ctx->return_code, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | 			break; | 
 | 332 | 		case AUDIT_SUCCESS: | 
| David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 333 | 			if (ctx && ctx->return_valid) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 334 | 				if (f->val) | 
 | 335 | 					result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS); | 
| David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 336 | 				else | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 337 | 					result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE); | 
| David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 338 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | 			break; | 
 | 340 | 		case AUDIT_DEVMAJOR: | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 341 | 			if (name) | 
 | 342 | 				result = audit_comparator(MAJOR(name->dev), | 
 | 343 | 							  f->op, f->val); | 
 | 344 | 			else if (ctx) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | 				for (j = 0; j < ctx->name_count; j++) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 346 | 					if (audit_comparator(MAJOR(ctx->names[j].dev),	f->op, f->val)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | 						++result; | 
 | 348 | 						break; | 
 | 349 | 					} | 
 | 350 | 				} | 
 | 351 | 			} | 
 | 352 | 			break; | 
 | 353 | 		case AUDIT_DEVMINOR: | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 354 | 			if (name) | 
 | 355 | 				result = audit_comparator(MINOR(name->dev), | 
 | 356 | 							  f->op, f->val); | 
 | 357 | 			else if (ctx) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | 				for (j = 0; j < ctx->name_count; j++) { | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 359 | 					if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | 						++result; | 
 | 361 | 						break; | 
 | 362 | 					} | 
 | 363 | 				} | 
 | 364 | 			} | 
 | 365 | 			break; | 
 | 366 | 		case AUDIT_INODE: | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 367 | 			if (name) | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 368 | 				result = (name->ino == f->val); | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 369 | 			else if (ctx) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | 				for (j = 0; j < ctx->name_count; j++) { | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 371 | 					if (audit_comparator(ctx->names[j].ino, f->op, f->val)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | 						++result; | 
 | 373 | 						break; | 
 | 374 | 					} | 
 | 375 | 				} | 
 | 376 | 			} | 
 | 377 | 			break; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 378 | 		case AUDIT_WATCH: | 
 | 379 | 			if (name && rule->watch->ino != (unsigned long)-1) | 
 | 380 | 				result = (name->dev == rule->watch->dev && | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 381 | 					  name->ino == rule->watch->ino); | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 382 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | 		case AUDIT_LOGINUID: | 
 | 384 | 			result = 0; | 
 | 385 | 			if (ctx) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 386 | 				result = audit_comparator(ctx->loginuid, f->op, f->val); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | 			break; | 
| Darrel Goeddel | 3a6b9f8 | 2006-06-29 16:56:39 -0500 | [diff] [blame] | 388 | 		case AUDIT_SUBJ_USER: | 
 | 389 | 		case AUDIT_SUBJ_ROLE: | 
 | 390 | 		case AUDIT_SUBJ_TYPE: | 
 | 391 | 		case AUDIT_SUBJ_SEN: | 
 | 392 | 		case AUDIT_SUBJ_CLR: | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 393 | 			/* NOTE: this may return negative values indicating | 
 | 394 | 			   a temporary error.  We simply treat this as a | 
 | 395 | 			   match for now to avoid losing information that | 
 | 396 | 			   may be wanted.   An error message will also be | 
 | 397 | 			   logged upon error */ | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 398 | 			if (f->se_rule) { | 
 | 399 | 				if (need_sid) { | 
| Stephen Smalley | 62bac01 | 2006-09-25 23:31:56 -0700 | [diff] [blame] | 400 | 					selinux_get_task_sid(tsk, &sid); | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 401 | 					need_sid = 0; | 
 | 402 | 				} | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 403 | 				result = selinux_audit_rule_match(sid, f->type, | 
 | 404 | 				                                  f->op, | 
 | 405 | 				                                  f->se_rule, | 
 | 406 | 				                                  ctx); | 
| Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 407 | 			} | 
| Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 408 | 			break; | 
| Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 409 | 		case AUDIT_OBJ_USER: | 
 | 410 | 		case AUDIT_OBJ_ROLE: | 
 | 411 | 		case AUDIT_OBJ_TYPE: | 
 | 412 | 		case AUDIT_OBJ_LEV_LOW: | 
 | 413 | 		case AUDIT_OBJ_LEV_HIGH: | 
 | 414 | 			/* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR | 
 | 415 | 			   also applies here */ | 
 | 416 | 			if (f->se_rule) { | 
 | 417 | 				/* Find files that match */ | 
 | 418 | 				if (name) { | 
 | 419 | 					result = selinux_audit_rule_match( | 
 | 420 | 					           name->osid, f->type, f->op, | 
 | 421 | 					           f->se_rule, ctx); | 
 | 422 | 				} else if (ctx) { | 
 | 423 | 					for (j = 0; j < ctx->name_count; j++) { | 
 | 424 | 						if (selinux_audit_rule_match( | 
 | 425 | 						      ctx->names[j].osid, | 
 | 426 | 						      f->type, f->op, | 
 | 427 | 						      f->se_rule, ctx)) { | 
 | 428 | 							++result; | 
 | 429 | 							break; | 
 | 430 | 						} | 
 | 431 | 					} | 
 | 432 | 				} | 
 | 433 | 				/* Find ipc objects that match */ | 
 | 434 | 				if (ctx) { | 
 | 435 | 					struct audit_aux_data *aux; | 
 | 436 | 					for (aux = ctx->aux; aux; | 
 | 437 | 					     aux = aux->next) { | 
 | 438 | 						if (aux->type == AUDIT_IPC) { | 
 | 439 | 							struct audit_aux_data_ipcctl *axi = (void *)aux; | 
 | 440 | 							if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) { | 
 | 441 | 								++result; | 
 | 442 | 								break; | 
 | 443 | 							} | 
 | 444 | 						} | 
 | 445 | 					} | 
 | 446 | 				} | 
 | 447 | 			} | 
 | 448 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | 		case AUDIT_ARG0: | 
 | 450 | 		case AUDIT_ARG1: | 
 | 451 | 		case AUDIT_ARG2: | 
 | 452 | 		case AUDIT_ARG3: | 
 | 453 | 			if (ctx) | 
| Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 454 | 				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] | 455 | 			break; | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 456 | 		case AUDIT_FILTERKEY: | 
 | 457 | 			/* ignore this field for filtering */ | 
 | 458 | 			result = 1; | 
 | 459 | 			break; | 
| Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 460 | 		case AUDIT_PERM: | 
 | 461 | 			result = audit_match_perm(ctx, f->val); | 
 | 462 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | 		} | 
 | 464 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | 		if (!result) | 
 | 466 | 			return 0; | 
 | 467 | 	} | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 468 | 	if (rule->filterkey) | 
 | 469 | 		ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | 	switch (rule->action) { | 
 | 471 | 	case AUDIT_NEVER:    *state = AUDIT_DISABLED;	    break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | 	case AUDIT_ALWAYS:   *state = AUDIT_RECORD_CONTEXT; break; | 
 | 473 | 	} | 
 | 474 | 	return 1; | 
 | 475 | } | 
 | 476 |  | 
 | 477 | /* At process creation time, we can determine if system-call auditing is | 
 | 478 |  * completely disabled for this task.  Since we only have the task | 
 | 479 |  * structure at this point, we can only check uid and gid. | 
 | 480 |  */ | 
 | 481 | static enum audit_state audit_filter_task(struct task_struct *tsk) | 
 | 482 | { | 
 | 483 | 	struct audit_entry *e; | 
 | 484 | 	enum audit_state   state; | 
 | 485 |  | 
 | 486 | 	rcu_read_lock(); | 
| David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 487 | 	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] | 488 | 		if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | 			rcu_read_unlock(); | 
 | 490 | 			return state; | 
 | 491 | 		} | 
 | 492 | 	} | 
 | 493 | 	rcu_read_unlock(); | 
 | 494 | 	return AUDIT_BUILD_CONTEXT; | 
 | 495 | } | 
 | 496 |  | 
 | 497 | /* At syscall entry and exit time, this filter is called if the | 
 | 498 |  * 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] | 499 |  * 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] | 500 |  * 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] | 501 |  */ | 
 | 502 | static enum audit_state audit_filter_syscall(struct task_struct *tsk, | 
 | 503 | 					     struct audit_context *ctx, | 
 | 504 | 					     struct list_head *list) | 
 | 505 | { | 
 | 506 | 	struct audit_entry *e; | 
| David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 507 | 	enum audit_state state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 |  | 
| David Woodhouse | 351bb72 | 2005-07-14 14:40:06 +0100 | [diff] [blame] | 509 | 	if (audit_pid && tsk->tgid == audit_pid) | 
| David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 510 | 		return AUDIT_DISABLED; | 
 | 511 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | 	rcu_read_lock(); | 
| David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 513 | 	if (!list_empty(list)) { | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 514 | 		int word = AUDIT_WORD(ctx->major); | 
 | 515 | 		int bit  = AUDIT_BIT(ctx->major); | 
| David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 516 |  | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 517 | 		list_for_each_entry_rcu(e, list, list) { | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 518 | 			if ((e->rule.mask[word] & bit) == bit && | 
 | 519 | 			    audit_filter_rules(tsk, &e->rule, ctx, NULL, | 
 | 520 | 					       &state)) { | 
| Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 521 | 				rcu_read_unlock(); | 
 | 522 | 				return state; | 
 | 523 | 			} | 
 | 524 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | 	} | 
 | 526 | 	rcu_read_unlock(); | 
 | 527 | 	return AUDIT_BUILD_CONTEXT; | 
 | 528 | } | 
 | 529 |  | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 530 | /* At syscall exit time, this filter is called if any audit_names[] have been | 
 | 531 |  * collected during syscall processing.  We only check rules in sublists at hash | 
 | 532 |  * buckets applicable to the inode numbers in audit_names[]. | 
 | 533 |  * Regarding audit_state, same rules apply as for audit_filter_syscall(). | 
 | 534 |  */ | 
 | 535 | enum audit_state audit_filter_inodes(struct task_struct *tsk, | 
 | 536 | 				     struct audit_context *ctx) | 
 | 537 | { | 
 | 538 | 	int i; | 
 | 539 | 	struct audit_entry *e; | 
 | 540 | 	enum audit_state state; | 
 | 541 |  | 
 | 542 | 	if (audit_pid && tsk->tgid == audit_pid) | 
 | 543 | 		return AUDIT_DISABLED; | 
 | 544 |  | 
 | 545 | 	rcu_read_lock(); | 
 | 546 | 	for (i = 0; i < ctx->name_count; i++) { | 
 | 547 | 		int word = AUDIT_WORD(ctx->major); | 
 | 548 | 		int bit  = AUDIT_BIT(ctx->major); | 
 | 549 | 		struct audit_names *n = &ctx->names[i]; | 
 | 550 | 		int h = audit_hash_ino((u32)n->ino); | 
 | 551 | 		struct list_head *list = &audit_inode_hash[h]; | 
 | 552 |  | 
 | 553 | 		if (list_empty(list)) | 
 | 554 | 			continue; | 
 | 555 |  | 
 | 556 | 		list_for_each_entry_rcu(e, list, list) { | 
 | 557 | 			if ((e->rule.mask[word] & bit) == bit && | 
 | 558 | 			    audit_filter_rules(tsk, &e->rule, ctx, n, &state)) { | 
 | 559 | 				rcu_read_unlock(); | 
 | 560 | 				return state; | 
 | 561 | 			} | 
 | 562 | 		} | 
 | 563 | 	} | 
 | 564 | 	rcu_read_unlock(); | 
 | 565 | 	return AUDIT_BUILD_CONTEXT; | 
 | 566 | } | 
 | 567 |  | 
 | 568 | void audit_set_auditable(struct audit_context *ctx) | 
 | 569 | { | 
 | 570 | 	ctx->auditable = 1; | 
 | 571 | } | 
 | 572 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | static inline struct audit_context *audit_get_context(struct task_struct *tsk, | 
 | 574 | 						      int return_valid, | 
 | 575 | 						      int return_code) | 
 | 576 | { | 
 | 577 | 	struct audit_context *context = tsk->audit_context; | 
 | 578 |  | 
 | 579 | 	if (likely(!context)) | 
 | 580 | 		return NULL; | 
 | 581 | 	context->return_valid = return_valid; | 
 | 582 | 	context->return_code  = return_code; | 
 | 583 |  | 
| Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 584 | 	if (context->in_syscall && !context->dummy && !context->auditable) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | 		enum audit_state state; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 586 |  | 
| David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 587 | 		state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]); | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 588 | 		if (state == AUDIT_RECORD_CONTEXT) { | 
 | 589 | 			context->auditable = 1; | 
 | 590 | 			goto get_context; | 
 | 591 | 		} | 
 | 592 |  | 
 | 593 | 		state = audit_filter_inodes(tsk, context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | 		if (state == AUDIT_RECORD_CONTEXT) | 
 | 595 | 			context->auditable = 1; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 596 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | 	} | 
 | 598 |  | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 599 | get_context: | 
| Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 600 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | 	tsk->audit_context = NULL; | 
 | 602 | 	return context; | 
 | 603 | } | 
 | 604 |  | 
 | 605 | static inline void audit_free_names(struct audit_context *context) | 
 | 606 | { | 
 | 607 | 	int i; | 
 | 608 |  | 
 | 609 | #if AUDIT_DEBUG == 2 | 
 | 610 | 	if (context->auditable | 
 | 611 | 	    ||context->put_count + context->ino_count != context->name_count) { | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 612 | 		printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | 		       " name_count=%d put_count=%d" | 
 | 614 | 		       " ino_count=%d [NOT freeing]\n", | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 615 | 		       __FILE__, __LINE__, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | 		       context->serial, context->major, context->in_syscall, | 
 | 617 | 		       context->name_count, context->put_count, | 
 | 618 | 		       context->ino_count); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 619 | 		for (i = 0; i < context->name_count; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | 			printk(KERN_ERR "names[%d] = %p = %s\n", i, | 
 | 621 | 			       context->names[i].name, | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 622 | 			       context->names[i].name ?: "(null)"); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 623 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | 		dump_stack(); | 
 | 625 | 		return; | 
 | 626 | 	} | 
 | 627 | #endif | 
 | 628 | #if AUDIT_DEBUG | 
 | 629 | 	context->put_count  = 0; | 
 | 630 | 	context->ino_count  = 0; | 
 | 631 | #endif | 
 | 632 |  | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 633 | 	for (i = 0; i < context->name_count; i++) { | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 634 | 		if (context->names[i].name && context->names[i].name_put) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | 			__putname(context->names[i].name); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 636 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | 	context->name_count = 0; | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 638 | 	if (context->pwd) | 
 | 639 | 		dput(context->pwd); | 
 | 640 | 	if (context->pwdmnt) | 
 | 641 | 		mntput(context->pwdmnt); | 
 | 642 | 	context->pwd = NULL; | 
 | 643 | 	context->pwdmnt = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } | 
 | 645 |  | 
 | 646 | static inline void audit_free_aux(struct audit_context *context) | 
 | 647 | { | 
 | 648 | 	struct audit_aux_data *aux; | 
 | 649 |  | 
 | 650 | 	while ((aux = context->aux)) { | 
 | 651 | 		context->aux = aux->next; | 
 | 652 | 		kfree(aux); | 
 | 653 | 	} | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 654 | 	while ((aux = context->aux_pids)) { | 
 | 655 | 		context->aux_pids = aux->next; | 
 | 656 | 		kfree(aux); | 
 | 657 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | } | 
 | 659 |  | 
 | 660 | static inline void audit_zero_context(struct audit_context *context, | 
 | 661 | 				      enum audit_state state) | 
 | 662 | { | 
 | 663 | 	uid_t loginuid = context->loginuid; | 
 | 664 |  | 
 | 665 | 	memset(context, 0, sizeof(*context)); | 
 | 666 | 	context->state      = state; | 
 | 667 | 	context->loginuid   = loginuid; | 
 | 668 | } | 
 | 669 |  | 
 | 670 | static inline struct audit_context *audit_alloc_context(enum audit_state state) | 
 | 671 | { | 
 | 672 | 	struct audit_context *context; | 
 | 673 |  | 
 | 674 | 	if (!(context = kmalloc(sizeof(*context), GFP_KERNEL))) | 
 | 675 | 		return NULL; | 
 | 676 | 	audit_zero_context(context, state); | 
 | 677 | 	return context; | 
 | 678 | } | 
 | 679 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 680 | /** | 
 | 681 |  * audit_alloc - allocate an audit context block for a task | 
 | 682 |  * @tsk: task | 
 | 683 |  * | 
 | 684 |  * Filter on the task information and allocate a per-task audit context | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 |  * if necessary.  Doing so turns on system call auditing for the | 
 | 686 |  * specified task.  This is called from copy_process, so no lock is | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 687 |  * needed. | 
 | 688 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | int audit_alloc(struct task_struct *tsk) | 
 | 690 | { | 
 | 691 | 	struct audit_context *context; | 
 | 692 | 	enum audit_state     state; | 
 | 693 |  | 
 | 694 | 	if (likely(!audit_enabled)) | 
 | 695 | 		return 0; /* Return if not auditing. */ | 
 | 696 |  | 
 | 697 | 	state = audit_filter_task(tsk); | 
 | 698 | 	if (likely(state == AUDIT_DISABLED)) | 
 | 699 | 		return 0; | 
 | 700 |  | 
 | 701 | 	if (!(context = audit_alloc_context(state))) { | 
 | 702 | 		audit_log_lost("out of memory in audit_alloc"); | 
 | 703 | 		return -ENOMEM; | 
 | 704 | 	} | 
 | 705 |  | 
 | 706 | 				/* Preserve login uid */ | 
 | 707 | 	context->loginuid = -1; | 
 | 708 | 	if (current->audit_context) | 
 | 709 | 		context->loginuid = current->audit_context->loginuid; | 
 | 710 |  | 
 | 711 | 	tsk->audit_context  = context; | 
 | 712 | 	set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT); | 
 | 713 | 	return 0; | 
 | 714 | } | 
 | 715 |  | 
 | 716 | static inline void audit_free_context(struct audit_context *context) | 
 | 717 | { | 
 | 718 | 	struct audit_context *previous; | 
 | 719 | 	int		     count = 0; | 
 | 720 |  | 
 | 721 | 	do { | 
 | 722 | 		previous = context->previous; | 
 | 723 | 		if (previous || (count &&  count < 10)) { | 
 | 724 | 			++count; | 
 | 725 | 			printk(KERN_ERR "audit(:%d): major=%d name_count=%d:" | 
 | 726 | 			       " freeing multiple contexts (%d)\n", | 
 | 727 | 			       context->serial, context->major, | 
 | 728 | 			       context->name_count, count); | 
 | 729 | 		} | 
 | 730 | 		audit_free_names(context); | 
 | 731 | 		audit_free_aux(context); | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 732 | 		kfree(context->filterkey); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | 		kfree(context); | 
 | 734 | 		context  = previous; | 
 | 735 | 	} while (context); | 
 | 736 | 	if (count >= 10) | 
 | 737 | 		printk(KERN_ERR "audit: freed %d contexts\n", count); | 
 | 738 | } | 
 | 739 |  | 
| Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 740 | void audit_log_task_context(struct audit_buffer *ab) | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 741 | { | 
 | 742 | 	char *ctx = NULL; | 
| Al Viro | c4823bc | 2007-03-12 16:17:42 +0000 | [diff] [blame] | 743 | 	unsigned len; | 
 | 744 | 	int error; | 
 | 745 | 	u32 sid; | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 746 |  | 
| Al Viro | c4823bc | 2007-03-12 16:17:42 +0000 | [diff] [blame] | 747 | 	selinux_get_task_sid(current, &sid); | 
 | 748 | 	if (!sid) | 
 | 749 | 		return; | 
 | 750 |  | 
 | 751 | 	error = selinux_sid_to_string(sid, &ctx, &len); | 
 | 752 | 	if (error) { | 
 | 753 | 		if (error != -EINVAL) | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 754 | 			goto error_path; | 
 | 755 | 		return; | 
 | 756 | 	} | 
 | 757 |  | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 758 | 	audit_log_format(ab, " subj=%s", ctx); | 
| Al Viro | c4823bc | 2007-03-12 16:17:42 +0000 | [diff] [blame] | 759 | 	kfree(ctx); | 
| Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 760 | 	return; | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 761 |  | 
 | 762 | error_path: | 
| Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 763 | 	audit_panic("error in audit_log_task_context"); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 764 | 	return; | 
 | 765 | } | 
 | 766 |  | 
| Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 767 | EXPORT_SYMBOL(audit_log_task_context); | 
 | 768 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 769 | 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] | 770 | { | 
| Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 771 | 	char name[sizeof(tsk->comm)]; | 
 | 772 | 	struct mm_struct *mm = tsk->mm; | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 773 | 	struct vm_area_struct *vma; | 
 | 774 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 775 | 	/* tsk == current */ | 
 | 776 |  | 
| Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 777 | 	get_task_comm(name, tsk); | 
| David Woodhouse | 99e45eea | 2005-05-23 21:57:41 +0100 | [diff] [blame] | 778 | 	audit_log_format(ab, " comm="); | 
 | 779 | 	audit_log_untrustedstring(ab, name); | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 780 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 781 | 	if (mm) { | 
 | 782 | 		down_read(&mm->mmap_sem); | 
 | 783 | 		vma = mm->mmap; | 
 | 784 | 		while (vma) { | 
 | 785 | 			if ((vma->vm_flags & VM_EXECUTABLE) && | 
 | 786 | 			    vma->vm_file) { | 
 | 787 | 				audit_log_d_path(ab, "exe=", | 
| Josef Sipek | a7a005f | 2006-12-08 02:37:17 -0800 | [diff] [blame] | 788 | 						 vma->vm_file->f_path.dentry, | 
 | 789 | 						 vma->vm_file->f_path.mnt); | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 790 | 				break; | 
 | 791 | 			} | 
 | 792 | 			vma = vma->vm_next; | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 793 | 		} | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 794 | 		up_read(&mm->mmap_sem); | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 795 | 	} | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 796 | 	audit_log_task_context(ab); | 
| Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 797 | } | 
 | 798 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 799 | static int audit_log_pid_context(struct audit_context *context, pid_t pid, | 
 | 800 | 				 u32 sid) | 
 | 801 | { | 
 | 802 | 	struct audit_buffer *ab; | 
 | 803 | 	char *s = NULL; | 
 | 804 | 	u32 len; | 
 | 805 | 	int rc = 0; | 
 | 806 |  | 
 | 807 | 	ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID); | 
 | 808 | 	if (!ab) | 
 | 809 | 		return 1; | 
 | 810 |  | 
 | 811 | 	if (selinux_sid_to_string(sid, &s, &len)) { | 
 | 812 | 		audit_log_format(ab, "opid=%d obj=(none)", pid); | 
 | 813 | 		rc = 1; | 
 | 814 | 	} else | 
 | 815 | 		audit_log_format(ab, "opid=%d  obj=%s", pid, s); | 
 | 816 | 	audit_log_end(ab); | 
 | 817 | 	kfree(s); | 
 | 818 |  | 
 | 819 | 	return rc; | 
 | 820 | } | 
 | 821 |  | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 822 | static void audit_log_execve_info(struct audit_buffer *ab, | 
 | 823 | 		struct audit_aux_data_execve *axi) | 
 | 824 | { | 
 | 825 | 	int i; | 
 | 826 | 	long len, ret; | 
| Peter Zijlstra | 040b3a2 | 2007-07-28 00:55:18 +0200 | [diff] [blame] | 827 | 	const char __user *p; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 828 | 	char *buf; | 
 | 829 |  | 
 | 830 | 	if (axi->mm != current->mm) | 
 | 831 | 		return; /* execve failed, no additional info */ | 
 | 832 |  | 
| Peter Zijlstra | 040b3a2 | 2007-07-28 00:55:18 +0200 | [diff] [blame] | 833 | 	p = (const char __user *)axi->mm->arg_start; | 
 | 834 |  | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 835 | 	for (i = 0; i < axi->argc; i++, p += len) { | 
| Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 836 | 		len = strnlen_user(p, MAX_ARG_STRLEN); | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 837 | 		/* | 
 | 838 | 		 * We just created this mm, if we can't find the strings | 
 | 839 | 		 * we just copied into it something is _very_ wrong. Similar | 
 | 840 | 		 * for strings that are too long, we should not have created | 
 | 841 | 		 * any. | 
 | 842 | 		 */ | 
 | 843 | 		if (!len || len > MAX_ARG_STRLEN) { | 
 | 844 | 			WARN_ON(1); | 
 | 845 | 			send_sig(SIGKILL, current, 0); | 
 | 846 | 		} | 
 | 847 |  | 
 | 848 | 		buf = kmalloc(len, GFP_KERNEL); | 
 | 849 | 		if (!buf) { | 
 | 850 | 			audit_panic("out of memory for argv string\n"); | 
 | 851 | 			break; | 
 | 852 | 		} | 
 | 853 |  | 
 | 854 | 		ret = copy_from_user(buf, p, len); | 
 | 855 | 		/* | 
 | 856 | 		 * There is no reason for this copy to be short. We just | 
 | 857 | 		 * copied them here, and the mm hasn't been exposed to user- | 
 | 858 | 		 * space yet. | 
 | 859 | 		 */ | 
| Peter Zijlstra | 040b3a2 | 2007-07-28 00:55:18 +0200 | [diff] [blame] | 860 | 		if (ret) { | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 861 | 			WARN_ON(1); | 
 | 862 | 			send_sig(SIGKILL, current, 0); | 
 | 863 | 		} | 
 | 864 |  | 
 | 865 | 		audit_log_format(ab, "a%d=", i); | 
 | 866 | 		audit_log_untrustedstring(ab, buf); | 
 | 867 | 		audit_log_format(ab, "\n"); | 
 | 868 |  | 
 | 869 | 		kfree(buf); | 
 | 870 | 	} | 
 | 871 | } | 
 | 872 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 873 | 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] | 874 | { | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 875 | 	int i, call_panic = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | 	struct audit_buffer *ab; | 
| David Woodhouse | 7551ced | 2005-05-26 12:04:57 +0100 | [diff] [blame] | 877 | 	struct audit_aux_data *aux; | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 878 | 	const char *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 880 | 	/* tsk == current */ | 
| Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 881 | 	context->pid = tsk->pid; | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 882 | 	if (!context->ppid) | 
 | 883 | 		context->ppid = sys_getppid(); | 
| Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 884 | 	context->uid = tsk->uid; | 
 | 885 | 	context->gid = tsk->gid; | 
 | 886 | 	context->euid = tsk->euid; | 
 | 887 | 	context->suid = tsk->suid; | 
 | 888 | 	context->fsuid = tsk->fsuid; | 
 | 889 | 	context->egid = tsk->egid; | 
 | 890 | 	context->sgid = tsk->sgid; | 
 | 891 | 	context->fsgid = tsk->fsgid; | 
 | 892 | 	context->personality = tsk->personality; | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 893 |  | 
 | 894 | 	ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | 	if (!ab) | 
 | 896 | 		return;		/* audit_panic has been called */ | 
| David Woodhouse | bccf6ae | 2005-05-23 21:35:28 +0100 | [diff] [blame] | 897 | 	audit_log_format(ab, "arch=%x syscall=%d", | 
 | 898 | 			 context->arch, context->major); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | 	if (context->personality != PER_LINUX) | 
 | 900 | 		audit_log_format(ab, " per=%lx", context->personality); | 
 | 901 | 	if (context->return_valid) | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 902 | 		audit_log_format(ab, " success=%s exit=%ld",  | 
 | 903 | 				 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no", | 
 | 904 | 				 context->return_code); | 
| Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 905 |  | 
 | 906 | 	mutex_lock(&tty_mutex); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 907 | 	read_lock(&tasklist_lock); | 
| Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 908 | 	if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name) | 
 | 909 | 		tty = tsk->signal->tty->name; | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 910 | 	else | 
 | 911 | 		tty = "(none)"; | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 912 | 	read_unlock(&tasklist_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | 	audit_log_format(ab, | 
 | 914 | 		  " a0=%lx a1=%lx a2=%lx a3=%lx items=%d" | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 915 | 		  " ppid=%d pid=%d auid=%u uid=%u gid=%u" | 
| Steve Grubb | 326e9c8 | 2005-05-21 00:22:31 +0100 | [diff] [blame] | 916 | 		  " euid=%u suid=%u fsuid=%u" | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 917 | 		  " egid=%u sgid=%u fsgid=%u tty=%s", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | 		  context->argv[0], | 
 | 919 | 		  context->argv[1], | 
 | 920 | 		  context->argv[2], | 
 | 921 | 		  context->argv[3], | 
 | 922 | 		  context->name_count, | 
| Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 923 | 		  context->ppid, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | 		  context->pid, | 
 | 925 | 		  context->loginuid, | 
 | 926 | 		  context->uid, | 
 | 927 | 		  context->gid, | 
 | 928 | 		  context->euid, context->suid, context->fsuid, | 
| Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 929 | 		  context->egid, context->sgid, context->fsgid, tty); | 
| Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 930 |  | 
 | 931 | 	mutex_unlock(&tty_mutex); | 
 | 932 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 933 | 	audit_log_task_info(ab, tsk); | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 934 | 	if (context->filterkey) { | 
 | 935 | 		audit_log_format(ab, " key="); | 
 | 936 | 		audit_log_untrustedstring(ab, context->filterkey); | 
 | 937 | 	} else | 
 | 938 | 		audit_log_format(ab, " key=(null)"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | 	audit_log_end(ab); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 |  | 
| David Woodhouse | 7551ced | 2005-05-26 12:04:57 +0100 | [diff] [blame] | 941 | 	for (aux = context->aux; aux; aux = aux->next) { | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 942 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 943 | 		ab = audit_log_start(context, GFP_KERNEL, aux->type); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | 		if (!ab) | 
 | 945 | 			continue; /* audit_panic has been called */ | 
 | 946 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | 		switch (aux->type) { | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 948 | 		case AUDIT_MQ_OPEN: { | 
 | 949 | 			struct audit_aux_data_mq_open *axi = (void *)aux; | 
 | 950 | 			audit_log_format(ab, | 
 | 951 | 				"oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld " | 
 | 952 | 				"mq_msgsize=%ld mq_curmsgs=%ld", | 
 | 953 | 				axi->oflag, axi->mode, axi->attr.mq_flags, | 
 | 954 | 				axi->attr.mq_maxmsg, axi->attr.mq_msgsize, | 
 | 955 | 				axi->attr.mq_curmsgs); | 
 | 956 | 			break; } | 
 | 957 |  | 
 | 958 | 		case AUDIT_MQ_SENDRECV: { | 
 | 959 | 			struct audit_aux_data_mq_sendrecv *axi = (void *)aux; | 
 | 960 | 			audit_log_format(ab, | 
 | 961 | 				"mqdes=%d msg_len=%zd msg_prio=%u " | 
 | 962 | 				"abs_timeout_sec=%ld abs_timeout_nsec=%ld", | 
 | 963 | 				axi->mqdes, axi->msg_len, axi->msg_prio, | 
 | 964 | 				axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec); | 
 | 965 | 			break; } | 
 | 966 |  | 
 | 967 | 		case AUDIT_MQ_NOTIFY: { | 
 | 968 | 			struct audit_aux_data_mq_notify *axi = (void *)aux; | 
 | 969 | 			audit_log_format(ab, | 
 | 970 | 				"mqdes=%d sigev_signo=%d", | 
 | 971 | 				axi->mqdes, | 
 | 972 | 				axi->notification.sigev_signo); | 
 | 973 | 			break; } | 
 | 974 |  | 
 | 975 | 		case AUDIT_MQ_GETSETATTR: { | 
 | 976 | 			struct audit_aux_data_mq_getsetattr *axi = (void *)aux; | 
 | 977 | 			audit_log_format(ab, | 
 | 978 | 				"mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld " | 
 | 979 | 				"mq_curmsgs=%ld ", | 
 | 980 | 				axi->mqdes, | 
 | 981 | 				axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg, | 
 | 982 | 				axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs); | 
 | 983 | 			break; } | 
 | 984 |  | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 985 | 		case AUDIT_IPC: { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | 			struct audit_aux_data_ipcctl *axi = (void *)aux; | 
 | 987 | 			audit_log_format(ab,  | 
| Steve Grubb | 5b9a426 | 2007-05-29 10:38:18 -0400 | [diff] [blame] | 988 | 				 "ouid=%u ogid=%u mode=%#o", | 
| Linda Knippers | ac03221 | 2006-05-16 22:03:48 -0400 | [diff] [blame] | 989 | 				 axi->uid, axi->gid, axi->mode); | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 990 | 			if (axi->osid != 0) { | 
 | 991 | 				char *ctx = NULL; | 
 | 992 | 				u32 len; | 
| Stephen Smalley | 1a70cd4 | 2006-09-25 23:31:57 -0700 | [diff] [blame] | 993 | 				if (selinux_sid_to_string( | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 994 | 						axi->osid, &ctx, &len)) { | 
| Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 995 | 					audit_log_format(ab, " osid=%u", | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 996 | 							axi->osid); | 
 | 997 | 					call_panic = 1; | 
 | 998 | 				} else | 
 | 999 | 					audit_log_format(ab, " obj=%s", ctx); | 
 | 1000 | 				kfree(ctx); | 
 | 1001 | 			} | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1002 | 			break; } | 
 | 1003 |  | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1004 | 		case AUDIT_IPC_SET_PERM: { | 
 | 1005 | 			struct audit_aux_data_ipcctl *axi = (void *)aux; | 
 | 1006 | 			audit_log_format(ab, | 
| Steve Grubb | 5b9a426 | 2007-05-29 10:38:18 -0400 | [diff] [blame] | 1007 | 				"qbytes=%lx ouid=%u ogid=%u mode=%#o", | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1008 | 				axi->qbytes, axi->uid, axi->gid, axi->mode); | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1009 | 			break; } | 
| Linda Knippers | ac03221 | 2006-05-16 22:03:48 -0400 | [diff] [blame] | 1010 |  | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1011 | 		case AUDIT_EXECVE: { | 
 | 1012 | 			struct audit_aux_data_execve *axi = (void *)aux; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1013 | 			audit_log_execve_info(ab, axi); | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1014 | 			break; } | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1015 |  | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1016 | 		case AUDIT_SOCKETCALL: { | 
 | 1017 | 			int i; | 
 | 1018 | 			struct audit_aux_data_socketcall *axs = (void *)aux; | 
 | 1019 | 			audit_log_format(ab, "nargs=%d", axs->nargs); | 
 | 1020 | 			for (i=0; i<axs->nargs; i++) | 
 | 1021 | 				audit_log_format(ab, " a%d=%lx", i, axs->args[i]); | 
 | 1022 | 			break; } | 
 | 1023 |  | 
 | 1024 | 		case AUDIT_SOCKADDR: { | 
 | 1025 | 			struct audit_aux_data_sockaddr *axs = (void *)aux; | 
 | 1026 |  | 
 | 1027 | 			audit_log_format(ab, "saddr="); | 
 | 1028 | 			audit_log_hex(ab, axs->a, axs->len); | 
 | 1029 | 			break; } | 
| Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 1030 |  | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 1031 | 		case AUDIT_FD_PAIR: { | 
 | 1032 | 			struct audit_aux_data_fd_pair *axs = (void *)aux; | 
 | 1033 | 			audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]); | 
 | 1034 | 			break; } | 
 | 1035 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | 		} | 
 | 1037 | 		audit_log_end(ab); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | 	} | 
 | 1039 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1040 | 	for (aux = context->aux_pids; aux; aux = aux->next) { | 
 | 1041 | 		struct audit_aux_data_pids *axs = (void *)aux; | 
 | 1042 | 		int i; | 
 | 1043 |  | 
 | 1044 | 		for (i = 0; i < axs->pid_count; i++) | 
 | 1045 | 			if (audit_log_pid_context(context, axs->target_pid[i], | 
 | 1046 | 						  axs->target_sid[i])) | 
 | 1047 | 				call_panic = 1; | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 1048 | 	} | 
 | 1049 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1050 | 	if (context->target_pid && | 
 | 1051 | 	    audit_log_pid_context(context, context->target_pid, | 
 | 1052 | 				  context->target_sid)) | 
 | 1053 | 			call_panic = 1; | 
 | 1054 |  | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1055 | 	if (context->pwd && context->pwdmnt) { | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1056 | 		ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD); | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1057 | 		if (ab) { | 
 | 1058 | 			audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt); | 
 | 1059 | 			audit_log_end(ab); | 
 | 1060 | 		} | 
 | 1061 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | 	for (i = 0; i < context->name_count; i++) { | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1063 | 		struct audit_names *n = &context->names[i]; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1064 |  | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1065 | 		ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | 		if (!ab) | 
 | 1067 | 			continue; /* audit_panic has been called */ | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1068 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | 		audit_log_format(ab, "item=%d", i); | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1070 |  | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1071 | 		if (n->name) { | 
 | 1072 | 			switch(n->name_len) { | 
 | 1073 | 			case AUDIT_NAME_FULL: | 
 | 1074 | 				/* log the full path */ | 
 | 1075 | 				audit_log_format(ab, " name="); | 
 | 1076 | 				audit_log_untrustedstring(ab, n->name); | 
 | 1077 | 				break; | 
 | 1078 | 			case 0: | 
 | 1079 | 				/* name was specified as a relative path and the | 
 | 1080 | 				 * directory component is the cwd */ | 
 | 1081 | 				audit_log_d_path(ab, " name=", context->pwd, | 
 | 1082 | 						 context->pwdmnt); | 
 | 1083 | 				break; | 
 | 1084 | 			default: | 
 | 1085 | 				/* log the name's directory component */ | 
 | 1086 | 				audit_log_format(ab, " name="); | 
 | 1087 | 				audit_log_n_untrustedstring(ab, n->name_len, | 
 | 1088 | 							    n->name); | 
 | 1089 | 			} | 
 | 1090 | 		} else | 
 | 1091 | 			audit_log_format(ab, " name=(null)"); | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1092 |  | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1093 | 		if (n->ino != (unsigned long)-1) { | 
 | 1094 | 			audit_log_format(ab, " inode=%lu" | 
 | 1095 | 					 " dev=%02x:%02x mode=%#o" | 
 | 1096 | 					 " ouid=%u ogid=%u rdev=%02x:%02x", | 
 | 1097 | 					 n->ino, | 
 | 1098 | 					 MAJOR(n->dev), | 
 | 1099 | 					 MINOR(n->dev), | 
 | 1100 | 					 n->mode, | 
 | 1101 | 					 n->uid, | 
 | 1102 | 					 n->gid, | 
 | 1103 | 					 MAJOR(n->rdev), | 
 | 1104 | 					 MINOR(n->rdev)); | 
 | 1105 | 		} | 
 | 1106 | 		if (n->osid != 0) { | 
| Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 1107 | 			char *ctx = NULL; | 
 | 1108 | 			u32 len; | 
| Stephen Smalley | 1a70cd4 | 2006-09-25 23:31:57 -0700 | [diff] [blame] | 1109 | 			if (selinux_sid_to_string( | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1110 | 				n->osid, &ctx, &len)) { | 
 | 1111 | 				audit_log_format(ab, " osid=%u", n->osid); | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1112 | 				call_panic = 2; | 
| Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 1113 | 			} else | 
 | 1114 | 				audit_log_format(ab, " obj=%s", ctx); | 
 | 1115 | 			kfree(ctx); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1116 | 		} | 
 | 1117 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | 		audit_log_end(ab); | 
 | 1119 | 	} | 
| Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1120 | 	if (call_panic) | 
 | 1121 | 		audit_panic("error converting sid to string"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | } | 
 | 1123 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1124 | /** | 
 | 1125 |  * audit_free - free a per-task audit context | 
 | 1126 |  * @tsk: task whose audit context block to free | 
 | 1127 |  * | 
| Al Viro | fa84cb9 | 2006-03-29 20:30:19 -0500 | [diff] [blame] | 1128 |  * Called from copy_process and do_exit | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1129 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | void audit_free(struct task_struct *tsk) | 
 | 1131 | { | 
 | 1132 | 	struct audit_context *context; | 
 | 1133 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | 	context = audit_get_context(tsk, 0, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | 	if (likely(!context)) | 
 | 1136 | 		return; | 
 | 1137 |  | 
 | 1138 | 	/* Check for system calls that do not go through the exit | 
| David Woodhouse | f556196 | 2005-07-13 22:47:07 +0100 | [diff] [blame] | 1139 | 	 * function (e.g., exit_group), then free context block.  | 
 | 1140 | 	 * We use GFP_ATOMIC here because we might be doing this  | 
 | 1141 | 	 * in the context of the idle thread */ | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1142 | 	/* that can happen only if we are called from do_exit() */ | 
| David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 1143 | 	if (context->in_syscall && context->auditable) | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1144 | 		audit_log_exit(context, tsk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 |  | 
 | 1146 | 	audit_free_context(context); | 
 | 1147 | } | 
 | 1148 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1149 | /** | 
 | 1150 |  * audit_syscall_entry - fill in an audit record at syscall entry | 
 | 1151 |  * @tsk: task being audited | 
 | 1152 |  * @arch: architecture type | 
 | 1153 |  * @major: major syscall type (function) | 
 | 1154 |  * @a1: additional syscall register 1 | 
 | 1155 |  * @a2: additional syscall register 2 | 
 | 1156 |  * @a3: additional syscall register 3 | 
 | 1157 |  * @a4: additional syscall register 4 | 
 | 1158 |  * | 
 | 1159 |  * Fill in audit context at syscall entry.  This only happens if the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 |  * audit context was created when the task was created and the state or | 
 | 1161 |  * filters demand the audit context be built.  If the state from the | 
 | 1162 |  * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT, | 
 | 1163 |  * then the record will be written at syscall exit time (otherwise, it | 
 | 1164 |  * 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] | 1165 |  * be written). | 
 | 1166 |  */ | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1167 | void audit_syscall_entry(int arch, int major, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | 			 unsigned long a1, unsigned long a2, | 
 | 1169 | 			 unsigned long a3, unsigned long a4) | 
 | 1170 | { | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1171 | 	struct task_struct *tsk = current; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | 	struct audit_context *context = tsk->audit_context; | 
 | 1173 | 	enum audit_state     state; | 
 | 1174 |  | 
 | 1175 | 	BUG_ON(!context); | 
 | 1176 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1177 | 	/* | 
 | 1178 | 	 * This happens only on certain architectures that make system | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | 	 * calls in kernel_thread via the entry.S interface, instead of | 
 | 1180 | 	 * with direct calls.  (If you are porting to a new | 
 | 1181 | 	 * architecture, hitting this condition can indicate that you | 
 | 1182 | 	 * got the _exit/_leave calls backward in entry.S.) | 
 | 1183 | 	 * | 
 | 1184 | 	 * i386     no | 
 | 1185 | 	 * x86_64   no | 
| Jon Mason | 2ef9481 | 2006-01-23 10:58:20 -0600 | [diff] [blame] | 1186 | 	 * ppc64    yes (see arch/powerpc/platforms/iseries/misc.S) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | 	 * | 
 | 1188 | 	 * This also happens with vm86 emulation in a non-nested manner | 
 | 1189 | 	 * (entries without exits), so this case must be caught. | 
 | 1190 | 	 */ | 
 | 1191 | 	if (context->in_syscall) { | 
 | 1192 | 		struct audit_context *newctx; | 
 | 1193 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | #if AUDIT_DEBUG | 
 | 1195 | 		printk(KERN_ERR | 
 | 1196 | 		       "audit(:%d) pid=%d in syscall=%d;" | 
 | 1197 | 		       " entering syscall=%d\n", | 
 | 1198 | 		       context->serial, tsk->pid, context->major, major); | 
 | 1199 | #endif | 
 | 1200 | 		newctx = audit_alloc_context(context->state); | 
 | 1201 | 		if (newctx) { | 
 | 1202 | 			newctx->previous   = context; | 
 | 1203 | 			context		   = newctx; | 
 | 1204 | 			tsk->audit_context = newctx; | 
 | 1205 | 		} else	{ | 
 | 1206 | 			/* If we can't alloc a new context, the best we | 
 | 1207 | 			 * can do is to leak memory (any pending putname | 
 | 1208 | 			 * will be lost).  The only other alternative is | 
 | 1209 | 			 * to abandon auditing. */ | 
 | 1210 | 			audit_zero_context(context, context->state); | 
 | 1211 | 		} | 
 | 1212 | 	} | 
 | 1213 | 	BUG_ON(context->in_syscall || context->name_count); | 
 | 1214 |  | 
 | 1215 | 	if (!audit_enabled) | 
 | 1216 | 		return; | 
 | 1217 |  | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1218 | 	context->arch	    = arch; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | 	context->major      = major; | 
 | 1220 | 	context->argv[0]    = a1; | 
 | 1221 | 	context->argv[1]    = a2; | 
 | 1222 | 	context->argv[2]    = a3; | 
 | 1223 | 	context->argv[3]    = a4; | 
 | 1224 |  | 
 | 1225 | 	state = context->state; | 
| Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 1226 | 	context->dummy = !audit_n_rules; | 
 | 1227 | 	if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT)) | 
| David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 1228 | 		state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | 	if (likely(state == AUDIT_DISABLED)) | 
 | 1230 | 		return; | 
 | 1231 |  | 
| David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 1232 | 	context->serial     = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | 	context->ctime      = CURRENT_TIME; | 
 | 1234 | 	context->in_syscall = 1; | 
 | 1235 | 	context->auditable  = !!(state == AUDIT_RECORD_CONTEXT); | 
| Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 1236 | 	context->ppid       = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | } | 
 | 1238 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1239 | /** | 
 | 1240 |  * audit_syscall_exit - deallocate audit context after a system call | 
 | 1241 |  * @tsk: task being audited | 
 | 1242 |  * @valid: success/failure flag | 
 | 1243 |  * @return_code: syscall return value | 
 | 1244 |  * | 
 | 1245 |  * 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] | 1246 |  * auditable (either because of the AUDIT_RECORD_CONTEXT state from | 
 | 1247 |  * filtering, or because some other part of the kernel write an audit | 
 | 1248 |  * message), then write out the syscall information.  In call cases, | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1249 |  * free the names stored from getname(). | 
 | 1250 |  */ | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1251 | void audit_syscall_exit(int valid, long return_code) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | { | 
| Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1253 | 	struct task_struct *tsk = current; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | 	struct audit_context *context; | 
 | 1255 |  | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1256 | 	context = audit_get_context(tsk, valid, return_code); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | 	if (likely(!context)) | 
| Al Viro | 97e94c4 | 2006-03-29 20:26:24 -0500 | [diff] [blame] | 1259 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 |  | 
| David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 1261 | 	if (context->in_syscall && context->auditable) | 
| Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1262 | 		audit_log_exit(context, tsk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 |  | 
 | 1264 | 	context->in_syscall = 0; | 
 | 1265 | 	context->auditable  = 0; | 
 | 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1266 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | 	if (context->previous) { | 
 | 1268 | 		struct audit_context *new_context = context->previous; | 
 | 1269 | 		context->previous  = NULL; | 
 | 1270 | 		audit_free_context(context); | 
 | 1271 | 		tsk->audit_context = new_context; | 
 | 1272 | 	} else { | 
 | 1273 | 		audit_free_names(context); | 
 | 1274 | 		audit_free_aux(context); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1275 | 		context->aux = NULL; | 
 | 1276 | 		context->aux_pids = NULL; | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 1277 | 		context->target_pid = 0; | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1278 | 		context->target_sid = 0; | 
| Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 1279 | 		kfree(context->filterkey); | 
 | 1280 | 		context->filterkey = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | 		tsk->audit_context = context; | 
 | 1282 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | } | 
 | 1284 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1285 | /** | 
 | 1286 |  * audit_getname - add a name to the list | 
 | 1287 |  * @name: name to add | 
 | 1288 |  * | 
 | 1289 |  * Add a name to the list of audit names for this context. | 
 | 1290 |  * Called from fs/namei.c:getname(). | 
 | 1291 |  */ | 
| Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1292 | void __audit_getname(const char *name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | { | 
 | 1294 | 	struct audit_context *context = current->audit_context; | 
 | 1295 |  | 
| Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1296 | 	if (IS_ERR(name) || !name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | 		return; | 
 | 1298 |  | 
 | 1299 | 	if (!context->in_syscall) { | 
 | 1300 | #if AUDIT_DEBUG == 2 | 
 | 1301 | 		printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n", | 
 | 1302 | 		       __FILE__, __LINE__, context->serial, name); | 
 | 1303 | 		dump_stack(); | 
 | 1304 | #endif | 
 | 1305 | 		return; | 
 | 1306 | 	} | 
 | 1307 | 	BUG_ON(context->name_count >= AUDIT_NAMES); | 
 | 1308 | 	context->names[context->name_count].name = name; | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1309 | 	context->names[context->name_count].name_len = AUDIT_NAME_FULL; | 
 | 1310 | 	context->names[context->name_count].name_put = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | 	context->names[context->name_count].ino  = (unsigned long)-1; | 
| Amy Griffis | e41e8bd | 2007-02-13 14:14:09 -0500 | [diff] [blame] | 1312 | 	context->names[context->name_count].osid = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | 	++context->name_count; | 
| David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1314 | 	if (!context->pwd) { | 
 | 1315 | 		read_lock(¤t->fs->lock); | 
 | 1316 | 		context->pwd = dget(current->fs->pwd); | 
 | 1317 | 		context->pwdmnt = mntget(current->fs->pwdmnt); | 
 | 1318 | 		read_unlock(¤t->fs->lock); | 
 | 1319 | 	} | 
 | 1320 | 		 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | } | 
 | 1322 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1323 | /* audit_putname - intercept a putname request | 
 | 1324 |  * @name: name to intercept and delay for putname | 
 | 1325 |  * | 
 | 1326 |  * If we have stored the name from getname in the audit context, | 
 | 1327 |  * then we delay the putname until syscall exit. | 
 | 1328 |  * Called from include/linux/fs.h:putname(). | 
 | 1329 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | void audit_putname(const char *name) | 
 | 1331 | { | 
 | 1332 | 	struct audit_context *context = current->audit_context; | 
 | 1333 |  | 
 | 1334 | 	BUG_ON(!context); | 
 | 1335 | 	if (!context->in_syscall) { | 
 | 1336 | #if AUDIT_DEBUG == 2 | 
 | 1337 | 		printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n", | 
 | 1338 | 		       __FILE__, __LINE__, context->serial, name); | 
 | 1339 | 		if (context->name_count) { | 
 | 1340 | 			int i; | 
 | 1341 | 			for (i = 0; i < context->name_count; i++) | 
 | 1342 | 				printk(KERN_ERR "name[%d] = %p = %s\n", i, | 
 | 1343 | 				       context->names[i].name, | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1344 | 				       context->names[i].name ?: "(null)"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | 		} | 
 | 1346 | #endif | 
 | 1347 | 		__putname(name); | 
 | 1348 | 	} | 
 | 1349 | #if AUDIT_DEBUG | 
 | 1350 | 	else { | 
 | 1351 | 		++context->put_count; | 
 | 1352 | 		if (context->put_count > context->name_count) { | 
 | 1353 | 			printk(KERN_ERR "%s:%d(:%d): major=%d" | 
 | 1354 | 			       " in_syscall=%d putname(%p) name_count=%d" | 
 | 1355 | 			       " put_count=%d\n", | 
 | 1356 | 			       __FILE__, __LINE__, | 
 | 1357 | 			       context->serial, context->major, | 
 | 1358 | 			       context->in_syscall, name, context->name_count, | 
 | 1359 | 			       context->put_count); | 
 | 1360 | 			dump_stack(); | 
 | 1361 | 		} | 
 | 1362 | 	} | 
 | 1363 | #endif | 
 | 1364 | } | 
 | 1365 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1366 | static int audit_inc_name_count(struct audit_context *context, | 
 | 1367 | 				const struct inode *inode) | 
 | 1368 | { | 
 | 1369 | 	if (context->name_count >= AUDIT_NAMES) { | 
 | 1370 | 		if (inode) | 
 | 1371 | 			printk(KERN_DEBUG "name_count maxed, losing inode data: " | 
 | 1372 | 			       "dev=%02x:%02x, inode=%lu", | 
 | 1373 | 			       MAJOR(inode->i_sb->s_dev), | 
 | 1374 | 			       MINOR(inode->i_sb->s_dev), | 
 | 1375 | 			       inode->i_ino); | 
 | 1376 |  | 
 | 1377 | 		else | 
 | 1378 | 			printk(KERN_DEBUG "name_count maxed, losing inode data"); | 
 | 1379 | 		return 1; | 
 | 1380 | 	} | 
 | 1381 | 	context->name_count++; | 
 | 1382 | #if AUDIT_DEBUG | 
 | 1383 | 	context->ino_count++; | 
 | 1384 | #endif | 
 | 1385 | 	return 0; | 
 | 1386 | } | 
 | 1387 |  | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1388 | /* Copy inode data into an audit_names. */ | 
 | 1389 | static void audit_copy_inode(struct audit_names *name, const struct inode *inode) | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1390 | { | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1391 | 	name->ino   = inode->i_ino; | 
 | 1392 | 	name->dev   = inode->i_sb->s_dev; | 
 | 1393 | 	name->mode  = inode->i_mode; | 
 | 1394 | 	name->uid   = inode->i_uid; | 
 | 1395 | 	name->gid   = inode->i_gid; | 
 | 1396 | 	name->rdev  = inode->i_rdev; | 
 | 1397 | 	selinux_get_inode_sid(inode, &name->osid); | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1398 | } | 
 | 1399 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1400 | /** | 
 | 1401 |  * audit_inode - store the inode and device from a lookup | 
 | 1402 |  * @name: name being audited | 
 | 1403 |  * @inode: inode being audited | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1404 |  * | 
 | 1405 |  * Called from fs/namei.c:path_lookup(). | 
 | 1406 |  */ | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1407 | void __audit_inode(const char *name, const struct inode *inode) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | { | 
 | 1409 | 	int idx; | 
 | 1410 | 	struct audit_context *context = current->audit_context; | 
 | 1411 |  | 
 | 1412 | 	if (!context->in_syscall) | 
 | 1413 | 		return; | 
 | 1414 | 	if (context->name_count | 
 | 1415 | 	    && context->names[context->name_count-1].name | 
 | 1416 | 	    && context->names[context->name_count-1].name == name) | 
 | 1417 | 		idx = context->name_count - 1; | 
 | 1418 | 	else if (context->name_count > 1 | 
 | 1419 | 		 && context->names[context->name_count-2].name | 
 | 1420 | 		 && context->names[context->name_count-2].name == name) | 
 | 1421 | 		idx = context->name_count - 2; | 
 | 1422 | 	else { | 
 | 1423 | 		/* FIXME: how much do we care about inodes that have no | 
 | 1424 | 		 * associated name? */ | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1425 | 		if (audit_inc_name_count(context, inode)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | 			return; | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1427 | 		idx = context->name_count - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | 		context->names[idx].name = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | 	} | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1430 | 	audit_copy_inode(&context->names[idx], inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | } | 
 | 1432 |  | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1433 | /** | 
 | 1434 |  * audit_inode_child - collect inode info for created/removed objects | 
 | 1435 |  * @dname: inode's dentry name | 
 | 1436 |  * @inode: inode being audited | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1437 |  * @parent: inode of dentry parent | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1438 |  * | 
 | 1439 |  * For syscalls that create or remove filesystem objects, audit_inode | 
 | 1440 |  * can only collect information for the filesystem object's parent. | 
 | 1441 |  * This call updates the audit context with the child's information. | 
 | 1442 |  * Syscalls that create a new filesystem object must be hooked after | 
 | 1443 |  * the object is created.  Syscalls that remove a filesystem object | 
 | 1444 |  * must be hooked prior, in order to capture the target inode during | 
 | 1445 |  * unsuccessful attempts. | 
 | 1446 |  */ | 
 | 1447 | void __audit_inode_child(const char *dname, const struct inode *inode, | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1448 | 			 const struct inode *parent) | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1449 | { | 
 | 1450 | 	int idx; | 
 | 1451 | 	struct audit_context *context = current->audit_context; | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1452 | 	const char *found_parent = NULL, *found_child = NULL; | 
| Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1453 | 	int dirlen = 0; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1454 |  | 
 | 1455 | 	if (!context->in_syscall) | 
 | 1456 | 		return; | 
 | 1457 |  | 
 | 1458 | 	/* determine matching parent */ | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1459 | 	if (!dname) | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1460 | 		goto add_names; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1461 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1462 | 	/* parent is more likely, look for it first */ | 
 | 1463 | 	for (idx = 0; idx < context->name_count; idx++) { | 
 | 1464 | 		struct audit_names *n = &context->names[idx]; | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1465 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1466 | 		if (!n->name) | 
 | 1467 | 			continue; | 
 | 1468 |  | 
 | 1469 | 		if (n->ino == parent->i_ino && | 
 | 1470 | 		    !audit_compare_dname_path(dname, n->name, &dirlen)) { | 
 | 1471 | 			n->name_len = dirlen; /* update parent data in place */ | 
 | 1472 | 			found_parent = n->name; | 
 | 1473 | 			goto add_names; | 
| Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1474 | 		} | 
| Steve Grubb | ac9910c | 2006-09-28 14:31:32 -0400 | [diff] [blame] | 1475 | 	} | 
| Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1476 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1477 | 	/* no matching parent, look for matching child */ | 
 | 1478 | 	for (idx = 0; idx < context->name_count; idx++) { | 
 | 1479 | 		struct audit_names *n = &context->names[idx]; | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1480 |  | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1481 | 		if (!n->name) | 
 | 1482 | 			continue; | 
 | 1483 |  | 
 | 1484 | 		/* strcmp() is the more likely scenario */ | 
 | 1485 | 		if (!strcmp(dname, n->name) || | 
 | 1486 | 		     !audit_compare_dname_path(dname, n->name, &dirlen)) { | 
 | 1487 | 			if (inode) | 
 | 1488 | 				audit_copy_inode(n, inode); | 
 | 1489 | 			else | 
 | 1490 | 				n->ino = (unsigned long)-1; | 
 | 1491 | 			found_child = n->name; | 
 | 1492 | 			goto add_names; | 
| Steve Grubb | ac9910c | 2006-09-28 14:31:32 -0400 | [diff] [blame] | 1493 | 		} | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1494 | 	} | 
 | 1495 |  | 
 | 1496 | add_names: | 
 | 1497 | 	if (!found_parent) { | 
 | 1498 | 		if (audit_inc_name_count(context, parent)) | 
 | 1499 | 			return; | 
 | 1500 | 		idx = context->name_count - 1; | 
 | 1501 | 		context->names[idx].name = NULL; | 
| Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1502 | 		audit_copy_inode(&context->names[idx], parent); | 
 | 1503 | 	} | 
| Amy Griffis | 5712e88 | 2007-02-13 14:15:22 -0500 | [diff] [blame] | 1504 |  | 
 | 1505 | 	if (!found_child) { | 
 | 1506 | 		if (audit_inc_name_count(context, inode)) | 
 | 1507 | 			return; | 
 | 1508 | 		idx = context->name_count - 1; | 
 | 1509 |  | 
 | 1510 | 		/* Re-use the name belonging to the slot for a matching parent | 
 | 1511 | 		 * directory. All names for this context are relinquished in | 
 | 1512 | 		 * audit_free_names() */ | 
 | 1513 | 		if (found_parent) { | 
 | 1514 | 			context->names[idx].name = found_parent; | 
 | 1515 | 			context->names[idx].name_len = AUDIT_NAME_FULL; | 
 | 1516 | 			/* don't call __putname() */ | 
 | 1517 | 			context->names[idx].name_put = 0; | 
 | 1518 | 		} else { | 
 | 1519 | 			context->names[idx].name = NULL; | 
 | 1520 | 		} | 
 | 1521 |  | 
 | 1522 | 		if (inode) | 
 | 1523 | 			audit_copy_inode(&context->names[idx], inode); | 
 | 1524 | 		else | 
 | 1525 | 			context->names[idx].ino = (unsigned long)-1; | 
 | 1526 | 	} | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1527 | } | 
| Trond Myklebust | 50e437d | 2007-06-07 22:44:34 -0400 | [diff] [blame] | 1528 | EXPORT_SYMBOL_GPL(__audit_inode_child); | 
| Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1529 |  | 
 | 1530 | /** | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1531 |  * auditsc_get_stamp - get local copies of audit_context values | 
 | 1532 |  * @ctx: audit_context for the task | 
 | 1533 |  * @t: timespec to store time recorded in the audit_context | 
 | 1534 |  * @serial: serial value that is recorded in the audit_context | 
 | 1535 |  * | 
 | 1536 |  * Also sets the context as auditable. | 
 | 1537 |  */ | 
| David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1538 | void auditsc_get_stamp(struct audit_context *ctx, | 
 | 1539 | 		       struct timespec *t, unsigned int *serial) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | { | 
| David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 1541 | 	if (!ctx->serial) | 
 | 1542 | 		ctx->serial = audit_serial(); | 
| David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1543 | 	t->tv_sec  = ctx->ctime.tv_sec; | 
 | 1544 | 	t->tv_nsec = ctx->ctime.tv_nsec; | 
 | 1545 | 	*serial    = ctx->serial; | 
 | 1546 | 	ctx->auditable = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | } | 
 | 1548 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1549 | /** | 
 | 1550 |  * audit_set_loginuid - set a task's audit_context loginuid | 
 | 1551 |  * @task: task whose audit context is being modified | 
 | 1552 |  * @loginuid: loginuid value | 
 | 1553 |  * | 
 | 1554 |  * Returns 0. | 
 | 1555 |  * | 
 | 1556 |  * Called (set) from fs/proc/base.c::proc_loginuid_write(). | 
 | 1557 |  */ | 
| Steve Grubb | 456be6c | 2005-04-29 17:30:07 +0100 | [diff] [blame] | 1558 | int audit_set_loginuid(struct task_struct *task, uid_t loginuid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | { | 
| Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 1560 | 	struct audit_context *context = task->audit_context; | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 1561 |  | 
| Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 1562 | 	if (context) { | 
 | 1563 | 		/* Only log if audit is enabled */ | 
 | 1564 | 		if (context->in_syscall) { | 
 | 1565 | 			struct audit_buffer *ab; | 
 | 1566 |  | 
 | 1567 | 			ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN); | 
 | 1568 | 			if (ab) { | 
 | 1569 | 				audit_log_format(ab, "login pid=%d uid=%u " | 
 | 1570 | 					"old auid=%u new auid=%u", | 
 | 1571 | 					task->pid, task->uid, | 
 | 1572 | 					context->loginuid, loginuid); | 
 | 1573 | 				audit_log_end(ab); | 
 | 1574 | 			} | 
| Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 1575 | 		} | 
| Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 1576 | 		context->loginuid = loginuid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | 	} | 
 | 1578 | 	return 0; | 
 | 1579 | } | 
 | 1580 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1581 | /** | 
 | 1582 |  * audit_get_loginuid - get the loginuid for an audit_context | 
 | 1583 |  * @ctx: the audit_context | 
 | 1584 |  * | 
 | 1585 |  * Returns the context's loginuid or -1 if @ctx is NULL. | 
 | 1586 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | uid_t audit_get_loginuid(struct audit_context *ctx) | 
 | 1588 | { | 
 | 1589 | 	return ctx ? ctx->loginuid : -1; | 
 | 1590 | } | 
 | 1591 |  | 
| Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 1592 | EXPORT_SYMBOL(audit_get_loginuid); | 
 | 1593 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1594 | /** | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1595 |  * __audit_mq_open - record audit data for a POSIX MQ open | 
 | 1596 |  * @oflag: open flag | 
 | 1597 |  * @mode: mode bits | 
 | 1598 |  * @u_attr: queue attributes | 
 | 1599 |  * | 
 | 1600 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1601 |  */ | 
 | 1602 | int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr) | 
 | 1603 | { | 
 | 1604 | 	struct audit_aux_data_mq_open *ax; | 
 | 1605 | 	struct audit_context *context = current->audit_context; | 
 | 1606 |  | 
 | 1607 | 	if (!audit_enabled) | 
 | 1608 | 		return 0; | 
 | 1609 |  | 
 | 1610 | 	if (likely(!context)) | 
 | 1611 | 		return 0; | 
 | 1612 |  | 
 | 1613 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
 | 1614 | 	if (!ax) | 
 | 1615 | 		return -ENOMEM; | 
 | 1616 |  | 
 | 1617 | 	if (u_attr != NULL) { | 
 | 1618 | 		if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) { | 
 | 1619 | 			kfree(ax); | 
 | 1620 | 			return -EFAULT; | 
 | 1621 | 		} | 
 | 1622 | 	} else | 
 | 1623 | 		memset(&ax->attr, 0, sizeof(ax->attr)); | 
 | 1624 |  | 
 | 1625 | 	ax->oflag = oflag; | 
 | 1626 | 	ax->mode = mode; | 
 | 1627 |  | 
 | 1628 | 	ax->d.type = AUDIT_MQ_OPEN; | 
 | 1629 | 	ax->d.next = context->aux; | 
 | 1630 | 	context->aux = (void *)ax; | 
 | 1631 | 	return 0; | 
 | 1632 | } | 
 | 1633 |  | 
 | 1634 | /** | 
 | 1635 |  * __audit_mq_timedsend - record audit data for a POSIX MQ timed send | 
 | 1636 |  * @mqdes: MQ descriptor | 
 | 1637 |  * @msg_len: Message length | 
 | 1638 |  * @msg_prio: Message priority | 
| Randy Dunlap | 1dbe83c | 2006-06-27 02:54:01 -0700 | [diff] [blame] | 1639 |  * @u_abs_timeout: Message timeout in absolute time | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1640 |  * | 
 | 1641 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1642 |  */ | 
 | 1643 | int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, | 
 | 1644 | 			const struct timespec __user *u_abs_timeout) | 
 | 1645 | { | 
 | 1646 | 	struct audit_aux_data_mq_sendrecv *ax; | 
 | 1647 | 	struct audit_context *context = current->audit_context; | 
 | 1648 |  | 
 | 1649 | 	if (!audit_enabled) | 
 | 1650 | 		return 0; | 
 | 1651 |  | 
 | 1652 | 	if (likely(!context)) | 
 | 1653 | 		return 0; | 
 | 1654 |  | 
 | 1655 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
 | 1656 | 	if (!ax) | 
 | 1657 | 		return -ENOMEM; | 
 | 1658 |  | 
 | 1659 | 	if (u_abs_timeout != NULL) { | 
 | 1660 | 		if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) { | 
 | 1661 | 			kfree(ax); | 
 | 1662 | 			return -EFAULT; | 
 | 1663 | 		} | 
 | 1664 | 	} else | 
 | 1665 | 		memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout)); | 
 | 1666 |  | 
 | 1667 | 	ax->mqdes = mqdes; | 
 | 1668 | 	ax->msg_len = msg_len; | 
 | 1669 | 	ax->msg_prio = msg_prio; | 
 | 1670 |  | 
 | 1671 | 	ax->d.type = AUDIT_MQ_SENDRECV; | 
 | 1672 | 	ax->d.next = context->aux; | 
 | 1673 | 	context->aux = (void *)ax; | 
 | 1674 | 	return 0; | 
 | 1675 | } | 
 | 1676 |  | 
 | 1677 | /** | 
 | 1678 |  * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive | 
 | 1679 |  * @mqdes: MQ descriptor | 
 | 1680 |  * @msg_len: Message length | 
| Randy Dunlap | 1dbe83c | 2006-06-27 02:54:01 -0700 | [diff] [blame] | 1681 |  * @u_msg_prio: Message priority | 
 | 1682 |  * @u_abs_timeout: Message timeout in absolute time | 
| George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1683 |  * | 
 | 1684 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1685 |  */ | 
 | 1686 | int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len, | 
 | 1687 | 				unsigned int __user *u_msg_prio, | 
 | 1688 | 				const struct timespec __user *u_abs_timeout) | 
 | 1689 | { | 
 | 1690 | 	struct audit_aux_data_mq_sendrecv *ax; | 
 | 1691 | 	struct audit_context *context = current->audit_context; | 
 | 1692 |  | 
 | 1693 | 	if (!audit_enabled) | 
 | 1694 | 		return 0; | 
 | 1695 |  | 
 | 1696 | 	if (likely(!context)) | 
 | 1697 | 		return 0; | 
 | 1698 |  | 
 | 1699 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
 | 1700 | 	if (!ax) | 
 | 1701 | 		return -ENOMEM; | 
 | 1702 |  | 
 | 1703 | 	if (u_msg_prio != NULL) { | 
 | 1704 | 		if (get_user(ax->msg_prio, u_msg_prio)) { | 
 | 1705 | 			kfree(ax); | 
 | 1706 | 			return -EFAULT; | 
 | 1707 | 		} | 
 | 1708 | 	} else | 
 | 1709 | 		ax->msg_prio = 0; | 
 | 1710 |  | 
 | 1711 | 	if (u_abs_timeout != NULL) { | 
 | 1712 | 		if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) { | 
 | 1713 | 			kfree(ax); | 
 | 1714 | 			return -EFAULT; | 
 | 1715 | 		} | 
 | 1716 | 	} else | 
 | 1717 | 		memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout)); | 
 | 1718 |  | 
 | 1719 | 	ax->mqdes = mqdes; | 
 | 1720 | 	ax->msg_len = msg_len; | 
 | 1721 |  | 
 | 1722 | 	ax->d.type = AUDIT_MQ_SENDRECV; | 
 | 1723 | 	ax->d.next = context->aux; | 
 | 1724 | 	context->aux = (void *)ax; | 
 | 1725 | 	return 0; | 
 | 1726 | } | 
 | 1727 |  | 
 | 1728 | /** | 
 | 1729 |  * __audit_mq_notify - record audit data for a POSIX MQ notify | 
 | 1730 |  * @mqdes: MQ descriptor | 
 | 1731 |  * @u_notification: Notification event | 
 | 1732 |  * | 
 | 1733 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1734 |  */ | 
 | 1735 |  | 
 | 1736 | int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification) | 
 | 1737 | { | 
 | 1738 | 	struct audit_aux_data_mq_notify *ax; | 
 | 1739 | 	struct audit_context *context = current->audit_context; | 
 | 1740 |  | 
 | 1741 | 	if (!audit_enabled) | 
 | 1742 | 		return 0; | 
 | 1743 |  | 
 | 1744 | 	if (likely(!context)) | 
 | 1745 | 		return 0; | 
 | 1746 |  | 
 | 1747 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
 | 1748 | 	if (!ax) | 
 | 1749 | 		return -ENOMEM; | 
 | 1750 |  | 
 | 1751 | 	if (u_notification != NULL) { | 
 | 1752 | 		if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) { | 
 | 1753 | 			kfree(ax); | 
 | 1754 | 			return -EFAULT; | 
 | 1755 | 		} | 
 | 1756 | 	} else | 
 | 1757 | 		memset(&ax->notification, 0, sizeof(ax->notification)); | 
 | 1758 |  | 
 | 1759 | 	ax->mqdes = mqdes; | 
 | 1760 |  | 
 | 1761 | 	ax->d.type = AUDIT_MQ_NOTIFY; | 
 | 1762 | 	ax->d.next = context->aux; | 
 | 1763 | 	context->aux = (void *)ax; | 
 | 1764 | 	return 0; | 
 | 1765 | } | 
 | 1766 |  | 
 | 1767 | /** | 
 | 1768 |  * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute | 
 | 1769 |  * @mqdes: MQ descriptor | 
 | 1770 |  * @mqstat: MQ flags | 
 | 1771 |  * | 
 | 1772 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1773 |  */ | 
 | 1774 | int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat) | 
 | 1775 | { | 
 | 1776 | 	struct audit_aux_data_mq_getsetattr *ax; | 
 | 1777 | 	struct audit_context *context = current->audit_context; | 
 | 1778 |  | 
 | 1779 | 	if (!audit_enabled) | 
 | 1780 | 		return 0; | 
 | 1781 |  | 
 | 1782 | 	if (likely(!context)) | 
 | 1783 | 		return 0; | 
 | 1784 |  | 
 | 1785 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
 | 1786 | 	if (!ax) | 
 | 1787 | 		return -ENOMEM; | 
 | 1788 |  | 
 | 1789 | 	ax->mqdes = mqdes; | 
 | 1790 | 	ax->mqstat = *mqstat; | 
 | 1791 |  | 
 | 1792 | 	ax->d.type = AUDIT_MQ_GETSETATTR; | 
 | 1793 | 	ax->d.next = context->aux; | 
 | 1794 | 	context->aux = (void *)ax; | 
 | 1795 | 	return 0; | 
 | 1796 | } | 
 | 1797 |  | 
 | 1798 | /** | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1799 |  * audit_ipc_obj - record audit data for ipc object | 
 | 1800 |  * @ipcp: ipc permissions | 
 | 1801 |  * | 
 | 1802 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1803 |  */ | 
| Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1804 | int __audit_ipc_obj(struct kern_ipc_perm *ipcp) | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1805 | { | 
 | 1806 | 	struct audit_aux_data_ipcctl *ax; | 
 | 1807 | 	struct audit_context *context = current->audit_context; | 
 | 1808 |  | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1809 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
 | 1810 | 	if (!ax) | 
 | 1811 | 		return -ENOMEM; | 
 | 1812 |  | 
 | 1813 | 	ax->uid = ipcp->uid; | 
 | 1814 | 	ax->gid = ipcp->gid; | 
 | 1815 | 	ax->mode = ipcp->mode; | 
 | 1816 | 	selinux_get_ipc_sid(ipcp, &ax->osid); | 
 | 1817 |  | 
 | 1818 | 	ax->d.type = AUDIT_IPC; | 
 | 1819 | 	ax->d.next = context->aux; | 
 | 1820 | 	context->aux = (void *)ax; | 
 | 1821 | 	return 0; | 
 | 1822 | } | 
 | 1823 |  | 
 | 1824 | /** | 
 | 1825 |  * audit_ipc_set_perm - record audit data for new ipc permissions | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1826 |  * @qbytes: msgq bytes | 
 | 1827 |  * @uid: msgq user id | 
 | 1828 |  * @gid: msgq group id | 
 | 1829 |  * @mode: msgq mode (permissions) | 
 | 1830 |  * | 
 | 1831 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1832 |  */ | 
| Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1833 | int __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] | 1834 | { | 
 | 1835 | 	struct audit_aux_data_ipcctl *ax; | 
 | 1836 | 	struct audit_context *context = current->audit_context; | 
 | 1837 |  | 
| Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1838 | 	ax = kmalloc(sizeof(*ax), GFP_ATOMIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | 	if (!ax) | 
 | 1840 | 		return -ENOMEM; | 
 | 1841 |  | 
 | 1842 | 	ax->qbytes = qbytes; | 
 | 1843 | 	ax->uid = uid; | 
 | 1844 | 	ax->gid = gid; | 
 | 1845 | 	ax->mode = mode; | 
 | 1846 |  | 
| Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1847 | 	ax->d.type = AUDIT_IPC_SET_PERM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | 	ax->d.next = context->aux; | 
 | 1849 | 	context->aux = (void *)ax; | 
 | 1850 | 	return 0; | 
 | 1851 | } | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1852 |  | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1853 | int audit_argv_kb = 32; | 
 | 1854 |  | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1855 | int audit_bprm(struct linux_binprm *bprm) | 
 | 1856 | { | 
 | 1857 | 	struct audit_aux_data_execve *ax; | 
 | 1858 | 	struct audit_context *context = current->audit_context; | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1859 |  | 
| Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 1860 | 	if (likely(!audit_enabled || !context || context->dummy)) | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1861 | 		return 0; | 
 | 1862 |  | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1863 | 	/* | 
 | 1864 | 	 * Even though the stack code doesn't limit the arg+env size any more, | 
 | 1865 | 	 * the audit code requires that _all_ arguments be logged in a single | 
 | 1866 | 	 * netlink skb. Hence cap it :-( | 
 | 1867 | 	 */ | 
 | 1868 | 	if (bprm->argv_len > (audit_argv_kb << 10)) | 
 | 1869 | 		return -E2BIG; | 
 | 1870 |  | 
 | 1871 | 	ax = kmalloc(sizeof(*ax), GFP_KERNEL); | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1872 | 	if (!ax) | 
 | 1873 | 		return -ENOMEM; | 
 | 1874 |  | 
 | 1875 | 	ax->argc = bprm->argc; | 
 | 1876 | 	ax->envc = bprm->envc; | 
| Peter Zijlstra | bdf4c48 | 2007-07-19 01:48:15 -0700 | [diff] [blame] | 1877 | 	ax->mm = bprm->mm; | 
| Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1878 | 	ax->d.type = AUDIT_EXECVE; | 
 | 1879 | 	ax->d.next = context->aux; | 
 | 1880 | 	context->aux = (void *)ax; | 
 | 1881 | 	return 0; | 
 | 1882 | } | 
 | 1883 |  | 
 | 1884 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1885 | /** | 
 | 1886 |  * audit_socketcall - record audit data for sys_socketcall | 
 | 1887 |  * @nargs: number of args | 
 | 1888 |  * @args: args array | 
 | 1889 |  * | 
 | 1890 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1891 |  */ | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1892 | int audit_socketcall(int nargs, unsigned long *args) | 
 | 1893 | { | 
 | 1894 | 	struct audit_aux_data_socketcall *ax; | 
 | 1895 | 	struct audit_context *context = current->audit_context; | 
 | 1896 |  | 
| Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 1897 | 	if (likely(!context || context->dummy)) | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1898 | 		return 0; | 
 | 1899 |  | 
 | 1900 | 	ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL); | 
 | 1901 | 	if (!ax) | 
 | 1902 | 		return -ENOMEM; | 
 | 1903 |  | 
 | 1904 | 	ax->nargs = nargs; | 
 | 1905 | 	memcpy(ax->args, args, nargs * sizeof(unsigned long)); | 
 | 1906 |  | 
 | 1907 | 	ax->d.type = AUDIT_SOCKETCALL; | 
 | 1908 | 	ax->d.next = context->aux; | 
 | 1909 | 	context->aux = (void *)ax; | 
 | 1910 | 	return 0; | 
 | 1911 | } | 
 | 1912 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1913 | /** | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 1914 |  * __audit_fd_pair - record audit data for pipe and socketpair | 
 | 1915 |  * @fd1: the first file descriptor | 
 | 1916 |  * @fd2: the second file descriptor | 
 | 1917 |  * | 
 | 1918 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1919 |  */ | 
 | 1920 | int __audit_fd_pair(int fd1, int fd2) | 
 | 1921 | { | 
 | 1922 | 	struct audit_context *context = current->audit_context; | 
 | 1923 | 	struct audit_aux_data_fd_pair *ax; | 
 | 1924 |  | 
 | 1925 | 	if (likely(!context)) { | 
 | 1926 | 		return 0; | 
 | 1927 | 	} | 
 | 1928 |  | 
 | 1929 | 	ax = kmalloc(sizeof(*ax), GFP_KERNEL); | 
 | 1930 | 	if (!ax) { | 
 | 1931 | 		return -ENOMEM; | 
 | 1932 | 	} | 
 | 1933 |  | 
 | 1934 | 	ax->fd[0] = fd1; | 
 | 1935 | 	ax->fd[1] = fd2; | 
 | 1936 |  | 
 | 1937 | 	ax->d.type = AUDIT_FD_PAIR; | 
 | 1938 | 	ax->d.next = context->aux; | 
 | 1939 | 	context->aux = (void *)ax; | 
 | 1940 | 	return 0; | 
 | 1941 | } | 
 | 1942 |  | 
 | 1943 | /** | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1944 |  * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto | 
 | 1945 |  * @len: data length in user space | 
 | 1946 |  * @a: data address in kernel space | 
 | 1947 |  * | 
 | 1948 |  * Returns 0 for success or NULL context or < 0 on error. | 
 | 1949 |  */ | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1950 | int audit_sockaddr(int len, void *a) | 
 | 1951 | { | 
 | 1952 | 	struct audit_aux_data_sockaddr *ax; | 
 | 1953 | 	struct audit_context *context = current->audit_context; | 
 | 1954 |  | 
| Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 1955 | 	if (likely(!context || context->dummy)) | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1956 | 		return 0; | 
 | 1957 |  | 
 | 1958 | 	ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL); | 
 | 1959 | 	if (!ax) | 
 | 1960 | 		return -ENOMEM; | 
 | 1961 |  | 
 | 1962 | 	ax->len = len; | 
 | 1963 | 	memcpy(ax->a, a, len); | 
 | 1964 |  | 
 | 1965 | 	ax->d.type = AUDIT_SOCKADDR; | 
 | 1966 | 	ax->d.next = context->aux; | 
 | 1967 | 	context->aux = (void *)ax; | 
 | 1968 | 	return 0; | 
 | 1969 | } | 
 | 1970 |  | 
| Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 1971 | void __audit_ptrace(struct task_struct *t) | 
 | 1972 | { | 
 | 1973 | 	struct audit_context *context = current->audit_context; | 
 | 1974 |  | 
 | 1975 | 	context->target_pid = t->pid; | 
 | 1976 | 	selinux_get_task_sid(t, &context->target_sid); | 
 | 1977 | } | 
 | 1978 |  | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1979 | /** | 
| Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1980 |  * audit_signal_info - record signal info for shutting down audit subsystem | 
 | 1981 |  * @sig: signal value | 
 | 1982 |  * @t: task being signaled | 
 | 1983 |  * | 
 | 1984 |  * If the audit subsystem is being terminated, record the task (pid) | 
 | 1985 |  * and uid that is doing that. | 
 | 1986 |  */ | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1987 | int __audit_signal_info(int sig, struct task_struct *t) | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1988 | { | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 1989 | 	struct audit_aux_data_pids *axp; | 
 | 1990 | 	struct task_struct *tsk = current; | 
 | 1991 | 	struct audit_context *ctx = tsk->audit_context; | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1992 | 	extern pid_t audit_sig_pid; | 
 | 1993 | 	extern uid_t audit_sig_uid; | 
| Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 1994 | 	extern u32 audit_sig_sid; | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1995 |  | 
| Al Viro | 175fc48 | 2007-08-08 00:01:46 +0100 | [diff] [blame] | 1996 | 	if (audit_pid && t->tgid == audit_pid) { | 
 | 1997 | 		if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) { | 
 | 1998 | 			audit_sig_pid = tsk->pid; | 
 | 1999 | 			if (ctx) | 
 | 2000 | 				audit_sig_uid = ctx->loginuid; | 
 | 2001 | 			else | 
 | 2002 | 				audit_sig_uid = tsk->uid; | 
 | 2003 | 			selinux_get_task_sid(tsk, &audit_sig_sid); | 
 | 2004 | 		} | 
 | 2005 | 		if (!audit_signals || audit_dummy_context()) | 
 | 2006 | 			return 0; | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2007 | 	} | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2008 |  | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2009 | 	/* optimize the common case by putting first signal recipient directly | 
 | 2010 | 	 * in audit_context */ | 
 | 2011 | 	if (!ctx->target_pid) { | 
 | 2012 | 		ctx->target_pid = t->tgid; | 
 | 2013 | 		selinux_get_task_sid(t, &ctx->target_sid); | 
 | 2014 | 		return 0; | 
 | 2015 | 	} | 
 | 2016 |  | 
 | 2017 | 	axp = (void *)ctx->aux_pids; | 
 | 2018 | 	if (!axp || axp->pid_count == AUDIT_AUX_PIDS) { | 
 | 2019 | 		axp = kzalloc(sizeof(*axp), GFP_ATOMIC); | 
 | 2020 | 		if (!axp) | 
 | 2021 | 			return -ENOMEM; | 
 | 2022 |  | 
 | 2023 | 		axp->d.type = AUDIT_OBJ_PID; | 
 | 2024 | 		axp->d.next = ctx->aux_pids; | 
 | 2025 | 		ctx->aux_pids = (void *)axp; | 
 | 2026 | 	} | 
| Adrian Bunk | 88ae704 | 2007-08-22 14:01:05 -0700 | [diff] [blame] | 2027 | 	BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS); | 
| Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 2028 |  | 
 | 2029 | 	axp->target_pid[axp->pid_count] = t->tgid; | 
 | 2030 | 	selinux_get_task_sid(t, &axp->target_sid[axp->pid_count]); | 
 | 2031 | 	axp->pid_count++; | 
 | 2032 |  | 
 | 2033 | 	return 0; | 
| Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 2034 | } | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2035 |  | 
 | 2036 | /** | 
 | 2037 |  * audit_core_dumps - record information about processes that end abnormally | 
| Henrik Kretzschmar | 6d9525b | 2007-07-15 23:41:10 -0700 | [diff] [blame] | 2038 |  * @signr: signal value | 
| Steve Grubb | 0a4ff8c | 2007-04-19 10:28:21 -0400 | [diff] [blame] | 2039 |  * | 
 | 2040 |  * If a process ends with a core dump, something fishy is going on and we | 
 | 2041 |  * should record the event for investigation. | 
 | 2042 |  */ | 
 | 2043 | void audit_core_dumps(long signr) | 
 | 2044 | { | 
 | 2045 | 	struct audit_buffer *ab; | 
 | 2046 | 	u32 sid; | 
 | 2047 |  | 
 | 2048 | 	if (!audit_enabled) | 
 | 2049 | 		return; | 
 | 2050 |  | 
 | 2051 | 	if (signr == SIGQUIT)	/* don't care for those */ | 
 | 2052 | 		return; | 
 | 2053 |  | 
 | 2054 | 	ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND); | 
 | 2055 | 	audit_log_format(ab, "auid=%u uid=%u gid=%u", | 
 | 2056 | 			audit_get_loginuid(current->audit_context), | 
 | 2057 | 			current->uid, current->gid); | 
 | 2058 | 	selinux_get_task_sid(current, &sid); | 
 | 2059 | 	if (sid) { | 
 | 2060 | 		char *ctx = NULL; | 
 | 2061 | 		u32 len; | 
 | 2062 |  | 
 | 2063 | 		if (selinux_sid_to_string(sid, &ctx, &len)) | 
 | 2064 | 			audit_log_format(ab, " ssid=%u", sid); | 
 | 2065 | 		else | 
 | 2066 | 			audit_log_format(ab, " subj=%s", ctx); | 
 | 2067 | 		kfree(ctx); | 
 | 2068 | 	} | 
 | 2069 | 	audit_log_format(ab, " pid=%d comm=", current->pid); | 
 | 2070 | 	audit_log_untrustedstring(ab, current->comm); | 
 | 2071 | 	audit_log_format(ab, " sig=%ld", signr); | 
 | 2072 | 	audit_log_end(ab); | 
 | 2073 | } |