blob: fbed62e05bceb5b1188002bc0fa4801b6e1444cc [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
George C. Wilson20ca73b2006-05-24 16:09:55 -0500127struct audit_aux_data_mq_open {
128 struct audit_aux_data d;
129 int oflag;
130 mode_t mode;
131 struct mq_attr attr;
132};
133
134struct audit_aux_data_mq_sendrecv {
135 struct audit_aux_data d;
136 mqd_t mqdes;
137 size_t msg_len;
138 unsigned int msg_prio;
139 struct timespec abs_timeout;
140};
141
142struct audit_aux_data_mq_notify {
143 struct audit_aux_data d;
144 mqd_t mqdes;
145 struct sigevent notification;
146};
147
148struct audit_aux_data_mq_getsetattr {
149 struct audit_aux_data d;
150 mqd_t mqdes;
151 struct mq_attr mqstat;
152};
153
Al Viro473ae302006-04-26 14:04:08 -0400154struct audit_aux_data_execve {
155 struct audit_aux_data d;
156 int argc;
157 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700158 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400159};
160
Al Virodb349502007-02-07 01:48:00 -0500161struct audit_aux_data_fd_pair {
162 struct audit_aux_data d;
163 int fd[2];
164};
165
Amy Griffise54dc242007-03-29 18:01:04 -0400166struct audit_aux_data_pids {
167 struct audit_aux_data d;
168 pid_t target_pid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500169 uid_t target_auid[AUDIT_AUX_PIDS];
170 uid_t target_uid[AUDIT_AUX_PIDS];
Eric Paris4746ec52008-01-08 10:06:53 -0500171 unsigned int target_sessionid[AUDIT_AUX_PIDS];
Amy Griffise54dc242007-03-29 18:01:04 -0400172 u32 target_sid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500173 char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
Amy Griffise54dc242007-03-29 18:01:04 -0400174 int pid_count;
175};
176
Eric Paris3fc689e2008-11-11 21:48:18 +1100177struct audit_aux_data_bprm_fcaps {
178 struct audit_aux_data d;
179 struct audit_cap_data fcap;
180 unsigned int fcap_ver;
181 struct audit_cap_data old_pcap;
182 struct audit_cap_data new_pcap;
183};
184
Eric Parise68b75a02008-11-11 21:48:22 +1100185struct audit_aux_data_capset {
186 struct audit_aux_data d;
187 pid_t pid;
188 struct audit_cap_data cap;
189};
190
Al Viro74c3cbe2007-07-22 08:04:18 -0400191struct audit_tree_refs {
192 struct audit_tree_refs *next;
193 struct audit_chunk *c[31];
194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/* The per-task audit context. */
197struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400198 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int in_syscall; /* 1 if task is in a syscall */
200 enum audit_state state;
201 unsigned int serial; /* serial number for record */
202 struct timespec ctime; /* time of syscall entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int major; /* syscall number */
204 unsigned long argv[4]; /* syscall arguments */
205 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100206 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 int auditable; /* 1 if record should be written */
208 int name_count;
209 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400210 char * filterkey; /* key for rule that triggered record */
Jan Blunck44707fd2008-02-14 19:38:33 -0800211 struct path pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct audit_context *previous; /* For nested syscalls */
213 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400214 struct audit_aux_data *aux_pids;
Al Viro4f6b4342008-12-09 19:50:34 -0500215 struct sockaddr_storage *sockaddr;
216 size_t sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400218 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 uid_t uid, euid, suid, fsuid;
220 gid_t gid, egid, sgid, fsgid;
221 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100222 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Al Viroa5cb0132007-03-20 13:58:35 -0400224 pid_t target_pid;
Eric Parisc2a77802008-01-07 13:40:17 -0500225 uid_t target_auid;
226 uid_t target_uid;
Eric Paris4746ec52008-01-08 10:06:53 -0500227 unsigned int target_sessionid;
Al Viroa5cb0132007-03-20 13:58:35 -0400228 u32 target_sid;
Eric Parisc2a77802008-01-07 13:40:17 -0500229 char target_comm[TASK_COMM_LEN];
Al Viroa5cb0132007-03-20 13:58:35 -0400230
Al Viro74c3cbe2007-07-22 08:04:18 -0400231 struct audit_tree_refs *trees, *first_trees;
232 int tree_count;
233
Al Virof3298dc2008-12-10 03:16:51 -0500234 int type;
235 union {
236 struct {
237 int nargs;
238 long args[6];
239 } socketcall;
Al Viroa33e6752008-12-10 03:40:06 -0500240 struct {
241 uid_t uid;
242 gid_t gid;
243 mode_t mode;
244 u32 osid;
Al Viroe816f372008-12-10 03:47:15 -0500245 int has_perm;
246 uid_t perm_uid;
247 gid_t perm_gid;
248 mode_t perm_mode;
249 unsigned long qbytes;
Al Viroa33e6752008-12-10 03:40:06 -0500250 } ipc;
Al Virof3298dc2008-12-10 03:16:51 -0500251 };
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#if AUDIT_DEBUG
254 int put_count;
255 int ino_count;
256#endif
257};
258
Al Viro55669bf2006-08-31 19:26:40 -0400259#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
260static inline int open_arg(int flags, int mask)
261{
262 int n = ACC_MODE(flags);
263 if (flags & (O_TRUNC | O_CREAT))
264 n |= AUDIT_PERM_WRITE;
265 return n & mask;
266}
267
268static int audit_match_perm(struct audit_context *ctx, int mask)
269{
Cordeliac4bacef2008-08-18 09:45:51 -0700270 unsigned n;
zhangxiliang1a61c882008-08-02 10:56:37 +0800271 if (unlikely(!ctx))
272 return 0;
Cordeliac4bacef2008-08-18 09:45:51 -0700273 n = ctx->major;
Alan Coxdbda4c02008-10-13 10:40:53 +0100274
Al Viro55669bf2006-08-31 19:26:40 -0400275 switch (audit_classify_syscall(ctx->arch, n)) {
276 case 0: /* native */
277 if ((mask & AUDIT_PERM_WRITE) &&
278 audit_match_class(AUDIT_CLASS_WRITE, n))
279 return 1;
280 if ((mask & AUDIT_PERM_READ) &&
281 audit_match_class(AUDIT_CLASS_READ, n))
282 return 1;
283 if ((mask & AUDIT_PERM_ATTR) &&
284 audit_match_class(AUDIT_CLASS_CHATTR, n))
285 return 1;
286 return 0;
287 case 1: /* 32bit on biarch */
288 if ((mask & AUDIT_PERM_WRITE) &&
289 audit_match_class(AUDIT_CLASS_WRITE_32, n))
290 return 1;
291 if ((mask & AUDIT_PERM_READ) &&
292 audit_match_class(AUDIT_CLASS_READ_32, n))
293 return 1;
294 if ((mask & AUDIT_PERM_ATTR) &&
295 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
296 return 1;
297 return 0;
298 case 2: /* open */
299 return mask & ACC_MODE(ctx->argv[1]);
300 case 3: /* openat */
301 return mask & ACC_MODE(ctx->argv[2]);
302 case 4: /* socketcall */
303 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
304 case 5: /* execve */
305 return mask & AUDIT_PERM_EXEC;
306 default:
307 return 0;
308 }
309}
310
Al Viro8b67dca2008-04-28 04:15:49 -0400311static int audit_match_filetype(struct audit_context *ctx, int which)
312{
313 unsigned index = which & ~S_IFMT;
314 mode_t mode = which & S_IFMT;
zhangxiliang1a61c882008-08-02 10:56:37 +0800315
316 if (unlikely(!ctx))
317 return 0;
318
Al Viro8b67dca2008-04-28 04:15:49 -0400319 if (index >= ctx->name_count)
320 return 0;
321 if (ctx->names[index].ino == -1)
322 return 0;
323 if ((ctx->names[index].mode ^ mode) & S_IFMT)
324 return 0;
325 return 1;
326}
327
Al Viro74c3cbe2007-07-22 08:04:18 -0400328/*
329 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
330 * ->first_trees points to its beginning, ->trees - to the current end of data.
331 * ->tree_count is the number of free entries in array pointed to by ->trees.
332 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
333 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
334 * it's going to remain 1-element for almost any setup) until we free context itself.
335 * References in it _are_ dropped - at the same time we free/drop aux stuff.
336 */
337
338#ifdef CONFIG_AUDIT_TREE
339static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
340{
341 struct audit_tree_refs *p = ctx->trees;
342 int left = ctx->tree_count;
343 if (likely(left)) {
344 p->c[--left] = chunk;
345 ctx->tree_count = left;
346 return 1;
347 }
348 if (!p)
349 return 0;
350 p = p->next;
351 if (p) {
352 p->c[30] = chunk;
353 ctx->trees = p;
354 ctx->tree_count = 30;
355 return 1;
356 }
357 return 0;
358}
359
360static int grow_tree_refs(struct audit_context *ctx)
361{
362 struct audit_tree_refs *p = ctx->trees;
363 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
364 if (!ctx->trees) {
365 ctx->trees = p;
366 return 0;
367 }
368 if (p)
369 p->next = ctx->trees;
370 else
371 ctx->first_trees = ctx->trees;
372 ctx->tree_count = 31;
373 return 1;
374}
375#endif
376
377static void unroll_tree_refs(struct audit_context *ctx,
378 struct audit_tree_refs *p, int count)
379{
380#ifdef CONFIG_AUDIT_TREE
381 struct audit_tree_refs *q;
382 int n;
383 if (!p) {
384 /* we started with empty chain */
385 p = ctx->first_trees;
386 count = 31;
387 /* if the very first allocation has failed, nothing to do */
388 if (!p)
389 return;
390 }
391 n = count;
392 for (q = p; q != ctx->trees; q = q->next, n = 31) {
393 while (n--) {
394 audit_put_chunk(q->c[n]);
395 q->c[n] = NULL;
396 }
397 }
398 while (n-- > ctx->tree_count) {
399 audit_put_chunk(q->c[n]);
400 q->c[n] = NULL;
401 }
402 ctx->trees = p;
403 ctx->tree_count = count;
404#endif
405}
406
407static void free_tree_refs(struct audit_context *ctx)
408{
409 struct audit_tree_refs *p, *q;
410 for (p = ctx->first_trees; p; p = q) {
411 q = p->next;
412 kfree(p);
413 }
414}
415
416static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
417{
418#ifdef CONFIG_AUDIT_TREE
419 struct audit_tree_refs *p;
420 int n;
421 if (!tree)
422 return 0;
423 /* full ones */
424 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
425 for (n = 0; n < 31; n++)
426 if (audit_tree_match(p->c[n], tree))
427 return 1;
428 }
429 /* partial */
430 if (p) {
431 for (n = ctx->tree_count; n < 31; n++)
432 if (audit_tree_match(p->c[n], tree))
433 return 1;
434 }
435#endif
436 return 0;
437}
438
Amy Griffisf368c07d2006-04-07 16:55:56 -0400439/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/* Compare a task_struct with an audit_rule. Return 1 on match, 0
441 * otherwise. */
442static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500443 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400445 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 enum audit_state *state)
447{
David Howellsc69e8d92008-11-14 10:39:19 +1100448 const struct cred *cred = get_task_cred(tsk);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400449 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600450 u32 sid;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500453 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int result = 0;
455
Amy Griffis93315ed2006-02-07 12:05:27 -0500456 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500458 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
Al Viro3c662512006-05-06 08:26:27 -0400460 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400461 if (ctx) {
462 if (!ctx->ppid)
463 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400464 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400465 }
Al Viro3c662512006-05-06 08:26:27 -0400466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 case AUDIT_UID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100468 result = audit_comparator(cred->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case AUDIT_EUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100471 result = audit_comparator(cred->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 case AUDIT_SUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100474 result = audit_comparator(cred->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476 case AUDIT_FSUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100477 result = audit_comparator(cred->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 case AUDIT_GID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100480 result = audit_comparator(cred->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 break;
482 case AUDIT_EGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100483 result = audit_comparator(cred->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485 case AUDIT_SGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100486 result = audit_comparator(cred->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
488 case AUDIT_FSGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100489 result = audit_comparator(cred->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500492 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
2fd6f582005-04-29 16:08:28 +0100494 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700495 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500496 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100497 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 case AUDIT_EXIT:
500 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500501 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 break;
503 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100504 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500505 if (f->val)
506 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100507 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500508 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
511 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400512 if (name)
513 result = audit_comparator(MAJOR(name->dev),
514 f->op, f->val);
515 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500517 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 ++result;
519 break;
520 }
521 }
522 }
523 break;
524 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400525 if (name)
526 result = audit_comparator(MINOR(name->dev),
527 f->op, f->val);
528 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500530 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ++result;
532 break;
533 }
534 }
535 }
536 break;
537 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400538 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400539 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400540 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400542 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 ++result;
544 break;
545 }
546 }
547 }
548 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400549 case AUDIT_WATCH:
550 if (name && rule->watch->ino != (unsigned long)-1)
551 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400552 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400553 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400554 case AUDIT_DIR:
555 if (ctx)
556 result = match_tree_refs(ctx, rule->tree);
557 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 case AUDIT_LOGINUID:
559 result = 0;
560 if (ctx)
Al Virobfef93a2008-01-10 04:53:18 -0500561 result = audit_comparator(tsk->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500563 case AUDIT_SUBJ_USER:
564 case AUDIT_SUBJ_ROLE:
565 case AUDIT_SUBJ_TYPE:
566 case AUDIT_SUBJ_SEN:
567 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600568 /* NOTE: this may return negative values indicating
569 a temporary error. We simply treat this as a
570 match for now to avoid losing information that
571 may be wanted. An error message will also be
572 logged upon error */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000573 if (f->lsm_rule) {
Steve Grubb2ad312d2006-04-11 08:50:56 -0400574 if (need_sid) {
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200575 security_task_getsecid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400576 need_sid = 0;
577 }
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200578 result = security_audit_rule_match(sid, f->type,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600579 f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000580 f->lsm_rule,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600581 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400582 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600583 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500584 case AUDIT_OBJ_USER:
585 case AUDIT_OBJ_ROLE:
586 case AUDIT_OBJ_TYPE:
587 case AUDIT_OBJ_LEV_LOW:
588 case AUDIT_OBJ_LEV_HIGH:
589 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
590 also applies here */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000591 if (f->lsm_rule) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500592 /* Find files that match */
593 if (name) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200594 result = security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500595 name->osid, f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000596 f->lsm_rule, ctx);
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500597 } else if (ctx) {
598 for (j = 0; j < ctx->name_count; j++) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200599 if (security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500600 ctx->names[j].osid,
601 f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000602 f->lsm_rule, ctx)) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500603 ++result;
604 break;
605 }
606 }
607 }
608 /* Find ipc objects that match */
Al Viroa33e6752008-12-10 03:40:06 -0500609 if (!ctx || ctx->type != AUDIT_IPC)
610 break;
611 if (security_audit_rule_match(ctx->ipc.osid,
612 f->type, f->op,
613 f->lsm_rule, ctx))
614 ++result;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500615 }
616 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 case AUDIT_ARG0:
618 case AUDIT_ARG1:
619 case AUDIT_ARG2:
620 case AUDIT_ARG3:
621 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500622 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400624 case AUDIT_FILTERKEY:
625 /* ignore this field for filtering */
626 result = 1;
627 break;
Al Viro55669bf2006-08-31 19:26:40 -0400628 case AUDIT_PERM:
629 result = audit_match_perm(ctx, f->val);
630 break;
Al Viro8b67dca2008-04-28 04:15:49 -0400631 case AUDIT_FILETYPE:
632 result = audit_match_filetype(ctx, f->val);
633 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
David Howellsc69e8d92008-11-14 10:39:19 +1100636 if (!result) {
637 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
zhangxiliang980dfb0d2008-08-01 19:15:47 +0800641 if (rule->filterkey && ctx)
Amy Griffis5adc8a62006-06-14 18:45:21 -0400642 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 switch (rule->action) {
644 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
646 }
David Howellsc69e8d92008-11-14 10:39:19 +1100647 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return 1;
649}
650
651/* At process creation time, we can determine if system-call auditing is
652 * completely disabled for this task. Since we only have the task
653 * structure at this point, we can only check uid and gid.
654 */
655static enum audit_state audit_filter_task(struct task_struct *tsk)
656{
657 struct audit_entry *e;
658 enum audit_state state;
659
660 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100661 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400662 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 rcu_read_unlock();
664 return state;
665 }
666 }
667 rcu_read_unlock();
668 return AUDIT_BUILD_CONTEXT;
669}
670
671/* At syscall entry and exit time, this filter is called if the
672 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100673 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700674 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
676static enum audit_state audit_filter_syscall(struct task_struct *tsk,
677 struct audit_context *ctx,
678 struct list_head *list)
679{
680 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100681 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
David Woodhouse351bb722005-07-14 14:40:06 +0100683 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100684 return AUDIT_DISABLED;
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100687 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000688 int word = AUDIT_WORD(ctx->major);
689 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100690
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000691 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400692 if ((e->rule.mask[word] & bit) == bit &&
693 audit_filter_rules(tsk, &e->rule, ctx, NULL,
694 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000695 rcu_read_unlock();
696 return state;
697 }
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 rcu_read_unlock();
701 return AUDIT_BUILD_CONTEXT;
702}
703
Amy Griffisf368c07d2006-04-07 16:55:56 -0400704/* At syscall exit time, this filter is called if any audit_names[] have been
705 * collected during syscall processing. We only check rules in sublists at hash
706 * buckets applicable to the inode numbers in audit_names[].
707 * Regarding audit_state, same rules apply as for audit_filter_syscall().
708 */
709enum audit_state audit_filter_inodes(struct task_struct *tsk,
710 struct audit_context *ctx)
711{
712 int i;
713 struct audit_entry *e;
714 enum audit_state state;
715
716 if (audit_pid && tsk->tgid == audit_pid)
717 return AUDIT_DISABLED;
718
719 rcu_read_lock();
720 for (i = 0; i < ctx->name_count; i++) {
721 int word = AUDIT_WORD(ctx->major);
722 int bit = AUDIT_BIT(ctx->major);
723 struct audit_names *n = &ctx->names[i];
724 int h = audit_hash_ino((u32)n->ino);
725 struct list_head *list = &audit_inode_hash[h];
726
727 if (list_empty(list))
728 continue;
729
730 list_for_each_entry_rcu(e, list, list) {
731 if ((e->rule.mask[word] & bit) == bit &&
732 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
733 rcu_read_unlock();
734 return state;
735 }
736 }
737 }
738 rcu_read_unlock();
739 return AUDIT_BUILD_CONTEXT;
740}
741
742void audit_set_auditable(struct audit_context *ctx)
743{
744 ctx->auditable = 1;
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static inline struct audit_context *audit_get_context(struct task_struct *tsk,
748 int return_valid,
749 int return_code)
750{
751 struct audit_context *context = tsk->audit_context;
752
753 if (likely(!context))
754 return NULL;
755 context->return_valid = return_valid;
Eric Parisf701b752008-01-07 13:34:51 -0500756
757 /*
758 * we need to fix up the return code in the audit logs if the actual
759 * return codes are later going to be fixed up by the arch specific
760 * signal handlers
761 *
762 * This is actually a test for:
763 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
764 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
765 *
766 * but is faster than a bunch of ||
767 */
768 if (unlikely(return_code <= -ERESTARTSYS) &&
769 (return_code >= -ERESTART_RESTARTBLOCK) &&
770 (return_code != -ENOIOCTLCMD))
771 context->return_code = -EINTR;
772 else
773 context->return_code = return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Al Virod51374a2006-08-03 10:59:26 -0400775 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400777
David Woodhouse0f45aa12005-06-19 19:35:50 +0100778 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400779 if (state == AUDIT_RECORD_CONTEXT) {
780 context->auditable = 1;
781 goto get_context;
782 }
783
784 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (state == AUDIT_RECORD_CONTEXT)
786 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
Amy Griffisf368c07d2006-04-07 16:55:56 -0400790get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 tsk->audit_context = NULL;
793 return context;
794}
795
796static inline void audit_free_names(struct audit_context *context)
797{
798 int i;
799
800#if AUDIT_DEBUG == 2
801 if (context->auditable
802 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000803 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 " name_count=%d put_count=%d"
805 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000806 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 context->serial, context->major, context->in_syscall,
808 context->name_count, context->put_count,
809 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000810 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 printk(KERN_ERR "names[%d] = %p = %s\n", i,
812 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000813 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 dump_stack();
816 return;
817 }
818#endif
819#if AUDIT_DEBUG
820 context->put_count = 0;
821 context->ino_count = 0;
822#endif
823
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000824 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400825 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 context->name_count = 0;
Jan Blunck44707fd2008-02-14 19:38:33 -0800829 path_put(&context->pwd);
830 context->pwd.dentry = NULL;
831 context->pwd.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834static inline void audit_free_aux(struct audit_context *context)
835{
836 struct audit_aux_data *aux;
837
838 while ((aux = context->aux)) {
839 context->aux = aux->next;
840 kfree(aux);
841 }
Amy Griffise54dc242007-03-29 18:01:04 -0400842 while ((aux = context->aux_pids)) {
843 context->aux_pids = aux->next;
844 kfree(aux);
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
848static inline void audit_zero_context(struct audit_context *context,
849 enum audit_state state)
850{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 memset(context, 0, sizeof(*context));
852 context->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
855static inline struct audit_context *audit_alloc_context(enum audit_state state)
856{
857 struct audit_context *context;
858
859 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
860 return NULL;
861 audit_zero_context(context, state);
862 return context;
863}
864
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700865/**
866 * audit_alloc - allocate an audit context block for a task
867 * @tsk: task
868 *
869 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * if necessary. Doing so turns on system call auditing for the
871 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700872 * needed.
873 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874int audit_alloc(struct task_struct *tsk)
875{
876 struct audit_context *context;
877 enum audit_state state;
878
Eric Parisb593d382008-01-08 17:38:31 -0500879 if (likely(!audit_ever_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return 0; /* Return if not auditing. */
881
882 state = audit_filter_task(tsk);
883 if (likely(state == AUDIT_DISABLED))
884 return 0;
885
886 if (!(context = audit_alloc_context(state))) {
887 audit_log_lost("out of memory in audit_alloc");
888 return -ENOMEM;
889 }
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 tsk->audit_context = context;
892 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
893 return 0;
894}
895
896static inline void audit_free_context(struct audit_context *context)
897{
898 struct audit_context *previous;
899 int count = 0;
900
901 do {
902 previous = context->previous;
903 if (previous || (count && count < 10)) {
904 ++count;
905 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
906 " freeing multiple contexts (%d)\n",
907 context->serial, context->major,
908 context->name_count, count);
909 }
910 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -0400911 unroll_tree_refs(context, NULL, 0);
912 free_tree_refs(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400914 kfree(context->filterkey);
Al Viro4f6b4342008-12-09 19:50:34 -0500915 kfree(context->sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 kfree(context);
917 context = previous;
918 } while (context);
919 if (count >= 10)
920 printk(KERN_ERR "audit: freed %d contexts\n", count);
921}
922
Joy Latten161a09e2006-11-27 13:11:54 -0600923void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000924{
925 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +0000926 unsigned len;
927 int error;
928 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000929
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200930 security_task_getsecid(current, &sid);
Al Viroc4823bc2007-03-12 16:17:42 +0000931 if (!sid)
932 return;
933
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200934 error = security_secid_to_secctx(sid, &ctx, &len);
Al Viroc4823bc2007-03-12 16:17:42 +0000935 if (error) {
936 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000937 goto error_path;
938 return;
939 }
940
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000941 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200942 security_release_secctx(ctx, len);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000943 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000944
945error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000946 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000947 return;
948}
949
Joy Latten161a09e2006-11-27 13:11:54 -0600950EXPORT_SYMBOL(audit_log_task_context);
951
Al Viroe4951492006-03-29 20:17:10 -0500952static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700953{
Al Viro45d9bb02006-03-29 20:02:55 -0500954 char name[sizeof(tsk->comm)];
955 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700956 struct vm_area_struct *vma;
957
Al Viroe4951492006-03-29 20:17:10 -0500958 /* tsk == current */
959
Al Viro45d9bb02006-03-29 20:02:55 -0500960 get_task_comm(name, tsk);
David Woodhouse99e45eea2005-05-23 21:57:41 +0100961 audit_log_format(ab, " comm=");
962 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700963
Al Viroe4951492006-03-29 20:17:10 -0500964 if (mm) {
965 down_read(&mm->mmap_sem);
966 vma = mm->mmap;
967 while (vma) {
968 if ((vma->vm_flags & VM_EXECUTABLE) &&
969 vma->vm_file) {
970 audit_log_d_path(ab, "exe=",
Jan Blunck44707fd2008-02-14 19:38:33 -0800971 &vma->vm_file->f_path);
Al Viroe4951492006-03-29 20:17:10 -0500972 break;
973 }
974 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700975 }
Al Viroe4951492006-03-29 20:17:10 -0500976 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700977 }
Al Viroe4951492006-03-29 20:17:10 -0500978 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700979}
980
Amy Griffise54dc242007-03-29 18:01:04 -0400981static int audit_log_pid_context(struct audit_context *context, pid_t pid,
Eric Paris4746ec52008-01-08 10:06:53 -0500982 uid_t auid, uid_t uid, unsigned int sessionid,
983 u32 sid, char *comm)
Amy Griffise54dc242007-03-29 18:01:04 -0400984{
985 struct audit_buffer *ab;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200986 char *ctx = NULL;
Amy Griffise54dc242007-03-29 18:01:04 -0400987 u32 len;
988 int rc = 0;
989
990 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
991 if (!ab)
Eric Paris6246cca2008-01-07 14:01:18 -0500992 return rc;
Amy Griffise54dc242007-03-29 18:01:04 -0400993
Eric Paris4746ec52008-01-08 10:06:53 -0500994 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid, auid,
995 uid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200996 if (security_secid_to_secctx(sid, &ctx, &len)) {
Eric Parisc2a77802008-01-07 13:40:17 -0500997 audit_log_format(ab, " obj=(none)");
Amy Griffise54dc242007-03-29 18:01:04 -0400998 rc = 1;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200999 } else {
1000 audit_log_format(ab, " obj=%s", ctx);
1001 security_release_secctx(ctx, len);
1002 }
Eric Parisc2a77802008-01-07 13:40:17 -05001003 audit_log_format(ab, " ocomm=");
1004 audit_log_untrustedstring(ab, comm);
Amy Griffise54dc242007-03-29 18:01:04 -04001005 audit_log_end(ab);
Amy Griffise54dc242007-03-29 18:01:04 -04001006
1007 return rc;
1008}
1009
Eric Parisde6bbd12008-01-07 14:31:58 -05001010/*
1011 * to_send and len_sent accounting are very loose estimates. We aren't
1012 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
1013 * within about 500 bytes (next page boundry)
1014 *
1015 * why snprintf? an int is up to 12 digits long. if we just assumed when
1016 * logging that a[%d]= was going to be 16 characters long we would be wasting
1017 * space in every audit message. In one 7500 byte message we can log up to
1018 * about 1000 min size arguments. That comes down to about 50% waste of space
1019 * if we didn't do the snprintf to find out how long arg_num_len was.
1020 */
1021static int audit_log_single_execve_arg(struct audit_context *context,
1022 struct audit_buffer **ab,
1023 int arg_num,
1024 size_t *len_sent,
1025 const char __user *p,
1026 char *buf)
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001027{
Eric Parisde6bbd12008-01-07 14:31:58 -05001028 char arg_num_len_buf[12];
1029 const char __user *tmp_p = p;
1030 /* how many digits are in arg_num? 3 is the length of a=\n */
1031 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 3;
1032 size_t len, len_left, to_send;
1033 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1034 unsigned int i, has_cntl = 0, too_long = 0;
1035 int ret;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001036
Eric Parisde6bbd12008-01-07 14:31:58 -05001037 /* strnlen_user includes the null we don't want to send */
1038 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001039
Eric Parisde6bbd12008-01-07 14:31:58 -05001040 /*
1041 * We just created this mm, if we can't find the strings
1042 * we just copied into it something is _very_ wrong. Similar
1043 * for strings that are too long, we should not have created
1044 * any.
1045 */
Eric Parisb0abcfc2008-02-18 18:23:16 -05001046 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
Eric Parisde6bbd12008-01-07 14:31:58 -05001047 WARN_ON(1);
1048 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001049 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001050 }
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001051
Eric Parisde6bbd12008-01-07 14:31:58 -05001052 /* walk the whole argument looking for non-ascii chars */
1053 do {
1054 if (len_left > MAX_EXECVE_AUDIT_LEN)
1055 to_send = MAX_EXECVE_AUDIT_LEN;
1056 else
1057 to_send = len_left;
1058 ret = copy_from_user(buf, tmp_p, to_send);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001059 /*
1060 * There is no reason for this copy to be short. We just
1061 * copied them here, and the mm hasn't been exposed to user-
1062 * space yet.
1063 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001064 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001065 WARN_ON(1);
1066 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001067 return -1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001068 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001069 buf[to_send] = '\0';
1070 has_cntl = audit_string_contains_control(buf, to_send);
1071 if (has_cntl) {
1072 /*
1073 * hex messages get logged as 2 bytes, so we can only
1074 * send half as much in each message
1075 */
1076 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
1077 break;
1078 }
1079 len_left -= to_send;
1080 tmp_p += to_send;
1081 } while (len_left > 0);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001082
Eric Parisde6bbd12008-01-07 14:31:58 -05001083 len_left = len;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001084
Eric Parisde6bbd12008-01-07 14:31:58 -05001085 if (len > max_execve_audit_len)
1086 too_long = 1;
1087
1088 /* rewalk the argument actually logging the message */
1089 for (i = 0; len_left > 0; i++) {
1090 int room_left;
1091
1092 if (len_left > max_execve_audit_len)
1093 to_send = max_execve_audit_len;
1094 else
1095 to_send = len_left;
1096
1097 /* do we have space left to send this argument in this ab? */
1098 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1099 if (has_cntl)
1100 room_left -= (to_send * 2);
1101 else
1102 room_left -= to_send;
1103 if (room_left < 0) {
1104 *len_sent = 0;
1105 audit_log_end(*ab);
1106 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1107 if (!*ab)
1108 return 0;
1109 }
1110
1111 /*
1112 * first record needs to say how long the original string was
1113 * so we can be sure nothing was lost.
1114 */
1115 if ((i == 0) && (too_long))
Paul Moore422b03c2008-02-27 10:39:22 -05001116 audit_log_format(*ab, "a%d_len=%zu ", arg_num,
Eric Parisde6bbd12008-01-07 14:31:58 -05001117 has_cntl ? 2*len : len);
1118
1119 /*
1120 * normally arguments are small enough to fit and we already
1121 * filled buf above when we checked for control characters
1122 * so don't bother with another copy_from_user
1123 */
1124 if (len >= max_execve_audit_len)
1125 ret = copy_from_user(buf, p, to_send);
1126 else
1127 ret = 0;
1128 if (ret) {
1129 WARN_ON(1);
1130 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001131 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001132 }
1133 buf[to_send] = '\0';
1134
1135 /* actually log it */
1136 audit_log_format(*ab, "a%d", arg_num);
1137 if (too_long)
1138 audit_log_format(*ab, "[%d]", i);
1139 audit_log_format(*ab, "=");
1140 if (has_cntl)
Eric Parisb556f8a2008-04-18 10:12:59 -04001141 audit_log_n_hex(*ab, buf, to_send);
Eric Parisde6bbd12008-01-07 14:31:58 -05001142 else
1143 audit_log_format(*ab, "\"%s\"", buf);
1144 audit_log_format(*ab, "\n");
1145
1146 p += to_send;
1147 len_left -= to_send;
1148 *len_sent += arg_num_len;
1149 if (has_cntl)
1150 *len_sent += to_send * 2;
1151 else
1152 *len_sent += to_send;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001153 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001154 /* include the null we didn't log */
1155 return len + 1;
1156}
1157
1158static void audit_log_execve_info(struct audit_context *context,
1159 struct audit_buffer **ab,
1160 struct audit_aux_data_execve *axi)
1161{
1162 int i;
1163 size_t len, len_sent = 0;
1164 const char __user *p;
1165 char *buf;
1166
1167 if (axi->mm != current->mm)
1168 return; /* execve failed, no additional info */
1169
1170 p = (const char __user *)axi->mm->arg_start;
1171
1172 audit_log_format(*ab, "argc=%d ", axi->argc);
1173
1174 /*
1175 * we need some kernel buffer to hold the userspace args. Just
1176 * allocate one big one rather than allocating one of the right size
1177 * for every single argument inside audit_log_single_execve_arg()
1178 * should be <8k allocation so should be pretty safe.
1179 */
1180 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1181 if (!buf) {
1182 audit_panic("out of memory for argv string\n");
1183 return;
1184 }
1185
1186 for (i = 0; i < axi->argc; i++) {
1187 len = audit_log_single_execve_arg(context, ab, i,
1188 &len_sent, p, buf);
1189 if (len <= 0)
1190 break;
1191 p += len;
1192 }
1193 kfree(buf);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001194}
1195
Eric Paris851f7ff2008-11-11 21:48:14 +11001196static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1197{
1198 int i;
1199
1200 audit_log_format(ab, " %s=", prefix);
1201 CAP_FOR_EACH_U32(i) {
1202 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1203 }
1204}
1205
1206static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1207{
1208 kernel_cap_t *perm = &name->fcap.permitted;
1209 kernel_cap_t *inh = &name->fcap.inheritable;
1210 int log = 0;
1211
1212 if (!cap_isclear(*perm)) {
1213 audit_log_cap(ab, "cap_fp", perm);
1214 log = 1;
1215 }
1216 if (!cap_isclear(*inh)) {
1217 audit_log_cap(ab, "cap_fi", inh);
1218 log = 1;
1219 }
1220
1221 if (log)
1222 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1223}
1224
Al Viroa33e6752008-12-10 03:40:06 -05001225static void show_special(struct audit_context *context, int *call_panic)
Al Virof3298dc2008-12-10 03:16:51 -05001226{
1227 struct audit_buffer *ab;
1228 int i;
1229
1230 ab = audit_log_start(context, GFP_KERNEL, context->type);
1231 if (!ab)
1232 return;
1233
1234 switch (context->type) {
1235 case AUDIT_SOCKETCALL: {
1236 int nargs = context->socketcall.nargs;
1237 audit_log_format(ab, "nargs=%d", nargs);
1238 for (i = 0; i < nargs; i++)
1239 audit_log_format(ab, " a%d=%lx", i,
1240 context->socketcall.args[i]);
1241 break; }
Al Viroa33e6752008-12-10 03:40:06 -05001242 case AUDIT_IPC: {
1243 u32 osid = context->ipc.osid;
1244
1245 audit_log_format(ab, "ouid=%u ogid=%u mode=%#o",
1246 context->ipc.uid, context->ipc.gid, context->ipc.mode);
1247 if (osid) {
1248 char *ctx = NULL;
1249 u32 len;
1250 if (security_secid_to_secctx(osid, &ctx, &len)) {
1251 audit_log_format(ab, " osid=%u", osid);
1252 *call_panic = 1;
1253 } else {
1254 audit_log_format(ab, " obj=%s", ctx);
1255 security_release_secctx(ctx, len);
1256 }
1257 }
Al Viroe816f372008-12-10 03:47:15 -05001258 if (context->ipc.has_perm) {
1259 audit_log_end(ab);
1260 ab = audit_log_start(context, GFP_KERNEL,
1261 AUDIT_IPC_SET_PERM);
1262 audit_log_format(ab,
1263 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
1264 context->ipc.qbytes,
1265 context->ipc.perm_uid,
1266 context->ipc.perm_gid,
1267 context->ipc.perm_mode);
1268 if (!ab)
1269 return;
1270 }
Al Viroa33e6752008-12-10 03:40:06 -05001271 break; }
Al Virof3298dc2008-12-10 03:16:51 -05001272 }
1273 audit_log_end(ab);
1274}
1275
Al Viroe4951492006-03-29 20:17:10 -05001276static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
David Howellsc69e8d92008-11-14 10:39:19 +11001278 const struct cred *cred;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001279 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001281 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -05001282 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Al Viroe4951492006-03-29 20:17:10 -05001284 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001285 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -04001286 if (!context->ppid)
1287 context->ppid = sys_getppid();
David Howellsc69e8d92008-11-14 10:39:19 +11001288 cred = current_cred();
1289 context->uid = cred->uid;
1290 context->gid = cred->gid;
1291 context->euid = cred->euid;
1292 context->suid = cred->suid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001293 context->fsuid = cred->fsuid;
David Howellsc69e8d92008-11-14 10:39:19 +11001294 context->egid = cred->egid;
1295 context->sgid = cred->sgid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001296 context->fsgid = cred->fsgid;
Al Viro3f2792f2006-07-16 06:43:48 -04001297 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001298
1299 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (!ab)
1301 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001302 audit_log_format(ab, "arch=%x syscall=%d",
1303 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (context->personality != PER_LINUX)
1305 audit_log_format(ab, " per=%lx", context->personality);
1306 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001307 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001308 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1309 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001310
Alan Coxdbda4c02008-10-13 10:40:53 +01001311 spin_lock_irq(&tsk->sighand->siglock);
Al Viro45d9bb02006-03-29 20:02:55 -05001312 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1313 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -05001314 else
1315 tty = "(none)";
Alan Coxdbda4c02008-10-13 10:40:53 +01001316 spin_unlock_irq(&tsk->sighand->siglock);
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 audit_log_format(ab,
1319 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -04001320 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +01001321 " euid=%u suid=%u fsuid=%u"
Eric Paris4746ec52008-01-08 10:06:53 -05001322 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 context->argv[0],
1324 context->argv[1],
1325 context->argv[2],
1326 context->argv[3],
1327 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -04001328 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 context->pid,
Al Virobfef93a2008-01-10 04:53:18 -05001330 tsk->loginuid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 context->uid,
1332 context->gid,
1333 context->euid, context->suid, context->fsuid,
Eric Paris4746ec52008-01-08 10:06:53 -05001334 context->egid, context->sgid, context->fsgid, tty,
1335 tsk->sessionid);
Alan Coxeb84a202006-09-29 02:01:41 -07001336
Alan Coxeb84a202006-09-29 02:01:41 -07001337
Al Viroe4951492006-03-29 20:17:10 -05001338 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001339 if (context->filterkey) {
1340 audit_log_format(ab, " key=");
1341 audit_log_untrustedstring(ab, context->filterkey);
1342 } else
1343 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
David Woodhouse7551ced2005-05-26 12:04:57 +01001346 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001347
Al Viroe4951492006-03-29 20:17:10 -05001348 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (!ab)
1350 continue; /* audit_panic has been called */
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001353 case AUDIT_MQ_OPEN: {
1354 struct audit_aux_data_mq_open *axi = (void *)aux;
1355 audit_log_format(ab,
1356 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
1357 "mq_msgsize=%ld mq_curmsgs=%ld",
1358 axi->oflag, axi->mode, axi->attr.mq_flags,
1359 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
1360 axi->attr.mq_curmsgs);
1361 break; }
1362
1363 case AUDIT_MQ_SENDRECV: {
1364 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
1365 audit_log_format(ab,
1366 "mqdes=%d msg_len=%zd msg_prio=%u "
1367 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1368 axi->mqdes, axi->msg_len, axi->msg_prio,
1369 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
1370 break; }
1371
1372 case AUDIT_MQ_NOTIFY: {
1373 struct audit_aux_data_mq_notify *axi = (void *)aux;
1374 audit_log_format(ab,
1375 "mqdes=%d sigev_signo=%d",
1376 axi->mqdes,
1377 axi->notification.sigev_signo);
1378 break; }
1379
1380 case AUDIT_MQ_GETSETATTR: {
1381 struct audit_aux_data_mq_getsetattr *axi = (void *)aux;
1382 audit_log_format(ab,
1383 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1384 "mq_curmsgs=%ld ",
1385 axi->mqdes,
1386 axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg,
1387 axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs);
1388 break; }
1389
Al Viro473ae302006-04-26 14:04:08 -04001390 case AUDIT_EXECVE: {
1391 struct audit_aux_data_execve *axi = (void *)aux;
Eric Parisde6bbd12008-01-07 14:31:58 -05001392 audit_log_execve_info(context, &ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001393 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001394
Al Virodb349502007-02-07 01:48:00 -05001395 case AUDIT_FD_PAIR: {
1396 struct audit_aux_data_fd_pair *axs = (void *)aux;
1397 audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]);
1398 break; }
1399
Eric Paris3fc689e2008-11-11 21:48:18 +11001400 case AUDIT_BPRM_FCAPS: {
1401 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1402 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1403 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1404 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1405 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1406 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1407 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1408 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1409 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1410 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1411 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1412 break; }
1413
Eric Parise68b75a02008-11-11 21:48:22 +11001414 case AUDIT_CAPSET: {
1415 struct audit_aux_data_capset *axs = (void *)aux;
1416 audit_log_format(ab, "pid=%d", axs->pid);
1417 audit_log_cap(ab, "cap_pi", &axs->cap.inheritable);
1418 audit_log_cap(ab, "cap_pp", &axs->cap.permitted);
1419 audit_log_cap(ab, "cap_pe", &axs->cap.effective);
1420 break; }
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425
Al Virof3298dc2008-12-10 03:16:51 -05001426 if (context->type)
Al Viroa33e6752008-12-10 03:40:06 -05001427 show_special(context, &call_panic);
Al Virof3298dc2008-12-10 03:16:51 -05001428
Al Viro4f6b4342008-12-09 19:50:34 -05001429 if (context->sockaddr_len) {
1430 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1431 if (ab) {
1432 audit_log_format(ab, "saddr=");
1433 audit_log_n_hex(ab, (void *)context->sockaddr,
1434 context->sockaddr_len);
1435 audit_log_end(ab);
1436 }
1437 }
1438
Amy Griffise54dc242007-03-29 18:01:04 -04001439 for (aux = context->aux_pids; aux; aux = aux->next) {
1440 struct audit_aux_data_pids *axs = (void *)aux;
Amy Griffise54dc242007-03-29 18:01:04 -04001441
1442 for (i = 0; i < axs->pid_count; i++)
1443 if (audit_log_pid_context(context, axs->target_pid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001444 axs->target_auid[i],
1445 axs->target_uid[i],
Eric Paris4746ec52008-01-08 10:06:53 -05001446 axs->target_sessionid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001447 axs->target_sid[i],
1448 axs->target_comm[i]))
Amy Griffise54dc242007-03-29 18:01:04 -04001449 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001450 }
1451
Amy Griffise54dc242007-03-29 18:01:04 -04001452 if (context->target_pid &&
1453 audit_log_pid_context(context, context->target_pid,
Eric Parisc2a77802008-01-07 13:40:17 -05001454 context->target_auid, context->target_uid,
Eric Paris4746ec52008-01-08 10:06:53 -05001455 context->target_sessionid,
Eric Parisc2a77802008-01-07 13:40:17 -05001456 context->target_sid, context->target_comm))
Amy Griffise54dc242007-03-29 18:01:04 -04001457 call_panic = 1;
1458
Jan Blunck44707fd2008-02-14 19:38:33 -08001459 if (context->pwd.dentry && context->pwd.mnt) {
Al Viroe4951492006-03-29 20:17:10 -05001460 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001461 if (ab) {
Jan Blunck44707fd2008-02-14 19:38:33 -08001462 audit_log_d_path(ab, "cwd=", &context->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001463 audit_log_end(ab);
1464 }
1465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -04001467 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +00001468
Al Viroe4951492006-03-29 20:17:10 -05001469 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (!ab)
1471 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001474
Amy Griffis9c937dc2006-06-08 23:19:31 -04001475 if (n->name) {
1476 switch(n->name_len) {
1477 case AUDIT_NAME_FULL:
1478 /* log the full path */
1479 audit_log_format(ab, " name=");
1480 audit_log_untrustedstring(ab, n->name);
1481 break;
1482 case 0:
1483 /* name was specified as a relative path and the
1484 * directory component is the cwd */
Jan Blunck44707fd2008-02-14 19:38:33 -08001485 audit_log_d_path(ab, " name=", &context->pwd);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001486 break;
1487 default:
1488 /* log the name's directory component */
1489 audit_log_format(ab, " name=");
Eric Parisb556f8a2008-04-18 10:12:59 -04001490 audit_log_n_untrustedstring(ab, n->name,
1491 n->name_len);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001492 }
1493 } else
1494 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +00001495
Amy Griffis9c937dc2006-06-08 23:19:31 -04001496 if (n->ino != (unsigned long)-1) {
1497 audit_log_format(ab, " inode=%lu"
1498 " dev=%02x:%02x mode=%#o"
1499 " ouid=%u ogid=%u rdev=%02x:%02x",
1500 n->ino,
1501 MAJOR(n->dev),
1502 MINOR(n->dev),
1503 n->mode,
1504 n->uid,
1505 n->gid,
1506 MAJOR(n->rdev),
1507 MINOR(n->rdev));
1508 }
1509 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001510 char *ctx = NULL;
1511 u32 len;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001512 if (security_secid_to_secctx(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001513 n->osid, &ctx, &len)) {
1514 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001515 call_panic = 2;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001516 } else {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001517 audit_log_format(ab, " obj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001518 security_release_secctx(ctx, len);
1519 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001520 }
1521
Eric Paris851f7ff2008-11-11 21:48:14 +11001522 audit_log_fcaps(ab, n);
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 audit_log_end(ab);
1525 }
Eric Parisc0641f22008-01-07 13:49:15 -05001526
1527 /* Send end of event record to help user space know we are finished */
1528 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1529 if (ab)
1530 audit_log_end(ab);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001531 if (call_panic)
1532 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001535/**
1536 * audit_free - free a per-task audit context
1537 * @tsk: task whose audit context block to free
1538 *
Al Virofa84cb92006-03-29 20:30:19 -05001539 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001540 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541void audit_free(struct task_struct *tsk)
1542{
1543 struct audit_context *context;
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (likely(!context))
1547 return;
1548
1549 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001550 * function (e.g., exit_group), then free context block.
1551 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001552 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001553 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001554 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001555 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 audit_free_context(context);
1558}
1559
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001560/**
1561 * audit_syscall_entry - fill in an audit record at syscall entry
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001562 * @arch: architecture type
1563 * @major: major syscall type (function)
1564 * @a1: additional syscall register 1
1565 * @a2: additional syscall register 2
1566 * @a3: additional syscall register 3
1567 * @a4: additional syscall register 4
1568 *
1569 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 * audit context was created when the task was created and the state or
1571 * filters demand the audit context be built. If the state from the
1572 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1573 * then the record will be written at syscall exit time (otherwise, it
1574 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001575 * be written).
1576 */
Al Viro5411be52006-03-29 20:23:36 -05001577void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 unsigned long a1, unsigned long a2,
1579 unsigned long a3, unsigned long a4)
1580{
Al Viro5411be52006-03-29 20:23:36 -05001581 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 struct audit_context *context = tsk->audit_context;
1583 enum audit_state state;
1584
Roland McGrath86a1c342008-06-23 15:37:04 -07001585 if (unlikely(!context))
1586 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001588 /*
1589 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 * calls in kernel_thread via the entry.S interface, instead of
1591 * with direct calls. (If you are porting to a new
1592 * architecture, hitting this condition can indicate that you
1593 * got the _exit/_leave calls backward in entry.S.)
1594 *
1595 * i386 no
1596 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001597 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 *
1599 * This also happens with vm86 emulation in a non-nested manner
1600 * (entries without exits), so this case must be caught.
1601 */
1602 if (context->in_syscall) {
1603 struct audit_context *newctx;
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605#if AUDIT_DEBUG
1606 printk(KERN_ERR
1607 "audit(:%d) pid=%d in syscall=%d;"
1608 " entering syscall=%d\n",
1609 context->serial, tsk->pid, context->major, major);
1610#endif
1611 newctx = audit_alloc_context(context->state);
1612 if (newctx) {
1613 newctx->previous = context;
1614 context = newctx;
1615 tsk->audit_context = newctx;
1616 } else {
1617 /* If we can't alloc a new context, the best we
1618 * can do is to leak memory (any pending putname
1619 * will be lost). The only other alternative is
1620 * to abandon auditing. */
1621 audit_zero_context(context, context->state);
1622 }
1623 }
1624 BUG_ON(context->in_syscall || context->name_count);
1625
1626 if (!audit_enabled)
1627 return;
1628
2fd6f582005-04-29 16:08:28 +01001629 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 context->major = major;
1631 context->argv[0] = a1;
1632 context->argv[1] = a2;
1633 context->argv[2] = a3;
1634 context->argv[3] = a4;
1635
1636 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001637 context->dummy = !audit_n_rules;
1638 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001639 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (likely(state == AUDIT_DISABLED))
1641 return;
1642
David Woodhousece625a82005-07-18 14:24:46 -04001643 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 context->ctime = CURRENT_TIME;
1645 context->in_syscall = 1;
1646 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
Alexander Viro419c58f2006-09-29 00:08:50 -04001647 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Al Viroa64e6492008-11-12 18:37:41 -05001650void audit_finish_fork(struct task_struct *child)
1651{
1652 struct audit_context *ctx = current->audit_context;
1653 struct audit_context *p = child->audit_context;
1654 if (!p || !ctx || !ctx->auditable)
1655 return;
1656 p->arch = ctx->arch;
1657 p->major = ctx->major;
1658 memcpy(p->argv, ctx->argv, sizeof(ctx->argv));
1659 p->ctime = ctx->ctime;
1660 p->dummy = ctx->dummy;
1661 p->auditable = ctx->auditable;
1662 p->in_syscall = ctx->in_syscall;
1663 p->filterkey = kstrdup(ctx->filterkey, GFP_KERNEL);
1664 p->ppid = current->pid;
1665}
1666
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001667/**
1668 * audit_syscall_exit - deallocate audit context after a system call
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001669 * @valid: success/failure flag
1670 * @return_code: syscall return value
1671 *
1672 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1674 * filtering, or because some other part of the kernel write an audit
1675 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001676 * free the names stored from getname().
1677 */
Al Viro5411be52006-03-29 20:23:36 -05001678void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Al Viro5411be52006-03-29 20:23:36 -05001680 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 struct audit_context *context;
1682
2fd6f582005-04-29 16:08:28 +01001683 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001686 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
David Woodhousef7056d62005-06-20 16:07:33 +01001688 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001689 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 context->in_syscall = 0;
1692 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (context->previous) {
1695 struct audit_context *new_context = context->previous;
1696 context->previous = NULL;
1697 audit_free_context(context);
1698 tsk->audit_context = new_context;
1699 } else {
1700 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001701 unroll_tree_refs(context, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001703 context->aux = NULL;
1704 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001705 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001706 context->target_sid = 0;
Al Viro4f6b4342008-12-09 19:50:34 -05001707 context->sockaddr_len = 0;
Al Virof3298dc2008-12-10 03:16:51 -05001708 context->type = 0;
Amy Griffis5adc8a62006-06-14 18:45:21 -04001709 kfree(context->filterkey);
1710 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 tsk->audit_context = context;
1712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713}
1714
Al Viro74c3cbe2007-07-22 08:04:18 -04001715static inline void handle_one(const struct inode *inode)
1716{
1717#ifdef CONFIG_AUDIT_TREE
1718 struct audit_context *context;
1719 struct audit_tree_refs *p;
1720 struct audit_chunk *chunk;
1721 int count;
1722 if (likely(list_empty(&inode->inotify_watches)))
1723 return;
1724 context = current->audit_context;
1725 p = context->trees;
1726 count = context->tree_count;
1727 rcu_read_lock();
1728 chunk = audit_tree_lookup(inode);
1729 rcu_read_unlock();
1730 if (!chunk)
1731 return;
1732 if (likely(put_tree_ref(context, chunk)))
1733 return;
1734 if (unlikely(!grow_tree_refs(context))) {
Eric Paris436c4052008-04-18 10:01:04 -04001735 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001736 audit_set_auditable(context);
1737 audit_put_chunk(chunk);
1738 unroll_tree_refs(context, p, count);
1739 return;
1740 }
1741 put_tree_ref(context, chunk);
1742#endif
1743}
1744
1745static void handle_path(const struct dentry *dentry)
1746{
1747#ifdef CONFIG_AUDIT_TREE
1748 struct audit_context *context;
1749 struct audit_tree_refs *p;
1750 const struct dentry *d, *parent;
1751 struct audit_chunk *drop;
1752 unsigned long seq;
1753 int count;
1754
1755 context = current->audit_context;
1756 p = context->trees;
1757 count = context->tree_count;
1758retry:
1759 drop = NULL;
1760 d = dentry;
1761 rcu_read_lock();
1762 seq = read_seqbegin(&rename_lock);
1763 for(;;) {
1764 struct inode *inode = d->d_inode;
1765 if (inode && unlikely(!list_empty(&inode->inotify_watches))) {
1766 struct audit_chunk *chunk;
1767 chunk = audit_tree_lookup(inode);
1768 if (chunk) {
1769 if (unlikely(!put_tree_ref(context, chunk))) {
1770 drop = chunk;
1771 break;
1772 }
1773 }
1774 }
1775 parent = d->d_parent;
1776 if (parent == d)
1777 break;
1778 d = parent;
1779 }
1780 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1781 rcu_read_unlock();
1782 if (!drop) {
1783 /* just a race with rename */
1784 unroll_tree_refs(context, p, count);
1785 goto retry;
1786 }
1787 audit_put_chunk(drop);
1788 if (grow_tree_refs(context)) {
1789 /* OK, got more space */
1790 unroll_tree_refs(context, p, count);
1791 goto retry;
1792 }
1793 /* too bad */
1794 printk(KERN_WARNING
Eric Paris436c4052008-04-18 10:01:04 -04001795 "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001796 unroll_tree_refs(context, p, count);
1797 audit_set_auditable(context);
1798 return;
1799 }
1800 rcu_read_unlock();
1801#endif
1802}
1803
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001804/**
1805 * audit_getname - add a name to the list
1806 * @name: name to add
1807 *
1808 * Add a name to the list of audit names for this context.
1809 * Called from fs/namei.c:getname().
1810 */
Al Virod8945bb52006-05-18 16:01:30 -04001811void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 struct audit_context *context = current->audit_context;
1814
Al Virod8945bb52006-05-18 16:01:30 -04001815 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return;
1817
1818 if (!context->in_syscall) {
1819#if AUDIT_DEBUG == 2
1820 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1821 __FILE__, __LINE__, context->serial, name);
1822 dump_stack();
1823#endif
1824 return;
1825 }
1826 BUG_ON(context->name_count >= AUDIT_NAMES);
1827 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001828 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1829 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 context->names[context->name_count].ino = (unsigned long)-1;
Amy Griffise41e8bd2007-02-13 14:14:09 -05001831 context->names[context->name_count].osid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 ++context->name_count;
Jan Blunck44707fd2008-02-14 19:38:33 -08001833 if (!context->pwd.dentry) {
David Woodhouse8f37d472005-05-27 12:17:28 +01001834 read_lock(&current->fs->lock);
Jan Blunck44707fd2008-02-14 19:38:33 -08001835 context->pwd = current->fs->pwd;
1836 path_get(&current->fs->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001837 read_unlock(&current->fs->lock);
1838 }
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001842/* audit_putname - intercept a putname request
1843 * @name: name to intercept and delay for putname
1844 *
1845 * If we have stored the name from getname in the audit context,
1846 * then we delay the putname until syscall exit.
1847 * Called from include/linux/fs.h:putname().
1848 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849void audit_putname(const char *name)
1850{
1851 struct audit_context *context = current->audit_context;
1852
1853 BUG_ON(!context);
1854 if (!context->in_syscall) {
1855#if AUDIT_DEBUG == 2
1856 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1857 __FILE__, __LINE__, context->serial, name);
1858 if (context->name_count) {
1859 int i;
1860 for (i = 0; i < context->name_count; i++)
1861 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1862 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001863 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
1865#endif
1866 __putname(name);
1867 }
1868#if AUDIT_DEBUG
1869 else {
1870 ++context->put_count;
1871 if (context->put_count > context->name_count) {
1872 printk(KERN_ERR "%s:%d(:%d): major=%d"
1873 " in_syscall=%d putname(%p) name_count=%d"
1874 " put_count=%d\n",
1875 __FILE__, __LINE__,
1876 context->serial, context->major,
1877 context->in_syscall, name, context->name_count,
1878 context->put_count);
1879 dump_stack();
1880 }
1881 }
1882#endif
1883}
1884
Amy Griffis5712e882007-02-13 14:15:22 -05001885static int audit_inc_name_count(struct audit_context *context,
1886 const struct inode *inode)
1887{
1888 if (context->name_count >= AUDIT_NAMES) {
1889 if (inode)
1890 printk(KERN_DEBUG "name_count maxed, losing inode data: "
Eric Paris436c4052008-04-18 10:01:04 -04001891 "dev=%02x:%02x, inode=%lu\n",
Amy Griffis5712e882007-02-13 14:15:22 -05001892 MAJOR(inode->i_sb->s_dev),
1893 MINOR(inode->i_sb->s_dev),
1894 inode->i_ino);
1895
1896 else
Eric Paris436c4052008-04-18 10:01:04 -04001897 printk(KERN_DEBUG "name_count maxed, losing inode data\n");
Amy Griffis5712e882007-02-13 14:15:22 -05001898 return 1;
1899 }
1900 context->name_count++;
1901#if AUDIT_DEBUG
1902 context->ino_count++;
1903#endif
1904 return 0;
1905}
1906
Eric Paris851f7ff2008-11-11 21:48:14 +11001907
1908static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
1909{
1910 struct cpu_vfs_cap_data caps;
1911 int rc;
1912
1913 memset(&name->fcap.permitted, 0, sizeof(kernel_cap_t));
1914 memset(&name->fcap.inheritable, 0, sizeof(kernel_cap_t));
1915 name->fcap.fE = 0;
1916 name->fcap_ver = 0;
1917
1918 if (!dentry)
1919 return 0;
1920
1921 rc = get_vfs_caps_from_disk(dentry, &caps);
1922 if (rc)
1923 return rc;
1924
1925 name->fcap.permitted = caps.permitted;
1926 name->fcap.inheritable = caps.inheritable;
1927 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
1928 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
1929
1930 return 0;
1931}
1932
1933
Amy Griffis3e2efce2006-07-13 13:16:02 -04001934/* Copy inode data into an audit_names. */
Eric Paris851f7ff2008-11-11 21:48:14 +11001935static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
1936 const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001937{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001938 name->ino = inode->i_ino;
1939 name->dev = inode->i_sb->s_dev;
1940 name->mode = inode->i_mode;
1941 name->uid = inode->i_uid;
1942 name->gid = inode->i_gid;
1943 name->rdev = inode->i_rdev;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001944 security_inode_getsecid(inode, &name->osid);
Eric Paris851f7ff2008-11-11 21:48:14 +11001945 audit_copy_fcaps(name, dentry);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001946}
1947
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001948/**
1949 * audit_inode - store the inode and device from a lookup
1950 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07001951 * @dentry: dentry being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001952 *
1953 * Called from fs/namei.c:path_lookup().
1954 */
Al Viro5a190ae2007-06-07 12:19:32 -04001955void __audit_inode(const char *name, const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
1957 int idx;
1958 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04001959 const struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 if (!context->in_syscall)
1962 return;
1963 if (context->name_count
1964 && context->names[context->name_count-1].name
1965 && context->names[context->name_count-1].name == name)
1966 idx = context->name_count - 1;
1967 else if (context->name_count > 1
1968 && context->names[context->name_count-2].name
1969 && context->names[context->name_count-2].name == name)
1970 idx = context->name_count - 2;
1971 else {
1972 /* FIXME: how much do we care about inodes that have no
1973 * associated name? */
Amy Griffis5712e882007-02-13 14:15:22 -05001974 if (audit_inc_name_count(context, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return;
Amy Griffis5712e882007-02-13 14:15:22 -05001976 idx = context->name_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 context->names[idx].name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
Al Viro74c3cbe2007-07-22 08:04:18 -04001979 handle_path(dentry);
Eric Paris851f7ff2008-11-11 21:48:14 +11001980 audit_copy_inode(&context->names[idx], dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
Amy Griffis73241cc2005-11-03 16:00:25 +00001983/**
1984 * audit_inode_child - collect inode info for created/removed objects
1985 * @dname: inode's dentry name
Randy Dunlap481968f2007-10-21 20:59:53 -07001986 * @dentry: dentry being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001987 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001988 *
1989 * For syscalls that create or remove filesystem objects, audit_inode
1990 * can only collect information for the filesystem object's parent.
1991 * This call updates the audit context with the child's information.
1992 * Syscalls that create a new filesystem object must be hooked after
1993 * the object is created. Syscalls that remove a filesystem object
1994 * must be hooked prior, in order to capture the target inode during
1995 * unsuccessful attempts.
1996 */
Al Viro5a190ae2007-06-07 12:19:32 -04001997void __audit_inode_child(const char *dname, const struct dentry *dentry,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001998 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001999{
2000 int idx;
2001 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05002002 const char *found_parent = NULL, *found_child = NULL;
Al Viro5a190ae2007-06-07 12:19:32 -04002003 const struct inode *inode = dentry->d_inode;
Amy Griffis9c937dc2006-06-08 23:19:31 -04002004 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00002005
2006 if (!context->in_syscall)
2007 return;
2008
Al Viro74c3cbe2007-07-22 08:04:18 -04002009 if (inode)
2010 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00002011 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04002012 if (!dname)
Amy Griffis5712e882007-02-13 14:15:22 -05002013 goto add_names;
Amy Griffis73241cc2005-11-03 16:00:25 +00002014
Amy Griffis5712e882007-02-13 14:15:22 -05002015 /* parent is more likely, look for it first */
2016 for (idx = 0; idx < context->name_count; idx++) {
2017 struct audit_names *n = &context->names[idx];
Amy Griffis73241cc2005-11-03 16:00:25 +00002018
Amy Griffis5712e882007-02-13 14:15:22 -05002019 if (!n->name)
2020 continue;
2021
2022 if (n->ino == parent->i_ino &&
2023 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2024 n->name_len = dirlen; /* update parent data in place */
2025 found_parent = n->name;
2026 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04002027 }
Steve Grubbac9910c2006-09-28 14:31:32 -04002028 }
Amy Griffis73241cc2005-11-03 16:00:25 +00002029
Amy Griffis5712e882007-02-13 14:15:22 -05002030 /* no matching parent, look for matching child */
2031 for (idx = 0; idx < context->name_count; idx++) {
2032 struct audit_names *n = &context->names[idx];
Amy Griffis73d3ec52006-07-13 13:16:39 -04002033
Amy Griffis5712e882007-02-13 14:15:22 -05002034 if (!n->name)
2035 continue;
2036
2037 /* strcmp() is the more likely scenario */
2038 if (!strcmp(dname, n->name) ||
2039 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2040 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002041 audit_copy_inode(n, NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002042 else
2043 n->ino = (unsigned long)-1;
2044 found_child = n->name;
2045 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04002046 }
Amy Griffis5712e882007-02-13 14:15:22 -05002047 }
2048
2049add_names:
2050 if (!found_parent) {
2051 if (audit_inc_name_count(context, parent))
2052 return;
2053 idx = context->name_count - 1;
2054 context->names[idx].name = NULL;
Eric Paris851f7ff2008-11-11 21:48:14 +11002055 audit_copy_inode(&context->names[idx], NULL, parent);
Amy Griffis73d3ec52006-07-13 13:16:39 -04002056 }
Amy Griffis5712e882007-02-13 14:15:22 -05002057
2058 if (!found_child) {
2059 if (audit_inc_name_count(context, inode))
2060 return;
2061 idx = context->name_count - 1;
2062
2063 /* Re-use the name belonging to the slot for a matching parent
2064 * directory. All names for this context are relinquished in
2065 * audit_free_names() */
2066 if (found_parent) {
2067 context->names[idx].name = found_parent;
2068 context->names[idx].name_len = AUDIT_NAME_FULL;
2069 /* don't call __putname() */
2070 context->names[idx].name_put = 0;
2071 } else {
2072 context->names[idx].name = NULL;
2073 }
2074
2075 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002076 audit_copy_inode(&context->names[idx], NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002077 else
2078 context->names[idx].ino = (unsigned long)-1;
2079 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04002080}
Trond Myklebust50e437d2007-06-07 22:44:34 -04002081EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04002082
2083/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002084 * auditsc_get_stamp - get local copies of audit_context values
2085 * @ctx: audit_context for the task
2086 * @t: timespec to store time recorded in the audit_context
2087 * @serial: serial value that is recorded in the audit_context
2088 *
2089 * Also sets the context as auditable.
2090 */
Al Viro48887e62008-12-06 01:05:50 -05002091int auditsc_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01002092 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
Al Viro48887e62008-12-06 01:05:50 -05002094 if (!ctx->in_syscall)
2095 return 0;
David Woodhousece625a82005-07-18 14:24:46 -04002096 if (!ctx->serial)
2097 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01002098 t->tv_sec = ctx->ctime.tv_sec;
2099 t->tv_nsec = ctx->ctime.tv_nsec;
2100 *serial = ctx->serial;
2101 ctx->auditable = 1;
Al Viro48887e62008-12-06 01:05:50 -05002102 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
Eric Paris4746ec52008-01-08 10:06:53 -05002105/* global counter which is incremented every time something logs in */
2106static atomic_t session_id = ATOMIC_INIT(0);
2107
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002108/**
2109 * audit_set_loginuid - set a task's audit_context loginuid
2110 * @task: task whose audit context is being modified
2111 * @loginuid: loginuid value
2112 *
2113 * Returns 0.
2114 *
2115 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2116 */
Steve Grubb456be6c2005-04-29 17:30:07 +01002117int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Eric Paris4746ec52008-01-08 10:06:53 -05002119 unsigned int sessionid = atomic_inc_return(&session_id);
Steve Grubb41757102006-06-12 07:48:28 -04002120 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01002121
Al Virobfef93a2008-01-10 04:53:18 -05002122 if (context && context->in_syscall) {
2123 struct audit_buffer *ab;
Steve Grubb41757102006-06-12 07:48:28 -04002124
Al Virobfef93a2008-01-10 04:53:18 -05002125 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2126 if (ab) {
2127 audit_log_format(ab, "login pid=%d uid=%u "
Eric Paris4746ec52008-01-08 10:06:53 -05002128 "old auid=%u new auid=%u"
2129 " old ses=%u new ses=%u",
David Howellsc69e8d92008-11-14 10:39:19 +11002130 task->pid, task_uid(task),
Eric Paris4746ec52008-01-08 10:06:53 -05002131 task->loginuid, loginuid,
2132 task->sessionid, sessionid);
Al Virobfef93a2008-01-10 04:53:18 -05002133 audit_log_end(ab);
Steve Grubbc0404992005-05-13 18:17:42 +01002134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
Eric Paris4746ec52008-01-08 10:06:53 -05002136 task->sessionid = sessionid;
Al Virobfef93a2008-01-10 04:53:18 -05002137 task->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return 0;
2139}
2140
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002141/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05002142 * __audit_mq_open - record audit data for a POSIX MQ open
2143 * @oflag: open flag
2144 * @mode: mode bits
2145 * @u_attr: queue attributes
2146 *
2147 * Returns 0 for success or NULL context or < 0 on error.
2148 */
2149int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
2150{
2151 struct audit_aux_data_mq_open *ax;
2152 struct audit_context *context = current->audit_context;
2153
2154 if (!audit_enabled)
2155 return 0;
2156
2157 if (likely(!context))
2158 return 0;
2159
2160 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2161 if (!ax)
2162 return -ENOMEM;
2163
2164 if (u_attr != NULL) {
2165 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
2166 kfree(ax);
2167 return -EFAULT;
2168 }
2169 } else
2170 memset(&ax->attr, 0, sizeof(ax->attr));
2171
2172 ax->oflag = oflag;
2173 ax->mode = mode;
2174
2175 ax->d.type = AUDIT_MQ_OPEN;
2176 ax->d.next = context->aux;
2177 context->aux = (void *)ax;
2178 return 0;
2179}
2180
2181/**
2182 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
2183 * @mqdes: MQ descriptor
2184 * @msg_len: Message length
2185 * @msg_prio: Message priority
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07002186 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002187 *
2188 * Returns 0 for success or NULL context or < 0 on error.
2189 */
2190int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2191 const struct timespec __user *u_abs_timeout)
2192{
2193 struct audit_aux_data_mq_sendrecv *ax;
2194 struct audit_context *context = current->audit_context;
2195
2196 if (!audit_enabled)
2197 return 0;
2198
2199 if (likely(!context))
2200 return 0;
2201
2202 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2203 if (!ax)
2204 return -ENOMEM;
2205
2206 if (u_abs_timeout != NULL) {
2207 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
2208 kfree(ax);
2209 return -EFAULT;
2210 }
2211 } else
2212 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
2213
2214 ax->mqdes = mqdes;
2215 ax->msg_len = msg_len;
2216 ax->msg_prio = msg_prio;
2217
2218 ax->d.type = AUDIT_MQ_SENDRECV;
2219 ax->d.next = context->aux;
2220 context->aux = (void *)ax;
2221 return 0;
2222}
2223
2224/**
2225 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
2226 * @mqdes: MQ descriptor
2227 * @msg_len: Message length
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07002228 * @u_msg_prio: Message priority
2229 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002230 *
2231 * Returns 0 for success or NULL context or < 0 on error.
2232 */
2233int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
2234 unsigned int __user *u_msg_prio,
2235 const struct timespec __user *u_abs_timeout)
2236{
2237 struct audit_aux_data_mq_sendrecv *ax;
2238 struct audit_context *context = current->audit_context;
2239
2240 if (!audit_enabled)
2241 return 0;
2242
2243 if (likely(!context))
2244 return 0;
2245
2246 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2247 if (!ax)
2248 return -ENOMEM;
2249
2250 if (u_msg_prio != NULL) {
2251 if (get_user(ax->msg_prio, u_msg_prio)) {
2252 kfree(ax);
2253 return -EFAULT;
2254 }
2255 } else
2256 ax->msg_prio = 0;
2257
2258 if (u_abs_timeout != NULL) {
2259 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
2260 kfree(ax);
2261 return -EFAULT;
2262 }
2263 } else
2264 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
2265
2266 ax->mqdes = mqdes;
2267 ax->msg_len = msg_len;
2268
2269 ax->d.type = AUDIT_MQ_SENDRECV;
2270 ax->d.next = context->aux;
2271 context->aux = (void *)ax;
2272 return 0;
2273}
2274
2275/**
2276 * __audit_mq_notify - record audit data for a POSIX MQ notify
2277 * @mqdes: MQ descriptor
2278 * @u_notification: Notification event
2279 *
2280 * Returns 0 for success or NULL context or < 0 on error.
2281 */
2282
2283int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
2284{
2285 struct audit_aux_data_mq_notify *ax;
2286 struct audit_context *context = current->audit_context;
2287
2288 if (!audit_enabled)
2289 return 0;
2290
2291 if (likely(!context))
2292 return 0;
2293
2294 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2295 if (!ax)
2296 return -ENOMEM;
2297
2298 if (u_notification != NULL) {
2299 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
2300 kfree(ax);
2301 return -EFAULT;
2302 }
2303 } else
2304 memset(&ax->notification, 0, sizeof(ax->notification));
2305
2306 ax->mqdes = mqdes;
2307
2308 ax->d.type = AUDIT_MQ_NOTIFY;
2309 ax->d.next = context->aux;
2310 context->aux = (void *)ax;
2311 return 0;
2312}
2313
2314/**
2315 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2316 * @mqdes: MQ descriptor
2317 * @mqstat: MQ flags
2318 *
2319 * Returns 0 for success or NULL context or < 0 on error.
2320 */
2321int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
2322{
2323 struct audit_aux_data_mq_getsetattr *ax;
2324 struct audit_context *context = current->audit_context;
2325
2326 if (!audit_enabled)
2327 return 0;
2328
2329 if (likely(!context))
2330 return 0;
2331
2332 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2333 if (!ax)
2334 return -ENOMEM;
2335
2336 ax->mqdes = mqdes;
2337 ax->mqstat = *mqstat;
2338
2339 ax->d.type = AUDIT_MQ_GETSETATTR;
2340 ax->d.next = context->aux;
2341 context->aux = (void *)ax;
2342 return 0;
2343}
2344
2345/**
Steve Grubb073115d2006-04-02 17:07:33 -04002346 * audit_ipc_obj - record audit data for ipc object
2347 * @ipcp: ipc permissions
2348 *
Steve Grubb073115d2006-04-02 17:07:33 -04002349 */
Al Viroa33e6752008-12-10 03:40:06 -05002350void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002351{
Steve Grubb073115d2006-04-02 17:07:33 -04002352 struct audit_context *context = current->audit_context;
Al Viroa33e6752008-12-10 03:40:06 -05002353 context->ipc.uid = ipcp->uid;
2354 context->ipc.gid = ipcp->gid;
2355 context->ipc.mode = ipcp->mode;
Al Viroe816f372008-12-10 03:47:15 -05002356 context->ipc.has_perm = 0;
Al Viroa33e6752008-12-10 03:40:06 -05002357 security_ipc_getsecid(ipcp, &context->ipc.osid);
2358 context->type = AUDIT_IPC;
Steve Grubb073115d2006-04-02 17:07:33 -04002359}
2360
2361/**
2362 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002363 * @qbytes: msgq bytes
2364 * @uid: msgq user id
2365 * @gid: msgq group id
2366 * @mode: msgq mode (permissions)
2367 *
Al Viroe816f372008-12-10 03:47:15 -05002368 * Called only after audit_ipc_obj().
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002369 */
Al Viroe816f372008-12-10 03:47:15 -05002370void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct audit_context *context = current->audit_context;
2373
Al Viroe816f372008-12-10 03:47:15 -05002374 context->ipc.qbytes = qbytes;
2375 context->ipc.perm_uid = uid;
2376 context->ipc.perm_gid = gid;
2377 context->ipc.perm_mode = mode;
2378 context->ipc.has_perm = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002380
Al Viro473ae302006-04-26 14:04:08 -04002381int audit_bprm(struct linux_binprm *bprm)
2382{
2383 struct audit_aux_data_execve *ax;
2384 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002385
Al Viro5ac3a9c2006-07-16 06:38:45 -04002386 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04002387 return 0;
2388
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002389 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002390 if (!ax)
2391 return -ENOMEM;
2392
2393 ax->argc = bprm->argc;
2394 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002395 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002396 ax->d.type = AUDIT_EXECVE;
2397 ax->d.next = context->aux;
2398 context->aux = (void *)ax;
2399 return 0;
2400}
2401
2402
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002403/**
2404 * audit_socketcall - record audit data for sys_socketcall
2405 * @nargs: number of args
2406 * @args: args array
2407 *
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002408 */
Al Virof3298dc2008-12-10 03:16:51 -05002409void audit_socketcall(int nargs, unsigned long *args)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002410{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002411 struct audit_context *context = current->audit_context;
2412
Al Viro5ac3a9c2006-07-16 06:38:45 -04002413 if (likely(!context || context->dummy))
Al Virof3298dc2008-12-10 03:16:51 -05002414 return;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002415
Al Virof3298dc2008-12-10 03:16:51 -05002416 context->type = AUDIT_SOCKETCALL;
2417 context->socketcall.nargs = nargs;
2418 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002419}
2420
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002421/**
Al Virodb349502007-02-07 01:48:00 -05002422 * __audit_fd_pair - record audit data for pipe and socketpair
2423 * @fd1: the first file descriptor
2424 * @fd2: the second file descriptor
2425 *
2426 * Returns 0 for success or NULL context or < 0 on error.
2427 */
2428int __audit_fd_pair(int fd1, int fd2)
2429{
2430 struct audit_context *context = current->audit_context;
2431 struct audit_aux_data_fd_pair *ax;
2432
2433 if (likely(!context)) {
2434 return 0;
2435 }
2436
2437 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2438 if (!ax) {
2439 return -ENOMEM;
2440 }
2441
2442 ax->fd[0] = fd1;
2443 ax->fd[1] = fd2;
2444
2445 ax->d.type = AUDIT_FD_PAIR;
2446 ax->d.next = context->aux;
2447 context->aux = (void *)ax;
2448 return 0;
2449}
2450
2451/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002452 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2453 * @len: data length in user space
2454 * @a: data address in kernel space
2455 *
2456 * Returns 0 for success or NULL context or < 0 on error.
2457 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002458int audit_sockaddr(int len, void *a)
2459{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002460 struct audit_context *context = current->audit_context;
2461
Al Viro5ac3a9c2006-07-16 06:38:45 -04002462 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002463 return 0;
2464
Al Viro4f6b4342008-12-09 19:50:34 -05002465 if (!context->sockaddr) {
2466 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2467 if (!p)
2468 return -ENOMEM;
2469 context->sockaddr = p;
2470 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002471
Al Viro4f6b4342008-12-09 19:50:34 -05002472 context->sockaddr_len = len;
2473 memcpy(context->sockaddr, a, len);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002474 return 0;
2475}
2476
Al Viroa5cb0132007-03-20 13:58:35 -04002477void __audit_ptrace(struct task_struct *t)
2478{
2479 struct audit_context *context = current->audit_context;
2480
2481 context->target_pid = t->pid;
Eric Parisc2a77802008-01-07 13:40:17 -05002482 context->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002483 context->target_uid = task_uid(t);
Eric Paris4746ec52008-01-08 10:06:53 -05002484 context->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002485 security_task_getsecid(t, &context->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002486 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
Al Viroa5cb0132007-03-20 13:58:35 -04002487}
2488
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002489/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002490 * audit_signal_info - record signal info for shutting down audit subsystem
2491 * @sig: signal value
2492 * @t: task being signaled
2493 *
2494 * If the audit subsystem is being terminated, record the task (pid)
2495 * and uid that is doing that.
2496 */
Amy Griffise54dc242007-03-29 18:01:04 -04002497int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002498{
Amy Griffise54dc242007-03-29 18:01:04 -04002499 struct audit_aux_data_pids *axp;
2500 struct task_struct *tsk = current;
2501 struct audit_context *ctx = tsk->audit_context;
David Howellsc69e8d92008-11-14 10:39:19 +11002502 uid_t uid = current_uid(), t_uid = task_uid(t);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002503
Al Viro175fc482007-08-08 00:01:46 +01002504 if (audit_pid && t->tgid == audit_pid) {
Eric Parisee1d3152008-07-07 10:49:45 -04002505 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
Al Viro175fc482007-08-08 00:01:46 +01002506 audit_sig_pid = tsk->pid;
Al Virobfef93a2008-01-10 04:53:18 -05002507 if (tsk->loginuid != -1)
2508 audit_sig_uid = tsk->loginuid;
Al Viro175fc482007-08-08 00:01:46 +01002509 else
David Howellsc69e8d92008-11-14 10:39:19 +11002510 audit_sig_uid = uid;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002511 security_task_getsecid(tsk, &audit_sig_sid);
Al Viro175fc482007-08-08 00:01:46 +01002512 }
2513 if (!audit_signals || audit_dummy_context())
2514 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002515 }
Amy Griffise54dc242007-03-29 18:01:04 -04002516
Amy Griffise54dc242007-03-29 18:01:04 -04002517 /* optimize the common case by putting first signal recipient directly
2518 * in audit_context */
2519 if (!ctx->target_pid) {
2520 ctx->target_pid = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002521 ctx->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002522 ctx->target_uid = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002523 ctx->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002524 security_task_getsecid(t, &ctx->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002525 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002526 return 0;
2527 }
2528
2529 axp = (void *)ctx->aux_pids;
2530 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2531 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2532 if (!axp)
2533 return -ENOMEM;
2534
2535 axp->d.type = AUDIT_OBJ_PID;
2536 axp->d.next = ctx->aux_pids;
2537 ctx->aux_pids = (void *)axp;
2538 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002539 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002540
2541 axp->target_pid[axp->pid_count] = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002542 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002543 axp->target_uid[axp->pid_count] = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002544 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002545 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
Eric Parisc2a77802008-01-07 13:40:17 -05002546 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002547 axp->pid_count++;
2548
2549 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002550}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002551
2552/**
Eric Paris3fc689e2008-11-11 21:48:18 +11002553 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
David Howellsd84f4f92008-11-14 10:39:23 +11002554 * @bprm: pointer to the bprm being processed
2555 * @new: the proposed new credentials
2556 * @old: the old credentials
Eric Paris3fc689e2008-11-11 21:48:18 +11002557 *
2558 * Simply check if the proc already has the caps given by the file and if not
2559 * store the priv escalation info for later auditing at the end of the syscall
2560 *
Eric Paris3fc689e2008-11-11 21:48:18 +11002561 * -Eric
2562 */
David Howellsd84f4f92008-11-14 10:39:23 +11002563int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2564 const struct cred *new, const struct cred *old)
Eric Paris3fc689e2008-11-11 21:48:18 +11002565{
2566 struct audit_aux_data_bprm_fcaps *ax;
2567 struct audit_context *context = current->audit_context;
2568 struct cpu_vfs_cap_data vcaps;
2569 struct dentry *dentry;
2570
2571 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2572 if (!ax)
David Howellsd84f4f92008-11-14 10:39:23 +11002573 return -ENOMEM;
Eric Paris3fc689e2008-11-11 21:48:18 +11002574
2575 ax->d.type = AUDIT_BPRM_FCAPS;
2576 ax->d.next = context->aux;
2577 context->aux = (void *)ax;
2578
2579 dentry = dget(bprm->file->f_dentry);
2580 get_vfs_caps_from_disk(dentry, &vcaps);
2581 dput(dentry);
2582
2583 ax->fcap.permitted = vcaps.permitted;
2584 ax->fcap.inheritable = vcaps.inheritable;
2585 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2586 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2587
David Howellsd84f4f92008-11-14 10:39:23 +11002588 ax->old_pcap.permitted = old->cap_permitted;
2589 ax->old_pcap.inheritable = old->cap_inheritable;
2590 ax->old_pcap.effective = old->cap_effective;
Eric Paris3fc689e2008-11-11 21:48:18 +11002591
David Howellsd84f4f92008-11-14 10:39:23 +11002592 ax->new_pcap.permitted = new->cap_permitted;
2593 ax->new_pcap.inheritable = new->cap_inheritable;
2594 ax->new_pcap.effective = new->cap_effective;
2595 return 0;
Eric Paris3fc689e2008-11-11 21:48:18 +11002596}
2597
2598/**
Eric Parise68b75a02008-11-11 21:48:22 +11002599 * __audit_log_capset - store information about the arguments to the capset syscall
David Howellsd84f4f92008-11-14 10:39:23 +11002600 * @pid: target pid of the capset call
2601 * @new: the new credentials
2602 * @old: the old (current) credentials
Eric Parise68b75a02008-11-11 21:48:22 +11002603 *
2604 * Record the aguments userspace sent to sys_capset for later printing by the
2605 * audit system if applicable
2606 */
David Howellsd84f4f92008-11-14 10:39:23 +11002607int __audit_log_capset(pid_t pid,
2608 const struct cred *new, const struct cred *old)
Eric Parise68b75a02008-11-11 21:48:22 +11002609{
2610 struct audit_aux_data_capset *ax;
2611 struct audit_context *context = current->audit_context;
2612
2613 if (likely(!audit_enabled || !context || context->dummy))
2614 return 0;
2615
2616 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2617 if (!ax)
2618 return -ENOMEM;
2619
2620 ax->d.type = AUDIT_CAPSET;
2621 ax->d.next = context->aux;
2622 context->aux = (void *)ax;
2623
2624 ax->pid = pid;
David Howellsd84f4f92008-11-14 10:39:23 +11002625 ax->cap.effective = new->cap_effective;
2626 ax->cap.inheritable = new->cap_effective;
2627 ax->cap.permitted = new->cap_permitted;
Eric Parise68b75a02008-11-11 21:48:22 +11002628
2629 return 0;
2630}
2631
2632/**
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002633 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002634 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002635 *
2636 * If a process ends with a core dump, something fishy is going on and we
2637 * should record the event for investigation.
2638 */
2639void audit_core_dumps(long signr)
2640{
2641 struct audit_buffer *ab;
2642 u32 sid;
David Howells76aac0e2008-11-14 10:39:12 +11002643 uid_t auid = audit_get_loginuid(current), uid;
2644 gid_t gid;
Eric Paris4746ec52008-01-08 10:06:53 -05002645 unsigned int sessionid = audit_get_sessionid(current);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002646
2647 if (!audit_enabled)
2648 return;
2649
2650 if (signr == SIGQUIT) /* don't care for those */
2651 return;
2652
2653 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
David Howells76aac0e2008-11-14 10:39:12 +11002654 current_uid_gid(&uid, &gid);
Eric Paris4746ec52008-01-08 10:06:53 -05002655 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
David Howells76aac0e2008-11-14 10:39:12 +11002656 auid, uid, gid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002657 security_task_getsecid(current, &sid);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002658 if (sid) {
2659 char *ctx = NULL;
2660 u32 len;
2661
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002662 if (security_secid_to_secctx(sid, &ctx, &len))
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002663 audit_log_format(ab, " ssid=%u", sid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002664 else {
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002665 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002666 security_release_secctx(ctx, len);
2667 }
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002668 }
2669 audit_log_format(ab, " pid=%d comm=", current->pid);
2670 audit_log_untrustedstring(ab, current->comm);
2671 audit_log_format(ab, " sig=%ld", signr);
2672 audit_log_end(ab);
2673}