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