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