blob: b8cee462b99e81b8a8b7cf306dd84b779527208a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David Woodhousefe7752b2005-12-15 18:33:52 +000071#include "audit.h"
72
Eric Parisd7e75282012-01-03 14:23:06 -050073/* flags stating the success for a syscall */
74#define AUDITSC_INVALID 0
75#define AUDITSC_SUCCESS 1
76#define AUDITSC_FAILURE 2
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* AUDIT_NAMES is the number of slots we reserve in the audit_context
Eric Paris5195d8e2012-01-03 14:23:05 -050079 * for saving names from getname(). If we get more names we will allocate
80 * a name dynamically and also add those to the list anchored by names_list. */
81#define AUDIT_NAMES 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Amy Griffis9c937dc2006-06-08 23:19:31 -040083/* Indicates that audit should log the full pathname. */
84#define AUDIT_NAME_FULL -1
85
Eric Parisde6bbd12008-01-07 14:31:58 -050086/* no execve audit message should be longer than this (userspace limits) */
87#define MAX_EXECVE_AUDIT_LEN 7500
88
Al Viro471a5c72006-07-10 08:29:24 -040089/* number of audit rules */
90int audit_n_rules;
91
Amy Griffise54dc242007-03-29 18:01:04 -040092/* determines whether we collect data for signals sent */
93int audit_signals;
94
Eric Paris851f7ff2008-11-11 21:48:14 +110095struct audit_cap_data {
96 kernel_cap_t permitted;
97 kernel_cap_t inheritable;
98 union {
99 unsigned int fE; /* effective bit of a file capability */
100 kernel_cap_t effective; /* effective set of a process */
101 };
102};
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* When fs/namei.c:getname() is called, we store the pointer in name and
105 * we don't let putname() free it (instead we free all of the saved
106 * pointers at syscall exit time).
107 *
108 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
109struct audit_names {
Eric Paris5195d8e2012-01-03 14:23:05 -0500110 struct list_head list; /* audit_context->names_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 const char *name;
112 unsigned long ino;
113 dev_t dev;
114 umode_t mode;
115 uid_t uid;
116 gid_t gid;
117 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400118 u32 osid;
Eric Paris851f7ff2008-11-11 21:48:14 +1100119 struct audit_cap_data fcap;
120 unsigned int fcap_ver;
Eric Paris5195d8e2012-01-03 14:23:05 -0500121 int name_len; /* number of name's characters to log */
122 bool name_put; /* call __putname() for this name */
123 /*
124 * This was an allocated audit_names and not from the array of
125 * names allocated in the task audit context. Thus this name
126 * should be freed on syscall exit
127 */
128 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 Parisc2a77802008-01-07 13:40:17 -0500151 uid_t target_auid[AUDIT_AUX_PIDS];
152 uid_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_context *previous; /* For nested syscalls */
204 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400205 struct audit_aux_data *aux_pids;
Al Viro4f6b4342008-12-09 19:50:34 -0500206 struct sockaddr_storage *sockaddr;
207 size_t sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400209 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 uid_t uid, euid, suid, fsuid;
211 gid_t gid, egid, sgid, fsgid;
212 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100213 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Al Viroa5cb0132007-03-20 13:58:35 -0400215 pid_t target_pid;
Eric Parisc2a77802008-01-07 13:40:17 -0500216 uid_t target_auid;
217 uid_t target_uid;
Eric Paris4746ec52008-01-08 10:06:53 -0500218 unsigned int target_sessionid;
Al Viroa5cb0132007-03-20 13:58:35 -0400219 u32 target_sid;
Eric Parisc2a77802008-01-07 13:40:17 -0500220 char target_comm[TASK_COMM_LEN];
Al Viroa5cb0132007-03-20 13:58:35 -0400221
Al Viro74c3cbe2007-07-22 08:04:18 -0400222 struct audit_tree_refs *trees, *first_trees;
Al Viro916d7572009-06-24 00:02:38 -0400223 struct list_head killed_trees;
Eric Paris44e51a12009-08-07 16:54:29 -0400224 int tree_count;
Al Viro74c3cbe2007-07-22 08:04:18 -0400225
Al Virof3298dc2008-12-10 03:16:51 -0500226 int type;
227 union {
228 struct {
229 int nargs;
230 long args[6];
231 } socketcall;
Al Viroa33e6752008-12-10 03:40:06 -0500232 struct {
233 uid_t uid;
234 gid_t gid;
Al Viro2570ebb2011-07-27 14:03:22 -0400235 umode_t mode;
Al Viroa33e6752008-12-10 03:40:06 -0500236 u32 osid;
Al Viroe816f372008-12-10 03:47:15 -0500237 int has_perm;
238 uid_t perm_uid;
239 gid_t perm_gid;
Al Viro2570ebb2011-07-27 14:03:22 -0400240 umode_t perm_mode;
Al Viroe816f372008-12-10 03:47:15 -0500241 unsigned long qbytes;
Al Viroa33e6752008-12-10 03:40:06 -0500242 } ipc;
Al Viro73929062008-12-10 06:58:59 -0500243 struct {
244 mqd_t mqdes;
245 struct mq_attr mqstat;
246 } mq_getsetattr;
Al Viro20114f72008-12-10 07:16:12 -0500247 struct {
248 mqd_t mqdes;
249 int sigev_signo;
250 } mq_notify;
Al Viroc32c8af2008-12-14 03:46:48 -0500251 struct {
252 mqd_t mqdes;
253 size_t msg_len;
254 unsigned int msg_prio;
255 struct timespec abs_timeout;
256 } mq_sendrecv;
Al Viro564f6992008-12-14 04:02:26 -0500257 struct {
258 int oflag;
Al Virodf0a4282011-07-26 05:26:10 -0400259 umode_t mode;
Al Viro564f6992008-12-14 04:02:26 -0500260 struct mq_attr attr;
261 } mq_open;
Al Viro57f71a02009-01-04 14:52:57 -0500262 struct {
263 pid_t pid;
264 struct audit_cap_data cap;
265 } capset;
Al Viro120a7952010-10-30 02:54:44 -0400266 struct {
267 int fd;
268 int flags;
269 } mmap;
Al Virof3298dc2008-12-10 03:16:51 -0500270 };
Al Viro157cf642008-12-14 04:57:47 -0500271 int fds[2];
Al Virof3298dc2008-12-10 03:16:51 -0500272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#if AUDIT_DEBUG
274 int put_count;
275 int ino_count;
276#endif
277};
278
Al Viro55669bf2006-08-31 19:26:40 -0400279static inline int open_arg(int flags, int mask)
280{
281 int n = ACC_MODE(flags);
282 if (flags & (O_TRUNC | O_CREAT))
283 n |= AUDIT_PERM_WRITE;
284 return n & mask;
285}
286
287static int audit_match_perm(struct audit_context *ctx, int mask)
288{
Cordeliac4bacef2008-08-18 09:45:51 -0700289 unsigned n;
zhangxiliang1a61c882008-08-02 10:56:37 +0800290 if (unlikely(!ctx))
291 return 0;
Cordeliac4bacef2008-08-18 09:45:51 -0700292 n = ctx->major;
Alan Coxdbda4c02008-10-13 10:40:53 +0100293
Al Viro55669bf2006-08-31 19:26:40 -0400294 switch (audit_classify_syscall(ctx->arch, n)) {
295 case 0: /* native */
296 if ((mask & AUDIT_PERM_WRITE) &&
297 audit_match_class(AUDIT_CLASS_WRITE, n))
298 return 1;
299 if ((mask & AUDIT_PERM_READ) &&
300 audit_match_class(AUDIT_CLASS_READ, n))
301 return 1;
302 if ((mask & AUDIT_PERM_ATTR) &&
303 audit_match_class(AUDIT_CLASS_CHATTR, n))
304 return 1;
305 return 0;
306 case 1: /* 32bit on biarch */
307 if ((mask & AUDIT_PERM_WRITE) &&
308 audit_match_class(AUDIT_CLASS_WRITE_32, n))
309 return 1;
310 if ((mask & AUDIT_PERM_READ) &&
311 audit_match_class(AUDIT_CLASS_READ_32, n))
312 return 1;
313 if ((mask & AUDIT_PERM_ATTR) &&
314 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
315 return 1;
316 return 0;
317 case 2: /* open */
318 return mask & ACC_MODE(ctx->argv[1]);
319 case 3: /* openat */
320 return mask & ACC_MODE(ctx->argv[2]);
321 case 4: /* socketcall */
322 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
323 case 5: /* execve */
324 return mask & AUDIT_PERM_EXEC;
325 default:
326 return 0;
327 }
328}
329
Eric Paris5ef30ee2012-01-03 14:23:05 -0500330static int audit_match_filetype(struct audit_context *ctx, int val)
Al Viro8b67dca2008-04-28 04:15:49 -0400331{
Eric Paris5195d8e2012-01-03 14:23:05 -0500332 struct audit_names *n;
Eric Paris5ef30ee2012-01-03 14:23:05 -0500333 umode_t mode = (umode_t)val;
zhangxiliang1a61c882008-08-02 10:56:37 +0800334
335 if (unlikely(!ctx))
336 return 0;
337
Eric Paris5195d8e2012-01-03 14:23:05 -0500338 list_for_each_entry(n, &ctx->names_list, list) {
339 if ((n->ino != -1) &&
340 ((n->mode & S_IFMT) == mode))
Eric Paris5ef30ee2012-01-03 14:23:05 -0500341 return 1;
342 }
Eric Paris5195d8e2012-01-03 14:23:05 -0500343
Eric Paris5ef30ee2012-01-03 14:23:05 -0500344 return 0;
Al Viro8b67dca2008-04-28 04:15:49 -0400345}
346
Al Viro74c3cbe2007-07-22 08:04:18 -0400347/*
348 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
349 * ->first_trees points to its beginning, ->trees - to the current end of data.
350 * ->tree_count is the number of free entries in array pointed to by ->trees.
351 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
352 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
353 * it's going to remain 1-element for almost any setup) until we free context itself.
354 * References in it _are_ dropped - at the same time we free/drop aux stuff.
355 */
356
357#ifdef CONFIG_AUDIT_TREE
Eric Paris679173b2009-01-26 18:09:45 -0500358static void audit_set_auditable(struct audit_context *ctx)
359{
360 if (!ctx->prio) {
361 ctx->prio = 1;
362 ctx->current_state = AUDIT_RECORD_CONTEXT;
363 }
364}
365
Al Viro74c3cbe2007-07-22 08:04:18 -0400366static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
367{
368 struct audit_tree_refs *p = ctx->trees;
369 int left = ctx->tree_count;
370 if (likely(left)) {
371 p->c[--left] = chunk;
372 ctx->tree_count = left;
373 return 1;
374 }
375 if (!p)
376 return 0;
377 p = p->next;
378 if (p) {
379 p->c[30] = chunk;
380 ctx->trees = p;
381 ctx->tree_count = 30;
382 return 1;
383 }
384 return 0;
385}
386
387static int grow_tree_refs(struct audit_context *ctx)
388{
389 struct audit_tree_refs *p = ctx->trees;
390 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
391 if (!ctx->trees) {
392 ctx->trees = p;
393 return 0;
394 }
395 if (p)
396 p->next = ctx->trees;
397 else
398 ctx->first_trees = ctx->trees;
399 ctx->tree_count = 31;
400 return 1;
401}
402#endif
403
404static void unroll_tree_refs(struct audit_context *ctx,
405 struct audit_tree_refs *p, int count)
406{
407#ifdef CONFIG_AUDIT_TREE
408 struct audit_tree_refs *q;
409 int n;
410 if (!p) {
411 /* we started with empty chain */
412 p = ctx->first_trees;
413 count = 31;
414 /* if the very first allocation has failed, nothing to do */
415 if (!p)
416 return;
417 }
418 n = count;
419 for (q = p; q != ctx->trees; q = q->next, n = 31) {
420 while (n--) {
421 audit_put_chunk(q->c[n]);
422 q->c[n] = NULL;
423 }
424 }
425 while (n-- > ctx->tree_count) {
426 audit_put_chunk(q->c[n]);
427 q->c[n] = NULL;
428 }
429 ctx->trees = p;
430 ctx->tree_count = count;
431#endif
432}
433
434static void free_tree_refs(struct audit_context *ctx)
435{
436 struct audit_tree_refs *p, *q;
437 for (p = ctx->first_trees; p; p = q) {
438 q = p->next;
439 kfree(p);
440 }
441}
442
443static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
444{
445#ifdef CONFIG_AUDIT_TREE
446 struct audit_tree_refs *p;
447 int n;
448 if (!tree)
449 return 0;
450 /* full ones */
451 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
452 for (n = 0; n < 31; n++)
453 if (audit_tree_match(p->c[n], tree))
454 return 1;
455 }
456 /* partial */
457 if (p) {
458 for (n = ctx->tree_count; n < 31; n++)
459 if (audit_tree_match(p->c[n], tree))
460 return 1;
461 }
462#endif
463 return 0;
464}
465
Eric Parisb34b0392012-01-03 14:23:08 -0500466static int audit_compare_id(uid_t uid1,
467 struct audit_names *name,
468 unsigned long name_offset,
469 struct audit_field *f,
470 struct audit_context *ctx)
471{
472 struct audit_names *n;
473 unsigned long addr;
474 uid_t uid2;
475 int rc;
476
Eric Parisc9fe6852012-01-03 14:23:08 -0500477 BUILD_BUG_ON(sizeof(uid_t) != sizeof(gid_t));
478
Eric Parisb34b0392012-01-03 14:23:08 -0500479 if (name) {
480 addr = (unsigned long)name;
481 addr += name_offset;
482
483 uid2 = *(uid_t *)addr;
484 rc = audit_comparator(uid1, f->op, uid2);
485 if (rc)
486 return rc;
487 }
488
489 if (ctx) {
490 list_for_each_entry(n, &ctx->names_list, list) {
491 addr = (unsigned long)n;
492 addr += name_offset;
493
494 uid2 = *(uid_t *)addr;
495
496 rc = audit_comparator(uid1, f->op, uid2);
497 if (rc)
498 return rc;
499 }
500 }
501 return 0;
502}
503
Eric Paris02d86a52012-01-03 14:23:08 -0500504static int audit_field_compare(struct task_struct *tsk,
505 const struct cred *cred,
506 struct audit_field *f,
507 struct audit_context *ctx,
508 struct audit_names *name)
509{
Eric Paris02d86a52012-01-03 14:23:08 -0500510 switch (f->val) {
Peter Moody4a6633e2011-12-13 16:17:51 -0800511 /* process to file object comparisons */
Eric Paris02d86a52012-01-03 14:23:08 -0500512 case AUDIT_COMPARE_UID_TO_OBJ_UID:
Eric Parisb34b0392012-01-03 14:23:08 -0500513 return audit_compare_id(cred->uid,
514 name, offsetof(struct audit_names, uid),
515 f, ctx);
Eric Parisc9fe6852012-01-03 14:23:08 -0500516 case AUDIT_COMPARE_GID_TO_OBJ_GID:
517 return audit_compare_id(cred->gid,
518 name, offsetof(struct audit_names, gid),
519 f, ctx);
Peter Moody4a6633e2011-12-13 16:17:51 -0800520 case AUDIT_COMPARE_EUID_TO_OBJ_UID:
521 return audit_compare_id(cred->euid,
522 name, offsetof(struct audit_names, uid),
523 f, ctx);
524 case AUDIT_COMPARE_EGID_TO_OBJ_GID:
525 return audit_compare_id(cred->egid,
526 name, offsetof(struct audit_names, gid),
527 f, ctx);
528 case AUDIT_COMPARE_AUID_TO_OBJ_UID:
529 return audit_compare_id(tsk->loginuid,
530 name, offsetof(struct audit_names, uid),
531 f, ctx);
532 case AUDIT_COMPARE_SUID_TO_OBJ_UID:
533 return audit_compare_id(cred->suid,
534 name, offsetof(struct audit_names, uid),
535 f, ctx);
536 case AUDIT_COMPARE_SGID_TO_OBJ_GID:
537 return audit_compare_id(cred->sgid,
538 name, offsetof(struct audit_names, gid),
539 f, ctx);
540 case AUDIT_COMPARE_FSUID_TO_OBJ_UID:
541 return audit_compare_id(cred->fsuid,
542 name, offsetof(struct audit_names, uid),
543 f, ctx);
544 case AUDIT_COMPARE_FSGID_TO_OBJ_GID:
545 return audit_compare_id(cred->fsgid,
546 name, offsetof(struct audit_names, gid),
547 f, ctx);
Eric Paris02d86a52012-01-03 14:23:08 -0500548 default:
549 WARN(1, "Missing AUDIT_COMPARE define. Report as a bug\n");
550 return 0;
551 }
552 return 0;
553}
554
Amy Griffisf368c07d2006-04-07 16:55:56 -0400555/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/* Compare a task_struct with an audit_rule. Return 1 on match, 0
Tony Jonesf5629882011-04-27 15:10:49 +0200557 * otherwise.
558 *
559 * If task_creation is true, this is an explicit indication that we are
560 * filtering a task rule at task creation time. This and tsk == current are
561 * the only situations where tsk->cred may be accessed without an rcu read lock.
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500564 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400566 struct audit_names *name,
Tony Jonesf5629882011-04-27 15:10:49 +0200567 enum audit_state *state,
568 bool task_creation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Tony Jonesf5629882011-04-27 15:10:49 +0200570 const struct cred *cred;
Eric Paris5195d8e2012-01-03 14:23:05 -0500571 int i, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600572 u32 sid;
573
Tony Jonesf5629882011-04-27 15:10:49 +0200574 cred = rcu_dereference_check(tsk->cred, tsk == current || task_creation);
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500577 struct audit_field *f = &rule->fields[i];
Eric Paris5195d8e2012-01-03 14:23:05 -0500578 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 int result = 0;
580
Amy Griffis93315ed2006-02-07 12:05:27 -0500581 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500583 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 break;
Al Viro3c662512006-05-06 08:26:27 -0400585 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400586 if (ctx) {
587 if (!ctx->ppid)
588 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400589 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400590 }
Al Viro3c662512006-05-06 08:26:27 -0400591 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 case AUDIT_UID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100593 result = audit_comparator(cred->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595 case AUDIT_EUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100596 result = audit_comparator(cred->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
598 case AUDIT_SUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100599 result = audit_comparator(cred->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 break;
601 case AUDIT_FSUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100602 result = audit_comparator(cred->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 break;
604 case AUDIT_GID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100605 result = audit_comparator(cred->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607 case AUDIT_EGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100608 result = audit_comparator(cred->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
610 case AUDIT_SGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100611 result = audit_comparator(cred->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 break;
613 case AUDIT_FSGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100614 result = audit_comparator(cred->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 break;
616 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500617 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
2fd6f582005-04-29 16:08:28 +0100619 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700620 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500621 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100622 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 case AUDIT_EXIT:
625 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500626 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100629 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500630 if (f->val)
631 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100632 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500633 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636 case AUDIT_DEVMAJOR:
Eric Paris16c174b2012-01-03 14:23:05 -0500637 if (name) {
638 if (audit_comparator(MAJOR(name->dev), f->op, f->val) ||
639 audit_comparator(MAJOR(name->rdev), f->op, f->val))
640 ++result;
641 } else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500642 list_for_each_entry(n, &ctx->names_list, list) {
Eric Paris16c174b2012-01-03 14:23:05 -0500643 if (audit_comparator(MAJOR(n->dev), f->op, f->val) ||
644 audit_comparator(MAJOR(n->rdev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ++result;
646 break;
647 }
648 }
649 }
650 break;
651 case AUDIT_DEVMINOR:
Eric Paris16c174b2012-01-03 14:23:05 -0500652 if (name) {
653 if (audit_comparator(MINOR(name->dev), f->op, f->val) ||
654 audit_comparator(MINOR(name->rdev), f->op, f->val))
655 ++result;
656 } else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500657 list_for_each_entry(n, &ctx->names_list, list) {
Eric Paris16c174b2012-01-03 14:23:05 -0500658 if (audit_comparator(MINOR(n->dev), f->op, f->val) ||
659 audit_comparator(MINOR(n->rdev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 ++result;
661 break;
662 }
663 }
664 }
665 break;
666 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400667 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400668 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400669 else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500670 list_for_each_entry(n, &ctx->names_list, list) {
671 if (audit_comparator(n->ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 ++result;
673 break;
674 }
675 }
676 }
677 break;
Eric Parisefaffd62012-01-03 14:23:07 -0500678 case AUDIT_OBJ_UID:
679 if (name) {
680 result = audit_comparator(name->uid, f->op, f->val);
681 } else if (ctx) {
682 list_for_each_entry(n, &ctx->names_list, list) {
683 if (audit_comparator(n->uid, f->op, f->val)) {
684 ++result;
685 break;
686 }
687 }
688 }
689 break;
Eric Paris54d32182012-01-03 14:23:07 -0500690 case AUDIT_OBJ_GID:
691 if (name) {
692 result = audit_comparator(name->gid, f->op, f->val);
693 } else if (ctx) {
694 list_for_each_entry(n, &ctx->names_list, list) {
695 if (audit_comparator(n->gid, f->op, f->val)) {
696 ++result;
697 break;
698 }
699 }
700 }
701 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400702 case AUDIT_WATCH:
Eric Parisae7b8f42009-12-17 20:12:04 -0500703 if (name)
704 result = audit_watch_compare(rule->watch, name->ino, name->dev);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400705 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400706 case AUDIT_DIR:
707 if (ctx)
708 result = match_tree_refs(ctx, rule->tree);
709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 case AUDIT_LOGINUID:
711 result = 0;
712 if (ctx)
Al Virobfef93a2008-01-10 04:53:18 -0500713 result = audit_comparator(tsk->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500715 case AUDIT_SUBJ_USER:
716 case AUDIT_SUBJ_ROLE:
717 case AUDIT_SUBJ_TYPE:
718 case AUDIT_SUBJ_SEN:
719 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600720 /* NOTE: this may return negative values indicating
721 a temporary error. We simply treat this as a
722 match for now to avoid losing information that
723 may be wanted. An error message will also be
724 logged upon error */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000725 if (f->lsm_rule) {
Steve Grubb2ad312d2006-04-11 08:50:56 -0400726 if (need_sid) {
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200727 security_task_getsecid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400728 need_sid = 0;
729 }
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200730 result = security_audit_rule_match(sid, f->type,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600731 f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000732 f->lsm_rule,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600733 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400734 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600735 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500736 case AUDIT_OBJ_USER:
737 case AUDIT_OBJ_ROLE:
738 case AUDIT_OBJ_TYPE:
739 case AUDIT_OBJ_LEV_LOW:
740 case AUDIT_OBJ_LEV_HIGH:
741 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
742 also applies here */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000743 if (f->lsm_rule) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500744 /* Find files that match */
745 if (name) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200746 result = security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500747 name->osid, f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000748 f->lsm_rule, ctx);
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500749 } else if (ctx) {
Eric Paris5195d8e2012-01-03 14:23:05 -0500750 list_for_each_entry(n, &ctx->names_list, list) {
751 if (security_audit_rule_match(n->osid, f->type,
752 f->op, f->lsm_rule,
753 ctx)) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500754 ++result;
755 break;
756 }
757 }
758 }
759 /* Find ipc objects that match */
Al Viroa33e6752008-12-10 03:40:06 -0500760 if (!ctx || ctx->type != AUDIT_IPC)
761 break;
762 if (security_audit_rule_match(ctx->ipc.osid,
763 f->type, f->op,
764 f->lsm_rule, ctx))
765 ++result;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500766 }
767 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 case AUDIT_ARG0:
769 case AUDIT_ARG1:
770 case AUDIT_ARG2:
771 case AUDIT_ARG3:
772 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500773 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400775 case AUDIT_FILTERKEY:
776 /* ignore this field for filtering */
777 result = 1;
778 break;
Al Viro55669bf2006-08-31 19:26:40 -0400779 case AUDIT_PERM:
780 result = audit_match_perm(ctx, f->val);
781 break;
Al Viro8b67dca2008-04-28 04:15:49 -0400782 case AUDIT_FILETYPE:
783 result = audit_match_filetype(ctx, f->val);
784 break;
Eric Paris02d86a52012-01-03 14:23:08 -0500785 case AUDIT_FIELD_COMPARE:
786 result = audit_field_compare(tsk, cred, f, ctx, name);
787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Tony Jonesf5629882011-04-27 15:10:49 +0200789 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return 0;
791 }
Al Viro0590b932008-12-14 23:45:27 -0500792
793 if (ctx) {
794 if (rule->prio <= ctx->prio)
795 return 0;
796 if (rule->filterkey) {
797 kfree(ctx->filterkey);
798 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
799 }
800 ctx->prio = rule->prio;
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 switch (rule->action) {
803 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
805 }
806 return 1;
807}
808
809/* At process creation time, we can determine if system-call auditing is
810 * completely disabled for this task. Since we only have the task
811 * structure at this point, we can only check uid and gid.
812 */
Al Viroe048e022008-12-16 03:51:22 -0500813static enum audit_state audit_filter_task(struct task_struct *tsk, char **key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct audit_entry *e;
816 enum audit_state state;
817
818 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100819 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Tony Jonesf5629882011-04-27 15:10:49 +0200820 if (audit_filter_rules(tsk, &e->rule, NULL, NULL,
821 &state, true)) {
Al Viroe048e022008-12-16 03:51:22 -0500822 if (state == AUDIT_RECORD_CONTEXT)
823 *key = kstrdup(e->rule.filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 rcu_read_unlock();
825 return state;
826 }
827 }
828 rcu_read_unlock();
829 return AUDIT_BUILD_CONTEXT;
830}
831
832/* At syscall entry and exit time, this filter is called if the
833 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100834 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700835 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
837static enum audit_state audit_filter_syscall(struct task_struct *tsk,
838 struct audit_context *ctx,
839 struct list_head *list)
840{
841 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100842 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
David Woodhouse351bb722005-07-14 14:40:06 +0100844 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100845 return AUDIT_DISABLED;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100848 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000849 int word = AUDIT_WORD(ctx->major);
850 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100851
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000852 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400853 if ((e->rule.mask[word] & bit) == bit &&
854 audit_filter_rules(tsk, &e->rule, ctx, NULL,
Tony Jonesf5629882011-04-27 15:10:49 +0200855 &state, false)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000856 rcu_read_unlock();
Al Viro0590b932008-12-14 23:45:27 -0500857 ctx->current_state = state;
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000858 return state;
859 }
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 rcu_read_unlock();
863 return AUDIT_BUILD_CONTEXT;
864}
865
Eric Paris5195d8e2012-01-03 14:23:05 -0500866/*
867 * Given an audit_name check the inode hash table to see if they match.
868 * Called holding the rcu read lock to protect the use of audit_inode_hash
869 */
870static int audit_filter_inode_name(struct task_struct *tsk,
871 struct audit_names *n,
872 struct audit_context *ctx) {
873 int word, bit;
874 int h = audit_hash_ino((u32)n->ino);
875 struct list_head *list = &audit_inode_hash[h];
876 struct audit_entry *e;
877 enum audit_state state;
878
879 word = AUDIT_WORD(ctx->major);
880 bit = AUDIT_BIT(ctx->major);
881
882 if (list_empty(list))
883 return 0;
884
885 list_for_each_entry_rcu(e, list, list) {
886 if ((e->rule.mask[word] & bit) == bit &&
887 audit_filter_rules(tsk, &e->rule, ctx, n, &state, false)) {
888 ctx->current_state = state;
889 return 1;
890 }
891 }
892
893 return 0;
894}
895
896/* At syscall exit time, this filter is called if any audit_names have been
Amy Griffisf368c07d2006-04-07 16:55:56 -0400897 * collected during syscall processing. We only check rules in sublists at hash
Eric Paris5195d8e2012-01-03 14:23:05 -0500898 * buckets applicable to the inode numbers in audit_names.
Amy Griffisf368c07d2006-04-07 16:55:56 -0400899 * Regarding audit_state, same rules apply as for audit_filter_syscall().
900 */
Al Viro0590b932008-12-14 23:45:27 -0500901void audit_filter_inodes(struct task_struct *tsk, struct audit_context *ctx)
Amy Griffisf368c07d2006-04-07 16:55:56 -0400902{
Eric Paris5195d8e2012-01-03 14:23:05 -0500903 struct audit_names *n;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400904
905 if (audit_pid && tsk->tgid == audit_pid)
Al Viro0590b932008-12-14 23:45:27 -0500906 return;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400907
908 rcu_read_lock();
Amy Griffisf368c07d2006-04-07 16:55:56 -0400909
Eric Paris5195d8e2012-01-03 14:23:05 -0500910 list_for_each_entry(n, &ctx->names_list, list) {
911 if (audit_filter_inode_name(tsk, n, ctx))
912 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400913 }
914 rcu_read_unlock();
Amy Griffisf368c07d2006-04-07 16:55:56 -0400915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static inline struct audit_context *audit_get_context(struct task_struct *tsk,
918 int return_valid,
Paul Moore6d208da2009-04-01 15:47:27 -0400919 long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct audit_context *context = tsk->audit_context;
922
Eric Paris56179a62012-01-03 14:23:06 -0500923 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return NULL;
925 context->return_valid = return_valid;
Eric Parisf701b752008-01-07 13:34:51 -0500926
927 /*
928 * we need to fix up the return code in the audit logs if the actual
929 * return codes are later going to be fixed up by the arch specific
930 * signal handlers
931 *
932 * This is actually a test for:
933 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
934 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
935 *
936 * but is faster than a bunch of ||
937 */
938 if (unlikely(return_code <= -ERESTARTSYS) &&
939 (return_code >= -ERESTART_RESTARTBLOCK) &&
940 (return_code != -ENOIOCTLCMD))
941 context->return_code = -EINTR;
942 else
943 context->return_code = return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Al Viro0590b932008-12-14 23:45:27 -0500945 if (context->in_syscall && !context->dummy) {
946 audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
947 audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 tsk->audit_context = NULL;
951 return context;
952}
953
954static inline void audit_free_names(struct audit_context *context)
955{
Eric Paris5195d8e2012-01-03 14:23:05 -0500956 struct audit_names *n, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958#if AUDIT_DEBUG == 2
Al Viro0590b932008-12-14 23:45:27 -0500959 if (context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000960 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 " name_count=%d put_count=%d"
962 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000963 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 context->serial, context->major, context->in_syscall,
965 context->name_count, context->put_count,
966 context->ino_count);
Eric Paris5195d8e2012-01-03 14:23:05 -0500967 list_for_each_entry(n, &context->names_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 printk(KERN_ERR "names[%d] = %p = %s\n", i,
Eric Paris5195d8e2012-01-03 14:23:05 -0500969 n->name, n->name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 dump_stack();
972 return;
973 }
974#endif
975#if AUDIT_DEBUG
976 context->put_count = 0;
977 context->ino_count = 0;
978#endif
979
Eric Paris5195d8e2012-01-03 14:23:05 -0500980 list_for_each_entry_safe(n, next, &context->names_list, list) {
981 list_del(&n->list);
982 if (n->name && n->name_put)
983 __putname(n->name);
984 if (n->should_free)
985 kfree(n);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 context->name_count = 0;
Jan Blunck44707fd2008-02-14 19:38:33 -0800988 path_put(&context->pwd);
989 context->pwd.dentry = NULL;
990 context->pwd.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993static inline void audit_free_aux(struct audit_context *context)
994{
995 struct audit_aux_data *aux;
996
997 while ((aux = context->aux)) {
998 context->aux = aux->next;
999 kfree(aux);
1000 }
Amy Griffise54dc242007-03-29 18:01:04 -04001001 while ((aux = context->aux_pids)) {
1002 context->aux_pids = aux->next;
1003 kfree(aux);
1004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
1007static inline void audit_zero_context(struct audit_context *context,
1008 enum audit_state state)
1009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 memset(context, 0, sizeof(*context));
1011 context->state = state;
Al Viro0590b932008-12-14 23:45:27 -05001012 context->prio = state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015static inline struct audit_context *audit_alloc_context(enum audit_state state)
1016{
1017 struct audit_context *context;
1018
1019 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
1020 return NULL;
1021 audit_zero_context(context, state);
Al Viro916d7572009-06-24 00:02:38 -04001022 INIT_LIST_HEAD(&context->killed_trees);
Eric Paris5195d8e2012-01-03 14:23:05 -05001023 INIT_LIST_HEAD(&context->names_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return context;
1025}
1026
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001027/**
1028 * audit_alloc - allocate an audit context block for a task
1029 * @tsk: task
1030 *
1031 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 * if necessary. Doing so turns on system call auditing for the
1033 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001034 * needed.
1035 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036int audit_alloc(struct task_struct *tsk)
1037{
1038 struct audit_context *context;
1039 enum audit_state state;
Al Viroe048e022008-12-16 03:51:22 -05001040 char *key = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Eric Parisb593d382008-01-08 17:38:31 -05001042 if (likely(!audit_ever_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0; /* Return if not auditing. */
1044
Al Viroe048e022008-12-16 03:51:22 -05001045 state = audit_filter_task(tsk, &key);
Eric Paris56179a62012-01-03 14:23:06 -05001046 if (state == AUDIT_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return 0;
1048
1049 if (!(context = audit_alloc_context(state))) {
Al Viroe048e022008-12-16 03:51:22 -05001050 kfree(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 audit_log_lost("out of memory in audit_alloc");
1052 return -ENOMEM;
1053 }
Al Viroe048e022008-12-16 03:51:22 -05001054 context->filterkey = key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 tsk->audit_context = context;
1057 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
1058 return 0;
1059}
1060
1061static inline void audit_free_context(struct audit_context *context)
1062{
1063 struct audit_context *previous;
1064 int count = 0;
1065
1066 do {
1067 previous = context->previous;
1068 if (previous || (count && count < 10)) {
1069 ++count;
1070 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
1071 " freeing multiple contexts (%d)\n",
1072 context->serial, context->major,
1073 context->name_count, count);
1074 }
1075 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001076 unroll_tree_refs(context, NULL, 0);
1077 free_tree_refs(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001079 kfree(context->filterkey);
Al Viro4f6b4342008-12-09 19:50:34 -05001080 kfree(context->sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 kfree(context);
1082 context = previous;
1083 } while (context);
1084 if (count >= 10)
1085 printk(KERN_ERR "audit: freed %d contexts\n", count);
1086}
1087
Joy Latten161a09e2006-11-27 13:11:54 -06001088void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001089{
1090 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +00001091 unsigned len;
1092 int error;
1093 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001094
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001095 security_task_getsecid(current, &sid);
Al Viroc4823bc2007-03-12 16:17:42 +00001096 if (!sid)
1097 return;
1098
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001099 error = security_secid_to_secctx(sid, &ctx, &len);
Al Viroc4823bc2007-03-12 16:17:42 +00001100 if (error) {
1101 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001102 goto error_path;
1103 return;
1104 }
1105
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001106 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001107 security_release_secctx(ctx, len);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001108 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001109
1110error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001111 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001112 return;
1113}
1114
Joy Latten161a09e2006-11-27 13:11:54 -06001115EXPORT_SYMBOL(audit_log_task_context);
1116
Al Viroe4951492006-03-29 20:17:10 -05001117static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -07001118{
Al Viro45d9bb02006-03-29 20:02:55 -05001119 char name[sizeof(tsk->comm)];
1120 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -07001121 struct vm_area_struct *vma;
1122
Al Viroe4951492006-03-29 20:17:10 -05001123 /* tsk == current */
1124
Al Viro45d9bb02006-03-29 20:02:55 -05001125 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +01001126 audit_log_format(ab, " comm=");
1127 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -07001128
Al Viroe4951492006-03-29 20:17:10 -05001129 if (mm) {
1130 down_read(&mm->mmap_sem);
1131 vma = mm->mmap;
1132 while (vma) {
1133 if ((vma->vm_flags & VM_EXECUTABLE) &&
1134 vma->vm_file) {
1135 audit_log_d_path(ab, "exe=",
Jan Blunck44707fd2008-02-14 19:38:33 -08001136 &vma->vm_file->f_path);
Al Viroe4951492006-03-29 20:17:10 -05001137 break;
1138 }
1139 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -07001140 }
Al Viroe4951492006-03-29 20:17:10 -05001141 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -07001142 }
Al Viroe4951492006-03-29 20:17:10 -05001143 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -07001144}
1145
Amy Griffise54dc242007-03-29 18:01:04 -04001146static int audit_log_pid_context(struct audit_context *context, pid_t pid,
Eric Paris4746ec52008-01-08 10:06:53 -05001147 uid_t auid, uid_t uid, unsigned int sessionid,
1148 u32 sid, char *comm)
Amy Griffise54dc242007-03-29 18:01:04 -04001149{
1150 struct audit_buffer *ab;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001151 char *ctx = NULL;
Amy Griffise54dc242007-03-29 18:01:04 -04001152 u32 len;
1153 int rc = 0;
1154
1155 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
1156 if (!ab)
Eric Paris6246cca2008-01-07 14:01:18 -05001157 return rc;
Amy Griffise54dc242007-03-29 18:01:04 -04001158
Eric Paris4746ec52008-01-08 10:06:53 -05001159 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid, auid,
1160 uid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001161 if (security_secid_to_secctx(sid, &ctx, &len)) {
Eric Parisc2a77802008-01-07 13:40:17 -05001162 audit_log_format(ab, " obj=(none)");
Amy Griffise54dc242007-03-29 18:01:04 -04001163 rc = 1;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001164 } else {
1165 audit_log_format(ab, " obj=%s", ctx);
1166 security_release_secctx(ctx, len);
1167 }
Eric Parisc2a77802008-01-07 13:40:17 -05001168 audit_log_format(ab, " ocomm=");
1169 audit_log_untrustedstring(ab, comm);
Amy Griffise54dc242007-03-29 18:01:04 -04001170 audit_log_end(ab);
Amy Griffise54dc242007-03-29 18:01:04 -04001171
1172 return rc;
1173}
1174
Eric Parisde6bbd12008-01-07 14:31:58 -05001175/*
1176 * to_send and len_sent accounting are very loose estimates. We aren't
1177 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001178 * within about 500 bytes (next page boundary)
Eric Parisde6bbd12008-01-07 14:31:58 -05001179 *
1180 * why snprintf? an int is up to 12 digits long. if we just assumed when
1181 * logging that a[%d]= was going to be 16 characters long we would be wasting
1182 * space in every audit message. In one 7500 byte message we can log up to
1183 * about 1000 min size arguments. That comes down to about 50% waste of space
1184 * if we didn't do the snprintf to find out how long arg_num_len was.
1185 */
1186static int audit_log_single_execve_arg(struct audit_context *context,
1187 struct audit_buffer **ab,
1188 int arg_num,
1189 size_t *len_sent,
1190 const char __user *p,
1191 char *buf)
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001192{
Eric Parisde6bbd12008-01-07 14:31:58 -05001193 char arg_num_len_buf[12];
1194 const char __user *tmp_p = p;
Eric Parisb87ce6e2009-06-11 14:31:34 -04001195 /* how many digits are in arg_num? 5 is the length of ' a=""' */
1196 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 5;
Eric Parisde6bbd12008-01-07 14:31:58 -05001197 size_t len, len_left, to_send;
1198 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1199 unsigned int i, has_cntl = 0, too_long = 0;
1200 int ret;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001201
Eric Parisde6bbd12008-01-07 14:31:58 -05001202 /* strnlen_user includes the null we don't want to send */
1203 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001204
Eric Parisde6bbd12008-01-07 14:31:58 -05001205 /*
1206 * We just created this mm, if we can't find the strings
1207 * we just copied into it something is _very_ wrong. Similar
1208 * for strings that are too long, we should not have created
1209 * any.
1210 */
Eric Parisb0abcfc2008-02-18 18:23:16 -05001211 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
Eric Parisde6bbd12008-01-07 14:31:58 -05001212 WARN_ON(1);
1213 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001214 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001215 }
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001216
Eric Parisde6bbd12008-01-07 14:31:58 -05001217 /* walk the whole argument looking for non-ascii chars */
1218 do {
1219 if (len_left > MAX_EXECVE_AUDIT_LEN)
1220 to_send = MAX_EXECVE_AUDIT_LEN;
1221 else
1222 to_send = len_left;
1223 ret = copy_from_user(buf, tmp_p, to_send);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001224 /*
1225 * There is no reason for this copy to be short. We just
1226 * copied them here, and the mm hasn't been exposed to user-
1227 * space yet.
1228 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001229 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001230 WARN_ON(1);
1231 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001232 return -1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001233 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001234 buf[to_send] = '\0';
1235 has_cntl = audit_string_contains_control(buf, to_send);
1236 if (has_cntl) {
1237 /*
1238 * hex messages get logged as 2 bytes, so we can only
1239 * send half as much in each message
1240 */
1241 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
1242 break;
1243 }
1244 len_left -= to_send;
1245 tmp_p += to_send;
1246 } while (len_left > 0);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001247
Eric Parisde6bbd12008-01-07 14:31:58 -05001248 len_left = len;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001249
Eric Parisde6bbd12008-01-07 14:31:58 -05001250 if (len > max_execve_audit_len)
1251 too_long = 1;
1252
1253 /* rewalk the argument actually logging the message */
1254 for (i = 0; len_left > 0; i++) {
1255 int room_left;
1256
1257 if (len_left > max_execve_audit_len)
1258 to_send = max_execve_audit_len;
1259 else
1260 to_send = len_left;
1261
1262 /* do we have space left to send this argument in this ab? */
1263 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1264 if (has_cntl)
1265 room_left -= (to_send * 2);
1266 else
1267 room_left -= to_send;
1268 if (room_left < 0) {
1269 *len_sent = 0;
1270 audit_log_end(*ab);
1271 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1272 if (!*ab)
1273 return 0;
1274 }
1275
1276 /*
1277 * first record needs to say how long the original string was
1278 * so we can be sure nothing was lost.
1279 */
1280 if ((i == 0) && (too_long))
Jiri Pirkoca96a892009-01-09 16:44:16 +01001281 audit_log_format(*ab, " a%d_len=%zu", arg_num,
Eric Parisde6bbd12008-01-07 14:31:58 -05001282 has_cntl ? 2*len : len);
1283
1284 /*
1285 * normally arguments are small enough to fit and we already
1286 * filled buf above when we checked for control characters
1287 * so don't bother with another copy_from_user
1288 */
1289 if (len >= max_execve_audit_len)
1290 ret = copy_from_user(buf, p, to_send);
1291 else
1292 ret = 0;
1293 if (ret) {
1294 WARN_ON(1);
1295 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001296 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001297 }
1298 buf[to_send] = '\0';
1299
1300 /* actually log it */
Jiri Pirkoca96a892009-01-09 16:44:16 +01001301 audit_log_format(*ab, " a%d", arg_num);
Eric Parisde6bbd12008-01-07 14:31:58 -05001302 if (too_long)
1303 audit_log_format(*ab, "[%d]", i);
1304 audit_log_format(*ab, "=");
1305 if (has_cntl)
Eric Parisb556f8a2008-04-18 10:12:59 -04001306 audit_log_n_hex(*ab, buf, to_send);
Eric Parisde6bbd12008-01-07 14:31:58 -05001307 else
Eric Paris9d960982009-06-11 14:31:37 -04001308 audit_log_string(*ab, buf);
Eric Parisde6bbd12008-01-07 14:31:58 -05001309
1310 p += to_send;
1311 len_left -= to_send;
1312 *len_sent += arg_num_len;
1313 if (has_cntl)
1314 *len_sent += to_send * 2;
1315 else
1316 *len_sent += to_send;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001317 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001318 /* include the null we didn't log */
1319 return len + 1;
1320}
1321
1322static void audit_log_execve_info(struct audit_context *context,
1323 struct audit_buffer **ab,
1324 struct audit_aux_data_execve *axi)
1325{
1326 int i;
1327 size_t len, len_sent = 0;
1328 const char __user *p;
1329 char *buf;
1330
1331 if (axi->mm != current->mm)
1332 return; /* execve failed, no additional info */
1333
1334 p = (const char __user *)axi->mm->arg_start;
1335
Jiri Pirkoca96a892009-01-09 16:44:16 +01001336 audit_log_format(*ab, "argc=%d", axi->argc);
Eric Parisde6bbd12008-01-07 14:31:58 -05001337
1338 /*
1339 * we need some kernel buffer to hold the userspace args. Just
1340 * allocate one big one rather than allocating one of the right size
1341 * for every single argument inside audit_log_single_execve_arg()
1342 * should be <8k allocation so should be pretty safe.
1343 */
1344 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1345 if (!buf) {
1346 audit_panic("out of memory for argv string\n");
1347 return;
1348 }
1349
1350 for (i = 0; i < axi->argc; i++) {
1351 len = audit_log_single_execve_arg(context, ab, i,
1352 &len_sent, p, buf);
1353 if (len <= 0)
1354 break;
1355 p += len;
1356 }
1357 kfree(buf);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001358}
1359
Eric Paris851f7ff2008-11-11 21:48:14 +11001360static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1361{
1362 int i;
1363
1364 audit_log_format(ab, " %s=", prefix);
1365 CAP_FOR_EACH_U32(i) {
1366 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1367 }
1368}
1369
1370static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1371{
1372 kernel_cap_t *perm = &name->fcap.permitted;
1373 kernel_cap_t *inh = &name->fcap.inheritable;
1374 int log = 0;
1375
1376 if (!cap_isclear(*perm)) {
1377 audit_log_cap(ab, "cap_fp", perm);
1378 log = 1;
1379 }
1380 if (!cap_isclear(*inh)) {
1381 audit_log_cap(ab, "cap_fi", inh);
1382 log = 1;
1383 }
1384
1385 if (log)
1386 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1387}
1388
Al Viroa33e6752008-12-10 03:40:06 -05001389static void show_special(struct audit_context *context, int *call_panic)
Al Virof3298dc2008-12-10 03:16:51 -05001390{
1391 struct audit_buffer *ab;
1392 int i;
1393
1394 ab = audit_log_start(context, GFP_KERNEL, context->type);
1395 if (!ab)
1396 return;
1397
1398 switch (context->type) {
1399 case AUDIT_SOCKETCALL: {
1400 int nargs = context->socketcall.nargs;
1401 audit_log_format(ab, "nargs=%d", nargs);
1402 for (i = 0; i < nargs; i++)
1403 audit_log_format(ab, " a%d=%lx", i,
1404 context->socketcall.args[i]);
1405 break; }
Al Viroa33e6752008-12-10 03:40:06 -05001406 case AUDIT_IPC: {
1407 u32 osid = context->ipc.osid;
1408
Al Viro2570ebb2011-07-27 14:03:22 -04001409 audit_log_format(ab, "ouid=%u ogid=%u mode=%#ho",
Al Viroa33e6752008-12-10 03:40:06 -05001410 context->ipc.uid, context->ipc.gid, context->ipc.mode);
1411 if (osid) {
1412 char *ctx = NULL;
1413 u32 len;
1414 if (security_secid_to_secctx(osid, &ctx, &len)) {
1415 audit_log_format(ab, " osid=%u", osid);
1416 *call_panic = 1;
1417 } else {
1418 audit_log_format(ab, " obj=%s", ctx);
1419 security_release_secctx(ctx, len);
1420 }
1421 }
Al Viroe816f372008-12-10 03:47:15 -05001422 if (context->ipc.has_perm) {
1423 audit_log_end(ab);
1424 ab = audit_log_start(context, GFP_KERNEL,
1425 AUDIT_IPC_SET_PERM);
1426 audit_log_format(ab,
Al Viro2570ebb2011-07-27 14:03:22 -04001427 "qbytes=%lx ouid=%u ogid=%u mode=%#ho",
Al Viroe816f372008-12-10 03:47:15 -05001428 context->ipc.qbytes,
1429 context->ipc.perm_uid,
1430 context->ipc.perm_gid,
1431 context->ipc.perm_mode);
1432 if (!ab)
1433 return;
1434 }
Al Viroa33e6752008-12-10 03:40:06 -05001435 break; }
Al Viro564f6992008-12-14 04:02:26 -05001436 case AUDIT_MQ_OPEN: {
1437 audit_log_format(ab,
Al Virodf0a4282011-07-26 05:26:10 -04001438 "oflag=0x%x mode=%#ho mq_flags=0x%lx mq_maxmsg=%ld "
Al Viro564f6992008-12-14 04:02:26 -05001439 "mq_msgsize=%ld mq_curmsgs=%ld",
1440 context->mq_open.oflag, context->mq_open.mode,
1441 context->mq_open.attr.mq_flags,
1442 context->mq_open.attr.mq_maxmsg,
1443 context->mq_open.attr.mq_msgsize,
1444 context->mq_open.attr.mq_curmsgs);
1445 break; }
Al Viroc32c8af2008-12-14 03:46:48 -05001446 case AUDIT_MQ_SENDRECV: {
1447 audit_log_format(ab,
1448 "mqdes=%d msg_len=%zd msg_prio=%u "
1449 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1450 context->mq_sendrecv.mqdes,
1451 context->mq_sendrecv.msg_len,
1452 context->mq_sendrecv.msg_prio,
1453 context->mq_sendrecv.abs_timeout.tv_sec,
1454 context->mq_sendrecv.abs_timeout.tv_nsec);
1455 break; }
Al Viro20114f72008-12-10 07:16:12 -05001456 case AUDIT_MQ_NOTIFY: {
1457 audit_log_format(ab, "mqdes=%d sigev_signo=%d",
1458 context->mq_notify.mqdes,
1459 context->mq_notify.sigev_signo);
1460 break; }
Al Viro73929062008-12-10 06:58:59 -05001461 case AUDIT_MQ_GETSETATTR: {
1462 struct mq_attr *attr = &context->mq_getsetattr.mqstat;
1463 audit_log_format(ab,
1464 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1465 "mq_curmsgs=%ld ",
1466 context->mq_getsetattr.mqdes,
1467 attr->mq_flags, attr->mq_maxmsg,
1468 attr->mq_msgsize, attr->mq_curmsgs);
1469 break; }
Al Viro57f71a02009-01-04 14:52:57 -05001470 case AUDIT_CAPSET: {
1471 audit_log_format(ab, "pid=%d", context->capset.pid);
1472 audit_log_cap(ab, "cap_pi", &context->capset.cap.inheritable);
1473 audit_log_cap(ab, "cap_pp", &context->capset.cap.permitted);
1474 audit_log_cap(ab, "cap_pe", &context->capset.cap.effective);
1475 break; }
Al Viro120a7952010-10-30 02:54:44 -04001476 case AUDIT_MMAP: {
1477 audit_log_format(ab, "fd=%d flags=0x%x", context->mmap.fd,
1478 context->mmap.flags);
1479 break; }
Al Virof3298dc2008-12-10 03:16:51 -05001480 }
1481 audit_log_end(ab);
1482}
1483
Eric Paris5195d8e2012-01-03 14:23:05 -05001484static void audit_log_name(struct audit_context *context, struct audit_names *n,
1485 int record_num, int *call_panic)
1486{
1487 struct audit_buffer *ab;
1488 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
1489 if (!ab)
1490 return; /* audit_panic has been called */
1491
1492 audit_log_format(ab, "item=%d", record_num);
1493
1494 if (n->name) {
1495 switch (n->name_len) {
1496 case AUDIT_NAME_FULL:
1497 /* log the full path */
1498 audit_log_format(ab, " name=");
1499 audit_log_untrustedstring(ab, n->name);
1500 break;
1501 case 0:
1502 /* name was specified as a relative path and the
1503 * directory component is the cwd */
1504 audit_log_d_path(ab, "name=", &context->pwd);
1505 break;
1506 default:
1507 /* log the name's directory component */
1508 audit_log_format(ab, " name=");
1509 audit_log_n_untrustedstring(ab, n->name,
1510 n->name_len);
1511 }
1512 } else
1513 audit_log_format(ab, " name=(null)");
1514
1515 if (n->ino != (unsigned long)-1) {
1516 audit_log_format(ab, " inode=%lu"
1517 " dev=%02x:%02x mode=%#ho"
1518 " ouid=%u ogid=%u rdev=%02x:%02x",
1519 n->ino,
1520 MAJOR(n->dev),
1521 MINOR(n->dev),
1522 n->mode,
1523 n->uid,
1524 n->gid,
1525 MAJOR(n->rdev),
1526 MINOR(n->rdev));
1527 }
1528 if (n->osid != 0) {
1529 char *ctx = NULL;
1530 u32 len;
1531 if (security_secid_to_secctx(
1532 n->osid, &ctx, &len)) {
1533 audit_log_format(ab, " osid=%u", n->osid);
1534 *call_panic = 2;
1535 } else {
1536 audit_log_format(ab, " obj=%s", ctx);
1537 security_release_secctx(ctx, len);
1538 }
1539 }
1540
1541 audit_log_fcaps(ab, n);
1542
1543 audit_log_end(ab);
1544}
1545
Al Viroe4951492006-03-29 20:17:10 -05001546static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
David Howellsc69e8d92008-11-14 10:39:19 +11001548 const struct cred *cred;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001549 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001551 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -05001552 const char *tty;
Eric Paris5195d8e2012-01-03 14:23:05 -05001553 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Al Viroe4951492006-03-29 20:17:10 -05001555 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001556 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -04001557 if (!context->ppid)
1558 context->ppid = sys_getppid();
David Howellsc69e8d92008-11-14 10:39:19 +11001559 cred = current_cred();
1560 context->uid = cred->uid;
1561 context->gid = cred->gid;
1562 context->euid = cred->euid;
1563 context->suid = cred->suid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001564 context->fsuid = cred->fsuid;
David Howellsc69e8d92008-11-14 10:39:19 +11001565 context->egid = cred->egid;
1566 context->sgid = cred->sgid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001567 context->fsgid = cred->fsgid;
Al Viro3f2792f2006-07-16 06:43:48 -04001568 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001569
1570 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (!ab)
1572 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001573 audit_log_format(ab, "arch=%x syscall=%d",
1574 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (context->personality != PER_LINUX)
1576 audit_log_format(ab, " per=%lx", context->personality);
1577 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001578 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001579 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1580 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001581
Alan Coxdbda4c02008-10-13 10:40:53 +01001582 spin_lock_irq(&tsk->sighand->siglock);
Al Viro45d9bb02006-03-29 20:02:55 -05001583 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1584 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -05001585 else
1586 tty = "(none)";
Alan Coxdbda4c02008-10-13 10:40:53 +01001587 spin_unlock_irq(&tsk->sighand->siglock);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 audit_log_format(ab,
1590 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -04001591 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +01001592 " euid=%u suid=%u fsuid=%u"
Eric Paris4746ec52008-01-08 10:06:53 -05001593 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 context->argv[0],
1595 context->argv[1],
1596 context->argv[2],
1597 context->argv[3],
1598 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -04001599 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 context->pid,
Al Virobfef93a2008-01-10 04:53:18 -05001601 tsk->loginuid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 context->uid,
1603 context->gid,
1604 context->euid, context->suid, context->fsuid,
Eric Paris4746ec52008-01-08 10:06:53 -05001605 context->egid, context->sgid, context->fsgid, tty,
1606 tsk->sessionid);
Alan Coxeb84a202006-09-29 02:01:41 -07001607
Alan Coxeb84a202006-09-29 02:01:41 -07001608
Al Viroe4951492006-03-29 20:17:10 -05001609 audit_log_task_info(ab, tsk);
Eric Paris9d960982009-06-11 14:31:37 -04001610 audit_log_key(ab, context->filterkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
David Woodhouse7551ced2005-05-26 12:04:57 +01001613 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001614
Al Viroe4951492006-03-29 20:17:10 -05001615 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (!ab)
1617 continue; /* audit_panic has been called */
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001620
Al Viro473ae302006-04-26 14:04:08 -04001621 case AUDIT_EXECVE: {
1622 struct audit_aux_data_execve *axi = (void *)aux;
Eric Parisde6bbd12008-01-07 14:31:58 -05001623 audit_log_execve_info(context, &ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001624 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001625
Eric Paris3fc689e2008-11-11 21:48:18 +11001626 case AUDIT_BPRM_FCAPS: {
1627 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1628 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1629 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1630 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1631 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1632 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1633 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1634 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1635 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1636 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1637 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1638 break; }
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643
Al Virof3298dc2008-12-10 03:16:51 -05001644 if (context->type)
Al Viroa33e6752008-12-10 03:40:06 -05001645 show_special(context, &call_panic);
Al Virof3298dc2008-12-10 03:16:51 -05001646
Al Viro157cf642008-12-14 04:57:47 -05001647 if (context->fds[0] >= 0) {
1648 ab = audit_log_start(context, GFP_KERNEL, AUDIT_FD_PAIR);
1649 if (ab) {
1650 audit_log_format(ab, "fd0=%d fd1=%d",
1651 context->fds[0], context->fds[1]);
1652 audit_log_end(ab);
1653 }
1654 }
1655
Al Viro4f6b4342008-12-09 19:50:34 -05001656 if (context->sockaddr_len) {
1657 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1658 if (ab) {
1659 audit_log_format(ab, "saddr=");
1660 audit_log_n_hex(ab, (void *)context->sockaddr,
1661 context->sockaddr_len);
1662 audit_log_end(ab);
1663 }
1664 }
1665
Amy Griffise54dc242007-03-29 18:01:04 -04001666 for (aux = context->aux_pids; aux; aux = aux->next) {
1667 struct audit_aux_data_pids *axs = (void *)aux;
Amy Griffise54dc242007-03-29 18:01:04 -04001668
1669 for (i = 0; i < axs->pid_count; i++)
1670 if (audit_log_pid_context(context, axs->target_pid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001671 axs->target_auid[i],
1672 axs->target_uid[i],
Eric Paris4746ec52008-01-08 10:06:53 -05001673 axs->target_sessionid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001674 axs->target_sid[i],
1675 axs->target_comm[i]))
Amy Griffise54dc242007-03-29 18:01:04 -04001676 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001677 }
1678
Amy Griffise54dc242007-03-29 18:01:04 -04001679 if (context->target_pid &&
1680 audit_log_pid_context(context, context->target_pid,
Eric Parisc2a77802008-01-07 13:40:17 -05001681 context->target_auid, context->target_uid,
Eric Paris4746ec52008-01-08 10:06:53 -05001682 context->target_sessionid,
Eric Parisc2a77802008-01-07 13:40:17 -05001683 context->target_sid, context->target_comm))
Amy Griffise54dc242007-03-29 18:01:04 -04001684 call_panic = 1;
1685
Jan Blunck44707fd2008-02-14 19:38:33 -08001686 if (context->pwd.dentry && context->pwd.mnt) {
Al Viroe4951492006-03-29 20:17:10 -05001687 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001688 if (ab) {
Jan Blunck44707fd2008-02-14 19:38:33 -08001689 audit_log_d_path(ab, "cwd=", &context->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001690 audit_log_end(ab);
1691 }
1692 }
Amy Griffis73241cc2005-11-03 16:00:25 +00001693
Eric Paris5195d8e2012-01-03 14:23:05 -05001694 i = 0;
1695 list_for_each_entry(n, &context->names_list, list)
1696 audit_log_name(context, n, i++, &call_panic);
Eric Parisc0641f22008-01-07 13:49:15 -05001697
1698 /* Send end of event record to help user space know we are finished */
1699 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1700 if (ab)
1701 audit_log_end(ab);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001702 if (call_panic)
1703 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001706/**
1707 * audit_free - free a per-task audit context
1708 * @tsk: task whose audit context block to free
1709 *
Al Virofa84cb92006-03-29 20:30:19 -05001710 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001711 */
Eric Parisa4ff8db2012-01-03 14:23:07 -05001712void __audit_free(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 struct audit_context *context;
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 context = audit_get_context(tsk, 0, 0);
Eric Paris56179a62012-01-03 14:23:06 -05001717 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return;
1719
1720 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001721 * function (e.g., exit_group), then free context block.
1722 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001723 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001724 /* that can happen only if we are called from do_exit() */
Al Viro0590b932008-12-14 23:45:27 -05001725 if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
Al Viroe4951492006-03-29 20:17:10 -05001726 audit_log_exit(context, tsk);
Al Viro916d7572009-06-24 00:02:38 -04001727 if (!list_empty(&context->killed_trees))
1728 audit_kill_trees(&context->killed_trees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 audit_free_context(context);
1731}
1732
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001733/**
1734 * audit_syscall_entry - fill in an audit record at syscall entry
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001735 * @arch: architecture type
1736 * @major: major syscall type (function)
1737 * @a1: additional syscall register 1
1738 * @a2: additional syscall register 2
1739 * @a3: additional syscall register 3
1740 * @a4: additional syscall register 4
1741 *
1742 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 * audit context was created when the task was created and the state or
1744 * filters demand the audit context be built. If the state from the
1745 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1746 * then the record will be written at syscall exit time (otherwise, it
1747 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001748 * be written).
1749 */
Eric Parisb05d8442012-01-03 14:23:06 -05001750void __audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 unsigned long a1, unsigned long a2,
1752 unsigned long a3, unsigned long a4)
1753{
Al Viro5411be52006-03-29 20:23:36 -05001754 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 struct audit_context *context = tsk->audit_context;
1756 enum audit_state state;
1757
Eric Paris56179a62012-01-03 14:23:06 -05001758 if (!context)
Roland McGrath86a1c342008-06-23 15:37:04 -07001759 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001761 /*
1762 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 * calls in kernel_thread via the entry.S interface, instead of
1764 * with direct calls. (If you are porting to a new
1765 * architecture, hitting this condition can indicate that you
1766 * got the _exit/_leave calls backward in entry.S.)
1767 *
1768 * i386 no
1769 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001770 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 *
1772 * This also happens with vm86 emulation in a non-nested manner
1773 * (entries without exits), so this case must be caught.
1774 */
1775 if (context->in_syscall) {
1776 struct audit_context *newctx;
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778#if AUDIT_DEBUG
1779 printk(KERN_ERR
1780 "audit(:%d) pid=%d in syscall=%d;"
1781 " entering syscall=%d\n",
1782 context->serial, tsk->pid, context->major, major);
1783#endif
1784 newctx = audit_alloc_context(context->state);
1785 if (newctx) {
1786 newctx->previous = context;
1787 context = newctx;
1788 tsk->audit_context = newctx;
1789 } else {
1790 /* If we can't alloc a new context, the best we
1791 * can do is to leak memory (any pending putname
1792 * will be lost). The only other alternative is
1793 * to abandon auditing. */
1794 audit_zero_context(context, context->state);
1795 }
1796 }
1797 BUG_ON(context->in_syscall || context->name_count);
1798
1799 if (!audit_enabled)
1800 return;
1801
2fd6f582005-04-29 16:08:28 +01001802 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 context->major = major;
1804 context->argv[0] = a1;
1805 context->argv[1] = a2;
1806 context->argv[2] = a3;
1807 context->argv[3] = a4;
1808
1809 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001810 context->dummy = !audit_n_rules;
Al Viro0590b932008-12-14 23:45:27 -05001811 if (!context->dummy && state == AUDIT_BUILD_CONTEXT) {
1812 context->prio = 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +01001813 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Al Viro0590b932008-12-14 23:45:27 -05001814 }
Eric Paris56179a62012-01-03 14:23:06 -05001815 if (state == AUDIT_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return;
1817
David Woodhousece625a82005-07-18 14:24:46 -04001818 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 context->ctime = CURRENT_TIME;
1820 context->in_syscall = 1;
Al Viro0590b932008-12-14 23:45:27 -05001821 context->current_state = state;
Alexander Viro419c58f2006-09-29 00:08:50 -04001822 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
1824
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001825/**
1826 * audit_syscall_exit - deallocate audit context after a system call
Eric Parisd7e75282012-01-03 14:23:06 -05001827 * @pt_regs: syscall registers
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001828 *
1829 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1831 * filtering, or because some other part of the kernel write an audit
1832 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001833 * free the names stored from getname().
1834 */
Eric Parisd7e75282012-01-03 14:23:06 -05001835void __audit_syscall_exit(int success, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Al Viro5411be52006-03-29 20:23:36 -05001837 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 struct audit_context *context;
1839
Eric Parisd7e75282012-01-03 14:23:06 -05001840 if (success)
1841 success = AUDITSC_SUCCESS;
1842 else
1843 success = AUDITSC_FAILURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Eric Parisd7e75282012-01-03 14:23:06 -05001845 context = audit_get_context(tsk, success, return_code);
Eric Paris56179a62012-01-03 14:23:06 -05001846 if (!context)
Al Viro97e94c42006-03-29 20:26:24 -05001847 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Al Viro0590b932008-12-14 23:45:27 -05001849 if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
Al Viroe4951492006-03-29 20:17:10 -05001850 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 context->in_syscall = 0;
Al Viro0590b932008-12-14 23:45:27 -05001853 context->prio = context->state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
2fd6f582005-04-29 16:08:28 +01001854
Al Viro916d7572009-06-24 00:02:38 -04001855 if (!list_empty(&context->killed_trees))
1856 audit_kill_trees(&context->killed_trees);
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (context->previous) {
1859 struct audit_context *new_context = context->previous;
1860 context->previous = NULL;
1861 audit_free_context(context);
1862 tsk->audit_context = new_context;
1863 } else {
1864 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001865 unroll_tree_refs(context, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001867 context->aux = NULL;
1868 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001869 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001870 context->target_sid = 0;
Al Viro4f6b4342008-12-09 19:50:34 -05001871 context->sockaddr_len = 0;
Al Virof3298dc2008-12-10 03:16:51 -05001872 context->type = 0;
Al Viro157cf642008-12-14 04:57:47 -05001873 context->fds[0] = -1;
Al Viroe048e022008-12-16 03:51:22 -05001874 if (context->state != AUDIT_RECORD_CONTEXT) {
1875 kfree(context->filterkey);
1876 context->filterkey = NULL;
1877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 tsk->audit_context = context;
1879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
Al Viro74c3cbe2007-07-22 08:04:18 -04001882static inline void handle_one(const struct inode *inode)
1883{
1884#ifdef CONFIG_AUDIT_TREE
1885 struct audit_context *context;
1886 struct audit_tree_refs *p;
1887 struct audit_chunk *chunk;
1888 int count;
Eric Parise61ce862009-12-17 21:24:24 -05001889 if (likely(hlist_empty(&inode->i_fsnotify_marks)))
Al Viro74c3cbe2007-07-22 08:04:18 -04001890 return;
1891 context = current->audit_context;
1892 p = context->trees;
1893 count = context->tree_count;
1894 rcu_read_lock();
1895 chunk = audit_tree_lookup(inode);
1896 rcu_read_unlock();
1897 if (!chunk)
1898 return;
1899 if (likely(put_tree_ref(context, chunk)))
1900 return;
1901 if (unlikely(!grow_tree_refs(context))) {
Eric Paris436c4052008-04-18 10:01:04 -04001902 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001903 audit_set_auditable(context);
1904 audit_put_chunk(chunk);
1905 unroll_tree_refs(context, p, count);
1906 return;
1907 }
1908 put_tree_ref(context, chunk);
1909#endif
1910}
1911
1912static void handle_path(const struct dentry *dentry)
1913{
1914#ifdef CONFIG_AUDIT_TREE
1915 struct audit_context *context;
1916 struct audit_tree_refs *p;
1917 const struct dentry *d, *parent;
1918 struct audit_chunk *drop;
1919 unsigned long seq;
1920 int count;
1921
1922 context = current->audit_context;
1923 p = context->trees;
1924 count = context->tree_count;
1925retry:
1926 drop = NULL;
1927 d = dentry;
1928 rcu_read_lock();
1929 seq = read_seqbegin(&rename_lock);
1930 for(;;) {
1931 struct inode *inode = d->d_inode;
Eric Parise61ce862009-12-17 21:24:24 -05001932 if (inode && unlikely(!hlist_empty(&inode->i_fsnotify_marks))) {
Al Viro74c3cbe2007-07-22 08:04:18 -04001933 struct audit_chunk *chunk;
1934 chunk = audit_tree_lookup(inode);
1935 if (chunk) {
1936 if (unlikely(!put_tree_ref(context, chunk))) {
1937 drop = chunk;
1938 break;
1939 }
1940 }
1941 }
1942 parent = d->d_parent;
1943 if (parent == d)
1944 break;
1945 d = parent;
1946 }
1947 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1948 rcu_read_unlock();
1949 if (!drop) {
1950 /* just a race with rename */
1951 unroll_tree_refs(context, p, count);
1952 goto retry;
1953 }
1954 audit_put_chunk(drop);
1955 if (grow_tree_refs(context)) {
1956 /* OK, got more space */
1957 unroll_tree_refs(context, p, count);
1958 goto retry;
1959 }
1960 /* too bad */
1961 printk(KERN_WARNING
Eric Paris436c4052008-04-18 10:01:04 -04001962 "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001963 unroll_tree_refs(context, p, count);
1964 audit_set_auditable(context);
1965 return;
1966 }
1967 rcu_read_unlock();
1968#endif
1969}
1970
Eric Paris5195d8e2012-01-03 14:23:05 -05001971static struct audit_names *audit_alloc_name(struct audit_context *context)
1972{
1973 struct audit_names *aname;
1974
1975 if (context->name_count < AUDIT_NAMES) {
1976 aname = &context->preallocated_names[context->name_count];
1977 memset(aname, 0, sizeof(*aname));
1978 } else {
1979 aname = kzalloc(sizeof(*aname), GFP_NOFS);
1980 if (!aname)
1981 return NULL;
1982 aname->should_free = true;
1983 }
1984
1985 aname->ino = (unsigned long)-1;
1986 list_add_tail(&aname->list, &context->names_list);
1987
1988 context->name_count++;
1989#if AUDIT_DEBUG
1990 context->ino_count++;
1991#endif
1992 return aname;
1993}
1994
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001995/**
1996 * audit_getname - add a name to the list
1997 * @name: name to add
1998 *
1999 * Add a name to the list of audit names for this context.
2000 * Called from fs/namei.c:getname().
2001 */
Al Virod8945bb52006-05-18 16:01:30 -04002002void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
2004 struct audit_context *context = current->audit_context;
Eric Paris5195d8e2012-01-03 14:23:05 -05002005 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (!context->in_syscall) {
2008#if AUDIT_DEBUG == 2
2009 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
2010 __FILE__, __LINE__, context->serial, name);
2011 dump_stack();
2012#endif
2013 return;
2014 }
Eric Paris5195d8e2012-01-03 14:23:05 -05002015
2016 n = audit_alloc_name(context);
2017 if (!n)
2018 return;
2019
2020 n->name = name;
2021 n->name_len = AUDIT_NAME_FULL;
2022 n->name_put = true;
2023
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002024 if (!context->pwd.dentry)
2025 get_fs_pwd(current->fs, &context->pwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002028/* audit_putname - intercept a putname request
2029 * @name: name to intercept and delay for putname
2030 *
2031 * If we have stored the name from getname in the audit context,
2032 * then we delay the putname until syscall exit.
2033 * Called from include/linux/fs.h:putname().
2034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035void audit_putname(const char *name)
2036{
2037 struct audit_context *context = current->audit_context;
2038
2039 BUG_ON(!context);
2040 if (!context->in_syscall) {
2041#if AUDIT_DEBUG == 2
2042 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
2043 __FILE__, __LINE__, context->serial, name);
2044 if (context->name_count) {
Eric Paris5195d8e2012-01-03 14:23:05 -05002045 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 int i;
Eric Paris5195d8e2012-01-03 14:23:05 -05002047
2048 list_for_each_entry(n, &context->names_list, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 printk(KERN_ERR "name[%d] = %p = %s\n", i,
Eric Paris5195d8e2012-01-03 14:23:05 -05002050 n->name, n->name ?: "(null)");
2051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052#endif
2053 __putname(name);
2054 }
2055#if AUDIT_DEBUG
2056 else {
2057 ++context->put_count;
2058 if (context->put_count > context->name_count) {
2059 printk(KERN_ERR "%s:%d(:%d): major=%d"
2060 " in_syscall=%d putname(%p) name_count=%d"
2061 " put_count=%d\n",
2062 __FILE__, __LINE__,
2063 context->serial, context->major,
2064 context->in_syscall, name, context->name_count,
2065 context->put_count);
2066 dump_stack();
2067 }
2068 }
2069#endif
2070}
2071
Eric Paris851f7ff2008-11-11 21:48:14 +11002072static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
2073{
2074 struct cpu_vfs_cap_data caps;
2075 int rc;
2076
Eric Paris851f7ff2008-11-11 21:48:14 +11002077 if (!dentry)
2078 return 0;
2079
2080 rc = get_vfs_caps_from_disk(dentry, &caps);
2081 if (rc)
2082 return rc;
2083
2084 name->fcap.permitted = caps.permitted;
2085 name->fcap.inheritable = caps.inheritable;
2086 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2087 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2088
2089 return 0;
2090}
2091
2092
Amy Griffis3e2efce2006-07-13 13:16:02 -04002093/* Copy inode data into an audit_names. */
Eric Paris851f7ff2008-11-11 21:48:14 +11002094static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
2095 const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002096{
Amy Griffis3e2efce2006-07-13 13:16:02 -04002097 name->ino = inode->i_ino;
2098 name->dev = inode->i_sb->s_dev;
2099 name->mode = inode->i_mode;
2100 name->uid = inode->i_uid;
2101 name->gid = inode->i_gid;
2102 name->rdev = inode->i_rdev;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002103 security_inode_getsecid(inode, &name->osid);
Eric Paris851f7ff2008-11-11 21:48:14 +11002104 audit_copy_fcaps(name, dentry);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002105}
2106
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002107/**
2108 * audit_inode - store the inode and device from a lookup
2109 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07002110 * @dentry: dentry being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002111 *
2112 * Called from fs/namei.c:path_lookup().
2113 */
Al Viro5a190ae2007-06-07 12:19:32 -04002114void __audit_inode(const char *name, const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04002117 const struct inode *inode = dentry->d_inode;
Eric Paris5195d8e2012-01-03 14:23:05 -05002118 struct audit_names *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120 if (!context->in_syscall)
2121 return;
Eric Paris5195d8e2012-01-03 14:23:05 -05002122
2123 list_for_each_entry_reverse(n, &context->names_list, list) {
2124 if (n->name && (n->name == name))
2125 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Eric Paris5195d8e2012-01-03 14:23:05 -05002127
2128 /* unable to find the name from a previous getname() */
2129 n = audit_alloc_name(context);
2130 if (!n)
2131 return;
2132out:
Al Viro74c3cbe2007-07-22 08:04:18 -04002133 handle_path(dentry);
Eric Paris5195d8e2012-01-03 14:23:05 -05002134 audit_copy_inode(n, dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
Amy Griffis73241cc2005-11-03 16:00:25 +00002137/**
2138 * audit_inode_child - collect inode info for created/removed objects
Randy Dunlap481968f2007-10-21 20:59:53 -07002139 * @dentry: dentry being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04002140 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00002141 *
2142 * For syscalls that create or remove filesystem objects, audit_inode
2143 * can only collect information for the filesystem object's parent.
2144 * This call updates the audit context with the child's information.
2145 * Syscalls that create a new filesystem object must be hooked after
2146 * the object is created. Syscalls that remove a filesystem object
2147 * must be hooked prior, in order to capture the target inode during
2148 * unsuccessful attempts.
2149 */
Al Virocccc6bb2009-12-25 05:07:33 -05002150void __audit_inode_child(const struct dentry *dentry,
Amy Griffis73d3ec52006-07-13 13:16:39 -04002151 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00002152{
Amy Griffis73241cc2005-11-03 16:00:25 +00002153 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05002154 const char *found_parent = NULL, *found_child = NULL;
Al Viro5a190ae2007-06-07 12:19:32 -04002155 const struct inode *inode = dentry->d_inode;
Al Virocccc6bb2009-12-25 05:07:33 -05002156 const char *dname = dentry->d_name.name;
Eric Paris5195d8e2012-01-03 14:23:05 -05002157 struct audit_names *n;
Amy Griffis9c937dc2006-06-08 23:19:31 -04002158 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00002159
2160 if (!context->in_syscall)
2161 return;
2162
Al Viro74c3cbe2007-07-22 08:04:18 -04002163 if (inode)
2164 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00002165
Amy Griffis5712e882007-02-13 14:15:22 -05002166 /* parent is more likely, look for it first */
Eric Paris5195d8e2012-01-03 14:23:05 -05002167 list_for_each_entry(n, &context->names_list, list) {
Amy Griffis5712e882007-02-13 14:15:22 -05002168 if (!n->name)
2169 continue;
2170
2171 if (n->ino == parent->i_ino &&
2172 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2173 n->name_len = dirlen; /* update parent data in place */
2174 found_parent = n->name;
2175 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04002176 }
Steve Grubbac9910c2006-09-28 14:31:32 -04002177 }
Amy Griffis73241cc2005-11-03 16:00:25 +00002178
Amy Griffis5712e882007-02-13 14:15:22 -05002179 /* no matching parent, look for matching child */
Eric Paris5195d8e2012-01-03 14:23:05 -05002180 list_for_each_entry(n, &context->names_list, list) {
Amy Griffis5712e882007-02-13 14:15:22 -05002181 if (!n->name)
2182 continue;
2183
2184 /* strcmp() is the more likely scenario */
2185 if (!strcmp(dname, n->name) ||
2186 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2187 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002188 audit_copy_inode(n, NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002189 else
2190 n->ino = (unsigned long)-1;
2191 found_child = n->name;
2192 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04002193 }
Amy Griffis5712e882007-02-13 14:15:22 -05002194 }
2195
2196add_names:
2197 if (!found_parent) {
Eric Paris5195d8e2012-01-03 14:23:05 -05002198 n = audit_alloc_name(context);
2199 if (!n)
Amy Griffis5712e882007-02-13 14:15:22 -05002200 return;
Eric Paris5195d8e2012-01-03 14:23:05 -05002201 audit_copy_inode(n, NULL, parent);
Amy Griffis73d3ec52006-07-13 13:16:39 -04002202 }
Amy Griffis5712e882007-02-13 14:15:22 -05002203
2204 if (!found_child) {
Eric Paris5195d8e2012-01-03 14:23:05 -05002205 n = audit_alloc_name(context);
2206 if (!n)
Amy Griffis5712e882007-02-13 14:15:22 -05002207 return;
Amy Griffis5712e882007-02-13 14:15:22 -05002208
2209 /* Re-use the name belonging to the slot for a matching parent
2210 * directory. All names for this context are relinquished in
2211 * audit_free_names() */
2212 if (found_parent) {
Eric Paris5195d8e2012-01-03 14:23:05 -05002213 n->name = found_parent;
2214 n->name_len = AUDIT_NAME_FULL;
Amy Griffis5712e882007-02-13 14:15:22 -05002215 /* don't call __putname() */
Eric Paris5195d8e2012-01-03 14:23:05 -05002216 n->name_put = false;
Amy Griffis5712e882007-02-13 14:15:22 -05002217 }
2218
2219 if (inode)
Eric Paris5195d8e2012-01-03 14:23:05 -05002220 audit_copy_inode(n, NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002221 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04002222}
Trond Myklebust50e437d2007-06-07 22:44:34 -04002223EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04002224
2225/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002226 * auditsc_get_stamp - get local copies of audit_context values
2227 * @ctx: audit_context for the task
2228 * @t: timespec to store time recorded in the audit_context
2229 * @serial: serial value that is recorded in the audit_context
2230 *
2231 * Also sets the context as auditable.
2232 */
Al Viro48887e62008-12-06 01:05:50 -05002233int auditsc_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01002234 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
Al Viro48887e62008-12-06 01:05:50 -05002236 if (!ctx->in_syscall)
2237 return 0;
David Woodhousece625a82005-07-18 14:24:46 -04002238 if (!ctx->serial)
2239 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01002240 t->tv_sec = ctx->ctime.tv_sec;
2241 t->tv_nsec = ctx->ctime.tv_nsec;
2242 *serial = ctx->serial;
Al Viro0590b932008-12-14 23:45:27 -05002243 if (!ctx->prio) {
2244 ctx->prio = 1;
2245 ctx->current_state = AUDIT_RECORD_CONTEXT;
2246 }
Al Viro48887e62008-12-06 01:05:50 -05002247 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
2249
Eric Paris4746ec52008-01-08 10:06:53 -05002250/* global counter which is incremented every time something logs in */
2251static atomic_t session_id = ATOMIC_INIT(0);
2252
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002253/**
Eric Paris0a300be2012-01-03 14:23:08 -05002254 * audit_set_loginuid - set current task's audit_context loginuid
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002255 * @loginuid: loginuid value
2256 *
2257 * Returns 0.
2258 *
2259 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2260 */
Eric Paris0a300be2012-01-03 14:23:08 -05002261int audit_set_loginuid(uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
Eric Paris0a300be2012-01-03 14:23:08 -05002263 struct task_struct *task = current;
Steve Grubb41757102006-06-12 07:48:28 -04002264 struct audit_context *context = task->audit_context;
Eric Paris633b4542012-01-03 14:23:08 -05002265 unsigned int sessionid;
Steve Grubbc0404992005-05-13 18:17:42 +01002266
Eric Paris633b4542012-01-03 14:23:08 -05002267#ifdef CONFIG_AUDIT_LOGINUID_IMMUTABLE
2268 if (task->loginuid != -1)
2269 return -EPERM;
2270#else /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
2271 if (!capable(CAP_AUDIT_CONTROL))
2272 return -EPERM;
2273#endif /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
2274
2275 sessionid = atomic_inc_return(&session_id);
Al Virobfef93a2008-01-10 04:53:18 -05002276 if (context && context->in_syscall) {
2277 struct audit_buffer *ab;
Steve Grubb41757102006-06-12 07:48:28 -04002278
Al Virobfef93a2008-01-10 04:53:18 -05002279 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2280 if (ab) {
2281 audit_log_format(ab, "login pid=%d uid=%u "
Eric Paris4746ec52008-01-08 10:06:53 -05002282 "old auid=%u new auid=%u"
2283 " old ses=%u new ses=%u",
David Howellsc69e8d92008-11-14 10:39:19 +11002284 task->pid, task_uid(task),
Eric Paris4746ec52008-01-08 10:06:53 -05002285 task->loginuid, loginuid,
2286 task->sessionid, sessionid);
Al Virobfef93a2008-01-10 04:53:18 -05002287 audit_log_end(ab);
Steve Grubbc0404992005-05-13 18:17:42 +01002288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
Eric Paris4746ec52008-01-08 10:06:53 -05002290 task->sessionid = sessionid;
Al Virobfef93a2008-01-10 04:53:18 -05002291 task->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 return 0;
2293}
2294
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002295/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05002296 * __audit_mq_open - record audit data for a POSIX MQ open
2297 * @oflag: open flag
2298 * @mode: mode bits
Randy Dunlap6b962552009-01-05 13:41:13 -08002299 * @attr: queue attributes
George C. Wilson20ca73b2006-05-24 16:09:55 -05002300 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002301 */
Al Virodf0a4282011-07-26 05:26:10 -04002302void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002303{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002304 struct audit_context *context = current->audit_context;
2305
Al Viro564f6992008-12-14 04:02:26 -05002306 if (attr)
2307 memcpy(&context->mq_open.attr, attr, sizeof(struct mq_attr));
2308 else
2309 memset(&context->mq_open.attr, 0, sizeof(struct mq_attr));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002310
Al Viro564f6992008-12-14 04:02:26 -05002311 context->mq_open.oflag = oflag;
2312 context->mq_open.mode = mode;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002313
Al Viro564f6992008-12-14 04:02:26 -05002314 context->type = AUDIT_MQ_OPEN;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002315}
2316
2317/**
Al Viroc32c8af2008-12-14 03:46:48 -05002318 * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
George C. Wilson20ca73b2006-05-24 16:09:55 -05002319 * @mqdes: MQ descriptor
2320 * @msg_len: Message length
2321 * @msg_prio: Message priority
Al Viroc32c8af2008-12-14 03:46:48 -05002322 * @abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002323 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002324 */
Al Viroc32c8af2008-12-14 03:46:48 -05002325void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2326 const struct timespec *abs_timeout)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002327{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002328 struct audit_context *context = current->audit_context;
Al Viroc32c8af2008-12-14 03:46:48 -05002329 struct timespec *p = &context->mq_sendrecv.abs_timeout;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002330
Al Viroc32c8af2008-12-14 03:46:48 -05002331 if (abs_timeout)
2332 memcpy(p, abs_timeout, sizeof(struct timespec));
2333 else
2334 memset(p, 0, sizeof(struct timespec));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002335
Al Viroc32c8af2008-12-14 03:46:48 -05002336 context->mq_sendrecv.mqdes = mqdes;
2337 context->mq_sendrecv.msg_len = msg_len;
2338 context->mq_sendrecv.msg_prio = msg_prio;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002339
Al Viroc32c8af2008-12-14 03:46:48 -05002340 context->type = AUDIT_MQ_SENDRECV;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002341}
2342
2343/**
2344 * __audit_mq_notify - record audit data for a POSIX MQ notify
2345 * @mqdes: MQ descriptor
Randy Dunlap6b962552009-01-05 13:41:13 -08002346 * @notification: Notification event
George C. Wilson20ca73b2006-05-24 16:09:55 -05002347 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002348 */
2349
Al Viro20114f72008-12-10 07:16:12 -05002350void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002351{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002352 struct audit_context *context = current->audit_context;
2353
Al Viro20114f72008-12-10 07:16:12 -05002354 if (notification)
2355 context->mq_notify.sigev_signo = notification->sigev_signo;
2356 else
2357 context->mq_notify.sigev_signo = 0;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002358
Al Viro20114f72008-12-10 07:16:12 -05002359 context->mq_notify.mqdes = mqdes;
2360 context->type = AUDIT_MQ_NOTIFY;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002361}
2362
2363/**
2364 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2365 * @mqdes: MQ descriptor
2366 * @mqstat: MQ flags
2367 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002368 */
Al Viro73929062008-12-10 06:58:59 -05002369void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002370{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002371 struct audit_context *context = current->audit_context;
Al Viro73929062008-12-10 06:58:59 -05002372 context->mq_getsetattr.mqdes = mqdes;
2373 context->mq_getsetattr.mqstat = *mqstat;
2374 context->type = AUDIT_MQ_GETSETATTR;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002375}
2376
2377/**
Steve Grubb073115d2006-04-02 17:07:33 -04002378 * audit_ipc_obj - record audit data for ipc object
2379 * @ipcp: ipc permissions
2380 *
Steve Grubb073115d2006-04-02 17:07:33 -04002381 */
Al Viroa33e6752008-12-10 03:40:06 -05002382void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002383{
Steve Grubb073115d2006-04-02 17:07:33 -04002384 struct audit_context *context = current->audit_context;
Al Viroa33e6752008-12-10 03:40:06 -05002385 context->ipc.uid = ipcp->uid;
2386 context->ipc.gid = ipcp->gid;
2387 context->ipc.mode = ipcp->mode;
Al Viroe816f372008-12-10 03:47:15 -05002388 context->ipc.has_perm = 0;
Al Viroa33e6752008-12-10 03:40:06 -05002389 security_ipc_getsecid(ipcp, &context->ipc.osid);
2390 context->type = AUDIT_IPC;
Steve Grubb073115d2006-04-02 17:07:33 -04002391}
2392
2393/**
2394 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002395 * @qbytes: msgq bytes
2396 * @uid: msgq user id
2397 * @gid: msgq group id
2398 * @mode: msgq mode (permissions)
2399 *
Al Viroe816f372008-12-10 03:47:15 -05002400 * Called only after audit_ipc_obj().
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002401 */
Al Viro2570ebb2011-07-27 14:03:22 -04002402void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 struct audit_context *context = current->audit_context;
2405
Al Viroe816f372008-12-10 03:47:15 -05002406 context->ipc.qbytes = qbytes;
2407 context->ipc.perm_uid = uid;
2408 context->ipc.perm_gid = gid;
2409 context->ipc.perm_mode = mode;
2410 context->ipc.has_perm = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002412
Eric Paris07c49412012-01-03 14:23:07 -05002413int __audit_bprm(struct linux_binprm *bprm)
Al Viro473ae302006-04-26 14:04:08 -04002414{
2415 struct audit_aux_data_execve *ax;
2416 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002417
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002418 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002419 if (!ax)
2420 return -ENOMEM;
2421
2422 ax->argc = bprm->argc;
2423 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002424 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002425 ax->d.type = AUDIT_EXECVE;
2426 ax->d.next = context->aux;
2427 context->aux = (void *)ax;
2428 return 0;
2429}
2430
2431
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002432/**
2433 * audit_socketcall - record audit data for sys_socketcall
2434 * @nargs: number of args
2435 * @args: args array
2436 *
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002437 */
Eric Paris07c49412012-01-03 14:23:07 -05002438void __audit_socketcall(int nargs, unsigned long *args)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002439{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002440 struct audit_context *context = current->audit_context;
2441
Al Virof3298dc2008-12-10 03:16:51 -05002442 context->type = AUDIT_SOCKETCALL;
2443 context->socketcall.nargs = nargs;
2444 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002445}
2446
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002447/**
Al Virodb349502007-02-07 01:48:00 -05002448 * __audit_fd_pair - record audit data for pipe and socketpair
2449 * @fd1: the first file descriptor
2450 * @fd2: the second file descriptor
2451 *
Al Virodb349502007-02-07 01:48:00 -05002452 */
Al Viro157cf642008-12-14 04:57:47 -05002453void __audit_fd_pair(int fd1, int fd2)
Al Virodb349502007-02-07 01:48:00 -05002454{
2455 struct audit_context *context = current->audit_context;
Al Viro157cf642008-12-14 04:57:47 -05002456 context->fds[0] = fd1;
2457 context->fds[1] = fd2;
Al Virodb349502007-02-07 01:48:00 -05002458}
2459
2460/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002461 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2462 * @len: data length in user space
2463 * @a: data address in kernel space
2464 *
2465 * Returns 0 for success or NULL context or < 0 on error.
2466 */
Eric Paris07c49412012-01-03 14:23:07 -05002467int __audit_sockaddr(int len, void *a)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002468{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002469 struct audit_context *context = current->audit_context;
2470
Al Viro4f6b4342008-12-09 19:50:34 -05002471 if (!context->sockaddr) {
2472 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2473 if (!p)
2474 return -ENOMEM;
2475 context->sockaddr = p;
2476 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002477
Al Viro4f6b4342008-12-09 19:50:34 -05002478 context->sockaddr_len = len;
2479 memcpy(context->sockaddr, a, len);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002480 return 0;
2481}
2482
Al Viroa5cb0132007-03-20 13:58:35 -04002483void __audit_ptrace(struct task_struct *t)
2484{
2485 struct audit_context *context = current->audit_context;
2486
2487 context->target_pid = t->pid;
Eric Parisc2a77802008-01-07 13:40:17 -05002488 context->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002489 context->target_uid = task_uid(t);
Eric Paris4746ec52008-01-08 10:06:53 -05002490 context->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002491 security_task_getsecid(t, &context->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002492 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
Al Viroa5cb0132007-03-20 13:58:35 -04002493}
2494
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002495/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002496 * audit_signal_info - record signal info for shutting down audit subsystem
2497 * @sig: signal value
2498 * @t: task being signaled
2499 *
2500 * If the audit subsystem is being terminated, record the task (pid)
2501 * and uid that is doing that.
2502 */
Amy Griffise54dc242007-03-29 18:01:04 -04002503int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002504{
Amy Griffise54dc242007-03-29 18:01:04 -04002505 struct audit_aux_data_pids *axp;
2506 struct task_struct *tsk = current;
2507 struct audit_context *ctx = tsk->audit_context;
David Howellsc69e8d92008-11-14 10:39:19 +11002508 uid_t uid = current_uid(), t_uid = task_uid(t);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002509
Al Viro175fc482007-08-08 00:01:46 +01002510 if (audit_pid && t->tgid == audit_pid) {
Eric Parisee1d3152008-07-07 10:49:45 -04002511 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
Al Viro175fc482007-08-08 00:01:46 +01002512 audit_sig_pid = tsk->pid;
Al Virobfef93a2008-01-10 04:53:18 -05002513 if (tsk->loginuid != -1)
2514 audit_sig_uid = tsk->loginuid;
Al Viro175fc482007-08-08 00:01:46 +01002515 else
David Howellsc69e8d92008-11-14 10:39:19 +11002516 audit_sig_uid = uid;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002517 security_task_getsecid(tsk, &audit_sig_sid);
Al Viro175fc482007-08-08 00:01:46 +01002518 }
2519 if (!audit_signals || audit_dummy_context())
2520 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002521 }
Amy Griffise54dc242007-03-29 18:01:04 -04002522
Amy Griffise54dc242007-03-29 18:01:04 -04002523 /* optimize the common case by putting first signal recipient directly
2524 * in audit_context */
2525 if (!ctx->target_pid) {
2526 ctx->target_pid = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002527 ctx->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002528 ctx->target_uid = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002529 ctx->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002530 security_task_getsecid(t, &ctx->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002531 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002532 return 0;
2533 }
2534
2535 axp = (void *)ctx->aux_pids;
2536 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2537 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2538 if (!axp)
2539 return -ENOMEM;
2540
2541 axp->d.type = AUDIT_OBJ_PID;
2542 axp->d.next = ctx->aux_pids;
2543 ctx->aux_pids = (void *)axp;
2544 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002545 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002546
2547 axp->target_pid[axp->pid_count] = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002548 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002549 axp->target_uid[axp->pid_count] = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002550 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002551 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
Eric Parisc2a77802008-01-07 13:40:17 -05002552 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002553 axp->pid_count++;
2554
2555 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002556}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002557
2558/**
Eric Paris3fc689e2008-11-11 21:48:18 +11002559 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
David Howellsd84f4f92008-11-14 10:39:23 +11002560 * @bprm: pointer to the bprm being processed
2561 * @new: the proposed new credentials
2562 * @old: the old credentials
Eric Paris3fc689e2008-11-11 21:48:18 +11002563 *
2564 * Simply check if the proc already has the caps given by the file and if not
2565 * store the priv escalation info for later auditing at the end of the syscall
2566 *
Eric Paris3fc689e2008-11-11 21:48:18 +11002567 * -Eric
2568 */
David Howellsd84f4f92008-11-14 10:39:23 +11002569int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2570 const struct cred *new, const struct cred *old)
Eric Paris3fc689e2008-11-11 21:48:18 +11002571{
2572 struct audit_aux_data_bprm_fcaps *ax;
2573 struct audit_context *context = current->audit_context;
2574 struct cpu_vfs_cap_data vcaps;
2575 struct dentry *dentry;
2576
2577 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2578 if (!ax)
David Howellsd84f4f92008-11-14 10:39:23 +11002579 return -ENOMEM;
Eric Paris3fc689e2008-11-11 21:48:18 +11002580
2581 ax->d.type = AUDIT_BPRM_FCAPS;
2582 ax->d.next = context->aux;
2583 context->aux = (void *)ax;
2584
2585 dentry = dget(bprm->file->f_dentry);
2586 get_vfs_caps_from_disk(dentry, &vcaps);
2587 dput(dentry);
2588
2589 ax->fcap.permitted = vcaps.permitted;
2590 ax->fcap.inheritable = vcaps.inheritable;
2591 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2592 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2593
David Howellsd84f4f92008-11-14 10:39:23 +11002594 ax->old_pcap.permitted = old->cap_permitted;
2595 ax->old_pcap.inheritable = old->cap_inheritable;
2596 ax->old_pcap.effective = old->cap_effective;
Eric Paris3fc689e2008-11-11 21:48:18 +11002597
David Howellsd84f4f92008-11-14 10:39:23 +11002598 ax->new_pcap.permitted = new->cap_permitted;
2599 ax->new_pcap.inheritable = new->cap_inheritable;
2600 ax->new_pcap.effective = new->cap_effective;
2601 return 0;
Eric Paris3fc689e2008-11-11 21:48:18 +11002602}
2603
2604/**
Eric Parise68b75a02008-11-11 21:48:22 +11002605 * __audit_log_capset - store information about the arguments to the capset syscall
David Howellsd84f4f92008-11-14 10:39:23 +11002606 * @pid: target pid of the capset call
2607 * @new: the new credentials
2608 * @old: the old (current) credentials
Eric Parise68b75a02008-11-11 21:48:22 +11002609 *
2610 * Record the aguments userspace sent to sys_capset for later printing by the
2611 * audit system if applicable
2612 */
Al Viro57f71a02009-01-04 14:52:57 -05002613void __audit_log_capset(pid_t pid,
David Howellsd84f4f92008-11-14 10:39:23 +11002614 const struct cred *new, const struct cred *old)
Eric Parise68b75a02008-11-11 21:48:22 +11002615{
Eric Parise68b75a02008-11-11 21:48:22 +11002616 struct audit_context *context = current->audit_context;
Al Viro57f71a02009-01-04 14:52:57 -05002617 context->capset.pid = pid;
2618 context->capset.cap.effective = new->cap_effective;
2619 context->capset.cap.inheritable = new->cap_effective;
2620 context->capset.cap.permitted = new->cap_permitted;
2621 context->type = AUDIT_CAPSET;
Eric Parise68b75a02008-11-11 21:48:22 +11002622}
2623
Al Viro120a7952010-10-30 02:54:44 -04002624void __audit_mmap_fd(int fd, int flags)
2625{
2626 struct audit_context *context = current->audit_context;
2627 context->mmap.fd = fd;
2628 context->mmap.flags = flags;
2629 context->type = AUDIT_MMAP;
2630}
2631
Eric Paris85e7bac32012-01-03 14:23:05 -05002632static void audit_log_abend(struct audit_buffer *ab, char *reason, long signr)
2633{
2634 uid_t auid, uid;
2635 gid_t gid;
2636 unsigned int sessionid;
2637
2638 auid = audit_get_loginuid(current);
2639 sessionid = audit_get_sessionid(current);
2640 current_uid_gid(&uid, &gid);
2641
2642 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
2643 auid, uid, gid, sessionid);
2644 audit_log_task_context(ab);
2645 audit_log_format(ab, " pid=%d comm=", current->pid);
2646 audit_log_untrustedstring(ab, current->comm);
2647 audit_log_format(ab, " reason=");
2648 audit_log_string(ab, reason);
2649 audit_log_format(ab, " sig=%ld", signr);
2650}
Eric Parise68b75a02008-11-11 21:48:22 +11002651/**
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002652 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002653 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002654 *
2655 * If a process ends with a core dump, something fishy is going on and we
2656 * should record the event for investigation.
2657 */
2658void audit_core_dumps(long signr)
2659{
2660 struct audit_buffer *ab;
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002661
2662 if (!audit_enabled)
2663 return;
2664
2665 if (signr == SIGQUIT) /* don't care for those */
2666 return;
2667
2668 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
Eric Paris85e7bac32012-01-03 14:23:05 -05002669 audit_log_abend(ab, "memory violation", signr);
2670 audit_log_end(ab);
2671}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002672
Eric Paris85e7bac32012-01-03 14:23:05 -05002673void __audit_seccomp(unsigned long syscall)
2674{
2675 struct audit_buffer *ab;
2676
2677 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
2678 audit_log_abend(ab, "seccomp", SIGKILL);
2679 audit_log_format(ab, " syscall=%ld", syscall);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002680 audit_log_end(ab);
2681}
Al Viro916d7572009-06-24 00:02:38 -04002682
2683struct list_head *audit_killed_trees(void)
2684{
2685 struct audit_context *ctx = current->audit_context;
2686 if (likely(!ctx || !ctx->in_syscall))
2687 return NULL;
2688 return &ctx->killed_trees;
2689}