blob: c8ca7fafbcc9ddb2637793946e4dcdb748659c4f [file] [log] [blame]
85c87212005-04-29 16:23:29 +01001/* auditsc.c -- System-call auditing support
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Handles all system-call specific auditing features.
3 *
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
Amy Griffis73241cc2005-11-03 16:00:25 +00005 * Copyright 2005 Hewlett-Packard Development Company, L.P.
George C. Wilson20ca73b2006-05-24 16:09:55 -05006 * Copyright (C) 2005, 2006 IBM Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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. Wilson20ca73b2006-05-24 16:09:55 -050032 * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>,
33 * 2006.
34 *
Dustin Kirklandb63862f2005-11-03 15:41:46 +000035 * The support of additional filter rules compares (>, <, >=, <=) was
36 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
37 *
Amy Griffis73241cc2005-11-03 16:00:25 +000038 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
39 * filesystem information.
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000040 *
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 Torvalds1da177e2005-04-16 15:20:36 -070043 */
44
45#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/types.h>
Arun Sharma600634972011-07-26 16:09:06 -070047#include <linux/atomic.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000048#include <linux/fs.h>
49#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mm.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040051#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Stephen Smalley01116102005-05-21 00:15:52 +010053#include <linux/mount.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010054#include <linux/socket.h>
George C. Wilson20ca73b2006-05-24 16:09:55 -050055#include <linux/mqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/audit.h>
57#include <linux/personality.h>
58#include <linux/time.h>
David Woodhouse5bb289b2005-06-24 14:14:05 +010059#include <linux/netlink.h>
David Woodhousef5561962005-07-13 22:47:07 +010060#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/unistd.h>
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000062#include <linux/security.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000063#include <linux/list.h>
Steve Grubba6c043a2006-01-01 14:07:00 -050064#include <linux/tty.h>
Al Viro473ae302006-04-26 14:04:08 -040065#include <linux/binfmts.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040066#include <linux/highmem.h>
Al Virof46038f2006-05-06 08:22:52 -040067#include <linux/syscalls.h>
Eric Paris851f7ff2008-11-11 21:48:14 +110068#include <linux/capability.h>
Al Viro5ad4e532009-03-29 19:50:06 -040069#include <linux/fs_struct.h>
Kees Cook3dc1c1b2012-04-12 16:47:58 -050070#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
David Woodhousefe7752b2005-12-15 18:33:52 +000072#include "audit.h"
73
Eric Parisd7e75282012-01-03 14:23:06 -050074/* flags stating the success for a syscall */
75#define AUDITSC_INVALID 0
76#define AUDITSC_SUCCESS 1
77#define AUDITSC_FAILURE 2
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* AUDIT_NAMES is the number of slots we reserve in the audit_context
Eric Paris5195d8e2012-01-03 14:23:05 -050080 * for saving names from getname(). If we get more names we will allocate
81 * a name dynamically and also add those to the list anchored by names_list. */
82#define AUDIT_NAMES 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Eric Parisde6bbd12008-01-07 14:31:58 -050084/* no execve audit message should be longer than this (userspace limits) */
85#define MAX_EXECVE_AUDIT_LEN 7500
86
Al Viro471a5c72006-07-10 08:29:24 -040087/* number of audit rules */
88int audit_n_rules;
89
Amy Griffise54dc242007-03-29 18:01:04 -040090/* determines whether we collect data for signals sent */
91int audit_signals;
92
Eric Paris851f7ff2008-11-11 21:48:14 +110093struct audit_cap_data {
94 kernel_cap_t permitted;
95 kernel_cap_t inheritable;
96 union {
97 unsigned int fE; /* effective bit of a file capability */
98 kernel_cap_t effective; /* effective set of a process */
99 };
100};
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/* When fs/namei.c:getname() is called, we store the pointer in name and
103 * we don't let putname() free it (instead we free all of the saved
104 * pointers at syscall exit time).
105 *
Jeff Layton91a27b22012-10-10 15:25:28 -0400106 * Further, in fs/namei.c:path_lookup() we store the inode and device.
107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108struct audit_names {
Jeff Layton91a27b22012-10-10 15:25:28 -0400109 struct list_head list; /* audit_context->names_list */
110 struct filename *name;
111 unsigned long ino;
112 dev_t dev;
113 umode_t mode;
114 kuid_t uid;
115 kgid_t gid;
116 dev_t rdev;
117 u32 osid;
118 struct audit_cap_data fcap;
119 unsigned int fcap_ver;
120 int name_len; /* number of name's characters to log */
121 unsigned char type; /* record type */
122 bool name_put; /* call __putname() for this name */
Eric Paris5195d8e2012-01-03 14:23:05 -0500123 /*
124 * This was an allocated audit_names and not from the array of
125 * names allocated in the task audit context. Thus this name
126 * should be freed on syscall exit
127 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400128 bool should_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
131struct audit_aux_data {
132 struct audit_aux_data *next;
133 int type;
134};
135
136#define AUDIT_AUX_IPCPERM 0
137
Amy Griffise54dc242007-03-29 18:01:04 -0400138/* Number of target pids per aux struct. */
139#define AUDIT_AUX_PIDS 16
140
Al Viro473ae302006-04-26 14:04:08 -0400141struct audit_aux_data_execve {
142 struct audit_aux_data d;
143 int argc;
144 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700145 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400146};
147
Amy Griffise54dc242007-03-29 18:01:04 -0400148struct audit_aux_data_pids {
149 struct audit_aux_data d;
150 pid_t target_pid[AUDIT_AUX_PIDS];
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700151 kuid_t target_auid[AUDIT_AUX_PIDS];
Eric W. Biedermancca080d2012-02-07 16:53:48 -0800152 kuid_t target_uid[AUDIT_AUX_PIDS];
Eric Paris4746ec52008-01-08 10:06:53 -0500153 unsigned int target_sessionid[AUDIT_AUX_PIDS];
Amy Griffise54dc242007-03-29 18:01:04 -0400154 u32 target_sid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500155 char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
Amy Griffise54dc242007-03-29 18:01:04 -0400156 int pid_count;
157};
158
Eric Paris3fc689e2008-11-11 21:48:18 +1100159struct audit_aux_data_bprm_fcaps {
160 struct audit_aux_data d;
161 struct audit_cap_data fcap;
162 unsigned int fcap_ver;
163 struct audit_cap_data old_pcap;
164 struct audit_cap_data new_pcap;
165};
166
Eric Parise68b75a02008-11-11 21:48:22 +1100167struct audit_aux_data_capset {
168 struct audit_aux_data d;
169 pid_t pid;
170 struct audit_cap_data cap;
171};
172
Al Viro74c3cbe2007-07-22 08:04:18 -0400173struct audit_tree_refs {
174 struct audit_tree_refs *next;
175 struct audit_chunk *c[31];
176};
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/* The per-task audit context. */
179struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400180 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int in_syscall; /* 1 if task is in a syscall */
Al Viro0590b932008-12-14 23:45:27 -0500182 enum audit_state state, current_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 unsigned int serial; /* serial number for record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 int major; /* syscall number */
Eric Paris44e51a12009-08-07 16:54:29 -0400185 struct timespec ctime; /* time of syscall entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 unsigned long argv[4]; /* syscall arguments */
2fd6f582005-04-29 16:08:28 +0100187 long return_code;/* syscall return code */
Al Viro0590b932008-12-14 23:45:27 -0500188 u64 prio;
Eric Paris44e51a12009-08-07 16:54:29 -0400189 int return_valid; /* return code is valid */
Eric Paris5195d8e2012-01-03 14:23:05 -0500190 /*
191 * The names_list is the list of all audit_names collected during this
192 * syscall. The first AUDIT_NAMES entries in the names_list will
193 * actually be from the preallocated_names array for performance
194 * reasons. Except during allocation they should never be referenced
195 * through the preallocated_names array and should only be found/used
196 * by running the names_list.
197 */
198 struct audit_names preallocated_names[AUDIT_NAMES];
199 int name_count; /* total records in names_list */
200 struct list_head names_list; /* anchor for struct audit_names->list */
Amy Griffis5adc8a62006-06-14 18:45:21 -0400201 char * filterkey; /* key for rule that triggered record */
Jan Blunck44707fd2008-02-14 19:38:33 -0800202 struct path pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400204 struct audit_aux_data *aux_pids;
Al Viro4f6b4342008-12-09 19:50:34 -0500205 struct sockaddr_storage *sockaddr;
206 size_t sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400208 pid_t pid, ppid;
Eric W. Biedermancca080d2012-02-07 16:53:48 -0800209 kuid_t uid, euid, suid, fsuid;
210 kgid_t gid, egid, sgid, fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100212 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Al Viroa5cb0132007-03-20 13:58:35 -0400214 pid_t target_pid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700215 kuid_t target_auid;
Eric W. Biedermancca080d2012-02-07 16:53:48 -0800216 kuid_t target_uid;
Eric Paris4746ec52008-01-08 10:06:53 -0500217 unsigned int target_sessionid;
Al Viroa5cb0132007-03-20 13:58:35 -0400218 u32 target_sid;
Eric Parisc2a77802008-01-07 13:40:17 -0500219 char target_comm[TASK_COMM_LEN];
Al Viroa5cb0132007-03-20 13:58:35 -0400220
Al Viro74c3cbe2007-07-22 08:04:18 -0400221 struct audit_tree_refs *trees, *first_trees;
Al Viro916d7572009-06-24 00:02:38 -0400222 struct list_head killed_trees;
Eric Paris44e51a12009-08-07 16:54:29 -0400223 int tree_count;
Al Viro74c3cbe2007-07-22 08:04:18 -0400224
Al Virof3298dc2008-12-10 03:16:51 -0500225 int type;
226 union {
227 struct {
228 int nargs;
229 long args[6];
230 } socketcall;
Al Viroa33e6752008-12-10 03:40:06 -0500231 struct {
Eric W. Biedermancca080d2012-02-07 16:53:48 -0800232 kuid_t uid;
233 kgid_t gid;
Al Viro2570ebb2011-07-27 14:03:22 -0400234 umode_t mode;
Al Viroa33e6752008-12-10 03:40:06 -0500235 u32 osid;
Al Viroe816f372008-12-10 03:47:15 -0500236 int has_perm;
237 uid_t perm_uid;
238 gid_t perm_gid;
Al Viro2570ebb2011-07-27 14:03:22 -0400239 umode_t perm_mode;
Al Viroe816f372008-12-10 03:47:15 -0500240 unsigned long qbytes;
Al Viroa33e6752008-12-10 03:40:06 -0500241 } ipc;
Al Viro73929062008-12-10 06:58:59 -0500242 struct {
243 mqd_t mqdes;
244 struct mq_attr mqstat;
245 } mq_getsetattr;
Al Viro20114f72008-12-10 07:16:12 -0500246 struct {
247 mqd_t mqdes;
248 int sigev_signo;
249 } mq_notify;
Al Viroc32c8af2008-12-14 03:46:48 -0500250 struct {
251 mqd_t mqdes;
252 size_t msg_len;
253 unsigned int msg_prio;
254 struct timespec abs_timeout;
255 } mq_sendrecv;
Al Viro564f6992008-12-14 04:02:26 -0500256 struct {
257 int oflag;
Al Virodf0a4282011-07-26 05:26:10 -0400258 umode_t mode;
Al Viro564f6992008-12-14 04:02:26 -0500259 struct mq_attr attr;
260 } mq_open;
Al Viro57f71a02009-01-04 14:52:57 -0500261 struct {
262 pid_t pid;
263 struct audit_cap_data cap;
264 } capset;
Al Viro120a7952010-10-30 02:54:44 -0400265 struct {
266 int fd;
267 int flags;
268 } mmap;
Al Virof3298dc2008-12-10 03:16:51 -0500269 };
Al Viro157cf642008-12-14 04:57:47 -0500270 int fds[2];
Al Virof3298dc2008-12-10 03:16:51 -0500271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272#if AUDIT_DEBUG
273 int put_count;
274 int ino_count;
275#endif
276};
277
Al Viro55669bf2006-08-31 19:26:40 -0400278static inline int open_arg(int flags, int mask)
279{
280 int n = ACC_MODE(flags);
281 if (flags & (O_TRUNC | O_CREAT))
282 n |= AUDIT_PERM_WRITE;
283 return n & mask;
284}
285
286static int audit_match_perm(struct audit_context *ctx, int mask)
287{
Cordeliac4bacef2008-08-18 09:45:51 -0700288 unsigned n;
zhangxiliang1a61c882008-08-02 10:56:37 +0800289 if (unlikely(!ctx))
290 return 0;
Cordeliac4bacef2008-08-18 09:45:51 -0700291 n = ctx->major;
Alan Coxdbda4c02008-10-13 10:40:53 +0100292
Al Viro55669bf2006-08-31 19:26:40 -0400293 switch (audit_classify_syscall(ctx->arch, n)) {
294 case 0: /* native */
295 if ((mask & AUDIT_PERM_WRITE) &&
296 audit_match_class(AUDIT_CLASS_WRITE, n))
297 return 1;
298 if ((mask & AUDIT_PERM_READ) &&
299 audit_match_class(AUDIT_CLASS_READ, n))
300 return 1;
301 if ((mask & AUDIT_PERM_ATTR) &&
302 audit_match_class(AUDIT_CLASS_CHATTR, n))
303 return 1;
304 return 0;
305 case 1: /* 32bit on biarch */
306 if ((mask & AUDIT_PERM_WRITE) &&
307 audit_match_class(AUDIT_CLASS_WRITE_32, n))
308 return 1;
309 if ((mask & AUDIT_PERM_READ) &&
310 audit_match_class(AUDIT_CLASS_READ_32, n))
311 return 1;
312 if ((mask & AUDIT_PERM_ATTR) &&
313 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
314 return 1;
315 return 0;
316 case 2: /* open */
317 return mask & ACC_MODE(ctx->argv[1]);
318 case 3: /* openat */
319 return mask & ACC_MODE(ctx->argv[2]);
320 case 4: /* socketcall */
321 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
322 case 5: /* execve */
323 return mask & AUDIT_PERM_EXEC;
324 default:
325 return 0;
326 }
327}
328
Eric Paris5ef30ee2012-01-03 14:23:05 -0500329static int audit_match_filetype(struct audit_context *ctx, int val)
Al Viro8b67dca2008-04-28 04:15:49 -0400330{
Eric Paris5195d8e2012-01-03 14:23:05 -0500331 struct audit_names *n;
Eric Paris5ef30ee2012-01-03 14:23:05 -0500332 umode_t mode = (umode_t)val;
zhangxiliang1a61c882008-08-02 10:56:37 +0800333
334 if (unlikely(!ctx))
335 return 0;
336
Eric Paris5195d8e2012-01-03 14:23:05 -0500337 list_for_each_entry(n, &ctx->names_list, list) {
338 if ((n->ino != -1) &&
339 ((n->mode & S_IFMT) == mode))
Eric Paris5ef30ee2012-01-03 14:23:05 -0500340 return 1;
341 }
Eric Paris5195d8e2012-01-03 14:23:05 -0500342
Eric Paris5ef30ee2012-01-03 14:23:05 -0500343 return 0;
Al Viro8b67dca2008-04-28 04:15:49 -0400344}
345
Al Viro74c3cbe2007-07-22 08:04:18 -0400346/*
347 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
348 * ->first_trees points to its beginning, ->trees - to the current end of data.
349 * ->tree_count is the number of free entries in array pointed to by ->trees.
350 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
351 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
352 * it's going to remain 1-element for almost any setup) until we free context itself.
353 * References in it _are_ dropped - at the same time we free/drop aux stuff.
354 */
355
356#ifdef CONFIG_AUDIT_TREE
Eric Paris679173b2009-01-26 18:09:45 -0500357static void audit_set_auditable(struct audit_context *ctx)
358{
359 if (!ctx->prio) {
360 ctx->prio = 1;
361 ctx->current_state = AUDIT_RECORD_CONTEXT;
362 }
363}
364
Al Viro74c3cbe2007-07-22 08:04:18 -0400365static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
366{
367 struct audit_tree_refs *p = ctx->trees;
368 int left = ctx->tree_count;
369 if (likely(left)) {
370 p->c[--left] = chunk;
371 ctx->tree_count = left;
372 return 1;
373 }
374 if (!p)
375 return 0;
376 p = p->next;
377 if (p) {
378 p->c[30] = chunk;
379 ctx->trees = p;
380 ctx->tree_count = 30;
381 return 1;
382 }
383 return 0;
384}
385
386static int grow_tree_refs(struct audit_context *ctx)
387{
388 struct audit_tree_refs *p = ctx->trees;
389 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
390 if (!ctx->trees) {
391 ctx->trees = p;
392 return 0;
393 }
394 if (p)
395 p->next = ctx->trees;
396 else
397 ctx->first_trees = ctx->trees;
398 ctx->tree_count = 31;
399 return 1;
400}
401#endif
402
403static void unroll_tree_refs(struct audit_context *ctx,
404 struct audit_tree_refs *p, int count)
405{
406#ifdef CONFIG_AUDIT_TREE
407 struct audit_tree_refs *q;
408 int n;
409 if (!p) {
410 /* we started with empty chain */
411 p = ctx->first_trees;
412 count = 31;
413 /* if the very first allocation has failed, nothing to do */
414 if (!p)
415 return;
416 }
417 n = count;
418 for (q = p; q != ctx->trees; q = q->next, n = 31) {
419 while (n--) {
420 audit_put_chunk(q->c[n]);
421 q->c[n] = NULL;
422 }
423 }
424 while (n-- > ctx->tree_count) {
425 audit_put_chunk(q->c[n]);
426 q->c[n] = NULL;
427 }
428 ctx->trees = p;
429 ctx->tree_count = count;
430#endif
431}
432
433static void free_tree_refs(struct audit_context *ctx)
434{
435 struct audit_tree_refs *p, *q;
436 for (p = ctx->first_trees; p; p = q) {
437 q = p->next;
438 kfree(p);
439 }
440}
441
442static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
443{
444#ifdef CONFIG_AUDIT_TREE
445 struct audit_tree_refs *p;
446 int n;
447 if (!tree)
448 return 0;
449 /* full ones */
450 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
451 for (n = 0; n < 31; n++)
452 if (audit_tree_match(p->c[n], tree))
453 return 1;
454 }
455 /* partial */
456 if (p) {
457 for (n = ctx->tree_count; n < 31; n++)
458 if (audit_tree_match(p->c[n], tree))
459 return 1;
460 }
461#endif
462 return 0;
463}
464
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700465static int audit_compare_uid(kuid_t uid,
466 struct audit_names *name,
467 struct audit_field *f,
468 struct audit_context *ctx)
Eric Parisb34b0392012-01-03 14:23:08 -0500469{
470 struct audit_names *n;
Eric Parisb34b0392012-01-03 14:23:08 -0500471 int rc;
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700472
Eric Parisb34b0392012-01-03 14:23:08 -0500473 if (name) {
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700474 rc = audit_uid_comparator(uid, f->op, name->uid);
Eric Parisb34b0392012-01-03 14:23:08 -0500475 if (rc)
476 return rc;
477 }
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700478
Eric Parisb34b0392012-01-03 14:23:08 -0500479 if (ctx) {
480 list_for_each_entry(n, &ctx->names_list, list) {
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700481 rc = audit_uid_comparator(uid, f->op, n->uid);
482 if (rc)
483 return rc;
484 }
485 }
486 return 0;
487}
Eric Parisb34b0392012-01-03 14:23:08 -0500488
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700489static int audit_compare_gid(kgid_t gid,
490 struct audit_names *name,
491 struct audit_field *f,
492 struct audit_context *ctx)
493{
494 struct audit_names *n;
495 int rc;
496
497 if (name) {
498 rc = audit_gid_comparator(gid, f->op, name->gid);
499 if (rc)
500 return rc;
501 }
502
503 if (ctx) {
504 list_for_each_entry(n, &ctx->names_list, list) {
505 rc = audit_gid_comparator(gid, f->op, n->gid);
Eric Parisb34b0392012-01-03 14:23:08 -0500506 if (rc)
507 return rc;
508 }
509 }
510 return 0;
511}
512
Eric Paris02d86a52012-01-03 14:23:08 -0500513static int audit_field_compare(struct task_struct *tsk,
514 const struct cred *cred,
515 struct audit_field *f,
516 struct audit_context *ctx,
517 struct audit_names *name)
518{
Eric Paris02d86a52012-01-03 14:23:08 -0500519 switch (f->val) {
Peter Moody4a6633e2011-12-13 16:17:51 -0800520 /* process to file object comparisons */
Eric Paris02d86a52012-01-03 14:23:08 -0500521 case AUDIT_COMPARE_UID_TO_OBJ_UID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700522 return audit_compare_uid(cred->uid, name, f, ctx);
Eric Parisc9fe6852012-01-03 14:23:08 -0500523 case AUDIT_COMPARE_GID_TO_OBJ_GID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700524 return audit_compare_gid(cred->gid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800525 case AUDIT_COMPARE_EUID_TO_OBJ_UID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700526 return audit_compare_uid(cred->euid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800527 case AUDIT_COMPARE_EGID_TO_OBJ_GID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700528 return audit_compare_gid(cred->egid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800529 case AUDIT_COMPARE_AUID_TO_OBJ_UID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700530 return audit_compare_uid(tsk->loginuid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800531 case AUDIT_COMPARE_SUID_TO_OBJ_UID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700532 return audit_compare_uid(cred->suid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800533 case AUDIT_COMPARE_SGID_TO_OBJ_GID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700534 return audit_compare_gid(cred->sgid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800535 case AUDIT_COMPARE_FSUID_TO_OBJ_UID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700536 return audit_compare_uid(cred->fsuid, name, f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800537 case AUDIT_COMPARE_FSGID_TO_OBJ_GID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700538 return audit_compare_gid(cred->fsgid, name, f, ctx);
Peter Moody10d68362012-01-04 15:24:31 -0500539 /* uid comparisons */
540 case AUDIT_COMPARE_UID_TO_AUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700541 return audit_uid_comparator(cred->uid, f->op, tsk->loginuid);
Peter Moody10d68362012-01-04 15:24:31 -0500542 case AUDIT_COMPARE_UID_TO_EUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700543 return audit_uid_comparator(cred->uid, f->op, cred->euid);
Peter Moody10d68362012-01-04 15:24:31 -0500544 case AUDIT_COMPARE_UID_TO_SUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700545 return audit_uid_comparator(cred->uid, f->op, cred->suid);
Peter Moody10d68362012-01-04 15:24:31 -0500546 case AUDIT_COMPARE_UID_TO_FSUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700547 return audit_uid_comparator(cred->uid, f->op, cred->fsuid);
Peter Moody10d68362012-01-04 15:24:31 -0500548 /* auid comparisons */
549 case AUDIT_COMPARE_AUID_TO_EUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700550 return audit_uid_comparator(tsk->loginuid, f->op, cred->euid);
Peter Moody10d68362012-01-04 15:24:31 -0500551 case AUDIT_COMPARE_AUID_TO_SUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700552 return audit_uid_comparator(tsk->loginuid, f->op, cred->suid);
Peter Moody10d68362012-01-04 15:24:31 -0500553 case AUDIT_COMPARE_AUID_TO_FSUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700554 return audit_uid_comparator(tsk->loginuid, f->op, cred->fsuid);
Peter Moody10d68362012-01-04 15:24:31 -0500555 /* euid comparisons */
556 case AUDIT_COMPARE_EUID_TO_SUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700557 return audit_uid_comparator(cred->euid, f->op, cred->suid);
Peter Moody10d68362012-01-04 15:24:31 -0500558 case AUDIT_COMPARE_EUID_TO_FSUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700559 return audit_uid_comparator(cred->euid, f->op, cred->fsuid);
Peter Moody10d68362012-01-04 15:24:31 -0500560 /* suid comparisons */
561 case AUDIT_COMPARE_SUID_TO_FSUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700562 return audit_uid_comparator(cred->suid, f->op, cred->fsuid);
Peter Moody10d68362012-01-04 15:24:31 -0500563 /* gid comparisons */
564 case AUDIT_COMPARE_GID_TO_EGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700565 return audit_gid_comparator(cred->gid, f->op, cred->egid);
Peter Moody10d68362012-01-04 15:24:31 -0500566 case AUDIT_COMPARE_GID_TO_SGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700567 return audit_gid_comparator(cred->gid, f->op, cred->sgid);
Peter Moody10d68362012-01-04 15:24:31 -0500568 case AUDIT_COMPARE_GID_TO_FSGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700569 return audit_gid_comparator(cred->gid, f->op, cred->fsgid);
Peter Moody10d68362012-01-04 15:24:31 -0500570 /* egid comparisons */
571 case AUDIT_COMPARE_EGID_TO_SGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700572 return audit_gid_comparator(cred->egid, f->op, cred->sgid);
Peter Moody10d68362012-01-04 15:24:31 -0500573 case AUDIT_COMPARE_EGID_TO_FSGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700574 return audit_gid_comparator(cred->egid, f->op, cred->fsgid);
Peter Moody10d68362012-01-04 15:24:31 -0500575 /* sgid comparison */
576 case AUDIT_COMPARE_SGID_TO_FSGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700577 return audit_gid_comparator(cred->sgid, f->op, cred->fsgid);
Eric Paris02d86a52012-01-03 14:23:08 -0500578 default:
579 WARN(1, "Missing AUDIT_COMPARE define. Report as a bug\n");
580 return 0;
581 }
582 return 0;
583}
584
Amy Griffisf368c07d2006-04-07 16:55:56 -0400585/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/* Compare a task_struct with an audit_rule. Return 1 on match, 0
Tony Jonesf5629882011-04-27 15:10:49 +0200587 * otherwise.
588 *
589 * If task_creation is true, this is an explicit indication that we are
590 * filtering a task rule at task creation time. This and tsk == current are
591 * the only situations where tsk->cred may be accessed without an rcu read lock.
592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500594 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400596 struct audit_names *name,
Tony Jonesf5629882011-04-27 15:10:49 +0200597 enum audit_state *state,
598 bool task_creation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Tony Jonesf5629882011-04-27 15:10:49 +0200600 const struct cred *cred;
Eric Paris5195d8e2012-01-03 14:23:05 -0500601 int i, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600602 u32 sid;
603
Tony Jonesf5629882011-04-27 15:10:49 +0200604 cred = rcu_dereference_check(tsk->cred, tsk == current || task_creation);
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500607 struct audit_field *f = &rule->fields[i];
Eric Paris5195d8e2012-01-03 14:23:05 -0500608 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 int result = 0;
610
Amy Griffis93315ed2006-02-07 12:05:27 -0500611 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500613 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 break;
Al Viro3c662512006-05-06 08:26:27 -0400615 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400616 if (ctx) {
617 if (!ctx->ppid)
618 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400619 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400620 }
Al Viro3c662512006-05-06 08:26:27 -0400621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 case AUDIT_UID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700623 result = audit_uid_comparator(cred->uid, f->op, f->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625 case AUDIT_EUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700626 result = audit_uid_comparator(cred->euid, f->op, f->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628 case AUDIT_SUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700629 result = audit_uid_comparator(cred->suid, f->op, f->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 break;
631 case AUDIT_FSUID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700632 result = audit_uid_comparator(cred->fsuid, f->op, f->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 break;
634 case AUDIT_GID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700635 result = audit_gid_comparator(cred->gid, f->op, f->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
637 case AUDIT_EGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700638 result = audit_gid_comparator(cred->egid, f->op, f->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 break;
640 case AUDIT_SGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700641 result = audit_gid_comparator(cred->sgid, f->op, f->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 break;
643 case AUDIT_FSGID:
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700644 result = audit_gid_comparator(cred->fsgid, f->op, f->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 break;
646 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500647 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
2fd6f582005-04-29 16:08:28 +0100649 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700650 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500651 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100652 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 case AUDIT_EXIT:
655 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500656 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 break;
658 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100659 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500660 if (f->val)
661 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100662 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500663 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666 case AUDIT_DEVMAJOR:
Eric Paris16c174b2012-01-03 14:23:05 -0500667 if (name) {
668 if (audit_comparator(MAJOR(name->dev), f->op, f->val) ||
669 audit_comparator(MAJOR(name->rdev), f->op, f->val))
670 ++result;
671 } else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500672 list_for_each_entry(n, &ctx->names_list, list) {
Eric Paris16c174b2012-01-03 14:23:05 -0500673 if (audit_comparator(MAJOR(n->dev), f->op, f->val) ||
674 audit_comparator(MAJOR(n->rdev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 ++result;
676 break;
677 }
678 }
679 }
680 break;
681 case AUDIT_DEVMINOR:
Eric Paris16c174b2012-01-03 14:23:05 -0500682 if (name) {
683 if (audit_comparator(MINOR(name->dev), f->op, f->val) ||
684 audit_comparator(MINOR(name->rdev), f->op, f->val))
685 ++result;
686 } else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500687 list_for_each_entry(n, &ctx->names_list, list) {
Eric Paris16c174b2012-01-03 14:23:05 -0500688 if (audit_comparator(MINOR(n->dev), f->op, f->val) ||
689 audit_comparator(MINOR(n->rdev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 ++result;
691 break;
692 }
693 }
694 }
695 break;
696 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400697 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400698 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400699 else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500700 list_for_each_entry(n, &ctx->names_list, list) {
701 if (audit_comparator(n->ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 ++result;
703 break;
704 }
705 }
706 }
707 break;
Eric Parisefaffd62012-01-03 14:23:07 -0500708 case AUDIT_OBJ_UID:
709 if (name) {
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700710 result = audit_uid_comparator(name->uid, f->op, f->uid);
Eric Parisefaffd62012-01-03 14:23:07 -0500711 } else if (ctx) {
712 list_for_each_entry(n, &ctx->names_list, list) {
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700713 if (audit_uid_comparator(n->uid, f->op, f->uid)) {
Eric Parisefaffd62012-01-03 14:23:07 -0500714 ++result;
715 break;
716 }
717 }
718 }
719 break;
Eric Paris54d32182012-01-03 14:23:07 -0500720 case AUDIT_OBJ_GID:
721 if (name) {
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700722 result = audit_gid_comparator(name->gid, f->op, f->gid);
Eric Paris54d32182012-01-03 14:23:07 -0500723 } else if (ctx) {
724 list_for_each_entry(n, &ctx->names_list, list) {
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700725 if (audit_gid_comparator(n->gid, f->op, f->gid)) {
Eric Paris54d32182012-01-03 14:23:07 -0500726 ++result;
727 break;
728 }
729 }
730 }
731 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400732 case AUDIT_WATCH:
Eric Parisae7b8f42009-12-17 20:12:04 -0500733 if (name)
734 result = audit_watch_compare(rule->watch, name->ino, name->dev);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400735 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400736 case AUDIT_DIR:
737 if (ctx)
738 result = match_tree_refs(ctx, rule->tree);
739 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 case AUDIT_LOGINUID:
741 result = 0;
742 if (ctx)
Eric W. Biedermanca57ec02012-09-11 02:18:08 -0700743 result = audit_uid_comparator(tsk->loginuid, f->op, f->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500745 case AUDIT_SUBJ_USER:
746 case AUDIT_SUBJ_ROLE:
747 case AUDIT_SUBJ_TYPE:
748 case AUDIT_SUBJ_SEN:
749 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600750 /* NOTE: this may return negative values indicating
751 a temporary error. We simply treat this as a
752 match for now to avoid losing information that
753 may be wanted. An error message will also be
754 logged upon error */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000755 if (f->lsm_rule) {
Steve Grubb2ad312d2006-04-11 08:50:56 -0400756 if (need_sid) {
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200757 security_task_getsecid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400758 need_sid = 0;
759 }
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200760 result = security_audit_rule_match(sid, f->type,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600761 f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000762 f->lsm_rule,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600763 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400764 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600765 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500766 case AUDIT_OBJ_USER:
767 case AUDIT_OBJ_ROLE:
768 case AUDIT_OBJ_TYPE:
769 case AUDIT_OBJ_LEV_LOW:
770 case AUDIT_OBJ_LEV_HIGH:
771 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
772 also applies here */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000773 if (f->lsm_rule) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500774 /* Find files that match */
775 if (name) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200776 result = security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500777 name->osid, f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000778 f->lsm_rule, ctx);
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500779 } else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500780 list_for_each_entry(n, &ctx->names_list, list) {
781 if (security_audit_rule_match(n->osid, f->type,
782 f->op, f->lsm_rule,
783 ctx)) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500784 ++result;
785 break;
786 }
787 }
788 }
789 /* Find ipc objects that match */
Al Viroa33e6752008-12-10 03:40:06 -0500790 if (!ctx || ctx->type != AUDIT_IPC)
791 break;
792 if (security_audit_rule_match(ctx->ipc.osid,
793 f->type, f->op,
794 f->lsm_rule, ctx))
795 ++result;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500796 }
797 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 case AUDIT_ARG0:
799 case AUDIT_ARG1:
800 case AUDIT_ARG2:
801 case AUDIT_ARG3:
802 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500803 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400805 case AUDIT_FILTERKEY:
806 /* ignore this field for filtering */
807 result = 1;
808 break;
Al Viro55669bf2006-08-31 19:26:40 -0400809 case AUDIT_PERM:
810 result = audit_match_perm(ctx, f->val);
811 break;
Al Viro8b67dca2008-04-28 04:15:49 -0400812 case AUDIT_FILETYPE:
813 result = audit_match_filetype(ctx, f->val);
814 break;
Eric Paris02d86a52012-01-03 14:23:08 -0500815 case AUDIT_FIELD_COMPARE:
816 result = audit_field_compare(tsk, cred, f, ctx, name);
817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
Tony Jonesf5629882011-04-27 15:10:49 +0200819 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return 0;
821 }
Al Viro0590b932008-12-14 23:45:27 -0500822
823 if (ctx) {
824 if (rule->prio <= ctx->prio)
825 return 0;
826 if (rule->filterkey) {
827 kfree(ctx->filterkey);
828 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
829 }
830 ctx->prio = rule->prio;
831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 switch (rule->action) {
833 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
835 }
836 return 1;
837}
838
839/* At process creation time, we can determine if system-call auditing is
840 * completely disabled for this task. Since we only have the task
841 * structure at this point, we can only check uid and gid.
842 */
Al Viroe048e022008-12-16 03:51:22 -0500843static enum audit_state audit_filter_task(struct task_struct *tsk, char **key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 struct audit_entry *e;
846 enum audit_state state;
847
848 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100849 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Tony Jonesf5629882011-04-27 15:10:49 +0200850 if (audit_filter_rules(tsk, &e->rule, NULL, NULL,
851 &state, true)) {
Al Viroe048e022008-12-16 03:51:22 -0500852 if (state == AUDIT_RECORD_CONTEXT)
853 *key = kstrdup(e->rule.filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 rcu_read_unlock();
855 return state;
856 }
857 }
858 rcu_read_unlock();
859 return AUDIT_BUILD_CONTEXT;
860}
861
862/* At syscall entry and exit time, this filter is called if the
863 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100864 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700865 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
867static enum audit_state audit_filter_syscall(struct task_struct *tsk,
868 struct audit_context *ctx,
869 struct list_head *list)
870{
871 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100872 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
David Woodhouse351bb722005-07-14 14:40:06 +0100874 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100875 return AUDIT_DISABLED;
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100878 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000879 int word = AUDIT_WORD(ctx->major);
880 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100881
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000882 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400883 if ((e->rule.mask[word] & bit) == bit &&
884 audit_filter_rules(tsk, &e->rule, ctx, NULL,
Tony Jonesf5629882011-04-27 15:10:49 +0200885 &state, false)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000886 rcu_read_unlock();
Al Viro0590b932008-12-14 23:45:27 -0500887 ctx->current_state = state;
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000888 return state;
889 }
890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892 rcu_read_unlock();
893 return AUDIT_BUILD_CONTEXT;
894}
895
Eric Paris5195d8e2012-01-03 14:23:05 -0500896/*
897 * Given an audit_name check the inode hash table to see if they match.
898 * Called holding the rcu read lock to protect the use of audit_inode_hash
899 */
900static int audit_filter_inode_name(struct task_struct *tsk,
901 struct audit_names *n,
902 struct audit_context *ctx) {
903 int word, bit;
904 int h = audit_hash_ino((u32)n->ino);
905 struct list_head *list = &audit_inode_hash[h];
906 struct audit_entry *e;
907 enum audit_state state;
908
909 word = AUDIT_WORD(ctx->major);
910 bit = AUDIT_BIT(ctx->major);
911
912 if (list_empty(list))
913 return 0;
914
915 list_for_each_entry_rcu(e, list, list) {
916 if ((e->rule.mask[word] & bit) == bit &&
917 audit_filter_rules(tsk, &e->rule, ctx, n, &state, false)) {
918 ctx->current_state = state;
919 return 1;
920 }
921 }
922
923 return 0;
924}
925
926/* At syscall exit time, this filter is called if any audit_names have been
Amy Griffisf368c07d2006-04-07 16:55:56 -0400927 * collected during syscall processing. We only check rules in sublists at hash
Eric Paris5195d8e2012-01-03 14:23:05 -0500928 * buckets applicable to the inode numbers in audit_names.
Amy Griffisf368c07d2006-04-07 16:55:56 -0400929 * Regarding audit_state, same rules apply as for audit_filter_syscall().
930 */
Al Viro0590b932008-12-14 23:45:27 -0500931void audit_filter_inodes(struct task_struct *tsk, struct audit_context *ctx)
Amy Griffisf368c07d2006-04-07 16:55:56 -0400932{
Eric Paris5195d8e2012-01-03 14:23:05 -0500933 struct audit_names *n;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400934
935 if (audit_pid && tsk->tgid == audit_pid)
Al Viro0590b932008-12-14 23:45:27 -0500936 return;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400937
938 rcu_read_lock();
Amy Griffisf368c07d2006-04-07 16:55:56 -0400939
Eric Paris5195d8e2012-01-03 14:23:05 -0500940 list_for_each_entry(n, &ctx->names_list, list) {
941 if (audit_filter_inode_name(tsk, n, ctx))
942 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400943 }
944 rcu_read_unlock();
Amy Griffisf368c07d2006-04-07 16:55:56 -0400945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947static inline struct audit_context *audit_get_context(struct task_struct *tsk,
948 int return_valid,
Paul Moore6d208da2009-04-01 15:47:27 -0400949 long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct audit_context *context = tsk->audit_context;
952
Eric Paris56179a62012-01-03 14:23:06 -0500953 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return NULL;
955 context->return_valid = return_valid;
Eric Parisf701b752008-01-07 13:34:51 -0500956
957 /*
958 * we need to fix up the return code in the audit logs if the actual
959 * return codes are later going to be fixed up by the arch specific
960 * signal handlers
961 *
962 * This is actually a test for:
963 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
964 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
965 *
966 * but is faster than a bunch of ||
967 */
968 if (unlikely(return_code <= -ERESTARTSYS) &&
969 (return_code >= -ERESTART_RESTARTBLOCK) &&
970 (return_code != -ENOIOCTLCMD))
971 context->return_code = -EINTR;
972 else
973 context->return_code = return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Al Viro0590b932008-12-14 23:45:27 -0500975 if (context->in_syscall && !context->dummy) {
976 audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
977 audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 tsk->audit_context = NULL;
981 return context;
982}
983
984static inline void audit_free_names(struct audit_context *context)
985{
Eric Paris5195d8e2012-01-03 14:23:05 -0500986 struct audit_names *n, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988#if AUDIT_DEBUG == 2
Al Viro0590b932008-12-14 23:45:27 -0500989 if (context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000990 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 " name_count=%d put_count=%d"
992 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000993 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 context->serial, context->major, context->in_syscall,
995 context->name_count, context->put_count,
996 context->ino_count);
Eric Paris5195d8e2012-01-03 14:23:05 -0500997 list_for_each_entry(n, &context->names_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 printk(KERN_ERR "names[%d] = %p = %s\n", i,
Jeff Layton91a27b22012-10-10 15:25:28 -0400999 n->name, n->name->name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 dump_stack();
1002 return;
1003 }
1004#endif
1005#if AUDIT_DEBUG
1006 context->put_count = 0;
1007 context->ino_count = 0;
1008#endif
1009
Eric Paris5195d8e2012-01-03 14:23:05 -05001010 list_for_each_entry_safe(n, next, &context->names_list, list) {
1011 list_del(&n->list);
1012 if (n->name && n->name_put)
1013 __putname(n->name);
1014 if (n->should_free)
1015 kfree(n);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 context->name_count = 0;
Jan Blunck44707fd2008-02-14 19:38:33 -08001018 path_put(&context->pwd);
1019 context->pwd.dentry = NULL;
1020 context->pwd.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023static inline void audit_free_aux(struct audit_context *context)
1024{
1025 struct audit_aux_data *aux;
1026
1027 while ((aux = context->aux)) {
1028 context->aux = aux->next;
1029 kfree(aux);
1030 }
Amy Griffise54dc242007-03-29 18:01:04 -04001031 while ((aux = context->aux_pids)) {
1032 context->aux_pids = aux->next;
1033 kfree(aux);
1034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037static inline void audit_zero_context(struct audit_context *context,
1038 enum audit_state state)
1039{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 memset(context, 0, sizeof(*context));
1041 context->state = state;
Al Viro0590b932008-12-14 23:45:27 -05001042 context->prio = state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
1045static inline struct audit_context *audit_alloc_context(enum audit_state state)
1046{
1047 struct audit_context *context;
1048
1049 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
1050 return NULL;
1051 audit_zero_context(context, state);
Al Viro916d7572009-06-24 00:02:38 -04001052 INIT_LIST_HEAD(&context->killed_trees);
Eric Paris5195d8e2012-01-03 14:23:05 -05001053 INIT_LIST_HEAD(&context->names_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return context;
1055}
1056
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001057/**
1058 * audit_alloc - allocate an audit context block for a task
1059 * @tsk: task
1060 *
1061 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 * if necessary. Doing so turns on system call auditing for the
1063 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001064 * needed.
1065 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066int audit_alloc(struct task_struct *tsk)
1067{
1068 struct audit_context *context;
1069 enum audit_state state;
Al Viroe048e022008-12-16 03:51:22 -05001070 char *key = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Eric Parisb593d382008-01-08 17:38:31 -05001072 if (likely(!audit_ever_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return 0; /* Return if not auditing. */
1074
Al Viroe048e022008-12-16 03:51:22 -05001075 state = audit_filter_task(tsk, &key);
Eric Paris56179a62012-01-03 14:23:06 -05001076 if (state == AUDIT_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return 0;
1078
1079 if (!(context = audit_alloc_context(state))) {
Al Viroe048e022008-12-16 03:51:22 -05001080 kfree(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 audit_log_lost("out of memory in audit_alloc");
1082 return -ENOMEM;
1083 }
Al Viroe048e022008-12-16 03:51:22 -05001084 context->filterkey = key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 tsk->audit_context = context;
1087 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
1088 return 0;
1089}
1090
1091static inline void audit_free_context(struct audit_context *context)
1092{
Al Viroc62d7732012-10-20 15:07:18 -04001093 audit_free_names(context);
1094 unroll_tree_refs(context, NULL, 0);
1095 free_tree_refs(context);
1096 audit_free_aux(context);
1097 kfree(context->filterkey);
1098 kfree(context->sockaddr);
1099 kfree(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Joy Latten161a09e2006-11-27 13:11:54 -06001102void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001103{
1104 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +00001105 unsigned len;
1106 int error;
1107 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001108
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001109 security_task_getsecid(current, &sid);
Al Viroc4823bc2007-03-12 16:17:42 +00001110 if (!sid)
1111 return;
1112
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001113 error = security_secid_to_secctx(sid, &ctx, &len);
Al Viroc4823bc2007-03-12 16:17:42 +00001114 if (error) {
1115 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001116 goto error_path;
1117 return;
1118 }
1119
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001120 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001121 security_release_secctx(ctx, len);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001122 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001123
1124error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001125 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001126 return;
1127}
1128
Joy Latten161a09e2006-11-27 13:11:54 -06001129EXPORT_SYMBOL(audit_log_task_context);
1130
Peter Moodye23eb922012-06-14 10:04:35 -07001131void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -07001132{
Peter Moodye23eb922012-06-14 10:04:35 -07001133 const struct cred *cred;
Al Viro45d9bb02006-03-29 20:02:55 -05001134 char name[sizeof(tsk->comm)];
1135 struct mm_struct *mm = tsk->mm;
Peter Moodye23eb922012-06-14 10:04:35 -07001136 char *tty;
1137
1138 if (!ab)
1139 return;
Stephen Smalley219f0812005-04-18 10:47:35 -07001140
Al Viroe4951492006-03-29 20:17:10 -05001141 /* tsk == current */
Peter Moodye23eb922012-06-14 10:04:35 -07001142 cred = current_cred();
1143
1144 spin_lock_irq(&tsk->sighand->siglock);
1145 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1146 tty = tsk->signal->tty->name;
1147 else
1148 tty = "(none)";
1149 spin_unlock_irq(&tsk->sighand->siglock);
1150
1151
1152 audit_log_format(ab,
1153 " ppid=%ld pid=%d auid=%u uid=%u gid=%u"
1154 " euid=%u suid=%u fsuid=%u"
1155 " egid=%u sgid=%u fsgid=%u ses=%u tty=%s",
1156 sys_getppid(),
1157 tsk->pid,
Linus Torvalds882653222012-10-02 21:38:48 -07001158 from_kuid(&init_user_ns, tsk->loginuid),
1159 from_kuid(&init_user_ns, cred->uid),
1160 from_kgid(&init_user_ns, cred->gid),
1161 from_kuid(&init_user_ns, cred->euid),
1162 from_kuid(&init_user_ns, cred->suid),
1163 from_kuid(&init_user_ns, cred->fsuid),
1164 from_kgid(&init_user_ns, cred->egid),
1165 from_kgid(&init_user_ns, cred->sgid),
1166 from_kgid(&init_user_ns, cred->fsgid),
Peter Moodye23eb922012-06-14 10:04:35 -07001167 tsk->sessionid, tty);
Al Viroe4951492006-03-29 20:17:10 -05001168
Al Viro45d9bb02006-03-29 20:02:55 -05001169 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +01001170 audit_log_format(ab, " comm=");
1171 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -07001172
Al Viroe4951492006-03-29 20:17:10 -05001173 if (mm) {
1174 down_read(&mm->mmap_sem);
Konstantin Khlebnikov2dd8ad82012-10-08 16:28:51 -07001175 if (mm->exe_file)
1176 audit_log_d_path(ab, " exe=", &mm->exe_file->f_path);
Al Viroe4951492006-03-29 20:17:10 -05001177 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -07001178 }
Al Viroe4951492006-03-29 20:17:10 -05001179 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -07001180}
1181
Peter Moodye23eb922012-06-14 10:04:35 -07001182EXPORT_SYMBOL(audit_log_task_info);
1183
Amy Griffise54dc242007-03-29 18:01:04 -04001184static int audit_log_pid_context(struct audit_context *context, pid_t pid,
Eric W. Biedermancca080d2012-02-07 16:53:48 -08001185 kuid_t auid, kuid_t uid, unsigned int sessionid,
Eric Paris4746ec52008-01-08 10:06:53 -05001186 u32 sid, char *comm)
Amy Griffise54dc242007-03-29 18:01:04 -04001187{
1188 struct audit_buffer *ab;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001189 char *ctx = NULL;
Amy Griffise54dc242007-03-29 18:01:04 -04001190 u32 len;
1191 int rc = 0;
1192
1193 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
1194 if (!ab)
Eric Paris6246cca2008-01-07 14:01:18 -05001195 return rc;
Amy Griffise54dc242007-03-29 18:01:04 -04001196
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001197 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid,
1198 from_kuid(&init_user_ns, auid),
Eric W. Biedermancca080d2012-02-07 16:53:48 -08001199 from_kuid(&init_user_ns, uid), sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001200 if (security_secid_to_secctx(sid, &ctx, &len)) {
Eric Parisc2a77802008-01-07 13:40:17 -05001201 audit_log_format(ab, " obj=(none)");
Amy Griffise54dc242007-03-29 18:01:04 -04001202 rc = 1;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001203 } else {
1204 audit_log_format(ab, " obj=%s", ctx);
1205 security_release_secctx(ctx, len);
1206 }
Eric Parisc2a77802008-01-07 13:40:17 -05001207 audit_log_format(ab, " ocomm=");
1208 audit_log_untrustedstring(ab, comm);
Amy Griffise54dc242007-03-29 18:01:04 -04001209 audit_log_end(ab);
Amy Griffise54dc242007-03-29 18:01:04 -04001210
1211 return rc;
1212}
1213
Eric Parisde6bbd12008-01-07 14:31:58 -05001214/*
1215 * to_send and len_sent accounting are very loose estimates. We aren't
1216 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001217 * within about 500 bytes (next page boundary)
Eric Parisde6bbd12008-01-07 14:31:58 -05001218 *
1219 * why snprintf? an int is up to 12 digits long. if we just assumed when
1220 * logging that a[%d]= was going to be 16 characters long we would be wasting
1221 * space in every audit message. In one 7500 byte message we can log up to
1222 * about 1000 min size arguments. That comes down to about 50% waste of space
1223 * if we didn't do the snprintf to find out how long arg_num_len was.
1224 */
1225static int audit_log_single_execve_arg(struct audit_context *context,
1226 struct audit_buffer **ab,
1227 int arg_num,
1228 size_t *len_sent,
1229 const char __user *p,
1230 char *buf)
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001231{
Eric Parisde6bbd12008-01-07 14:31:58 -05001232 char arg_num_len_buf[12];
1233 const char __user *tmp_p = p;
Eric Parisb87ce6e2009-06-11 14:31:34 -04001234 /* how many digits are in arg_num? 5 is the length of ' a=""' */
1235 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 5;
Eric Parisde6bbd12008-01-07 14:31:58 -05001236 size_t len, len_left, to_send;
1237 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1238 unsigned int i, has_cntl = 0, too_long = 0;
1239 int ret;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001240
Eric Parisde6bbd12008-01-07 14:31:58 -05001241 /* strnlen_user includes the null we don't want to send */
1242 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001243
Eric Parisde6bbd12008-01-07 14:31:58 -05001244 /*
1245 * We just created this mm, if we can't find the strings
1246 * we just copied into it something is _very_ wrong. Similar
1247 * for strings that are too long, we should not have created
1248 * any.
1249 */
Eric Parisb0abcfc2008-02-18 18:23:16 -05001250 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
Eric Parisde6bbd12008-01-07 14:31:58 -05001251 WARN_ON(1);
1252 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001253 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001254 }
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001255
Eric Parisde6bbd12008-01-07 14:31:58 -05001256 /* walk the whole argument looking for non-ascii chars */
1257 do {
1258 if (len_left > MAX_EXECVE_AUDIT_LEN)
1259 to_send = MAX_EXECVE_AUDIT_LEN;
1260 else
1261 to_send = len_left;
1262 ret = copy_from_user(buf, tmp_p, to_send);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001263 /*
1264 * There is no reason for this copy to be short. We just
1265 * copied them here, and the mm hasn't been exposed to user-
1266 * space yet.
1267 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001268 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001269 WARN_ON(1);
1270 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001271 return -1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001272 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001273 buf[to_send] = '\0';
1274 has_cntl = audit_string_contains_control(buf, to_send);
1275 if (has_cntl) {
1276 /*
1277 * hex messages get logged as 2 bytes, so we can only
1278 * send half as much in each message
1279 */
1280 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
1281 break;
1282 }
1283 len_left -= to_send;
1284 tmp_p += to_send;
1285 } while (len_left > 0);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001286
Eric Parisde6bbd12008-01-07 14:31:58 -05001287 len_left = len;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001288
Eric Parisde6bbd12008-01-07 14:31:58 -05001289 if (len > max_execve_audit_len)
1290 too_long = 1;
1291
1292 /* rewalk the argument actually logging the message */
1293 for (i = 0; len_left > 0; i++) {
1294 int room_left;
1295
1296 if (len_left > max_execve_audit_len)
1297 to_send = max_execve_audit_len;
1298 else
1299 to_send = len_left;
1300
1301 /* do we have space left to send this argument in this ab? */
1302 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1303 if (has_cntl)
1304 room_left -= (to_send * 2);
1305 else
1306 room_left -= to_send;
1307 if (room_left < 0) {
1308 *len_sent = 0;
1309 audit_log_end(*ab);
1310 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1311 if (!*ab)
1312 return 0;
1313 }
1314
1315 /*
1316 * first record needs to say how long the original string was
1317 * so we can be sure nothing was lost.
1318 */
1319 if ((i == 0) && (too_long))
Jiri Pirkoca96a892009-01-09 16:44:16 +01001320 audit_log_format(*ab, " a%d_len=%zu", arg_num,
Eric Parisde6bbd12008-01-07 14:31:58 -05001321 has_cntl ? 2*len : len);
1322
1323 /*
1324 * normally arguments are small enough to fit and we already
1325 * filled buf above when we checked for control characters
1326 * so don't bother with another copy_from_user
1327 */
1328 if (len >= max_execve_audit_len)
1329 ret = copy_from_user(buf, p, to_send);
1330 else
1331 ret = 0;
1332 if (ret) {
1333 WARN_ON(1);
1334 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001335 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001336 }
1337 buf[to_send] = '\0';
1338
1339 /* actually log it */
Jiri Pirkoca96a892009-01-09 16:44:16 +01001340 audit_log_format(*ab, " a%d", arg_num);
Eric Parisde6bbd12008-01-07 14:31:58 -05001341 if (too_long)
1342 audit_log_format(*ab, "[%d]", i);
1343 audit_log_format(*ab, "=");
1344 if (has_cntl)
Eric Parisb556f8a2008-04-18 10:12:59 -04001345 audit_log_n_hex(*ab, buf, to_send);
Eric Parisde6bbd12008-01-07 14:31:58 -05001346 else
Eric Paris9d960982009-06-11 14:31:37 -04001347 audit_log_string(*ab, buf);
Eric Parisde6bbd12008-01-07 14:31:58 -05001348
1349 p += to_send;
1350 len_left -= to_send;
1351 *len_sent += arg_num_len;
1352 if (has_cntl)
1353 *len_sent += to_send * 2;
1354 else
1355 *len_sent += to_send;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001356 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001357 /* include the null we didn't log */
1358 return len + 1;
1359}
1360
1361static void audit_log_execve_info(struct audit_context *context,
1362 struct audit_buffer **ab,
1363 struct audit_aux_data_execve *axi)
1364{
Xi Wang5afb8a32011-12-20 18:39:41 -05001365 int i, len;
1366 size_t len_sent = 0;
Eric Parisde6bbd12008-01-07 14:31:58 -05001367 const char __user *p;
1368 char *buf;
1369
1370 if (axi->mm != current->mm)
1371 return; /* execve failed, no additional info */
1372
1373 p = (const char __user *)axi->mm->arg_start;
1374
Jiri Pirkoca96a892009-01-09 16:44:16 +01001375 audit_log_format(*ab, "argc=%d", axi->argc);
Eric Parisde6bbd12008-01-07 14:31:58 -05001376
1377 /*
1378 * we need some kernel buffer to hold the userspace args. Just
1379 * allocate one big one rather than allocating one of the right size
1380 * for every single argument inside audit_log_single_execve_arg()
1381 * should be <8k allocation so should be pretty safe.
1382 */
1383 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1384 if (!buf) {
1385 audit_panic("out of memory for argv string\n");
1386 return;
1387 }
1388
1389 for (i = 0; i < axi->argc; i++) {
1390 len = audit_log_single_execve_arg(context, ab, i,
1391 &len_sent, p, buf);
1392 if (len <= 0)
1393 break;
1394 p += len;
1395 }
1396 kfree(buf);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001397}
1398
Eric Paris851f7ff2008-11-11 21:48:14 +11001399static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1400{
1401 int i;
1402
1403 audit_log_format(ab, " %s=", prefix);
1404 CAP_FOR_EACH_U32(i) {
1405 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1406 }
1407}
1408
1409static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1410{
1411 kernel_cap_t *perm = &name->fcap.permitted;
1412 kernel_cap_t *inh = &name->fcap.inheritable;
1413 int log = 0;
1414
1415 if (!cap_isclear(*perm)) {
1416 audit_log_cap(ab, "cap_fp", perm);
1417 log = 1;
1418 }
1419 if (!cap_isclear(*inh)) {
1420 audit_log_cap(ab, "cap_fi", inh);
1421 log = 1;
1422 }
1423
1424 if (log)
1425 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1426}
1427
Al Viroa33e6752008-12-10 03:40:06 -05001428static void show_special(struct audit_context *context, int *call_panic)
Al Virof3298dc2008-12-10 03:16:51 -05001429{
1430 struct audit_buffer *ab;
1431 int i;
1432
1433 ab = audit_log_start(context, GFP_KERNEL, context->type);
1434 if (!ab)
1435 return;
1436
1437 switch (context->type) {
1438 case AUDIT_SOCKETCALL: {
1439 int nargs = context->socketcall.nargs;
1440 audit_log_format(ab, "nargs=%d", nargs);
1441 for (i = 0; i < nargs; i++)
1442 audit_log_format(ab, " a%d=%lx", i,
1443 context->socketcall.args[i]);
1444 break; }
Al Viroa33e6752008-12-10 03:40:06 -05001445 case AUDIT_IPC: {
1446 u32 osid = context->ipc.osid;
1447
Al Viro2570ebb2011-07-27 14:03:22 -04001448 audit_log_format(ab, "ouid=%u ogid=%u mode=%#ho",
Eric W. Biedermancca080d2012-02-07 16:53:48 -08001449 from_kuid(&init_user_ns, context->ipc.uid),
1450 from_kgid(&init_user_ns, context->ipc.gid),
1451 context->ipc.mode);
Al Viroa33e6752008-12-10 03:40:06 -05001452 if (osid) {
1453 char *ctx = NULL;
1454 u32 len;
1455 if (security_secid_to_secctx(osid, &ctx, &len)) {
1456 audit_log_format(ab, " osid=%u", osid);
1457 *call_panic = 1;
1458 } else {
1459 audit_log_format(ab, " obj=%s", ctx);
1460 security_release_secctx(ctx, len);
1461 }
1462 }
Al Viroe816f372008-12-10 03:47:15 -05001463 if (context->ipc.has_perm) {
1464 audit_log_end(ab);
1465 ab = audit_log_start(context, GFP_KERNEL,
1466 AUDIT_IPC_SET_PERM);
1467 audit_log_format(ab,
Al Viro2570ebb2011-07-27 14:03:22 -04001468 "qbytes=%lx ouid=%u ogid=%u mode=%#ho",
Al Viroe816f372008-12-10 03:47:15 -05001469 context->ipc.qbytes,
1470 context->ipc.perm_uid,
1471 context->ipc.perm_gid,
1472 context->ipc.perm_mode);
1473 if (!ab)
1474 return;
1475 }
Al Viroa33e6752008-12-10 03:40:06 -05001476 break; }
Al Viro564f6992008-12-14 04:02:26 -05001477 case AUDIT_MQ_OPEN: {
1478 audit_log_format(ab,
Al Virodf0a4282011-07-26 05:26:10 -04001479 "oflag=0x%x mode=%#ho mq_flags=0x%lx mq_maxmsg=%ld "
Al Viro564f6992008-12-14 04:02:26 -05001480 "mq_msgsize=%ld mq_curmsgs=%ld",
1481 context->mq_open.oflag, context->mq_open.mode,
1482 context->mq_open.attr.mq_flags,
1483 context->mq_open.attr.mq_maxmsg,
1484 context->mq_open.attr.mq_msgsize,
1485 context->mq_open.attr.mq_curmsgs);
1486 break; }
Al Viroc32c8af2008-12-14 03:46:48 -05001487 case AUDIT_MQ_SENDRECV: {
1488 audit_log_format(ab,
1489 "mqdes=%d msg_len=%zd msg_prio=%u "
1490 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1491 context->mq_sendrecv.mqdes,
1492 context->mq_sendrecv.msg_len,
1493 context->mq_sendrecv.msg_prio,
1494 context->mq_sendrecv.abs_timeout.tv_sec,
1495 context->mq_sendrecv.abs_timeout.tv_nsec);
1496 break; }
Al Viro20114f72008-12-10 07:16:12 -05001497 case AUDIT_MQ_NOTIFY: {
1498 audit_log_format(ab, "mqdes=%d sigev_signo=%d",
1499 context->mq_notify.mqdes,
1500 context->mq_notify.sigev_signo);
1501 break; }
Al Viro73929062008-12-10 06:58:59 -05001502 case AUDIT_MQ_GETSETATTR: {
1503 struct mq_attr *attr = &context->mq_getsetattr.mqstat;
1504 audit_log_format(ab,
1505 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1506 "mq_curmsgs=%ld ",
1507 context->mq_getsetattr.mqdes,
1508 attr->mq_flags, attr->mq_maxmsg,
1509 attr->mq_msgsize, attr->mq_curmsgs);
1510 break; }
Al Viro57f71a02009-01-04 14:52:57 -05001511 case AUDIT_CAPSET: {
1512 audit_log_format(ab, "pid=%d", context->capset.pid);
1513 audit_log_cap(ab, "cap_pi", &context->capset.cap.inheritable);
1514 audit_log_cap(ab, "cap_pp", &context->capset.cap.permitted);
1515 audit_log_cap(ab, "cap_pe", &context->capset.cap.effective);
1516 break; }
Al Viro120a7952010-10-30 02:54:44 -04001517 case AUDIT_MMAP: {
1518 audit_log_format(ab, "fd=%d flags=0x%x", context->mmap.fd,
1519 context->mmap.flags);
1520 break; }
Al Virof3298dc2008-12-10 03:16:51 -05001521 }
1522 audit_log_end(ab);
1523}
1524
Eric Paris5195d8e2012-01-03 14:23:05 -05001525static void audit_log_name(struct audit_context *context, struct audit_names *n,
1526 int record_num, int *call_panic)
1527{
1528 struct audit_buffer *ab;
1529 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
1530 if (!ab)
1531 return; /* audit_panic has been called */
1532
1533 audit_log_format(ab, "item=%d", record_num);
1534
1535 if (n->name) {
1536 switch (n->name_len) {
1537 case AUDIT_NAME_FULL:
1538 /* log the full path */
1539 audit_log_format(ab, " name=");
Jeff Layton91a27b22012-10-10 15:25:28 -04001540 audit_log_untrustedstring(ab, n->name->name);
Eric Paris5195d8e2012-01-03 14:23:05 -05001541 break;
1542 case 0:
1543 /* name was specified as a relative path and the
1544 * directory component is the cwd */
Kees Cookc158a352012-01-06 14:07:10 -08001545 audit_log_d_path(ab, " name=", &context->pwd);
Eric Paris5195d8e2012-01-03 14:23:05 -05001546 break;
1547 default:
1548 /* log the name's directory component */
1549 audit_log_format(ab, " name=");
Jeff Layton91a27b22012-10-10 15:25:28 -04001550 audit_log_n_untrustedstring(ab, n->name->name,
Eric Paris5195d8e2012-01-03 14:23:05 -05001551 n->name_len);
1552 }
1553 } else
1554 audit_log_format(ab, " name=(null)");
1555
1556 if (n->ino != (unsigned long)-1) {
1557 audit_log_format(ab, " inode=%lu"
1558 " dev=%02x:%02x mode=%#ho"
1559 " ouid=%u ogid=%u rdev=%02x:%02x",
1560 n->ino,
1561 MAJOR(n->dev),
1562 MINOR(n->dev),
1563 n->mode,
Eric W. Biedermancca080d2012-02-07 16:53:48 -08001564 from_kuid(&init_user_ns, n->uid),
1565 from_kgid(&init_user_ns, n->gid),
Eric Paris5195d8e2012-01-03 14:23:05 -05001566 MAJOR(n->rdev),
1567 MINOR(n->rdev));
1568 }
1569 if (n->osid != 0) {
1570 char *ctx = NULL;
1571 u32 len;
1572 if (security_secid_to_secctx(
1573 n->osid, &ctx, &len)) {
1574 audit_log_format(ab, " osid=%u", n->osid);
1575 *call_panic = 2;
1576 } else {
1577 audit_log_format(ab, " obj=%s", ctx);
1578 security_release_secctx(ctx, len);
1579 }
1580 }
1581
1582 audit_log_fcaps(ab, n);
1583
1584 audit_log_end(ab);
1585}
1586
Al Viroe4951492006-03-29 20:17:10 -05001587static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001589 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001591 struct audit_aux_data *aux;
Eric Paris5195d8e2012-01-03 14:23:05 -05001592 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Al Viroe4951492006-03-29 20:17:10 -05001594 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001595 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001596
1597 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (!ab)
1599 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001600 audit_log_format(ab, "arch=%x syscall=%d",
1601 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (context->personality != PER_LINUX)
1603 audit_log_format(ab, " per=%lx", context->personality);
1604 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001605 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001606 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1607 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 audit_log_format(ab,
Peter Moodye23eb922012-06-14 10:04:35 -07001610 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d",
1611 context->argv[0],
1612 context->argv[1],
1613 context->argv[2],
1614 context->argv[3],
1615 context->name_count);
Alan Coxeb84a202006-09-29 02:01:41 -07001616
Al Viroe4951492006-03-29 20:17:10 -05001617 audit_log_task_info(ab, tsk);
Eric Paris9d960982009-06-11 14:31:37 -04001618 audit_log_key(ab, context->filterkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
David Woodhouse7551ced2005-05-26 12:04:57 +01001621 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001622
Al Viroe4951492006-03-29 20:17:10 -05001623 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (!ab)
1625 continue; /* audit_panic has been called */
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001628
Al Viro473ae302006-04-26 14:04:08 -04001629 case AUDIT_EXECVE: {
1630 struct audit_aux_data_execve *axi = (void *)aux;
Eric Parisde6bbd12008-01-07 14:31:58 -05001631 audit_log_execve_info(context, &ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001632 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001633
Eric Paris3fc689e2008-11-11 21:48:18 +11001634 case AUDIT_BPRM_FCAPS: {
1635 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1636 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1637 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1638 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1639 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1640 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1641 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1642 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1643 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1644 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1645 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1646 break; }
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
Al Virof3298dc2008-12-10 03:16:51 -05001652 if (context->type)
Al Viroa33e6752008-12-10 03:40:06 -05001653 show_special(context, &call_panic);
Al Virof3298dc2008-12-10 03:16:51 -05001654
Al Viro157cf642008-12-14 04:57:47 -05001655 if (context->fds[0] >= 0) {
1656 ab = audit_log_start(context, GFP_KERNEL, AUDIT_FD_PAIR);
1657 if (ab) {
1658 audit_log_format(ab, "fd0=%d fd1=%d",
1659 context->fds[0], context->fds[1]);
1660 audit_log_end(ab);
1661 }
1662 }
1663
Al Viro4f6b4342008-12-09 19:50:34 -05001664 if (context->sockaddr_len) {
1665 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1666 if (ab) {
1667 audit_log_format(ab, "saddr=");
1668 audit_log_n_hex(ab, (void *)context->sockaddr,
1669 context->sockaddr_len);
1670 audit_log_end(ab);
1671 }
1672 }
1673
Amy Griffise54dc242007-03-29 18:01:04 -04001674 for (aux = context->aux_pids; aux; aux = aux->next) {
1675 struct audit_aux_data_pids *axs = (void *)aux;
Amy Griffise54dc242007-03-29 18:01:04 -04001676
1677 for (i = 0; i < axs->pid_count; i++)
1678 if (audit_log_pid_context(context, axs->target_pid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001679 axs->target_auid[i],
1680 axs->target_uid[i],
Eric Paris4746ec52008-01-08 10:06:53 -05001681 axs->target_sessionid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001682 axs->target_sid[i],
1683 axs->target_comm[i]))
Amy Griffise54dc242007-03-29 18:01:04 -04001684 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001685 }
1686
Amy Griffise54dc242007-03-29 18:01:04 -04001687 if (context->target_pid &&
1688 audit_log_pid_context(context, context->target_pid,
Eric Parisc2a77802008-01-07 13:40:17 -05001689 context->target_auid, context->target_uid,
Eric Paris4746ec52008-01-08 10:06:53 -05001690 context->target_sessionid,
Eric Parisc2a77802008-01-07 13:40:17 -05001691 context->target_sid, context->target_comm))
Amy Griffise54dc242007-03-29 18:01:04 -04001692 call_panic = 1;
1693
Jan Blunck44707fd2008-02-14 19:38:33 -08001694 if (context->pwd.dentry && context->pwd.mnt) {
Al Viroe4951492006-03-29 20:17:10 -05001695 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001696 if (ab) {
Kees Cookc158a352012-01-06 14:07:10 -08001697 audit_log_d_path(ab, " cwd=", &context->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001698 audit_log_end(ab);
1699 }
1700 }
Amy Griffis73241cc2005-11-03 16:00:25 +00001701
Eric Paris5195d8e2012-01-03 14:23:05 -05001702 i = 0;
1703 list_for_each_entry(n, &context->names_list, list)
1704 audit_log_name(context, n, i++, &call_panic);
Eric Parisc0641f22008-01-07 13:49:15 -05001705
1706 /* Send end of event record to help user space know we are finished */
1707 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1708 if (ab)
1709 audit_log_end(ab);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001710 if (call_panic)
1711 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001714/**
1715 * audit_free - free a per-task audit context
1716 * @tsk: task whose audit context block to free
1717 *
Al Virofa84cb92006-03-29 20:30:19 -05001718 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001719 */
Eric Parisa4ff8db2012-01-03 14:23:07 -05001720void __audit_free(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
1722 struct audit_context *context;
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 context = audit_get_context(tsk, 0, 0);
Eric Paris56179a62012-01-03 14:23:06 -05001725 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return;
1727
1728 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001729 * function (e.g., exit_group), then free context block.
1730 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001731 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001732 /* that can happen only if we are called from do_exit() */
Al Viro0590b932008-12-14 23:45:27 -05001733 if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
Al Viroe4951492006-03-29 20:17:10 -05001734 audit_log_exit(context, tsk);
Al Viro916d7572009-06-24 00:02:38 -04001735 if (!list_empty(&context->killed_trees))
1736 audit_kill_trees(&context->killed_trees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 audit_free_context(context);
1739}
1740
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001741/**
1742 * audit_syscall_entry - fill in an audit record at syscall entry
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001743 * @arch: architecture type
1744 * @major: major syscall type (function)
1745 * @a1: additional syscall register 1
1746 * @a2: additional syscall register 2
1747 * @a3: additional syscall register 3
1748 * @a4: additional syscall register 4
1749 *
1750 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 * audit context was created when the task was created and the state or
1752 * filters demand the audit context be built. If the state from the
1753 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1754 * then the record will be written at syscall exit time (otherwise, it
1755 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001756 * be written).
1757 */
Eric Parisb05d8442012-01-03 14:23:06 -05001758void __audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 unsigned long a1, unsigned long a2,
1760 unsigned long a3, unsigned long a4)
1761{
Al Viro5411be52006-03-29 20:23:36 -05001762 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct audit_context *context = tsk->audit_context;
1764 enum audit_state state;
1765
Eric Paris56179a62012-01-03 14:23:06 -05001766 if (!context)
Roland McGrath86a1c342008-06-23 15:37:04 -07001767 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 BUG_ON(context->in_syscall || context->name_count);
1770
1771 if (!audit_enabled)
1772 return;
1773
2fd6f582005-04-29 16:08:28 +01001774 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 context->major = major;
1776 context->argv[0] = a1;
1777 context->argv[1] = a2;
1778 context->argv[2] = a3;
1779 context->argv[3] = a4;
1780
1781 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001782 context->dummy = !audit_n_rules;
Al Viro0590b932008-12-14 23:45:27 -05001783 if (!context->dummy && state == AUDIT_BUILD_CONTEXT) {
1784 context->prio = 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +01001785 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Al Viro0590b932008-12-14 23:45:27 -05001786 }
Eric Paris56179a62012-01-03 14:23:06 -05001787 if (state == AUDIT_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return;
1789
David Woodhousece625a82005-07-18 14:24:46 -04001790 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 context->ctime = CURRENT_TIME;
1792 context->in_syscall = 1;
Al Viro0590b932008-12-14 23:45:27 -05001793 context->current_state = state;
Alexander Viro419c58f2006-09-29 00:08:50 -04001794 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001797/**
1798 * audit_syscall_exit - deallocate audit context after a system call
Randy Dunlap42ae610c2012-01-21 11:02:24 -08001799 * @success: success value of the syscall
1800 * @return_code: return value of the syscall
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001801 *
1802 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
Randy Dunlap42ae610c2012-01-21 11:02:24 -08001804 * filtering, or because some other part of the kernel wrote an audit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001806 * free the names stored from getname().
1807 */
Eric Parisd7e75282012-01-03 14:23:06 -05001808void __audit_syscall_exit(int success, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Al Viro5411be52006-03-29 20:23:36 -05001810 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 struct audit_context *context;
1812
Eric Parisd7e75282012-01-03 14:23:06 -05001813 if (success)
1814 success = AUDITSC_SUCCESS;
1815 else
1816 success = AUDITSC_FAILURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Eric Parisd7e75282012-01-03 14:23:06 -05001818 context = audit_get_context(tsk, success, return_code);
Eric Paris56179a62012-01-03 14:23:06 -05001819 if (!context)
Al Viro97e94c42006-03-29 20:26:24 -05001820 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Al Viro0590b932008-12-14 23:45:27 -05001822 if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
Al Viroe4951492006-03-29 20:17:10 -05001823 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 context->in_syscall = 0;
Al Viro0590b932008-12-14 23:45:27 -05001826 context->prio = context->state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
2fd6f582005-04-29 16:08:28 +01001827
Al Viro916d7572009-06-24 00:02:38 -04001828 if (!list_empty(&context->killed_trees))
1829 audit_kill_trees(&context->killed_trees);
1830
Al Viroc62d7732012-10-20 15:07:18 -04001831 audit_free_names(context);
1832 unroll_tree_refs(context, NULL, 0);
1833 audit_free_aux(context);
1834 context->aux = NULL;
1835 context->aux_pids = NULL;
1836 context->target_pid = 0;
1837 context->target_sid = 0;
1838 context->sockaddr_len = 0;
1839 context->type = 0;
1840 context->fds[0] = -1;
1841 if (context->state != AUDIT_RECORD_CONTEXT) {
1842 kfree(context->filterkey);
1843 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
Al Viroc62d7732012-10-20 15:07:18 -04001845 tsk->audit_context = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Al Viro74c3cbe2007-07-22 08:04:18 -04001848static inline void handle_one(const struct inode *inode)
1849{
1850#ifdef CONFIG_AUDIT_TREE
1851 struct audit_context *context;
1852 struct audit_tree_refs *p;
1853 struct audit_chunk *chunk;
1854 int count;
Eric Parise61ce862009-12-17 21:24:24 -05001855 if (likely(hlist_empty(&inode->i_fsnotify_marks)))
Al Viro74c3cbe2007-07-22 08:04:18 -04001856 return;
1857 context = current->audit_context;
1858 p = context->trees;
1859 count = context->tree_count;
1860 rcu_read_lock();
1861 chunk = audit_tree_lookup(inode);
1862 rcu_read_unlock();
1863 if (!chunk)
1864 return;
1865 if (likely(put_tree_ref(context, chunk)))
1866 return;
1867 if (unlikely(!grow_tree_refs(context))) {
Eric Paris436c4052008-04-18 10:01:04 -04001868 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001869 audit_set_auditable(context);
1870 audit_put_chunk(chunk);
1871 unroll_tree_refs(context, p, count);
1872 return;
1873 }
1874 put_tree_ref(context, chunk);
1875#endif
1876}
1877
1878static void handle_path(const struct dentry *dentry)
1879{
1880#ifdef CONFIG_AUDIT_TREE
1881 struct audit_context *context;
1882 struct audit_tree_refs *p;
1883 const struct dentry *d, *parent;
1884 struct audit_chunk *drop;
1885 unsigned long seq;
1886 int count;
1887
1888 context = current->audit_context;
1889 p = context->trees;
1890 count = context->tree_count;
1891retry:
1892 drop = NULL;
1893 d = dentry;
1894 rcu_read_lock();
1895 seq = read_seqbegin(&rename_lock);
1896 for(;;) {
1897 struct inode *inode = d->d_inode;
Eric Parise61ce862009-12-17 21:24:24 -05001898 if (inode && unlikely(!hlist_empty(&inode->i_fsnotify_marks))) {
Al Viro74c3cbe2007-07-22 08:04:18 -04001899 struct audit_chunk *chunk;
1900 chunk = audit_tree_lookup(inode);
1901 if (chunk) {
1902 if (unlikely(!put_tree_ref(context, chunk))) {
1903 drop = chunk;
1904 break;
1905 }
1906 }
1907 }
1908 parent = d->d_parent;
1909 if (parent == d)
1910 break;
1911 d = parent;
1912 }
1913 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1914 rcu_read_unlock();
1915 if (!drop) {
1916 /* just a race with rename */
1917 unroll_tree_refs(context, p, count);
1918 goto retry;
1919 }
1920 audit_put_chunk(drop);
1921 if (grow_tree_refs(context)) {
1922 /* OK, got more space */
1923 unroll_tree_refs(context, p, count);
1924 goto retry;
1925 }
1926 /* too bad */
1927 printk(KERN_WARNING
Eric Paris436c4052008-04-18 10:01:04 -04001928 "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001929 unroll_tree_refs(context, p, count);
1930 audit_set_auditable(context);
1931 return;
1932 }
1933 rcu_read_unlock();
1934#endif
1935}
1936
Jeff Layton78e2e802012-10-10 15:25:22 -04001937static struct audit_names *audit_alloc_name(struct audit_context *context,
1938 unsigned char type)
Eric Paris5195d8e2012-01-03 14:23:05 -05001939{
1940 struct audit_names *aname;
1941
1942 if (context->name_count < AUDIT_NAMES) {
1943 aname = &context->preallocated_names[context->name_count];
1944 memset(aname, 0, sizeof(*aname));
1945 } else {
1946 aname = kzalloc(sizeof(*aname), GFP_NOFS);
1947 if (!aname)
1948 return NULL;
1949 aname->should_free = true;
1950 }
1951
1952 aname->ino = (unsigned long)-1;
Jeff Layton78e2e802012-10-10 15:25:22 -04001953 aname->type = type;
Eric Paris5195d8e2012-01-03 14:23:05 -05001954 list_add_tail(&aname->list, &context->names_list);
1955
1956 context->name_count++;
1957#if AUDIT_DEBUG
1958 context->ino_count++;
1959#endif
1960 return aname;
1961}
1962
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001963/**
Jeff Layton7ac86262012-10-10 15:25:28 -04001964 * audit_reusename - fill out filename with info from existing entry
1965 * @uptr: userland ptr to pathname
1966 *
1967 * Search the audit_names list for the current audit context. If there is an
1968 * existing entry with a matching "uptr" then return the filename
1969 * associated with that audit_name. If not, return NULL.
1970 */
1971struct filename *
1972__audit_reusename(const __user char *uptr)
1973{
1974 struct audit_context *context = current->audit_context;
1975 struct audit_names *n;
1976
1977 list_for_each_entry(n, &context->names_list, list) {
1978 if (!n->name)
1979 continue;
1980 if (n->name->uptr == uptr)
1981 return n->name;
1982 }
1983 return NULL;
1984}
1985
1986/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001987 * audit_getname - add a name to the list
1988 * @name: name to add
1989 *
1990 * Add a name to the list of audit names for this context.
1991 * Called from fs/namei.c:getname().
1992 */
Jeff Layton91a27b22012-10-10 15:25:28 -04001993void __audit_getname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994{
1995 struct audit_context *context = current->audit_context;
Eric Paris5195d8e2012-01-03 14:23:05 -05001996 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (!context->in_syscall) {
1999#if AUDIT_DEBUG == 2
2000 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
2001 __FILE__, __LINE__, context->serial, name);
2002 dump_stack();
2003#endif
2004 return;
2005 }
Eric Paris5195d8e2012-01-03 14:23:05 -05002006
Jeff Layton91a27b22012-10-10 15:25:28 -04002007#if AUDIT_DEBUG
2008 /* The filename _must_ have a populated ->name */
2009 BUG_ON(!name->name);
2010#endif
2011
Jeff Layton78e2e802012-10-10 15:25:22 -04002012 n = audit_alloc_name(context, AUDIT_TYPE_UNKNOWN);
Eric Paris5195d8e2012-01-03 14:23:05 -05002013 if (!n)
2014 return;
2015
2016 n->name = name;
2017 n->name_len = AUDIT_NAME_FULL;
2018 n->name_put = true;
Jeff Laytonadb5c242012-10-10 16:43:13 -04002019 name->aname = n;
Eric Paris5195d8e2012-01-03 14:23:05 -05002020
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002021 if (!context->pwd.dentry)
2022 get_fs_pwd(current->fs, &context->pwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
2024
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002025/* audit_putname - intercept a putname request
2026 * @name: name to intercept and delay for putname
2027 *
2028 * If we have stored the name from getname in the audit context,
2029 * then we delay the putname until syscall exit.
2030 * Called from include/linux/fs.h:putname().
2031 */
Jeff Layton91a27b22012-10-10 15:25:28 -04002032void audit_putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
2034 struct audit_context *context = current->audit_context;
2035
2036 BUG_ON(!context);
2037 if (!context->in_syscall) {
2038#if AUDIT_DEBUG == 2
2039 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
2040 __FILE__, __LINE__, context->serial, name);
2041 if (context->name_count) {
Eric Paris5195d8e2012-01-03 14:23:05 -05002042 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 int i;
Eric Paris5195d8e2012-01-03 14:23:05 -05002044
2045 list_for_each_entry(n, &context->names_list, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 printk(KERN_ERR "name[%d] = %p = %s\n", i,
Jeff Layton91a27b22012-10-10 15:25:28 -04002047 n->name, n->name->name ?: "(null)");
Eric Paris5195d8e2012-01-03 14:23:05 -05002048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049#endif
2050 __putname(name);
2051 }
2052#if AUDIT_DEBUG
2053 else {
2054 ++context->put_count;
2055 if (context->put_count > context->name_count) {
2056 printk(KERN_ERR "%s:%d(:%d): major=%d"
2057 " in_syscall=%d putname(%p) name_count=%d"
2058 " put_count=%d\n",
2059 __FILE__, __LINE__,
2060 context->serial, context->major,
Jeff Layton91a27b22012-10-10 15:25:28 -04002061 context->in_syscall, name->name,
2062 context->name_count, context->put_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 dump_stack();
2064 }
2065 }
2066#endif
2067}
2068
Eric Paris851f7ff2008-11-11 21:48:14 +11002069static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
2070{
2071 struct cpu_vfs_cap_data caps;
2072 int rc;
2073
Eric Paris851f7ff2008-11-11 21:48:14 +11002074 if (!dentry)
2075 return 0;
2076
2077 rc = get_vfs_caps_from_disk(dentry, &caps);
2078 if (rc)
2079 return rc;
2080
2081 name->fcap.permitted = caps.permitted;
2082 name->fcap.inheritable = caps.inheritable;
2083 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2084 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2085
2086 return 0;
2087}
2088
2089
Amy Griffis3e2efce2006-07-13 13:16:02 -04002090/* Copy inode data into an audit_names. */
Eric Paris851f7ff2008-11-11 21:48:14 +11002091static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
2092 const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002093{
Amy Griffis3e2efce2006-07-13 13:16:02 -04002094 name->ino = inode->i_ino;
2095 name->dev = inode->i_sb->s_dev;
2096 name->mode = inode->i_mode;
2097 name->uid = inode->i_uid;
2098 name->gid = inode->i_gid;
2099 name->rdev = inode->i_rdev;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002100 security_inode_getsecid(inode, &name->osid);
Eric Paris851f7ff2008-11-11 21:48:14 +11002101 audit_copy_fcaps(name, dentry);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002102}
2103
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002104/**
Jeff Laytonbfcec702012-10-10 15:25:23 -04002105 * __audit_inode - store the inode and device from a lookup
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002106 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07002107 * @dentry: dentry being audited
Jeff Laytonbfcec702012-10-10 15:25:23 -04002108 * @parent: does this dentry represent the parent?
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002109 */
Jeff Laytonadb5c242012-10-10 16:43:13 -04002110void __audit_inode(struct filename *name, const struct dentry *dentry,
Jeff Laytonbfcec702012-10-10 15:25:23 -04002111 unsigned int parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04002114 const struct inode *inode = dentry->d_inode;
Eric Paris5195d8e2012-01-03 14:23:05 -05002115 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 if (!context->in_syscall)
2118 return;
Eric Paris5195d8e2012-01-03 14:23:05 -05002119
Jeff Layton9cec9d62012-10-10 15:25:21 -04002120 if (!name)
2121 goto out_alloc;
2122
Jeff Laytonadb5c242012-10-10 16:43:13 -04002123#if AUDIT_DEBUG
2124 /* The struct filename _must_ have a populated ->name */
2125 BUG_ON(!name->name);
2126#endif
2127 /*
2128 * If we have a pointer to an audit_names entry already, then we can
2129 * just use it directly if the type is correct.
2130 */
2131 n = name->aname;
2132 if (n) {
2133 if (parent) {
2134 if (n->type == AUDIT_TYPE_PARENT ||
2135 n->type == AUDIT_TYPE_UNKNOWN)
2136 goto out;
2137 } else {
2138 if (n->type != AUDIT_TYPE_PARENT)
2139 goto out;
2140 }
2141 }
2142
Eric Paris5195d8e2012-01-03 14:23:05 -05002143 list_for_each_entry_reverse(n, &context->names_list, list) {
Jeff Laytonbfcec702012-10-10 15:25:23 -04002144 /* does the name pointer match? */
Jeff Laytonadb5c242012-10-10 16:43:13 -04002145 if (!n->name || n->name->name != name->name)
Jeff Laytonbfcec702012-10-10 15:25:23 -04002146 continue;
2147
2148 /* match the correct record type */
2149 if (parent) {
2150 if (n->type == AUDIT_TYPE_PARENT ||
2151 n->type == AUDIT_TYPE_UNKNOWN)
2152 goto out;
2153 } else {
2154 if (n->type != AUDIT_TYPE_PARENT)
2155 goto out;
2156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
Eric Paris5195d8e2012-01-03 14:23:05 -05002158
Jeff Layton9cec9d62012-10-10 15:25:21 -04002159out_alloc:
Jeff Laytonbfcec702012-10-10 15:25:23 -04002160 /* unable to find the name from a previous getname(). Allocate a new
2161 * anonymous entry.
2162 */
Jeff Layton78e2e802012-10-10 15:25:22 -04002163 n = audit_alloc_name(context, AUDIT_TYPE_NORMAL);
Eric Paris5195d8e2012-01-03 14:23:05 -05002164 if (!n)
2165 return;
2166out:
Jeff Laytonbfcec702012-10-10 15:25:23 -04002167 if (parent) {
Jeff Layton91a27b22012-10-10 15:25:28 -04002168 n->name_len = n->name ? parent_len(n->name->name) : AUDIT_NAME_FULL;
Jeff Laytonbfcec702012-10-10 15:25:23 -04002169 n->type = AUDIT_TYPE_PARENT;
2170 } else {
2171 n->name_len = AUDIT_NAME_FULL;
2172 n->type = AUDIT_TYPE_NORMAL;
2173 }
Al Viro74c3cbe2007-07-22 08:04:18 -04002174 handle_path(dentry);
Eric Paris5195d8e2012-01-03 14:23:05 -05002175 audit_copy_inode(n, dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
Amy Griffis73241cc2005-11-03 16:00:25 +00002178/**
Jeff Laytonc43a25a2012-10-10 15:25:21 -04002179 * __audit_inode_child - collect inode info for created/removed objects
Amy Griffis73d3ec52006-07-13 13:16:39 -04002180 * @parent: inode of dentry parent
Jeff Laytonc43a25a2012-10-10 15:25:21 -04002181 * @dentry: dentry being audited
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002182 * @type: AUDIT_TYPE_* value that we're looking for
Amy Griffis73241cc2005-11-03 16:00:25 +00002183 *
2184 * For syscalls that create or remove filesystem objects, audit_inode
2185 * can only collect information for the filesystem object's parent.
2186 * This call updates the audit context with the child's information.
2187 * Syscalls that create a new filesystem object must be hooked after
2188 * the object is created. Syscalls that remove a filesystem object
2189 * must be hooked prior, in order to capture the target inode during
2190 * unsuccessful attempts.
2191 */
Jeff Laytonc43a25a2012-10-10 15:25:21 -04002192void __audit_inode_child(const struct inode *parent,
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002193 const struct dentry *dentry,
2194 const unsigned char type)
Amy Griffis73241cc2005-11-03 16:00:25 +00002195{
Amy Griffis73241cc2005-11-03 16:00:25 +00002196 struct audit_context *context = current->audit_context;
Al Viro5a190ae2007-06-07 12:19:32 -04002197 const struct inode *inode = dentry->d_inode;
Al Virocccc6bb2009-12-25 05:07:33 -05002198 const char *dname = dentry->d_name.name;
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002199 struct audit_names *n, *found_parent = NULL, *found_child = NULL;
Amy Griffis73241cc2005-11-03 16:00:25 +00002200
2201 if (!context->in_syscall)
2202 return;
2203
Al Viro74c3cbe2007-07-22 08:04:18 -04002204 if (inode)
2205 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00002206
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002207 /* look for a parent entry first */
Eric Paris5195d8e2012-01-03 14:23:05 -05002208 list_for_each_entry(n, &context->names_list, list) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002209 if (!n->name || n->type != AUDIT_TYPE_PARENT)
Amy Griffis5712e882007-02-13 14:15:22 -05002210 continue;
2211
2212 if (n->ino == parent->i_ino &&
Jeff Layton91a27b22012-10-10 15:25:28 -04002213 !audit_compare_dname_path(dname, n->name->name, n->name_len)) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002214 found_parent = n;
2215 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -04002216 }
Steve Grubbac9910c2006-09-28 14:31:32 -04002217 }
Amy Griffis73241cc2005-11-03 16:00:25 +00002218
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002219 /* is there a matching child entry? */
Eric Paris5195d8e2012-01-03 14:23:05 -05002220 list_for_each_entry(n, &context->names_list, list) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002221 /* can only match entries that have a name */
2222 if (!n->name || n->type != type)
Amy Griffis5712e882007-02-13 14:15:22 -05002223 continue;
2224
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002225 /* if we found a parent, make sure this one is a child of it */
2226 if (found_parent && (n->name != found_parent->name))
2227 continue;
2228
Jeff Layton91a27b22012-10-10 15:25:28 -04002229 if (!strcmp(dname, n->name->name) ||
2230 !audit_compare_dname_path(dname, n->name->name,
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002231 found_parent ?
2232 found_parent->name_len :
Jeff Laytone3d6b072012-10-10 15:25:25 -04002233 AUDIT_NAME_FULL)) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002234 found_child = n;
2235 break;
Steve Grubbac9910c2006-09-28 14:31:32 -04002236 }
Amy Griffis5712e882007-02-13 14:15:22 -05002237 }
2238
Amy Griffis5712e882007-02-13 14:15:22 -05002239 if (!found_parent) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002240 /* create a new, "anonymous" parent record */
2241 n = audit_alloc_name(context, AUDIT_TYPE_PARENT);
Eric Paris5195d8e2012-01-03 14:23:05 -05002242 if (!n)
Amy Griffis5712e882007-02-13 14:15:22 -05002243 return;
Eric Paris5195d8e2012-01-03 14:23:05 -05002244 audit_copy_inode(n, NULL, parent);
Amy Griffis73d3ec52006-07-13 13:16:39 -04002245 }
Amy Griffis5712e882007-02-13 14:15:22 -05002246
2247 if (!found_child) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002248 found_child = audit_alloc_name(context, type);
2249 if (!found_child)
Amy Griffis5712e882007-02-13 14:15:22 -05002250 return;
Amy Griffis5712e882007-02-13 14:15:22 -05002251
2252 /* Re-use the name belonging to the slot for a matching parent
2253 * directory. All names for this context are relinquished in
2254 * audit_free_names() */
2255 if (found_parent) {
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002256 found_child->name = found_parent->name;
2257 found_child->name_len = AUDIT_NAME_FULL;
Amy Griffis5712e882007-02-13 14:15:22 -05002258 /* don't call __putname() */
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002259 found_child->name_put = false;
Amy Griffis5712e882007-02-13 14:15:22 -05002260 }
Amy Griffis5712e882007-02-13 14:15:22 -05002261 }
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002262 if (inode)
2263 audit_copy_inode(found_child, dentry, inode);
2264 else
2265 found_child->ino = (unsigned long)-1;
Amy Griffis3e2efce2006-07-13 13:16:02 -04002266}
Trond Myklebust50e437d2007-06-07 22:44:34 -04002267EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04002268
2269/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002270 * auditsc_get_stamp - get local copies of audit_context values
2271 * @ctx: audit_context for the task
2272 * @t: timespec to store time recorded in the audit_context
2273 * @serial: serial value that is recorded in the audit_context
2274 *
2275 * Also sets the context as auditable.
2276 */
Al Viro48887e62008-12-06 01:05:50 -05002277int auditsc_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01002278 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Al Viro48887e62008-12-06 01:05:50 -05002280 if (!ctx->in_syscall)
2281 return 0;
David Woodhousece625a82005-07-18 14:24:46 -04002282 if (!ctx->serial)
2283 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01002284 t->tv_sec = ctx->ctime.tv_sec;
2285 t->tv_nsec = ctx->ctime.tv_nsec;
2286 *serial = ctx->serial;
Al Viro0590b932008-12-14 23:45:27 -05002287 if (!ctx->prio) {
2288 ctx->prio = 1;
2289 ctx->current_state = AUDIT_RECORD_CONTEXT;
2290 }
Al Viro48887e62008-12-06 01:05:50 -05002291 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292}
2293
Eric Paris4746ec52008-01-08 10:06:53 -05002294/* global counter which is incremented every time something logs in */
2295static atomic_t session_id = ATOMIC_INIT(0);
2296
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002297/**
Eric Paris0a300be2012-01-03 14:23:08 -05002298 * audit_set_loginuid - set current task's audit_context loginuid
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002299 * @loginuid: loginuid value
2300 *
2301 * Returns 0.
2302 *
2303 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2304 */
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002305int audit_set_loginuid(kuid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
Eric Paris0a300be2012-01-03 14:23:08 -05002307 struct task_struct *task = current;
Steve Grubb41757102006-06-12 07:48:28 -04002308 struct audit_context *context = task->audit_context;
Eric Paris633b4542012-01-03 14:23:08 -05002309 unsigned int sessionid;
Steve Grubbc0404992005-05-13 18:17:42 +01002310
Eric Paris633b4542012-01-03 14:23:08 -05002311#ifdef CONFIG_AUDIT_LOGINUID_IMMUTABLE
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002312 if (uid_valid(task->loginuid))
Eric Paris633b4542012-01-03 14:23:08 -05002313 return -EPERM;
2314#else /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
2315 if (!capable(CAP_AUDIT_CONTROL))
2316 return -EPERM;
2317#endif /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
2318
2319 sessionid = atomic_inc_return(&session_id);
Al Virobfef93a2008-01-10 04:53:18 -05002320 if (context && context->in_syscall) {
2321 struct audit_buffer *ab;
Steve Grubb41757102006-06-12 07:48:28 -04002322
Al Virobfef93a2008-01-10 04:53:18 -05002323 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2324 if (ab) {
2325 audit_log_format(ab, "login pid=%d uid=%u "
Eric Paris4746ec52008-01-08 10:06:53 -05002326 "old auid=%u new auid=%u"
2327 " old ses=%u new ses=%u",
Eric W. Biedermancca080d2012-02-07 16:53:48 -08002328 task->pid,
2329 from_kuid(&init_user_ns, task_uid(task)),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002330 from_kuid(&init_user_ns, task->loginuid),
2331 from_kuid(&init_user_ns, loginuid),
Eric Paris4746ec52008-01-08 10:06:53 -05002332 task->sessionid, sessionid);
Al Virobfef93a2008-01-10 04:53:18 -05002333 audit_log_end(ab);
Steve Grubbc0404992005-05-13 18:17:42 +01002334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
Eric Paris4746ec52008-01-08 10:06:53 -05002336 task->sessionid = sessionid;
Al Virobfef93a2008-01-10 04:53:18 -05002337 task->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return 0;
2339}
2340
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002341/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05002342 * __audit_mq_open - record audit data for a POSIX MQ open
2343 * @oflag: open flag
2344 * @mode: mode bits
Randy Dunlap6b962552009-01-05 13:41:13 -08002345 * @attr: queue attributes
George C. Wilson20ca73b2006-05-24 16:09:55 -05002346 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002347 */
Al Virodf0a4282011-07-26 05:26:10 -04002348void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002349{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002350 struct audit_context *context = current->audit_context;
2351
Al Viro564f6992008-12-14 04:02:26 -05002352 if (attr)
2353 memcpy(&context->mq_open.attr, attr, sizeof(struct mq_attr));
2354 else
2355 memset(&context->mq_open.attr, 0, sizeof(struct mq_attr));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002356
Al Viro564f6992008-12-14 04:02:26 -05002357 context->mq_open.oflag = oflag;
2358 context->mq_open.mode = mode;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002359
Al Viro564f6992008-12-14 04:02:26 -05002360 context->type = AUDIT_MQ_OPEN;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002361}
2362
2363/**
Al Viroc32c8af2008-12-14 03:46:48 -05002364 * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
George C. Wilson20ca73b2006-05-24 16:09:55 -05002365 * @mqdes: MQ descriptor
2366 * @msg_len: Message length
2367 * @msg_prio: Message priority
Al Viroc32c8af2008-12-14 03:46:48 -05002368 * @abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002369 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002370 */
Al Viroc32c8af2008-12-14 03:46:48 -05002371void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2372 const struct timespec *abs_timeout)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002373{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002374 struct audit_context *context = current->audit_context;
Al Viroc32c8af2008-12-14 03:46:48 -05002375 struct timespec *p = &context->mq_sendrecv.abs_timeout;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002376
Al Viroc32c8af2008-12-14 03:46:48 -05002377 if (abs_timeout)
2378 memcpy(p, abs_timeout, sizeof(struct timespec));
2379 else
2380 memset(p, 0, sizeof(struct timespec));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002381
Al Viroc32c8af2008-12-14 03:46:48 -05002382 context->mq_sendrecv.mqdes = mqdes;
2383 context->mq_sendrecv.msg_len = msg_len;
2384 context->mq_sendrecv.msg_prio = msg_prio;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002385
Al Viroc32c8af2008-12-14 03:46:48 -05002386 context->type = AUDIT_MQ_SENDRECV;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002387}
2388
2389/**
2390 * __audit_mq_notify - record audit data for a POSIX MQ notify
2391 * @mqdes: MQ descriptor
Randy Dunlap6b962552009-01-05 13:41:13 -08002392 * @notification: Notification event
George C. Wilson20ca73b2006-05-24 16:09:55 -05002393 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002394 */
2395
Al Viro20114f72008-12-10 07:16:12 -05002396void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002397{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002398 struct audit_context *context = current->audit_context;
2399
Al Viro20114f72008-12-10 07:16:12 -05002400 if (notification)
2401 context->mq_notify.sigev_signo = notification->sigev_signo;
2402 else
2403 context->mq_notify.sigev_signo = 0;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002404
Al Viro20114f72008-12-10 07:16:12 -05002405 context->mq_notify.mqdes = mqdes;
2406 context->type = AUDIT_MQ_NOTIFY;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002407}
2408
2409/**
2410 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2411 * @mqdes: MQ descriptor
2412 * @mqstat: MQ flags
2413 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002414 */
Al Viro73929062008-12-10 06:58:59 -05002415void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002416{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002417 struct audit_context *context = current->audit_context;
Al Viro73929062008-12-10 06:58:59 -05002418 context->mq_getsetattr.mqdes = mqdes;
2419 context->mq_getsetattr.mqstat = *mqstat;
2420 context->type = AUDIT_MQ_GETSETATTR;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002421}
2422
2423/**
Steve Grubb073115d2006-04-02 17:07:33 -04002424 * audit_ipc_obj - record audit data for ipc object
2425 * @ipcp: ipc permissions
2426 *
Steve Grubb073115d2006-04-02 17:07:33 -04002427 */
Al Viroa33e6752008-12-10 03:40:06 -05002428void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002429{
Steve Grubb073115d2006-04-02 17:07:33 -04002430 struct audit_context *context = current->audit_context;
Al Viroa33e6752008-12-10 03:40:06 -05002431 context->ipc.uid = ipcp->uid;
2432 context->ipc.gid = ipcp->gid;
2433 context->ipc.mode = ipcp->mode;
Al Viroe816f372008-12-10 03:47:15 -05002434 context->ipc.has_perm = 0;
Al Viroa33e6752008-12-10 03:40:06 -05002435 security_ipc_getsecid(ipcp, &context->ipc.osid);
2436 context->type = AUDIT_IPC;
Steve Grubb073115d2006-04-02 17:07:33 -04002437}
2438
2439/**
2440 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002441 * @qbytes: msgq bytes
2442 * @uid: msgq user id
2443 * @gid: msgq group id
2444 * @mode: msgq mode (permissions)
2445 *
Al Viroe816f372008-12-10 03:47:15 -05002446 * Called only after audit_ipc_obj().
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002447 */
Al Viro2570ebb2011-07-27 14:03:22 -04002448void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 struct audit_context *context = current->audit_context;
2451
Al Viroe816f372008-12-10 03:47:15 -05002452 context->ipc.qbytes = qbytes;
2453 context->ipc.perm_uid = uid;
2454 context->ipc.perm_gid = gid;
2455 context->ipc.perm_mode = mode;
2456 context->ipc.has_perm = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002458
Eric Paris07c49412012-01-03 14:23:07 -05002459int __audit_bprm(struct linux_binprm *bprm)
Al Viro473ae302006-04-26 14:04:08 -04002460{
2461 struct audit_aux_data_execve *ax;
2462 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002463
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002464 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002465 if (!ax)
2466 return -ENOMEM;
2467
2468 ax->argc = bprm->argc;
2469 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002470 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002471 ax->d.type = AUDIT_EXECVE;
2472 ax->d.next = context->aux;
2473 context->aux = (void *)ax;
2474 return 0;
2475}
2476
2477
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002478/**
2479 * audit_socketcall - record audit data for sys_socketcall
2480 * @nargs: number of args
2481 * @args: args array
2482 *
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002483 */
Eric Paris07c49412012-01-03 14:23:07 -05002484void __audit_socketcall(int nargs, unsigned long *args)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002485{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002486 struct audit_context *context = current->audit_context;
2487
Al Virof3298dc2008-12-10 03:16:51 -05002488 context->type = AUDIT_SOCKETCALL;
2489 context->socketcall.nargs = nargs;
2490 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002491}
2492
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002493/**
Al Virodb349502007-02-07 01:48:00 -05002494 * __audit_fd_pair - record audit data for pipe and socketpair
2495 * @fd1: the first file descriptor
2496 * @fd2: the second file descriptor
2497 *
Al Virodb349502007-02-07 01:48:00 -05002498 */
Al Viro157cf642008-12-14 04:57:47 -05002499void __audit_fd_pair(int fd1, int fd2)
Al Virodb349502007-02-07 01:48:00 -05002500{
2501 struct audit_context *context = current->audit_context;
Al Viro157cf642008-12-14 04:57:47 -05002502 context->fds[0] = fd1;
2503 context->fds[1] = fd2;
Al Virodb349502007-02-07 01:48:00 -05002504}
2505
2506/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002507 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2508 * @len: data length in user space
2509 * @a: data address in kernel space
2510 *
2511 * Returns 0 for success or NULL context or < 0 on error.
2512 */
Eric Paris07c49412012-01-03 14:23:07 -05002513int __audit_sockaddr(int len, void *a)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002514{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002515 struct audit_context *context = current->audit_context;
2516
Al Viro4f6b4342008-12-09 19:50:34 -05002517 if (!context->sockaddr) {
2518 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2519 if (!p)
2520 return -ENOMEM;
2521 context->sockaddr = p;
2522 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002523
Al Viro4f6b4342008-12-09 19:50:34 -05002524 context->sockaddr_len = len;
2525 memcpy(context->sockaddr, a, len);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002526 return 0;
2527}
2528
Al Viroa5cb0132007-03-20 13:58:35 -04002529void __audit_ptrace(struct task_struct *t)
2530{
2531 struct audit_context *context = current->audit_context;
2532
2533 context->target_pid = t->pid;
Eric Parisc2a77802008-01-07 13:40:17 -05002534 context->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002535 context->target_uid = task_uid(t);
Eric Paris4746ec52008-01-08 10:06:53 -05002536 context->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002537 security_task_getsecid(t, &context->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002538 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
Al Viroa5cb0132007-03-20 13:58:35 -04002539}
2540
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002541/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002542 * audit_signal_info - record signal info for shutting down audit subsystem
2543 * @sig: signal value
2544 * @t: task being signaled
2545 *
2546 * If the audit subsystem is being terminated, record the task (pid)
2547 * and uid that is doing that.
2548 */
Amy Griffise54dc242007-03-29 18:01:04 -04002549int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002550{
Amy Griffise54dc242007-03-29 18:01:04 -04002551 struct audit_aux_data_pids *axp;
2552 struct task_struct *tsk = current;
2553 struct audit_context *ctx = tsk->audit_context;
Eric W. Biedermancca080d2012-02-07 16:53:48 -08002554 kuid_t uid = current_uid(), t_uid = task_uid(t);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002555
Al Viro175fc482007-08-08 00:01:46 +01002556 if (audit_pid && t->tgid == audit_pid) {
Eric Parisee1d3152008-07-07 10:49:45 -04002557 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
Al Viro175fc482007-08-08 00:01:46 +01002558 audit_sig_pid = tsk->pid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002559 if (uid_valid(tsk->loginuid))
Al Virobfef93a2008-01-10 04:53:18 -05002560 audit_sig_uid = tsk->loginuid;
Al Viro175fc482007-08-08 00:01:46 +01002561 else
David Howellsc69e8d92008-11-14 10:39:19 +11002562 audit_sig_uid = uid;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002563 security_task_getsecid(tsk, &audit_sig_sid);
Al Viro175fc482007-08-08 00:01:46 +01002564 }
2565 if (!audit_signals || audit_dummy_context())
2566 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002567 }
Amy Griffise54dc242007-03-29 18:01:04 -04002568
Amy Griffise54dc242007-03-29 18:01:04 -04002569 /* optimize the common case by putting first signal recipient directly
2570 * in audit_context */
2571 if (!ctx->target_pid) {
2572 ctx->target_pid = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002573 ctx->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002574 ctx->target_uid = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002575 ctx->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002576 security_task_getsecid(t, &ctx->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002577 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002578 return 0;
2579 }
2580
2581 axp = (void *)ctx->aux_pids;
2582 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2583 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2584 if (!axp)
2585 return -ENOMEM;
2586
2587 axp->d.type = AUDIT_OBJ_PID;
2588 axp->d.next = ctx->aux_pids;
2589 ctx->aux_pids = (void *)axp;
2590 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002591 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002592
2593 axp->target_pid[axp->pid_count] = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002594 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002595 axp->target_uid[axp->pid_count] = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002596 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002597 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
Eric Parisc2a77802008-01-07 13:40:17 -05002598 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002599 axp->pid_count++;
2600
2601 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002602}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002603
2604/**
Eric Paris3fc689e2008-11-11 21:48:18 +11002605 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
David Howellsd84f4f92008-11-14 10:39:23 +11002606 * @bprm: pointer to the bprm being processed
2607 * @new: the proposed new credentials
2608 * @old: the old credentials
Eric Paris3fc689e2008-11-11 21:48:18 +11002609 *
2610 * Simply check if the proc already has the caps given by the file and if not
2611 * store the priv escalation info for later auditing at the end of the syscall
2612 *
Eric Paris3fc689e2008-11-11 21:48:18 +11002613 * -Eric
2614 */
David Howellsd84f4f92008-11-14 10:39:23 +11002615int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2616 const struct cred *new, const struct cred *old)
Eric Paris3fc689e2008-11-11 21:48:18 +11002617{
2618 struct audit_aux_data_bprm_fcaps *ax;
2619 struct audit_context *context = current->audit_context;
2620 struct cpu_vfs_cap_data vcaps;
2621 struct dentry *dentry;
2622
2623 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2624 if (!ax)
David Howellsd84f4f92008-11-14 10:39:23 +11002625 return -ENOMEM;
Eric Paris3fc689e2008-11-11 21:48:18 +11002626
2627 ax->d.type = AUDIT_BPRM_FCAPS;
2628 ax->d.next = context->aux;
2629 context->aux = (void *)ax;
2630
2631 dentry = dget(bprm->file->f_dentry);
2632 get_vfs_caps_from_disk(dentry, &vcaps);
2633 dput(dentry);
2634
2635 ax->fcap.permitted = vcaps.permitted;
2636 ax->fcap.inheritable = vcaps.inheritable;
2637 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2638 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2639
David Howellsd84f4f92008-11-14 10:39:23 +11002640 ax->old_pcap.permitted = old->cap_permitted;
2641 ax->old_pcap.inheritable = old->cap_inheritable;
2642 ax->old_pcap.effective = old->cap_effective;
Eric Paris3fc689e2008-11-11 21:48:18 +11002643
David Howellsd84f4f92008-11-14 10:39:23 +11002644 ax->new_pcap.permitted = new->cap_permitted;
2645 ax->new_pcap.inheritable = new->cap_inheritable;
2646 ax->new_pcap.effective = new->cap_effective;
2647 return 0;
Eric Paris3fc689e2008-11-11 21:48:18 +11002648}
2649
2650/**
Eric Parise68b75a02008-11-11 21:48:22 +11002651 * __audit_log_capset - store information about the arguments to the capset syscall
David Howellsd84f4f92008-11-14 10:39:23 +11002652 * @pid: target pid of the capset call
2653 * @new: the new credentials
2654 * @old: the old (current) credentials
Eric Parise68b75a02008-11-11 21:48:22 +11002655 *
2656 * Record the aguments userspace sent to sys_capset for later printing by the
2657 * audit system if applicable
2658 */
Al Viro57f71a02009-01-04 14:52:57 -05002659void __audit_log_capset(pid_t pid,
David Howellsd84f4f92008-11-14 10:39:23 +11002660 const struct cred *new, const struct cred *old)
Eric Parise68b75a02008-11-11 21:48:22 +11002661{
Eric Parise68b75a02008-11-11 21:48:22 +11002662 struct audit_context *context = current->audit_context;
Al Viro57f71a02009-01-04 14:52:57 -05002663 context->capset.pid = pid;
2664 context->capset.cap.effective = new->cap_effective;
2665 context->capset.cap.inheritable = new->cap_effective;
2666 context->capset.cap.permitted = new->cap_permitted;
2667 context->type = AUDIT_CAPSET;
Eric Parise68b75a02008-11-11 21:48:22 +11002668}
2669
Al Viro120a7952010-10-30 02:54:44 -04002670void __audit_mmap_fd(int fd, int flags)
2671{
2672 struct audit_context *context = current->audit_context;
2673 context->mmap.fd = fd;
2674 context->mmap.flags = flags;
2675 context->type = AUDIT_MMAP;
2676}
2677
Eric Paris85e7bac2012-01-03 14:23:05 -05002678static void audit_log_abend(struct audit_buffer *ab, char *reason, long signr)
2679{
Eric W. Biedermancca080d2012-02-07 16:53:48 -08002680 kuid_t auid, uid;
2681 kgid_t gid;
Eric Paris85e7bac2012-01-03 14:23:05 -05002682 unsigned int sessionid;
2683
2684 auid = audit_get_loginuid(current);
2685 sessionid = audit_get_sessionid(current);
2686 current_uid_gid(&uid, &gid);
2687
2688 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
Eric W. Biedermancca080d2012-02-07 16:53:48 -08002689 from_kuid(&init_user_ns, auid),
2690 from_kuid(&init_user_ns, uid),
2691 from_kgid(&init_user_ns, gid),
2692 sessionid);
Eric Paris85e7bac2012-01-03 14:23:05 -05002693 audit_log_task_context(ab);
2694 audit_log_format(ab, " pid=%d comm=", current->pid);
2695 audit_log_untrustedstring(ab, current->comm);
2696 audit_log_format(ab, " reason=");
2697 audit_log_string(ab, reason);
2698 audit_log_format(ab, " sig=%ld", signr);
2699}
Eric Parise68b75a02008-11-11 21:48:22 +11002700/**
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002701 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002702 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002703 *
2704 * If a process ends with a core dump, something fishy is going on and we
2705 * should record the event for investigation.
2706 */
2707void audit_core_dumps(long signr)
2708{
2709 struct audit_buffer *ab;
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002710
2711 if (!audit_enabled)
2712 return;
2713
2714 if (signr == SIGQUIT) /* don't care for those */
2715 return;
2716
2717 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
Eric Paris85e7bac2012-01-03 14:23:05 -05002718 audit_log_abend(ab, "memory violation", signr);
2719 audit_log_end(ab);
2720}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002721
Kees Cook3dc1c1b2012-04-12 16:47:58 -05002722void __audit_seccomp(unsigned long syscall, long signr, int code)
Eric Paris85e7bac2012-01-03 14:23:05 -05002723{
2724 struct audit_buffer *ab;
2725
2726 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
Kees Cook3dc1c1b2012-04-12 16:47:58 -05002727 audit_log_abend(ab, "seccomp", signr);
Eric Paris85e7bac2012-01-03 14:23:05 -05002728 audit_log_format(ab, " syscall=%ld", syscall);
Kees Cook3dc1c1b2012-04-12 16:47:58 -05002729 audit_log_format(ab, " compat=%d", is_compat_task());
2730 audit_log_format(ab, " ip=0x%lx", KSTK_EIP(current));
2731 audit_log_format(ab, " code=0x%x", code);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002732 audit_log_end(ab);
2733}
Al Viro916d7572009-06-24 00:02:38 -04002734
2735struct list_head *audit_killed_trees(void)
2736{
2737 struct audit_context *ctx = current->audit_context;
2738 if (likely(!ctx || !ctx->in_syscall))
2739 return NULL;
2740 return &ctx->killed_trees;
2741}