blob: 327e65d50674af3ee9a5db037895cefd562b3d76 [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>
Alan Cox715b49e2006-01-18 17:44:07 -080047#include <asm/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>
51#include <linux/module.h>
Stephen Smalley01116102005-05-21 00:15:52 +010052#include <linux/mount.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010053#include <linux/socket.h>
George C. Wilson20ca73b2006-05-24 16:09:55 -050054#include <linux/mqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/audit.h>
56#include <linux/personality.h>
57#include <linux/time.h>
David Woodhouse5bb289b2005-06-24 14:14:05 +010058#include <linux/netlink.h>
David Woodhousef5561962005-07-13 22:47:07 +010059#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/unistd.h>
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000061#include <linux/security.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000062#include <linux/list.h>
Steve Grubba6c043a2006-01-01 14:07:00 -050063#include <linux/tty.h>
Al Viro473ae302006-04-26 14:04:08 -040064#include <linux/binfmts.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040065#include <linux/highmem.h>
Al Virof46038f2006-05-06 08:22:52 -040066#include <linux/syscalls.h>
Al Viro74c3cbe2007-07-22 08:04:18 -040067#include <linux/inotify.h>
Eric Paris851f7ff2008-11-11 21:48:14 +110068#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David Woodhousefe7752b2005-12-15 18:33:52 +000070#include "audit.h"
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* AUDIT_NAMES is the number of slots we reserve in the audit_context
73 * for saving names from getname(). */
74#define AUDIT_NAMES 20
75
Amy Griffis9c937dc2006-06-08 23:19:31 -040076/* Indicates that audit should log the full pathname. */
77#define AUDIT_NAME_FULL -1
78
Eric Parisde6bbd12008-01-07 14:31:58 -050079/* no execve audit message should be longer than this (userspace limits) */
80#define MAX_EXECVE_AUDIT_LEN 7500
81
Al Viro471a5c72006-07-10 08:29:24 -040082/* number of audit rules */
83int audit_n_rules;
84
Amy Griffise54dc242007-03-29 18:01:04 -040085/* determines whether we collect data for signals sent */
86int audit_signals;
87
Eric Paris851f7ff2008-11-11 21:48:14 +110088struct audit_cap_data {
89 kernel_cap_t permitted;
90 kernel_cap_t inheritable;
91 union {
92 unsigned int fE; /* effective bit of a file capability */
93 kernel_cap_t effective; /* effective set of a process */
94 };
95};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* When fs/namei.c:getname() is called, we store the pointer in name and
98 * we don't let putname() free it (instead we free all of the saved
99 * pointers at syscall exit time).
100 *
101 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
102struct audit_names {
103 const char *name;
Amy Griffis9c937dc2006-06-08 23:19:31 -0400104 int name_len; /* number of name's characters to log */
105 unsigned name_put; /* call __putname() for this name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unsigned long ino;
107 dev_t dev;
108 umode_t mode;
109 uid_t uid;
110 gid_t gid;
111 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400112 u32 osid;
Eric Paris851f7ff2008-11-11 21:48:14 +1100113 struct audit_cap_data fcap;
114 unsigned int fcap_ver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117struct audit_aux_data {
118 struct audit_aux_data *next;
119 int type;
120};
121
122#define AUDIT_AUX_IPCPERM 0
123
Amy Griffise54dc242007-03-29 18:01:04 -0400124/* Number of target pids per aux struct. */
125#define AUDIT_AUX_PIDS 16
126
Al Viro473ae302006-04-26 14:04:08 -0400127struct audit_aux_data_execve {
128 struct audit_aux_data d;
129 int argc;
130 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700131 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400132};
133
Amy Griffise54dc242007-03-29 18:01:04 -0400134struct audit_aux_data_pids {
135 struct audit_aux_data d;
136 pid_t target_pid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500137 uid_t target_auid[AUDIT_AUX_PIDS];
138 uid_t target_uid[AUDIT_AUX_PIDS];
Eric Paris4746ec52008-01-08 10:06:53 -0500139 unsigned int target_sessionid[AUDIT_AUX_PIDS];
Amy Griffise54dc242007-03-29 18:01:04 -0400140 u32 target_sid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500141 char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
Amy Griffise54dc242007-03-29 18:01:04 -0400142 int pid_count;
143};
144
Eric Paris3fc689e2008-11-11 21:48:18 +1100145struct audit_aux_data_bprm_fcaps {
146 struct audit_aux_data d;
147 struct audit_cap_data fcap;
148 unsigned int fcap_ver;
149 struct audit_cap_data old_pcap;
150 struct audit_cap_data new_pcap;
151};
152
Eric Parise68b75a02008-11-11 21:48:22 +1100153struct audit_aux_data_capset {
154 struct audit_aux_data d;
155 pid_t pid;
156 struct audit_cap_data cap;
157};
158
Al Viro74c3cbe2007-07-22 08:04:18 -0400159struct audit_tree_refs {
160 struct audit_tree_refs *next;
161 struct audit_chunk *c[31];
162};
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* The per-task audit context. */
165struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400166 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int in_syscall; /* 1 if task is in a syscall */
168 enum audit_state state;
169 unsigned int serial; /* serial number for record */
170 struct timespec ctime; /* time of syscall entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int major; /* syscall number */
172 unsigned long argv[4]; /* syscall arguments */
173 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100174 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 int auditable; /* 1 if record should be written */
176 int name_count;
177 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400178 char * filterkey; /* key for rule that triggered record */
Jan Blunck44707fd2008-02-14 19:38:33 -0800179 struct path pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 struct audit_context *previous; /* For nested syscalls */
181 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400182 struct audit_aux_data *aux_pids;
Al Viro4f6b4342008-12-09 19:50:34 -0500183 struct sockaddr_storage *sockaddr;
184 size_t sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400186 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 uid_t uid, euid, suid, fsuid;
188 gid_t gid, egid, sgid, fsgid;
189 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100190 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Al Viroa5cb0132007-03-20 13:58:35 -0400192 pid_t target_pid;
Eric Parisc2a77802008-01-07 13:40:17 -0500193 uid_t target_auid;
194 uid_t target_uid;
Eric Paris4746ec52008-01-08 10:06:53 -0500195 unsigned int target_sessionid;
Al Viroa5cb0132007-03-20 13:58:35 -0400196 u32 target_sid;
Eric Parisc2a77802008-01-07 13:40:17 -0500197 char target_comm[TASK_COMM_LEN];
Al Viroa5cb0132007-03-20 13:58:35 -0400198
Al Viro74c3cbe2007-07-22 08:04:18 -0400199 struct audit_tree_refs *trees, *first_trees;
200 int tree_count;
201
Al Virof3298dc2008-12-10 03:16:51 -0500202 int type;
203 union {
204 struct {
205 int nargs;
206 long args[6];
207 } socketcall;
Al Viroa33e6752008-12-10 03:40:06 -0500208 struct {
209 uid_t uid;
210 gid_t gid;
211 mode_t mode;
212 u32 osid;
Al Viroe816f372008-12-10 03:47:15 -0500213 int has_perm;
214 uid_t perm_uid;
215 gid_t perm_gid;
216 mode_t perm_mode;
217 unsigned long qbytes;
Al Viroa33e6752008-12-10 03:40:06 -0500218 } ipc;
Al Viro73929062008-12-10 06:58:59 -0500219 struct {
220 mqd_t mqdes;
221 struct mq_attr mqstat;
222 } mq_getsetattr;
Al Viro20114f72008-12-10 07:16:12 -0500223 struct {
224 mqd_t mqdes;
225 int sigev_signo;
226 } mq_notify;
Al Viroc32c8af2008-12-14 03:46:48 -0500227 struct {
228 mqd_t mqdes;
229 size_t msg_len;
230 unsigned int msg_prio;
231 struct timespec abs_timeout;
232 } mq_sendrecv;
Al Viro564f6992008-12-14 04:02:26 -0500233 struct {
234 int oflag;
235 mode_t mode;
236 struct mq_attr attr;
237 } mq_open;
Al Virof3298dc2008-12-10 03:16:51 -0500238 };
Al Viro157cf642008-12-14 04:57:47 -0500239 int fds[2];
Al Virof3298dc2008-12-10 03:16:51 -0500240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#if AUDIT_DEBUG
242 int put_count;
243 int ino_count;
244#endif
245};
246
Al Viro55669bf2006-08-31 19:26:40 -0400247#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
248static inline int open_arg(int flags, int mask)
249{
250 int n = ACC_MODE(flags);
251 if (flags & (O_TRUNC | O_CREAT))
252 n |= AUDIT_PERM_WRITE;
253 return n & mask;
254}
255
256static int audit_match_perm(struct audit_context *ctx, int mask)
257{
Cordeliac4bacef2008-08-18 09:45:51 -0700258 unsigned n;
zhangxiliang1a61c882008-08-02 10:56:37 +0800259 if (unlikely(!ctx))
260 return 0;
Cordeliac4bacef2008-08-18 09:45:51 -0700261 n = ctx->major;
Alan Coxdbda4c02008-10-13 10:40:53 +0100262
Al Viro55669bf2006-08-31 19:26:40 -0400263 switch (audit_classify_syscall(ctx->arch, n)) {
264 case 0: /* native */
265 if ((mask & AUDIT_PERM_WRITE) &&
266 audit_match_class(AUDIT_CLASS_WRITE, n))
267 return 1;
268 if ((mask & AUDIT_PERM_READ) &&
269 audit_match_class(AUDIT_CLASS_READ, n))
270 return 1;
271 if ((mask & AUDIT_PERM_ATTR) &&
272 audit_match_class(AUDIT_CLASS_CHATTR, n))
273 return 1;
274 return 0;
275 case 1: /* 32bit on biarch */
276 if ((mask & AUDIT_PERM_WRITE) &&
277 audit_match_class(AUDIT_CLASS_WRITE_32, n))
278 return 1;
279 if ((mask & AUDIT_PERM_READ) &&
280 audit_match_class(AUDIT_CLASS_READ_32, n))
281 return 1;
282 if ((mask & AUDIT_PERM_ATTR) &&
283 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
284 return 1;
285 return 0;
286 case 2: /* open */
287 return mask & ACC_MODE(ctx->argv[1]);
288 case 3: /* openat */
289 return mask & ACC_MODE(ctx->argv[2]);
290 case 4: /* socketcall */
291 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
292 case 5: /* execve */
293 return mask & AUDIT_PERM_EXEC;
294 default:
295 return 0;
296 }
297}
298
Al Viro8b67dca2008-04-28 04:15:49 -0400299static int audit_match_filetype(struct audit_context *ctx, int which)
300{
301 unsigned index = which & ~S_IFMT;
302 mode_t mode = which & S_IFMT;
zhangxiliang1a61c882008-08-02 10:56:37 +0800303
304 if (unlikely(!ctx))
305 return 0;
306
Al Viro8b67dca2008-04-28 04:15:49 -0400307 if (index >= ctx->name_count)
308 return 0;
309 if (ctx->names[index].ino == -1)
310 return 0;
311 if ((ctx->names[index].mode ^ mode) & S_IFMT)
312 return 0;
313 return 1;
314}
315
Al Viro74c3cbe2007-07-22 08:04:18 -0400316/*
317 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
318 * ->first_trees points to its beginning, ->trees - to the current end of data.
319 * ->tree_count is the number of free entries in array pointed to by ->trees.
320 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
321 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
322 * it's going to remain 1-element for almost any setup) until we free context itself.
323 * References in it _are_ dropped - at the same time we free/drop aux stuff.
324 */
325
326#ifdef CONFIG_AUDIT_TREE
327static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
328{
329 struct audit_tree_refs *p = ctx->trees;
330 int left = ctx->tree_count;
331 if (likely(left)) {
332 p->c[--left] = chunk;
333 ctx->tree_count = left;
334 return 1;
335 }
336 if (!p)
337 return 0;
338 p = p->next;
339 if (p) {
340 p->c[30] = chunk;
341 ctx->trees = p;
342 ctx->tree_count = 30;
343 return 1;
344 }
345 return 0;
346}
347
348static int grow_tree_refs(struct audit_context *ctx)
349{
350 struct audit_tree_refs *p = ctx->trees;
351 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
352 if (!ctx->trees) {
353 ctx->trees = p;
354 return 0;
355 }
356 if (p)
357 p->next = ctx->trees;
358 else
359 ctx->first_trees = ctx->trees;
360 ctx->tree_count = 31;
361 return 1;
362}
363#endif
364
365static void unroll_tree_refs(struct audit_context *ctx,
366 struct audit_tree_refs *p, int count)
367{
368#ifdef CONFIG_AUDIT_TREE
369 struct audit_tree_refs *q;
370 int n;
371 if (!p) {
372 /* we started with empty chain */
373 p = ctx->first_trees;
374 count = 31;
375 /* if the very first allocation has failed, nothing to do */
376 if (!p)
377 return;
378 }
379 n = count;
380 for (q = p; q != ctx->trees; q = q->next, n = 31) {
381 while (n--) {
382 audit_put_chunk(q->c[n]);
383 q->c[n] = NULL;
384 }
385 }
386 while (n-- > ctx->tree_count) {
387 audit_put_chunk(q->c[n]);
388 q->c[n] = NULL;
389 }
390 ctx->trees = p;
391 ctx->tree_count = count;
392#endif
393}
394
395static void free_tree_refs(struct audit_context *ctx)
396{
397 struct audit_tree_refs *p, *q;
398 for (p = ctx->first_trees; p; p = q) {
399 q = p->next;
400 kfree(p);
401 }
402}
403
404static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
405{
406#ifdef CONFIG_AUDIT_TREE
407 struct audit_tree_refs *p;
408 int n;
409 if (!tree)
410 return 0;
411 /* full ones */
412 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
413 for (n = 0; n < 31; n++)
414 if (audit_tree_match(p->c[n], tree))
415 return 1;
416 }
417 /* partial */
418 if (p) {
419 for (n = ctx->tree_count; n < 31; n++)
420 if (audit_tree_match(p->c[n], tree))
421 return 1;
422 }
423#endif
424 return 0;
425}
426
Amy Griffisf368c07d2006-04-07 16:55:56 -0400427/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/* Compare a task_struct with an audit_rule. Return 1 on match, 0
429 * otherwise. */
430static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500431 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400433 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 enum audit_state *state)
435{
David Howellsc69e8d92008-11-14 10:39:19 +1100436 const struct cred *cred = get_task_cred(tsk);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400437 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600438 u32 sid;
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500441 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 int result = 0;
443
Amy Griffis93315ed2006-02-07 12:05:27 -0500444 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500446 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 break;
Al Viro3c662512006-05-06 08:26:27 -0400448 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400449 if (ctx) {
450 if (!ctx->ppid)
451 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400452 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400453 }
Al Viro3c662512006-05-06 08:26:27 -0400454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 case AUDIT_UID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100456 result = audit_comparator(cred->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 break;
458 case AUDIT_EUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100459 result = audit_comparator(cred->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 break;
461 case AUDIT_SUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100462 result = audit_comparator(cred->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 case AUDIT_FSUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100465 result = audit_comparator(cred->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 case AUDIT_GID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100468 result = audit_comparator(cred->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case AUDIT_EGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100471 result = audit_comparator(cred->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 case AUDIT_SGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100474 result = audit_comparator(cred->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476 case AUDIT_FSGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100477 result = audit_comparator(cred->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500480 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 break;
2fd6f582005-04-29 16:08:28 +0100482 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700483 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500484 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 case AUDIT_EXIT:
488 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500489 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100492 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500493 if (f->val)
494 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100495 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500496 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 break;
499 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400500 if (name)
501 result = audit_comparator(MAJOR(name->dev),
502 f->op, f->val);
503 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500505 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ++result;
507 break;
508 }
509 }
510 }
511 break;
512 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400513 if (name)
514 result = audit_comparator(MINOR(name->dev),
515 f->op, f->val);
516 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500518 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 ++result;
520 break;
521 }
522 }
523 }
524 break;
525 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400526 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400527 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400528 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400530 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ++result;
532 break;
533 }
534 }
535 }
536 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400537 case AUDIT_WATCH:
538 if (name && rule->watch->ino != (unsigned long)-1)
539 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400540 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400541 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400542 case AUDIT_DIR:
543 if (ctx)
544 result = match_tree_refs(ctx, rule->tree);
545 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 case AUDIT_LOGINUID:
547 result = 0;
548 if (ctx)
Al Virobfef93a2008-01-10 04:53:18 -0500549 result = audit_comparator(tsk->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500551 case AUDIT_SUBJ_USER:
552 case AUDIT_SUBJ_ROLE:
553 case AUDIT_SUBJ_TYPE:
554 case AUDIT_SUBJ_SEN:
555 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600556 /* NOTE: this may return negative values indicating
557 a temporary error. We simply treat this as a
558 match for now to avoid losing information that
559 may be wanted. An error message will also be
560 logged upon error */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000561 if (f->lsm_rule) {
Steve Grubb2ad312d2006-04-11 08:50:56 -0400562 if (need_sid) {
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200563 security_task_getsecid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400564 need_sid = 0;
565 }
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200566 result = security_audit_rule_match(sid, f->type,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600567 f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000568 f->lsm_rule,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600569 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400570 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600571 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500572 case AUDIT_OBJ_USER:
573 case AUDIT_OBJ_ROLE:
574 case AUDIT_OBJ_TYPE:
575 case AUDIT_OBJ_LEV_LOW:
576 case AUDIT_OBJ_LEV_HIGH:
577 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
578 also applies here */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000579 if (f->lsm_rule) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500580 /* Find files that match */
581 if (name) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200582 result = security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500583 name->osid, f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000584 f->lsm_rule, ctx);
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500585 } else if (ctx) {
586 for (j = 0; j < ctx->name_count; j++) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200587 if (security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500588 ctx->names[j].osid,
589 f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000590 f->lsm_rule, ctx)) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500591 ++result;
592 break;
593 }
594 }
595 }
596 /* Find ipc objects that match */
Al Viroa33e6752008-12-10 03:40:06 -0500597 if (!ctx || ctx->type != AUDIT_IPC)
598 break;
599 if (security_audit_rule_match(ctx->ipc.osid,
600 f->type, f->op,
601 f->lsm_rule, ctx))
602 ++result;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500603 }
604 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 case AUDIT_ARG0:
606 case AUDIT_ARG1:
607 case AUDIT_ARG2:
608 case AUDIT_ARG3:
609 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500610 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400612 case AUDIT_FILTERKEY:
613 /* ignore this field for filtering */
614 result = 1;
615 break;
Al Viro55669bf2006-08-31 19:26:40 -0400616 case AUDIT_PERM:
617 result = audit_match_perm(ctx, f->val);
618 break;
Al Viro8b67dca2008-04-28 04:15:49 -0400619 case AUDIT_FILETYPE:
620 result = audit_match_filetype(ctx, f->val);
621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
David Howellsc69e8d92008-11-14 10:39:19 +1100624 if (!result) {
625 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
zhangxiliang980dfb02008-08-01 19:15:47 +0800629 if (rule->filterkey && ctx)
Amy Griffis5adc8a62006-06-14 18:45:21 -0400630 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 switch (rule->action) {
632 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
634 }
David Howellsc69e8d92008-11-14 10:39:19 +1100635 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 1;
637}
638
639/* At process creation time, we can determine if system-call auditing is
640 * completely disabled for this task. Since we only have the task
641 * structure at this point, we can only check uid and gid.
642 */
643static enum audit_state audit_filter_task(struct task_struct *tsk)
644{
645 struct audit_entry *e;
646 enum audit_state state;
647
648 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100649 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400650 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 rcu_read_unlock();
652 return state;
653 }
654 }
655 rcu_read_unlock();
656 return AUDIT_BUILD_CONTEXT;
657}
658
659/* At syscall entry and exit time, this filter is called if the
660 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100661 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700662 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
664static enum audit_state audit_filter_syscall(struct task_struct *tsk,
665 struct audit_context *ctx,
666 struct list_head *list)
667{
668 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100669 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
David Woodhouse351bb722005-07-14 14:40:06 +0100671 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100672 return AUDIT_DISABLED;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100675 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000676 int word = AUDIT_WORD(ctx->major);
677 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100678
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000679 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400680 if ((e->rule.mask[word] & bit) == bit &&
681 audit_filter_rules(tsk, &e->rule, ctx, NULL,
682 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000683 rcu_read_unlock();
684 return state;
685 }
686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688 rcu_read_unlock();
689 return AUDIT_BUILD_CONTEXT;
690}
691
Amy Griffisf368c07d2006-04-07 16:55:56 -0400692/* At syscall exit time, this filter is called if any audit_names[] have been
693 * collected during syscall processing. We only check rules in sublists at hash
694 * buckets applicable to the inode numbers in audit_names[].
695 * Regarding audit_state, same rules apply as for audit_filter_syscall().
696 */
697enum audit_state audit_filter_inodes(struct task_struct *tsk,
698 struct audit_context *ctx)
699{
700 int i;
701 struct audit_entry *e;
702 enum audit_state state;
703
704 if (audit_pid && tsk->tgid == audit_pid)
705 return AUDIT_DISABLED;
706
707 rcu_read_lock();
708 for (i = 0; i < ctx->name_count; i++) {
709 int word = AUDIT_WORD(ctx->major);
710 int bit = AUDIT_BIT(ctx->major);
711 struct audit_names *n = &ctx->names[i];
712 int h = audit_hash_ino((u32)n->ino);
713 struct list_head *list = &audit_inode_hash[h];
714
715 if (list_empty(list))
716 continue;
717
718 list_for_each_entry_rcu(e, list, list) {
719 if ((e->rule.mask[word] & bit) == bit &&
720 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
721 rcu_read_unlock();
722 return state;
723 }
724 }
725 }
726 rcu_read_unlock();
727 return AUDIT_BUILD_CONTEXT;
728}
729
730void audit_set_auditable(struct audit_context *ctx)
731{
732 ctx->auditable = 1;
733}
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735static inline struct audit_context *audit_get_context(struct task_struct *tsk,
736 int return_valid,
737 int return_code)
738{
739 struct audit_context *context = tsk->audit_context;
740
741 if (likely(!context))
742 return NULL;
743 context->return_valid = return_valid;
Eric Parisf701b752008-01-07 13:34:51 -0500744
745 /*
746 * we need to fix up the return code in the audit logs if the actual
747 * return codes are later going to be fixed up by the arch specific
748 * signal handlers
749 *
750 * This is actually a test for:
751 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
752 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
753 *
754 * but is faster than a bunch of ||
755 */
756 if (unlikely(return_code <= -ERESTARTSYS) &&
757 (return_code >= -ERESTART_RESTARTBLOCK) &&
758 (return_code != -ENOIOCTLCMD))
759 context->return_code = -EINTR;
760 else
761 context->return_code = return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Al Virod51374a2006-08-03 10:59:26 -0400763 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400765
David Woodhouse0f45aa12005-06-19 19:35:50 +0100766 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400767 if (state == AUDIT_RECORD_CONTEXT) {
768 context->auditable = 1;
769 goto get_context;
770 }
771
772 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (state == AUDIT_RECORD_CONTEXT)
774 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
Amy Griffisf368c07d2006-04-07 16:55:56 -0400778get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 tsk->audit_context = NULL;
781 return context;
782}
783
784static inline void audit_free_names(struct audit_context *context)
785{
786 int i;
787
788#if AUDIT_DEBUG == 2
789 if (context->auditable
790 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000791 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 " name_count=%d put_count=%d"
793 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000794 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 context->serial, context->major, context->in_syscall,
796 context->name_count, context->put_count,
797 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000798 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 printk(KERN_ERR "names[%d] = %p = %s\n", i,
800 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000801 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 dump_stack();
804 return;
805 }
806#endif
807#if AUDIT_DEBUG
808 context->put_count = 0;
809 context->ino_count = 0;
810#endif
811
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000812 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400813 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 context->name_count = 0;
Jan Blunck44707fd2008-02-14 19:38:33 -0800817 path_put(&context->pwd);
818 context->pwd.dentry = NULL;
819 context->pwd.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
822static inline void audit_free_aux(struct audit_context *context)
823{
824 struct audit_aux_data *aux;
825
826 while ((aux = context->aux)) {
827 context->aux = aux->next;
828 kfree(aux);
829 }
Amy Griffise54dc242007-03-29 18:01:04 -0400830 while ((aux = context->aux_pids)) {
831 context->aux_pids = aux->next;
832 kfree(aux);
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
836static inline void audit_zero_context(struct audit_context *context,
837 enum audit_state state)
838{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 memset(context, 0, sizeof(*context));
840 context->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
843static inline struct audit_context *audit_alloc_context(enum audit_state state)
844{
845 struct audit_context *context;
846
847 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
848 return NULL;
849 audit_zero_context(context, state);
850 return context;
851}
852
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700853/**
854 * audit_alloc - allocate an audit context block for a task
855 * @tsk: task
856 *
857 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * if necessary. Doing so turns on system call auditing for the
859 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700860 * needed.
861 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862int audit_alloc(struct task_struct *tsk)
863{
864 struct audit_context *context;
865 enum audit_state state;
866
Eric Parisb593d382008-01-08 17:38:31 -0500867 if (likely(!audit_ever_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return 0; /* Return if not auditing. */
869
870 state = audit_filter_task(tsk);
871 if (likely(state == AUDIT_DISABLED))
872 return 0;
873
874 if (!(context = audit_alloc_context(state))) {
875 audit_log_lost("out of memory in audit_alloc");
876 return -ENOMEM;
877 }
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 tsk->audit_context = context;
880 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
881 return 0;
882}
883
884static inline void audit_free_context(struct audit_context *context)
885{
886 struct audit_context *previous;
887 int count = 0;
888
889 do {
890 previous = context->previous;
891 if (previous || (count && count < 10)) {
892 ++count;
893 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
894 " freeing multiple contexts (%d)\n",
895 context->serial, context->major,
896 context->name_count, count);
897 }
898 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -0400899 unroll_tree_refs(context, NULL, 0);
900 free_tree_refs(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400902 kfree(context->filterkey);
Al Viro4f6b4342008-12-09 19:50:34 -0500903 kfree(context->sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 kfree(context);
905 context = previous;
906 } while (context);
907 if (count >= 10)
908 printk(KERN_ERR "audit: freed %d contexts\n", count);
909}
910
Joy Latten161a09e2006-11-27 13:11:54 -0600911void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000912{
913 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +0000914 unsigned len;
915 int error;
916 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000917
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200918 security_task_getsecid(current, &sid);
Al Viroc4823bc2007-03-12 16:17:42 +0000919 if (!sid)
920 return;
921
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200922 error = security_secid_to_secctx(sid, &ctx, &len);
Al Viroc4823bc2007-03-12 16:17:42 +0000923 if (error) {
924 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000925 goto error_path;
926 return;
927 }
928
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000929 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200930 security_release_secctx(ctx, len);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000931 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000932
933error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000934 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000935 return;
936}
937
Joy Latten161a09e2006-11-27 13:11:54 -0600938EXPORT_SYMBOL(audit_log_task_context);
939
Al Viroe4951492006-03-29 20:17:10 -0500940static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700941{
Al Viro45d9bb02006-03-29 20:02:55 -0500942 char name[sizeof(tsk->comm)];
943 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700944 struct vm_area_struct *vma;
945
Al Viroe4951492006-03-29 20:17:10 -0500946 /* tsk == current */
947
Al Viro45d9bb02006-03-29 20:02:55 -0500948 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100949 audit_log_format(ab, " comm=");
950 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700951
Al Viroe4951492006-03-29 20:17:10 -0500952 if (mm) {
953 down_read(&mm->mmap_sem);
954 vma = mm->mmap;
955 while (vma) {
956 if ((vma->vm_flags & VM_EXECUTABLE) &&
957 vma->vm_file) {
958 audit_log_d_path(ab, "exe=",
Jan Blunck44707fd2008-02-14 19:38:33 -0800959 &vma->vm_file->f_path);
Al Viroe4951492006-03-29 20:17:10 -0500960 break;
961 }
962 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700963 }
Al Viroe4951492006-03-29 20:17:10 -0500964 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700965 }
Al Viroe4951492006-03-29 20:17:10 -0500966 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700967}
968
Amy Griffise54dc242007-03-29 18:01:04 -0400969static int audit_log_pid_context(struct audit_context *context, pid_t pid,
Eric Paris4746ec52008-01-08 10:06:53 -0500970 uid_t auid, uid_t uid, unsigned int sessionid,
971 u32 sid, char *comm)
Amy Griffise54dc242007-03-29 18:01:04 -0400972{
973 struct audit_buffer *ab;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200974 char *ctx = NULL;
Amy Griffise54dc242007-03-29 18:01:04 -0400975 u32 len;
976 int rc = 0;
977
978 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
979 if (!ab)
Eric Paris6246cca2008-01-07 14:01:18 -0500980 return rc;
Amy Griffise54dc242007-03-29 18:01:04 -0400981
Eric Paris4746ec52008-01-08 10:06:53 -0500982 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid, auid,
983 uid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200984 if (security_secid_to_secctx(sid, &ctx, &len)) {
Eric Parisc2a77802008-01-07 13:40:17 -0500985 audit_log_format(ab, " obj=(none)");
Amy Griffise54dc242007-03-29 18:01:04 -0400986 rc = 1;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200987 } else {
988 audit_log_format(ab, " obj=%s", ctx);
989 security_release_secctx(ctx, len);
990 }
Eric Parisc2a77802008-01-07 13:40:17 -0500991 audit_log_format(ab, " ocomm=");
992 audit_log_untrustedstring(ab, comm);
Amy Griffise54dc242007-03-29 18:01:04 -0400993 audit_log_end(ab);
Amy Griffise54dc242007-03-29 18:01:04 -0400994
995 return rc;
996}
997
Eric Parisde6bbd12008-01-07 14:31:58 -0500998/*
999 * to_send and len_sent accounting are very loose estimates. We aren't
1000 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
1001 * within about 500 bytes (next page boundry)
1002 *
1003 * why snprintf? an int is up to 12 digits long. if we just assumed when
1004 * logging that a[%d]= was going to be 16 characters long we would be wasting
1005 * space in every audit message. In one 7500 byte message we can log up to
1006 * about 1000 min size arguments. That comes down to about 50% waste of space
1007 * if we didn't do the snprintf to find out how long arg_num_len was.
1008 */
1009static int audit_log_single_execve_arg(struct audit_context *context,
1010 struct audit_buffer **ab,
1011 int arg_num,
1012 size_t *len_sent,
1013 const char __user *p,
1014 char *buf)
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001015{
Eric Parisde6bbd12008-01-07 14:31:58 -05001016 char arg_num_len_buf[12];
1017 const char __user *tmp_p = p;
1018 /* how many digits are in arg_num? 3 is the length of a=\n */
1019 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 3;
1020 size_t len, len_left, to_send;
1021 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1022 unsigned int i, has_cntl = 0, too_long = 0;
1023 int ret;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001024
Eric Parisde6bbd12008-01-07 14:31:58 -05001025 /* strnlen_user includes the null we don't want to send */
1026 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001027
Eric Parisde6bbd12008-01-07 14:31:58 -05001028 /*
1029 * We just created this mm, if we can't find the strings
1030 * we just copied into it something is _very_ wrong. Similar
1031 * for strings that are too long, we should not have created
1032 * any.
1033 */
Eric Parisb0abcfc2008-02-18 18:23:16 -05001034 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
Eric Parisde6bbd12008-01-07 14:31:58 -05001035 WARN_ON(1);
1036 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001037 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001038 }
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001039
Eric Parisde6bbd12008-01-07 14:31:58 -05001040 /* walk the whole argument looking for non-ascii chars */
1041 do {
1042 if (len_left > MAX_EXECVE_AUDIT_LEN)
1043 to_send = MAX_EXECVE_AUDIT_LEN;
1044 else
1045 to_send = len_left;
1046 ret = copy_from_user(buf, tmp_p, to_send);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001047 /*
1048 * There is no reason for this copy to be short. We just
1049 * copied them here, and the mm hasn't been exposed to user-
1050 * space yet.
1051 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001052 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001053 WARN_ON(1);
1054 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001055 return -1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001056 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001057 buf[to_send] = '\0';
1058 has_cntl = audit_string_contains_control(buf, to_send);
1059 if (has_cntl) {
1060 /*
1061 * hex messages get logged as 2 bytes, so we can only
1062 * send half as much in each message
1063 */
1064 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
1065 break;
1066 }
1067 len_left -= to_send;
1068 tmp_p += to_send;
1069 } while (len_left > 0);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001070
Eric Parisde6bbd12008-01-07 14:31:58 -05001071 len_left = len;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001072
Eric Parisde6bbd12008-01-07 14:31:58 -05001073 if (len > max_execve_audit_len)
1074 too_long = 1;
1075
1076 /* rewalk the argument actually logging the message */
1077 for (i = 0; len_left > 0; i++) {
1078 int room_left;
1079
1080 if (len_left > max_execve_audit_len)
1081 to_send = max_execve_audit_len;
1082 else
1083 to_send = len_left;
1084
1085 /* do we have space left to send this argument in this ab? */
1086 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1087 if (has_cntl)
1088 room_left -= (to_send * 2);
1089 else
1090 room_left -= to_send;
1091 if (room_left < 0) {
1092 *len_sent = 0;
1093 audit_log_end(*ab);
1094 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1095 if (!*ab)
1096 return 0;
1097 }
1098
1099 /*
1100 * first record needs to say how long the original string was
1101 * so we can be sure nothing was lost.
1102 */
1103 if ((i == 0) && (too_long))
Paul Moore422b03c2008-02-27 10:39:22 -05001104 audit_log_format(*ab, "a%d_len=%zu ", arg_num,
Eric Parisde6bbd12008-01-07 14:31:58 -05001105 has_cntl ? 2*len : len);
1106
1107 /*
1108 * normally arguments are small enough to fit and we already
1109 * filled buf above when we checked for control characters
1110 * so don't bother with another copy_from_user
1111 */
1112 if (len >= max_execve_audit_len)
1113 ret = copy_from_user(buf, p, to_send);
1114 else
1115 ret = 0;
1116 if (ret) {
1117 WARN_ON(1);
1118 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001119 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001120 }
1121 buf[to_send] = '\0';
1122
1123 /* actually log it */
1124 audit_log_format(*ab, "a%d", arg_num);
1125 if (too_long)
1126 audit_log_format(*ab, "[%d]", i);
1127 audit_log_format(*ab, "=");
1128 if (has_cntl)
Eric Parisb556f8a2008-04-18 10:12:59 -04001129 audit_log_n_hex(*ab, buf, to_send);
Eric Parisde6bbd12008-01-07 14:31:58 -05001130 else
1131 audit_log_format(*ab, "\"%s\"", buf);
1132 audit_log_format(*ab, "\n");
1133
1134 p += to_send;
1135 len_left -= to_send;
1136 *len_sent += arg_num_len;
1137 if (has_cntl)
1138 *len_sent += to_send * 2;
1139 else
1140 *len_sent += to_send;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001141 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001142 /* include the null we didn't log */
1143 return len + 1;
1144}
1145
1146static void audit_log_execve_info(struct audit_context *context,
1147 struct audit_buffer **ab,
1148 struct audit_aux_data_execve *axi)
1149{
1150 int i;
1151 size_t len, len_sent = 0;
1152 const char __user *p;
1153 char *buf;
1154
1155 if (axi->mm != current->mm)
1156 return; /* execve failed, no additional info */
1157
1158 p = (const char __user *)axi->mm->arg_start;
1159
1160 audit_log_format(*ab, "argc=%d ", axi->argc);
1161
1162 /*
1163 * we need some kernel buffer to hold the userspace args. Just
1164 * allocate one big one rather than allocating one of the right size
1165 * for every single argument inside audit_log_single_execve_arg()
1166 * should be <8k allocation so should be pretty safe.
1167 */
1168 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1169 if (!buf) {
1170 audit_panic("out of memory for argv string\n");
1171 return;
1172 }
1173
1174 for (i = 0; i < axi->argc; i++) {
1175 len = audit_log_single_execve_arg(context, ab, i,
1176 &len_sent, p, buf);
1177 if (len <= 0)
1178 break;
1179 p += len;
1180 }
1181 kfree(buf);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001182}
1183
Eric Paris851f7ff2008-11-11 21:48:14 +11001184static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1185{
1186 int i;
1187
1188 audit_log_format(ab, " %s=", prefix);
1189 CAP_FOR_EACH_U32(i) {
1190 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1191 }
1192}
1193
1194static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1195{
1196 kernel_cap_t *perm = &name->fcap.permitted;
1197 kernel_cap_t *inh = &name->fcap.inheritable;
1198 int log = 0;
1199
1200 if (!cap_isclear(*perm)) {
1201 audit_log_cap(ab, "cap_fp", perm);
1202 log = 1;
1203 }
1204 if (!cap_isclear(*inh)) {
1205 audit_log_cap(ab, "cap_fi", inh);
1206 log = 1;
1207 }
1208
1209 if (log)
1210 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1211}
1212
Al Viroa33e6752008-12-10 03:40:06 -05001213static void show_special(struct audit_context *context, int *call_panic)
Al Virof3298dc2008-12-10 03:16:51 -05001214{
1215 struct audit_buffer *ab;
1216 int i;
1217
1218 ab = audit_log_start(context, GFP_KERNEL, context->type);
1219 if (!ab)
1220 return;
1221
1222 switch (context->type) {
1223 case AUDIT_SOCKETCALL: {
1224 int nargs = context->socketcall.nargs;
1225 audit_log_format(ab, "nargs=%d", nargs);
1226 for (i = 0; i < nargs; i++)
1227 audit_log_format(ab, " a%d=%lx", i,
1228 context->socketcall.args[i]);
1229 break; }
Al Viroa33e6752008-12-10 03:40:06 -05001230 case AUDIT_IPC: {
1231 u32 osid = context->ipc.osid;
1232
1233 audit_log_format(ab, "ouid=%u ogid=%u mode=%#o",
1234 context->ipc.uid, context->ipc.gid, context->ipc.mode);
1235 if (osid) {
1236 char *ctx = NULL;
1237 u32 len;
1238 if (security_secid_to_secctx(osid, &ctx, &len)) {
1239 audit_log_format(ab, " osid=%u", osid);
1240 *call_panic = 1;
1241 } else {
1242 audit_log_format(ab, " obj=%s", ctx);
1243 security_release_secctx(ctx, len);
1244 }
1245 }
Al Viroe816f372008-12-10 03:47:15 -05001246 if (context->ipc.has_perm) {
1247 audit_log_end(ab);
1248 ab = audit_log_start(context, GFP_KERNEL,
1249 AUDIT_IPC_SET_PERM);
1250 audit_log_format(ab,
1251 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
1252 context->ipc.qbytes,
1253 context->ipc.perm_uid,
1254 context->ipc.perm_gid,
1255 context->ipc.perm_mode);
1256 if (!ab)
1257 return;
1258 }
Al Viroa33e6752008-12-10 03:40:06 -05001259 break; }
Al Viro564f6992008-12-14 04:02:26 -05001260 case AUDIT_MQ_OPEN: {
1261 audit_log_format(ab,
1262 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
1263 "mq_msgsize=%ld mq_curmsgs=%ld",
1264 context->mq_open.oflag, context->mq_open.mode,
1265 context->mq_open.attr.mq_flags,
1266 context->mq_open.attr.mq_maxmsg,
1267 context->mq_open.attr.mq_msgsize,
1268 context->mq_open.attr.mq_curmsgs);
1269 break; }
Al Viroc32c8af2008-12-14 03:46:48 -05001270 case AUDIT_MQ_SENDRECV: {
1271 audit_log_format(ab,
1272 "mqdes=%d msg_len=%zd msg_prio=%u "
1273 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1274 context->mq_sendrecv.mqdes,
1275 context->mq_sendrecv.msg_len,
1276 context->mq_sendrecv.msg_prio,
1277 context->mq_sendrecv.abs_timeout.tv_sec,
1278 context->mq_sendrecv.abs_timeout.tv_nsec);
1279 break; }
Al Viro20114f72008-12-10 07:16:12 -05001280 case AUDIT_MQ_NOTIFY: {
1281 audit_log_format(ab, "mqdes=%d sigev_signo=%d",
1282 context->mq_notify.mqdes,
1283 context->mq_notify.sigev_signo);
1284 break; }
Al Viro73929062008-12-10 06:58:59 -05001285 case AUDIT_MQ_GETSETATTR: {
1286 struct mq_attr *attr = &context->mq_getsetattr.mqstat;
1287 audit_log_format(ab,
1288 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1289 "mq_curmsgs=%ld ",
1290 context->mq_getsetattr.mqdes,
1291 attr->mq_flags, attr->mq_maxmsg,
1292 attr->mq_msgsize, attr->mq_curmsgs);
1293 break; }
Al Virof3298dc2008-12-10 03:16:51 -05001294 }
1295 audit_log_end(ab);
1296}
1297
Al Viroe4951492006-03-29 20:17:10 -05001298static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
David Howellsc69e8d92008-11-14 10:39:19 +11001300 const struct cred *cred;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001301 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001303 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -05001304 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Al Viroe4951492006-03-29 20:17:10 -05001306 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001307 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -04001308 if (!context->ppid)
1309 context->ppid = sys_getppid();
David Howellsc69e8d92008-11-14 10:39:19 +11001310 cred = current_cred();
1311 context->uid = cred->uid;
1312 context->gid = cred->gid;
1313 context->euid = cred->euid;
1314 context->suid = cred->suid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001315 context->fsuid = cred->fsuid;
David Howellsc69e8d92008-11-14 10:39:19 +11001316 context->egid = cred->egid;
1317 context->sgid = cred->sgid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001318 context->fsgid = cred->fsgid;
Al Viro3f2792f2006-07-16 06:43:48 -04001319 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001320
1321 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (!ab)
1323 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001324 audit_log_format(ab, "arch=%x syscall=%d",
1325 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (context->personality != PER_LINUX)
1327 audit_log_format(ab, " per=%lx", context->personality);
1328 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001329 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001330 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1331 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001332
Alan Coxdbda4c02008-10-13 10:40:53 +01001333 spin_lock_irq(&tsk->sighand->siglock);
Al Viro45d9bb02006-03-29 20:02:55 -05001334 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1335 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -05001336 else
1337 tty = "(none)";
Alan Coxdbda4c02008-10-13 10:40:53 +01001338 spin_unlock_irq(&tsk->sighand->siglock);
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 audit_log_format(ab,
1341 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -04001342 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +01001343 " euid=%u suid=%u fsuid=%u"
Eric Paris4746ec52008-01-08 10:06:53 -05001344 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 context->argv[0],
1346 context->argv[1],
1347 context->argv[2],
1348 context->argv[3],
1349 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -04001350 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 context->pid,
Al Virobfef93a2008-01-10 04:53:18 -05001352 tsk->loginuid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 context->uid,
1354 context->gid,
1355 context->euid, context->suid, context->fsuid,
Eric Paris4746ec52008-01-08 10:06:53 -05001356 context->egid, context->sgid, context->fsgid, tty,
1357 tsk->sessionid);
Alan Coxeb84a202006-09-29 02:01:41 -07001358
Alan Coxeb84a202006-09-29 02:01:41 -07001359
Al Viroe4951492006-03-29 20:17:10 -05001360 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001361 if (context->filterkey) {
1362 audit_log_format(ab, " key=");
1363 audit_log_untrustedstring(ab, context->filterkey);
1364 } else
1365 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
David Woodhouse7551ced2005-05-26 12:04:57 +01001368 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001369
Al Viroe4951492006-03-29 20:17:10 -05001370 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (!ab)
1372 continue; /* audit_panic has been called */
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001375
Al Viro473ae302006-04-26 14:04:08 -04001376 case AUDIT_EXECVE: {
1377 struct audit_aux_data_execve *axi = (void *)aux;
Eric Parisde6bbd12008-01-07 14:31:58 -05001378 audit_log_execve_info(context, &ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001379 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001380
Eric Paris3fc689e2008-11-11 21:48:18 +11001381 case AUDIT_BPRM_FCAPS: {
1382 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1383 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1384 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1385 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1386 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1387 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1388 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1389 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1390 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1391 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1392 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1393 break; }
1394
Eric Parise68b75a02008-11-11 21:48:22 +11001395 case AUDIT_CAPSET: {
1396 struct audit_aux_data_capset *axs = (void *)aux;
1397 audit_log_format(ab, "pid=%d", axs->pid);
1398 audit_log_cap(ab, "cap_pi", &axs->cap.inheritable);
1399 audit_log_cap(ab, "cap_pp", &axs->cap.permitted);
1400 audit_log_cap(ab, "cap_pe", &axs->cap.effective);
1401 break; }
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
1406
Al Virof3298dc2008-12-10 03:16:51 -05001407 if (context->type)
Al Viroa33e6752008-12-10 03:40:06 -05001408 show_special(context, &call_panic);
Al Virof3298dc2008-12-10 03:16:51 -05001409
Al Viro157cf642008-12-14 04:57:47 -05001410 if (context->fds[0] >= 0) {
1411 ab = audit_log_start(context, GFP_KERNEL, AUDIT_FD_PAIR);
1412 if (ab) {
1413 audit_log_format(ab, "fd0=%d fd1=%d",
1414 context->fds[0], context->fds[1]);
1415 audit_log_end(ab);
1416 }
1417 }
1418
Al Viro4f6b4342008-12-09 19:50:34 -05001419 if (context->sockaddr_len) {
1420 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1421 if (ab) {
1422 audit_log_format(ab, "saddr=");
1423 audit_log_n_hex(ab, (void *)context->sockaddr,
1424 context->sockaddr_len);
1425 audit_log_end(ab);
1426 }
1427 }
1428
Amy Griffise54dc242007-03-29 18:01:04 -04001429 for (aux = context->aux_pids; aux; aux = aux->next) {
1430 struct audit_aux_data_pids *axs = (void *)aux;
Amy Griffise54dc242007-03-29 18:01:04 -04001431
1432 for (i = 0; i < axs->pid_count; i++)
1433 if (audit_log_pid_context(context, axs->target_pid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001434 axs->target_auid[i],
1435 axs->target_uid[i],
Eric Paris4746ec52008-01-08 10:06:53 -05001436 axs->target_sessionid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001437 axs->target_sid[i],
1438 axs->target_comm[i]))
Amy Griffise54dc242007-03-29 18:01:04 -04001439 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001440 }
1441
Amy Griffise54dc242007-03-29 18:01:04 -04001442 if (context->target_pid &&
1443 audit_log_pid_context(context, context->target_pid,
Eric Parisc2a77802008-01-07 13:40:17 -05001444 context->target_auid, context->target_uid,
Eric Paris4746ec52008-01-08 10:06:53 -05001445 context->target_sessionid,
Eric Parisc2a77802008-01-07 13:40:17 -05001446 context->target_sid, context->target_comm))
Amy Griffise54dc242007-03-29 18:01:04 -04001447 call_panic = 1;
1448
Jan Blunck44707fd2008-02-14 19:38:33 -08001449 if (context->pwd.dentry && context->pwd.mnt) {
Al Viroe4951492006-03-29 20:17:10 -05001450 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001451 if (ab) {
Jan Blunck44707fd2008-02-14 19:38:33 -08001452 audit_log_d_path(ab, "cwd=", &context->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001453 audit_log_end(ab);
1454 }
1455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -04001457 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +00001458
Al Viroe4951492006-03-29 20:17:10 -05001459 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (!ab)
1461 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001464
Amy Griffis9c937dc2006-06-08 23:19:31 -04001465 if (n->name) {
1466 switch(n->name_len) {
1467 case AUDIT_NAME_FULL:
1468 /* log the full path */
1469 audit_log_format(ab, " name=");
1470 audit_log_untrustedstring(ab, n->name);
1471 break;
1472 case 0:
1473 /* name was specified as a relative path and the
1474 * directory component is the cwd */
Jan Blunck44707fd2008-02-14 19:38:33 -08001475 audit_log_d_path(ab, " name=", &context->pwd);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001476 break;
1477 default:
1478 /* log the name's directory component */
1479 audit_log_format(ab, " name=");
Eric Parisb556f8a2008-04-18 10:12:59 -04001480 audit_log_n_untrustedstring(ab, n->name,
1481 n->name_len);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001482 }
1483 } else
1484 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +00001485
Amy Griffis9c937dc2006-06-08 23:19:31 -04001486 if (n->ino != (unsigned long)-1) {
1487 audit_log_format(ab, " inode=%lu"
1488 " dev=%02x:%02x mode=%#o"
1489 " ouid=%u ogid=%u rdev=%02x:%02x",
1490 n->ino,
1491 MAJOR(n->dev),
1492 MINOR(n->dev),
1493 n->mode,
1494 n->uid,
1495 n->gid,
1496 MAJOR(n->rdev),
1497 MINOR(n->rdev));
1498 }
1499 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001500 char *ctx = NULL;
1501 u32 len;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001502 if (security_secid_to_secctx(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001503 n->osid, &ctx, &len)) {
1504 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001505 call_panic = 2;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001506 } else {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001507 audit_log_format(ab, " obj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001508 security_release_secctx(ctx, len);
1509 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001510 }
1511
Eric Paris851f7ff2008-11-11 21:48:14 +11001512 audit_log_fcaps(ab, n);
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 audit_log_end(ab);
1515 }
Eric Parisc0641f22008-01-07 13:49:15 -05001516
1517 /* Send end of event record to help user space know we are finished */
1518 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1519 if (ab)
1520 audit_log_end(ab);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001521 if (call_panic)
1522 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001525/**
1526 * audit_free - free a per-task audit context
1527 * @tsk: task whose audit context block to free
1528 *
Al Virofa84cb92006-03-29 20:30:19 -05001529 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001530 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531void audit_free(struct task_struct *tsk)
1532{
1533 struct audit_context *context;
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (likely(!context))
1537 return;
1538
1539 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001540 * function (e.g., exit_group), then free context block.
1541 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001542 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001543 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001544 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001545 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 audit_free_context(context);
1548}
1549
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001550/**
1551 * audit_syscall_entry - fill in an audit record at syscall entry
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001552 * @arch: architecture type
1553 * @major: major syscall type (function)
1554 * @a1: additional syscall register 1
1555 * @a2: additional syscall register 2
1556 * @a3: additional syscall register 3
1557 * @a4: additional syscall register 4
1558 *
1559 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 * audit context was created when the task was created and the state or
1561 * filters demand the audit context be built. If the state from the
1562 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1563 * then the record will be written at syscall exit time (otherwise, it
1564 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001565 * be written).
1566 */
Al Viro5411be52006-03-29 20:23:36 -05001567void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 unsigned long a1, unsigned long a2,
1569 unsigned long a3, unsigned long a4)
1570{
Al Viro5411be52006-03-29 20:23:36 -05001571 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 struct audit_context *context = tsk->audit_context;
1573 enum audit_state state;
1574
Roland McGrath86a1c342008-06-23 15:37:04 -07001575 if (unlikely(!context))
1576 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001578 /*
1579 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 * calls in kernel_thread via the entry.S interface, instead of
1581 * with direct calls. (If you are porting to a new
1582 * architecture, hitting this condition can indicate that you
1583 * got the _exit/_leave calls backward in entry.S.)
1584 *
1585 * i386 no
1586 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001587 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
1589 * This also happens with vm86 emulation in a non-nested manner
1590 * (entries without exits), so this case must be caught.
1591 */
1592 if (context->in_syscall) {
1593 struct audit_context *newctx;
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595#if AUDIT_DEBUG
1596 printk(KERN_ERR
1597 "audit(:%d) pid=%d in syscall=%d;"
1598 " entering syscall=%d\n",
1599 context->serial, tsk->pid, context->major, major);
1600#endif
1601 newctx = audit_alloc_context(context->state);
1602 if (newctx) {
1603 newctx->previous = context;
1604 context = newctx;
1605 tsk->audit_context = newctx;
1606 } else {
1607 /* If we can't alloc a new context, the best we
1608 * can do is to leak memory (any pending putname
1609 * will be lost). The only other alternative is
1610 * to abandon auditing. */
1611 audit_zero_context(context, context->state);
1612 }
1613 }
1614 BUG_ON(context->in_syscall || context->name_count);
1615
1616 if (!audit_enabled)
1617 return;
1618
2fd6f582005-04-29 16:08:28 +01001619 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 context->major = major;
1621 context->argv[0] = a1;
1622 context->argv[1] = a2;
1623 context->argv[2] = a3;
1624 context->argv[3] = a4;
1625
1626 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001627 context->dummy = !audit_n_rules;
1628 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001629 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (likely(state == AUDIT_DISABLED))
1631 return;
1632
David Woodhousece625a82005-07-18 14:24:46 -04001633 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 context->ctime = CURRENT_TIME;
1635 context->in_syscall = 1;
1636 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
Alexander Viro419c58f2006-09-29 00:08:50 -04001637 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
Al Viroa64e6492008-11-12 18:37:41 -05001640void audit_finish_fork(struct task_struct *child)
1641{
1642 struct audit_context *ctx = current->audit_context;
1643 struct audit_context *p = child->audit_context;
1644 if (!p || !ctx || !ctx->auditable)
1645 return;
1646 p->arch = ctx->arch;
1647 p->major = ctx->major;
1648 memcpy(p->argv, ctx->argv, sizeof(ctx->argv));
1649 p->ctime = ctx->ctime;
1650 p->dummy = ctx->dummy;
1651 p->auditable = ctx->auditable;
1652 p->in_syscall = ctx->in_syscall;
1653 p->filterkey = kstrdup(ctx->filterkey, GFP_KERNEL);
1654 p->ppid = current->pid;
1655}
1656
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001657/**
1658 * audit_syscall_exit - deallocate audit context after a system call
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001659 * @valid: success/failure flag
1660 * @return_code: syscall return value
1661 *
1662 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1664 * filtering, or because some other part of the kernel write an audit
1665 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001666 * free the names stored from getname().
1667 */
Al Viro5411be52006-03-29 20:23:36 -05001668void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
Al Viro5411be52006-03-29 20:23:36 -05001670 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 struct audit_context *context;
1672
2fd6f582005-04-29 16:08:28 +01001673 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001676 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
David Woodhousef7056d62005-06-20 16:07:33 +01001678 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001679 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 context->in_syscall = 0;
1682 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (context->previous) {
1685 struct audit_context *new_context = context->previous;
1686 context->previous = NULL;
1687 audit_free_context(context);
1688 tsk->audit_context = new_context;
1689 } else {
1690 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001691 unroll_tree_refs(context, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001693 context->aux = NULL;
1694 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001695 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001696 context->target_sid = 0;
Al Viro4f6b4342008-12-09 19:50:34 -05001697 context->sockaddr_len = 0;
Al Virof3298dc2008-12-10 03:16:51 -05001698 context->type = 0;
Al Viro157cf642008-12-14 04:57:47 -05001699 context->fds[0] = -1;
Amy Griffis5adc8a62006-06-14 18:45:21 -04001700 kfree(context->filterkey);
1701 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 tsk->audit_context = context;
1703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Al Viro74c3cbe2007-07-22 08:04:18 -04001706static inline void handle_one(const struct inode *inode)
1707{
1708#ifdef CONFIG_AUDIT_TREE
1709 struct audit_context *context;
1710 struct audit_tree_refs *p;
1711 struct audit_chunk *chunk;
1712 int count;
1713 if (likely(list_empty(&inode->inotify_watches)))
1714 return;
1715 context = current->audit_context;
1716 p = context->trees;
1717 count = context->tree_count;
1718 rcu_read_lock();
1719 chunk = audit_tree_lookup(inode);
1720 rcu_read_unlock();
1721 if (!chunk)
1722 return;
1723 if (likely(put_tree_ref(context, chunk)))
1724 return;
1725 if (unlikely(!grow_tree_refs(context))) {
Eric Paris436c4052008-04-18 10:01:04 -04001726 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001727 audit_set_auditable(context);
1728 audit_put_chunk(chunk);
1729 unroll_tree_refs(context, p, count);
1730 return;
1731 }
1732 put_tree_ref(context, chunk);
1733#endif
1734}
1735
1736static void handle_path(const struct dentry *dentry)
1737{
1738#ifdef CONFIG_AUDIT_TREE
1739 struct audit_context *context;
1740 struct audit_tree_refs *p;
1741 const struct dentry *d, *parent;
1742 struct audit_chunk *drop;
1743 unsigned long seq;
1744 int count;
1745
1746 context = current->audit_context;
1747 p = context->trees;
1748 count = context->tree_count;
1749retry:
1750 drop = NULL;
1751 d = dentry;
1752 rcu_read_lock();
1753 seq = read_seqbegin(&rename_lock);
1754 for(;;) {
1755 struct inode *inode = d->d_inode;
1756 if (inode && unlikely(!list_empty(&inode->inotify_watches))) {
1757 struct audit_chunk *chunk;
1758 chunk = audit_tree_lookup(inode);
1759 if (chunk) {
1760 if (unlikely(!put_tree_ref(context, chunk))) {
1761 drop = chunk;
1762 break;
1763 }
1764 }
1765 }
1766 parent = d->d_parent;
1767 if (parent == d)
1768 break;
1769 d = parent;
1770 }
1771 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1772 rcu_read_unlock();
1773 if (!drop) {
1774 /* just a race with rename */
1775 unroll_tree_refs(context, p, count);
1776 goto retry;
1777 }
1778 audit_put_chunk(drop);
1779 if (grow_tree_refs(context)) {
1780 /* OK, got more space */
1781 unroll_tree_refs(context, p, count);
1782 goto retry;
1783 }
1784 /* too bad */
1785 printk(KERN_WARNING
Eric Paris436c4052008-04-18 10:01:04 -04001786 "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001787 unroll_tree_refs(context, p, count);
1788 audit_set_auditable(context);
1789 return;
1790 }
1791 rcu_read_unlock();
1792#endif
1793}
1794
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001795/**
1796 * audit_getname - add a name to the list
1797 * @name: name to add
1798 *
1799 * Add a name to the list of audit names for this context.
1800 * Called from fs/namei.c:getname().
1801 */
Al Virod8945bb52006-05-18 16:01:30 -04001802void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 struct audit_context *context = current->audit_context;
1805
Al Virod8945bb52006-05-18 16:01:30 -04001806 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return;
1808
1809 if (!context->in_syscall) {
1810#if AUDIT_DEBUG == 2
1811 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1812 __FILE__, __LINE__, context->serial, name);
1813 dump_stack();
1814#endif
1815 return;
1816 }
1817 BUG_ON(context->name_count >= AUDIT_NAMES);
1818 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001819 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1820 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 context->names[context->name_count].ino = (unsigned long)-1;
Amy Griffise41e8bd2007-02-13 14:14:09 -05001822 context->names[context->name_count].osid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ++context->name_count;
Jan Blunck44707fd2008-02-14 19:38:33 -08001824 if (!context->pwd.dentry) {
David Woodhouse8f37d472005-05-27 12:17:28 +01001825 read_lock(&current->fs->lock);
Jan Blunck44707fd2008-02-14 19:38:33 -08001826 context->pwd = current->fs->pwd;
1827 path_get(&current->fs->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001828 read_unlock(&current->fs->lock);
1829 }
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001833/* audit_putname - intercept a putname request
1834 * @name: name to intercept and delay for putname
1835 *
1836 * If we have stored the name from getname in the audit context,
1837 * then we delay the putname until syscall exit.
1838 * Called from include/linux/fs.h:putname().
1839 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840void audit_putname(const char *name)
1841{
1842 struct audit_context *context = current->audit_context;
1843
1844 BUG_ON(!context);
1845 if (!context->in_syscall) {
1846#if AUDIT_DEBUG == 2
1847 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1848 __FILE__, __LINE__, context->serial, name);
1849 if (context->name_count) {
1850 int i;
1851 for (i = 0; i < context->name_count; i++)
1852 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1853 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001854 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856#endif
1857 __putname(name);
1858 }
1859#if AUDIT_DEBUG
1860 else {
1861 ++context->put_count;
1862 if (context->put_count > context->name_count) {
1863 printk(KERN_ERR "%s:%d(:%d): major=%d"
1864 " in_syscall=%d putname(%p) name_count=%d"
1865 " put_count=%d\n",
1866 __FILE__, __LINE__,
1867 context->serial, context->major,
1868 context->in_syscall, name, context->name_count,
1869 context->put_count);
1870 dump_stack();
1871 }
1872 }
1873#endif
1874}
1875
Amy Griffis5712e882007-02-13 14:15:22 -05001876static int audit_inc_name_count(struct audit_context *context,
1877 const struct inode *inode)
1878{
1879 if (context->name_count >= AUDIT_NAMES) {
1880 if (inode)
1881 printk(KERN_DEBUG "name_count maxed, losing inode data: "
Eric Paris436c4052008-04-18 10:01:04 -04001882 "dev=%02x:%02x, inode=%lu\n",
Amy Griffis5712e882007-02-13 14:15:22 -05001883 MAJOR(inode->i_sb->s_dev),
1884 MINOR(inode->i_sb->s_dev),
1885 inode->i_ino);
1886
1887 else
Eric Paris436c4052008-04-18 10:01:04 -04001888 printk(KERN_DEBUG "name_count maxed, losing inode data\n");
Amy Griffis5712e882007-02-13 14:15:22 -05001889 return 1;
1890 }
1891 context->name_count++;
1892#if AUDIT_DEBUG
1893 context->ino_count++;
1894#endif
1895 return 0;
1896}
1897
Eric Paris851f7ff2008-11-11 21:48:14 +11001898
1899static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
1900{
1901 struct cpu_vfs_cap_data caps;
1902 int rc;
1903
1904 memset(&name->fcap.permitted, 0, sizeof(kernel_cap_t));
1905 memset(&name->fcap.inheritable, 0, sizeof(kernel_cap_t));
1906 name->fcap.fE = 0;
1907 name->fcap_ver = 0;
1908
1909 if (!dentry)
1910 return 0;
1911
1912 rc = get_vfs_caps_from_disk(dentry, &caps);
1913 if (rc)
1914 return rc;
1915
1916 name->fcap.permitted = caps.permitted;
1917 name->fcap.inheritable = caps.inheritable;
1918 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
1919 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
1920
1921 return 0;
1922}
1923
1924
Amy Griffis3e2efce2006-07-13 13:16:02 -04001925/* Copy inode data into an audit_names. */
Eric Paris851f7ff2008-11-11 21:48:14 +11001926static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
1927 const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001928{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001929 name->ino = inode->i_ino;
1930 name->dev = inode->i_sb->s_dev;
1931 name->mode = inode->i_mode;
1932 name->uid = inode->i_uid;
1933 name->gid = inode->i_gid;
1934 name->rdev = inode->i_rdev;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001935 security_inode_getsecid(inode, &name->osid);
Eric Paris851f7ff2008-11-11 21:48:14 +11001936 audit_copy_fcaps(name, dentry);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001937}
1938
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001939/**
1940 * audit_inode - store the inode and device from a lookup
1941 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07001942 * @dentry: dentry being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001943 *
1944 * Called from fs/namei.c:path_lookup().
1945 */
Al Viro5a190ae2007-06-07 12:19:32 -04001946void __audit_inode(const char *name, const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 int idx;
1949 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04001950 const struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 if (!context->in_syscall)
1953 return;
1954 if (context->name_count
1955 && context->names[context->name_count-1].name
1956 && context->names[context->name_count-1].name == name)
1957 idx = context->name_count - 1;
1958 else if (context->name_count > 1
1959 && context->names[context->name_count-2].name
1960 && context->names[context->name_count-2].name == name)
1961 idx = context->name_count - 2;
1962 else {
1963 /* FIXME: how much do we care about inodes that have no
1964 * associated name? */
Amy Griffis5712e882007-02-13 14:15:22 -05001965 if (audit_inc_name_count(context, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return;
Amy Griffis5712e882007-02-13 14:15:22 -05001967 idx = context->name_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 context->names[idx].name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Al Viro74c3cbe2007-07-22 08:04:18 -04001970 handle_path(dentry);
Eric Paris851f7ff2008-11-11 21:48:14 +11001971 audit_copy_inode(&context->names[idx], dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
Amy Griffis73241cc2005-11-03 16:00:25 +00001974/**
1975 * audit_inode_child - collect inode info for created/removed objects
1976 * @dname: inode's dentry name
Randy Dunlap481968f2007-10-21 20:59:53 -07001977 * @dentry: dentry being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001978 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001979 *
1980 * For syscalls that create or remove filesystem objects, audit_inode
1981 * can only collect information for the filesystem object's parent.
1982 * This call updates the audit context with the child's information.
1983 * Syscalls that create a new filesystem object must be hooked after
1984 * the object is created. Syscalls that remove a filesystem object
1985 * must be hooked prior, in order to capture the target inode during
1986 * unsuccessful attempts.
1987 */
Al Viro5a190ae2007-06-07 12:19:32 -04001988void __audit_inode_child(const char *dname, const struct dentry *dentry,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001989 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001990{
1991 int idx;
1992 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05001993 const char *found_parent = NULL, *found_child = NULL;
Al Viro5a190ae2007-06-07 12:19:32 -04001994 const struct inode *inode = dentry->d_inode;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001995 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00001996
1997 if (!context->in_syscall)
1998 return;
1999
Al Viro74c3cbe2007-07-22 08:04:18 -04002000 if (inode)
2001 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00002002 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04002003 if (!dname)
Amy Griffis5712e882007-02-13 14:15:22 -05002004 goto add_names;
Amy Griffis73241cc2005-11-03 16:00:25 +00002005
Amy Griffis5712e882007-02-13 14:15:22 -05002006 /* parent is more likely, look for it first */
2007 for (idx = 0; idx < context->name_count; idx++) {
2008 struct audit_names *n = &context->names[idx];
Amy Griffis73241cc2005-11-03 16:00:25 +00002009
Amy Griffis5712e882007-02-13 14:15:22 -05002010 if (!n->name)
2011 continue;
2012
2013 if (n->ino == parent->i_ino &&
2014 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2015 n->name_len = dirlen; /* update parent data in place */
2016 found_parent = n->name;
2017 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04002018 }
Steve Grubbac9910c2006-09-28 14:31:32 -04002019 }
Amy Griffis73241cc2005-11-03 16:00:25 +00002020
Amy Griffis5712e882007-02-13 14:15:22 -05002021 /* no matching parent, look for matching child */
2022 for (idx = 0; idx < context->name_count; idx++) {
2023 struct audit_names *n = &context->names[idx];
Amy Griffis73d3ec52006-07-13 13:16:39 -04002024
Amy Griffis5712e882007-02-13 14:15:22 -05002025 if (!n->name)
2026 continue;
2027
2028 /* strcmp() is the more likely scenario */
2029 if (!strcmp(dname, n->name) ||
2030 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2031 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002032 audit_copy_inode(n, NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002033 else
2034 n->ino = (unsigned long)-1;
2035 found_child = n->name;
2036 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04002037 }
Amy Griffis5712e882007-02-13 14:15:22 -05002038 }
2039
2040add_names:
2041 if (!found_parent) {
2042 if (audit_inc_name_count(context, parent))
2043 return;
2044 idx = context->name_count - 1;
2045 context->names[idx].name = NULL;
Eric Paris851f7ff2008-11-11 21:48:14 +11002046 audit_copy_inode(&context->names[idx], NULL, parent);
Amy Griffis73d3ec52006-07-13 13:16:39 -04002047 }
Amy Griffis5712e882007-02-13 14:15:22 -05002048
2049 if (!found_child) {
2050 if (audit_inc_name_count(context, inode))
2051 return;
2052 idx = context->name_count - 1;
2053
2054 /* Re-use the name belonging to the slot for a matching parent
2055 * directory. All names for this context are relinquished in
2056 * audit_free_names() */
2057 if (found_parent) {
2058 context->names[idx].name = found_parent;
2059 context->names[idx].name_len = AUDIT_NAME_FULL;
2060 /* don't call __putname() */
2061 context->names[idx].name_put = 0;
2062 } else {
2063 context->names[idx].name = NULL;
2064 }
2065
2066 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002067 audit_copy_inode(&context->names[idx], NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002068 else
2069 context->names[idx].ino = (unsigned long)-1;
2070 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04002071}
Trond Myklebust50e437d2007-06-07 22:44:34 -04002072EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04002073
2074/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002075 * auditsc_get_stamp - get local copies of audit_context values
2076 * @ctx: audit_context for the task
2077 * @t: timespec to store time recorded in the audit_context
2078 * @serial: serial value that is recorded in the audit_context
2079 *
2080 * Also sets the context as auditable.
2081 */
Al Viro48887e62008-12-06 01:05:50 -05002082int auditsc_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01002083 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Al Viro48887e62008-12-06 01:05:50 -05002085 if (!ctx->in_syscall)
2086 return 0;
David Woodhousece625a82005-07-18 14:24:46 -04002087 if (!ctx->serial)
2088 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01002089 t->tv_sec = ctx->ctime.tv_sec;
2090 t->tv_nsec = ctx->ctime.tv_nsec;
2091 *serial = ctx->serial;
2092 ctx->auditable = 1;
Al Viro48887e62008-12-06 01:05:50 -05002093 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Eric Paris4746ec52008-01-08 10:06:53 -05002096/* global counter which is incremented every time something logs in */
2097static atomic_t session_id = ATOMIC_INIT(0);
2098
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002099/**
2100 * audit_set_loginuid - set a task's audit_context loginuid
2101 * @task: task whose audit context is being modified
2102 * @loginuid: loginuid value
2103 *
2104 * Returns 0.
2105 *
2106 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2107 */
Steve Grubb456be6c2005-04-29 17:30:07 +01002108int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Eric Paris4746ec52008-01-08 10:06:53 -05002110 unsigned int sessionid = atomic_inc_return(&session_id);
Steve Grubb41757102006-06-12 07:48:28 -04002111 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01002112
Al Virobfef93a2008-01-10 04:53:18 -05002113 if (context && context->in_syscall) {
2114 struct audit_buffer *ab;
Steve Grubb41757102006-06-12 07:48:28 -04002115
Al Virobfef93a2008-01-10 04:53:18 -05002116 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2117 if (ab) {
2118 audit_log_format(ab, "login pid=%d uid=%u "
Eric Paris4746ec52008-01-08 10:06:53 -05002119 "old auid=%u new auid=%u"
2120 " old ses=%u new ses=%u",
David Howellsc69e8d92008-11-14 10:39:19 +11002121 task->pid, task_uid(task),
Eric Paris4746ec52008-01-08 10:06:53 -05002122 task->loginuid, loginuid,
2123 task->sessionid, sessionid);
Al Virobfef93a2008-01-10 04:53:18 -05002124 audit_log_end(ab);
Steve Grubbc0404992005-05-13 18:17:42 +01002125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Eric Paris4746ec52008-01-08 10:06:53 -05002127 task->sessionid = sessionid;
Al Virobfef93a2008-01-10 04:53:18 -05002128 task->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return 0;
2130}
2131
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002132/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05002133 * __audit_mq_open - record audit data for a POSIX MQ open
2134 * @oflag: open flag
2135 * @mode: mode bits
2136 * @u_attr: queue attributes
2137 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002138 */
Al Viro564f6992008-12-14 04:02:26 -05002139void __audit_mq_open(int oflag, mode_t mode, struct mq_attr *attr)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002140{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002141 struct audit_context *context = current->audit_context;
2142
Al Viro564f6992008-12-14 04:02:26 -05002143 if (attr)
2144 memcpy(&context->mq_open.attr, attr, sizeof(struct mq_attr));
2145 else
2146 memset(&context->mq_open.attr, 0, sizeof(struct mq_attr));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002147
Al Viro564f6992008-12-14 04:02:26 -05002148 context->mq_open.oflag = oflag;
2149 context->mq_open.mode = mode;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002150
Al Viro564f6992008-12-14 04:02:26 -05002151 context->type = AUDIT_MQ_OPEN;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002152}
2153
2154/**
Al Viroc32c8af2008-12-14 03:46:48 -05002155 * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
George C. Wilson20ca73b2006-05-24 16:09:55 -05002156 * @mqdes: MQ descriptor
2157 * @msg_len: Message length
2158 * @msg_prio: Message priority
Al Viroc32c8af2008-12-14 03:46:48 -05002159 * @abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002160 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002161 */
Al Viroc32c8af2008-12-14 03:46:48 -05002162void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2163 const struct timespec *abs_timeout)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002164{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002165 struct audit_context *context = current->audit_context;
Al Viroc32c8af2008-12-14 03:46:48 -05002166 struct timespec *p = &context->mq_sendrecv.abs_timeout;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002167
Al Viroc32c8af2008-12-14 03:46:48 -05002168 if (abs_timeout)
2169 memcpy(p, abs_timeout, sizeof(struct timespec));
2170 else
2171 memset(p, 0, sizeof(struct timespec));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002172
Al Viroc32c8af2008-12-14 03:46:48 -05002173 context->mq_sendrecv.mqdes = mqdes;
2174 context->mq_sendrecv.msg_len = msg_len;
2175 context->mq_sendrecv.msg_prio = msg_prio;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002176
Al Viroc32c8af2008-12-14 03:46:48 -05002177 context->type = AUDIT_MQ_SENDRECV;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002178}
2179
2180/**
2181 * __audit_mq_notify - record audit data for a POSIX MQ notify
2182 * @mqdes: MQ descriptor
2183 * @u_notification: Notification event
2184 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002185 */
2186
Al Viro20114f72008-12-10 07:16:12 -05002187void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002188{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002189 struct audit_context *context = current->audit_context;
2190
Al Viro20114f72008-12-10 07:16:12 -05002191 if (notification)
2192 context->mq_notify.sigev_signo = notification->sigev_signo;
2193 else
2194 context->mq_notify.sigev_signo = 0;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002195
Al Viro20114f72008-12-10 07:16:12 -05002196 context->mq_notify.mqdes = mqdes;
2197 context->type = AUDIT_MQ_NOTIFY;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002198}
2199
2200/**
2201 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2202 * @mqdes: MQ descriptor
2203 * @mqstat: MQ flags
2204 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002205 */
Al Viro73929062008-12-10 06:58:59 -05002206void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002207{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002208 struct audit_context *context = current->audit_context;
Al Viro73929062008-12-10 06:58:59 -05002209 context->mq_getsetattr.mqdes = mqdes;
2210 context->mq_getsetattr.mqstat = *mqstat;
2211 context->type = AUDIT_MQ_GETSETATTR;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002212}
2213
2214/**
Steve Grubb073115d2006-04-02 17:07:33 -04002215 * audit_ipc_obj - record audit data for ipc object
2216 * @ipcp: ipc permissions
2217 *
Steve Grubb073115d2006-04-02 17:07:33 -04002218 */
Al Viroa33e6752008-12-10 03:40:06 -05002219void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002220{
Steve Grubb073115d2006-04-02 17:07:33 -04002221 struct audit_context *context = current->audit_context;
Al Viroa33e6752008-12-10 03:40:06 -05002222 context->ipc.uid = ipcp->uid;
2223 context->ipc.gid = ipcp->gid;
2224 context->ipc.mode = ipcp->mode;
Al Viroe816f372008-12-10 03:47:15 -05002225 context->ipc.has_perm = 0;
Al Viroa33e6752008-12-10 03:40:06 -05002226 security_ipc_getsecid(ipcp, &context->ipc.osid);
2227 context->type = AUDIT_IPC;
Steve Grubb073115d2006-04-02 17:07:33 -04002228}
2229
2230/**
2231 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002232 * @qbytes: msgq bytes
2233 * @uid: msgq user id
2234 * @gid: msgq group id
2235 * @mode: msgq mode (permissions)
2236 *
Al Viroe816f372008-12-10 03:47:15 -05002237 * Called only after audit_ipc_obj().
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002238 */
Al Viroe816f372008-12-10 03:47:15 -05002239void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 struct audit_context *context = current->audit_context;
2242
Al Viroe816f372008-12-10 03:47:15 -05002243 context->ipc.qbytes = qbytes;
2244 context->ipc.perm_uid = uid;
2245 context->ipc.perm_gid = gid;
2246 context->ipc.perm_mode = mode;
2247 context->ipc.has_perm = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002249
Al Viro473ae302006-04-26 14:04:08 -04002250int audit_bprm(struct linux_binprm *bprm)
2251{
2252 struct audit_aux_data_execve *ax;
2253 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002254
Al Viro5ac3a9c2006-07-16 06:38:45 -04002255 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04002256 return 0;
2257
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002258 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002259 if (!ax)
2260 return -ENOMEM;
2261
2262 ax->argc = bprm->argc;
2263 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002264 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002265 ax->d.type = AUDIT_EXECVE;
2266 ax->d.next = context->aux;
2267 context->aux = (void *)ax;
2268 return 0;
2269}
2270
2271
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002272/**
2273 * audit_socketcall - record audit data for sys_socketcall
2274 * @nargs: number of args
2275 * @args: args array
2276 *
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002277 */
Al Virof3298dc2008-12-10 03:16:51 -05002278void audit_socketcall(int nargs, unsigned long *args)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002279{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002280 struct audit_context *context = current->audit_context;
2281
Al Viro5ac3a9c2006-07-16 06:38:45 -04002282 if (likely(!context || context->dummy))
Al Virof3298dc2008-12-10 03:16:51 -05002283 return;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002284
Al Virof3298dc2008-12-10 03:16:51 -05002285 context->type = AUDIT_SOCKETCALL;
2286 context->socketcall.nargs = nargs;
2287 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002288}
2289
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002290/**
Al Virodb349502007-02-07 01:48:00 -05002291 * __audit_fd_pair - record audit data for pipe and socketpair
2292 * @fd1: the first file descriptor
2293 * @fd2: the second file descriptor
2294 *
Al Virodb349502007-02-07 01:48:00 -05002295 */
Al Viro157cf642008-12-14 04:57:47 -05002296void __audit_fd_pair(int fd1, int fd2)
Al Virodb349502007-02-07 01:48:00 -05002297{
2298 struct audit_context *context = current->audit_context;
Al Viro157cf642008-12-14 04:57:47 -05002299 context->fds[0] = fd1;
2300 context->fds[1] = fd2;
Al Virodb349502007-02-07 01:48:00 -05002301}
2302
2303/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002304 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2305 * @len: data length in user space
2306 * @a: data address in kernel space
2307 *
2308 * Returns 0 for success or NULL context or < 0 on error.
2309 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002310int audit_sockaddr(int len, void *a)
2311{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002312 struct audit_context *context = current->audit_context;
2313
Al Viro5ac3a9c2006-07-16 06:38:45 -04002314 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002315 return 0;
2316
Al Viro4f6b4342008-12-09 19:50:34 -05002317 if (!context->sockaddr) {
2318 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2319 if (!p)
2320 return -ENOMEM;
2321 context->sockaddr = p;
2322 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002323
Al Viro4f6b4342008-12-09 19:50:34 -05002324 context->sockaddr_len = len;
2325 memcpy(context->sockaddr, a, len);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002326 return 0;
2327}
2328
Al Viroa5cb0132007-03-20 13:58:35 -04002329void __audit_ptrace(struct task_struct *t)
2330{
2331 struct audit_context *context = current->audit_context;
2332
2333 context->target_pid = t->pid;
Eric Parisc2a77802008-01-07 13:40:17 -05002334 context->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002335 context->target_uid = task_uid(t);
Eric Paris4746ec52008-01-08 10:06:53 -05002336 context->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002337 security_task_getsecid(t, &context->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002338 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
Al Viroa5cb0132007-03-20 13:58:35 -04002339}
2340
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002341/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002342 * audit_signal_info - record signal info for shutting down audit subsystem
2343 * @sig: signal value
2344 * @t: task being signaled
2345 *
2346 * If the audit subsystem is being terminated, record the task (pid)
2347 * and uid that is doing that.
2348 */
Amy Griffise54dc242007-03-29 18:01:04 -04002349int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002350{
Amy Griffise54dc242007-03-29 18:01:04 -04002351 struct audit_aux_data_pids *axp;
2352 struct task_struct *tsk = current;
2353 struct audit_context *ctx = tsk->audit_context;
David Howellsc69e8d92008-11-14 10:39:19 +11002354 uid_t uid = current_uid(), t_uid = task_uid(t);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002355
Al Viro175fc482007-08-08 00:01:46 +01002356 if (audit_pid && t->tgid == audit_pid) {
Eric Parisee1d3152008-07-07 10:49:45 -04002357 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
Al Viro175fc482007-08-08 00:01:46 +01002358 audit_sig_pid = tsk->pid;
Al Virobfef93a2008-01-10 04:53:18 -05002359 if (tsk->loginuid != -1)
2360 audit_sig_uid = tsk->loginuid;
Al Viro175fc482007-08-08 00:01:46 +01002361 else
David Howellsc69e8d92008-11-14 10:39:19 +11002362 audit_sig_uid = uid;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002363 security_task_getsecid(tsk, &audit_sig_sid);
Al Viro175fc482007-08-08 00:01:46 +01002364 }
2365 if (!audit_signals || audit_dummy_context())
2366 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002367 }
Amy Griffise54dc242007-03-29 18:01:04 -04002368
Amy Griffise54dc242007-03-29 18:01:04 -04002369 /* optimize the common case by putting first signal recipient directly
2370 * in audit_context */
2371 if (!ctx->target_pid) {
2372 ctx->target_pid = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002373 ctx->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002374 ctx->target_uid = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002375 ctx->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002376 security_task_getsecid(t, &ctx->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002377 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002378 return 0;
2379 }
2380
2381 axp = (void *)ctx->aux_pids;
2382 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2383 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2384 if (!axp)
2385 return -ENOMEM;
2386
2387 axp->d.type = AUDIT_OBJ_PID;
2388 axp->d.next = ctx->aux_pids;
2389 ctx->aux_pids = (void *)axp;
2390 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002391 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002392
2393 axp->target_pid[axp->pid_count] = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002394 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002395 axp->target_uid[axp->pid_count] = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002396 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002397 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
Eric Parisc2a77802008-01-07 13:40:17 -05002398 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002399 axp->pid_count++;
2400
2401 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002402}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002403
2404/**
Eric Paris3fc689e2008-11-11 21:48:18 +11002405 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
David Howellsd84f4f92008-11-14 10:39:23 +11002406 * @bprm: pointer to the bprm being processed
2407 * @new: the proposed new credentials
2408 * @old: the old credentials
Eric Paris3fc689e2008-11-11 21:48:18 +11002409 *
2410 * Simply check if the proc already has the caps given by the file and if not
2411 * store the priv escalation info for later auditing at the end of the syscall
2412 *
Eric Paris3fc689e2008-11-11 21:48:18 +11002413 * -Eric
2414 */
David Howellsd84f4f92008-11-14 10:39:23 +11002415int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2416 const struct cred *new, const struct cred *old)
Eric Paris3fc689e2008-11-11 21:48:18 +11002417{
2418 struct audit_aux_data_bprm_fcaps *ax;
2419 struct audit_context *context = current->audit_context;
2420 struct cpu_vfs_cap_data vcaps;
2421 struct dentry *dentry;
2422
2423 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2424 if (!ax)
David Howellsd84f4f92008-11-14 10:39:23 +11002425 return -ENOMEM;
Eric Paris3fc689e2008-11-11 21:48:18 +11002426
2427 ax->d.type = AUDIT_BPRM_FCAPS;
2428 ax->d.next = context->aux;
2429 context->aux = (void *)ax;
2430
2431 dentry = dget(bprm->file->f_dentry);
2432 get_vfs_caps_from_disk(dentry, &vcaps);
2433 dput(dentry);
2434
2435 ax->fcap.permitted = vcaps.permitted;
2436 ax->fcap.inheritable = vcaps.inheritable;
2437 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2438 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2439
David Howellsd84f4f92008-11-14 10:39:23 +11002440 ax->old_pcap.permitted = old->cap_permitted;
2441 ax->old_pcap.inheritable = old->cap_inheritable;
2442 ax->old_pcap.effective = old->cap_effective;
Eric Paris3fc689e2008-11-11 21:48:18 +11002443
David Howellsd84f4f92008-11-14 10:39:23 +11002444 ax->new_pcap.permitted = new->cap_permitted;
2445 ax->new_pcap.inheritable = new->cap_inheritable;
2446 ax->new_pcap.effective = new->cap_effective;
2447 return 0;
Eric Paris3fc689e2008-11-11 21:48:18 +11002448}
2449
2450/**
Eric Parise68b75a02008-11-11 21:48:22 +11002451 * __audit_log_capset - store information about the arguments to the capset syscall
David Howellsd84f4f92008-11-14 10:39:23 +11002452 * @pid: target pid of the capset call
2453 * @new: the new credentials
2454 * @old: the old (current) credentials
Eric Parise68b75a02008-11-11 21:48:22 +11002455 *
2456 * Record the aguments userspace sent to sys_capset for later printing by the
2457 * audit system if applicable
2458 */
David Howellsd84f4f92008-11-14 10:39:23 +11002459int __audit_log_capset(pid_t pid,
2460 const struct cred *new, const struct cred *old)
Eric Parise68b75a02008-11-11 21:48:22 +11002461{
2462 struct audit_aux_data_capset *ax;
2463 struct audit_context *context = current->audit_context;
2464
2465 if (likely(!audit_enabled || !context || context->dummy))
2466 return 0;
2467
2468 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2469 if (!ax)
2470 return -ENOMEM;
2471
2472 ax->d.type = AUDIT_CAPSET;
2473 ax->d.next = context->aux;
2474 context->aux = (void *)ax;
2475
2476 ax->pid = pid;
David Howellsd84f4f92008-11-14 10:39:23 +11002477 ax->cap.effective = new->cap_effective;
2478 ax->cap.inheritable = new->cap_effective;
2479 ax->cap.permitted = new->cap_permitted;
Eric Parise68b75a02008-11-11 21:48:22 +11002480
2481 return 0;
2482}
2483
2484/**
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002485 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002486 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002487 *
2488 * If a process ends with a core dump, something fishy is going on and we
2489 * should record the event for investigation.
2490 */
2491void audit_core_dumps(long signr)
2492{
2493 struct audit_buffer *ab;
2494 u32 sid;
David Howells76aac0e2008-11-14 10:39:12 +11002495 uid_t auid = audit_get_loginuid(current), uid;
2496 gid_t gid;
Eric Paris4746ec52008-01-08 10:06:53 -05002497 unsigned int sessionid = audit_get_sessionid(current);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002498
2499 if (!audit_enabled)
2500 return;
2501
2502 if (signr == SIGQUIT) /* don't care for those */
2503 return;
2504
2505 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
David Howells76aac0e2008-11-14 10:39:12 +11002506 current_uid_gid(&uid, &gid);
Eric Paris4746ec52008-01-08 10:06:53 -05002507 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
David Howells76aac0e2008-11-14 10:39:12 +11002508 auid, uid, gid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002509 security_task_getsecid(current, &sid);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002510 if (sid) {
2511 char *ctx = NULL;
2512 u32 len;
2513
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002514 if (security_secid_to_secctx(sid, &ctx, &len))
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002515 audit_log_format(ab, " ssid=%u", sid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002516 else {
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002517 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002518 security_release_secctx(ctx, len);
2519 }
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002520 }
2521 audit_log_format(ab, " pid=%d comm=", current->pid);
2522 audit_log_untrustedstring(ab, current->comm);
2523 audit_log_format(ab, " sig=%ld", signr);
2524 audit_log_end(ab);
2525}