blob: bce9ecdb771240885bd3d1c0c30f7565ebbd1eb5 [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>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060064#include <linux/selinux.h>
Al Viro473ae302006-04-26 14:04:08 -040065#include <linux/binfmts.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040066#include <linux/highmem.h>
Al Virof46038f2006-05-06 08:22:52 -040067#include <linux/syscalls.h>
Al Viro74c3cbe2007-07-22 08:04:18 -040068#include <linux/inotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David Woodhousefe7752b2005-12-15 18:33:52 +000070#include "audit.h"
71
72extern struct list_head audit_filter_list[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* AUDIT_NAMES is the number of slots we reserve in the audit_context
75 * for saving names from getname(). */
76#define AUDIT_NAMES 20
77
Amy Griffis9c937dc2006-06-08 23:19:31 -040078/* Indicates that audit should log the full pathname. */
79#define AUDIT_NAME_FULL -1
80
Al Viro471a5c72006-07-10 08:29:24 -040081/* number of audit rules */
82int audit_n_rules;
83
Amy Griffise54dc242007-03-29 18:01:04 -040084/* determines whether we collect data for signals sent */
85int audit_signals;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* When fs/namei.c:getname() is called, we store the pointer in name and
88 * we don't let putname() free it (instead we free all of the saved
89 * pointers at syscall exit time).
90 *
91 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
92struct audit_names {
93 const char *name;
Amy Griffis9c937dc2006-06-08 23:19:31 -040094 int name_len; /* number of name's characters to log */
95 unsigned name_put; /* call __putname() for this name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 unsigned long ino;
97 dev_t dev;
98 umode_t mode;
99 uid_t uid;
100 gid_t gid;
101 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400102 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
105struct audit_aux_data {
106 struct audit_aux_data *next;
107 int type;
108};
109
110#define AUDIT_AUX_IPCPERM 0
111
Amy Griffise54dc242007-03-29 18:01:04 -0400112/* Number of target pids per aux struct. */
113#define AUDIT_AUX_PIDS 16
114
George C. Wilson20ca73b2006-05-24 16:09:55 -0500115struct audit_aux_data_mq_open {
116 struct audit_aux_data d;
117 int oflag;
118 mode_t mode;
119 struct mq_attr attr;
120};
121
122struct audit_aux_data_mq_sendrecv {
123 struct audit_aux_data d;
124 mqd_t mqdes;
125 size_t msg_len;
126 unsigned int msg_prio;
127 struct timespec abs_timeout;
128};
129
130struct audit_aux_data_mq_notify {
131 struct audit_aux_data d;
132 mqd_t mqdes;
133 struct sigevent notification;
134};
135
136struct audit_aux_data_mq_getsetattr {
137 struct audit_aux_data d;
138 mqd_t mqdes;
139 struct mq_attr mqstat;
140};
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142struct audit_aux_data_ipcctl {
143 struct audit_aux_data d;
144 struct ipc_perm p;
145 unsigned long qbytes;
146 uid_t uid;
147 gid_t gid;
148 mode_t mode;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500149 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
Al Viro473ae302006-04-26 14:04:08 -0400152struct audit_aux_data_execve {
153 struct audit_aux_data d;
154 int argc;
155 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700156 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400157};
158
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100159struct audit_aux_data_socketcall {
160 struct audit_aux_data d;
161 int nargs;
162 unsigned long args[0];
163};
164
165struct audit_aux_data_sockaddr {
166 struct audit_aux_data d;
167 int len;
168 char a[0];
169};
170
Al Virodb349502007-02-07 01:48:00 -0500171struct audit_aux_data_fd_pair {
172 struct audit_aux_data d;
173 int fd[2];
174};
175
Amy Griffise54dc242007-03-29 18:01:04 -0400176struct audit_aux_data_pids {
177 struct audit_aux_data d;
178 pid_t target_pid[AUDIT_AUX_PIDS];
179 u32 target_sid[AUDIT_AUX_PIDS];
180 int pid_count;
181};
182
Al Viro74c3cbe2007-07-22 08:04:18 -0400183struct audit_tree_refs {
184 struct audit_tree_refs *next;
185 struct audit_chunk *c[31];
186};
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* The per-task audit context. */
189struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400190 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int in_syscall; /* 1 if task is in a syscall */
192 enum audit_state state;
193 unsigned int serial; /* serial number for record */
194 struct timespec ctime; /* time of syscall entry */
195 uid_t loginuid; /* login uid (identity) */
196 int major; /* syscall number */
197 unsigned long argv[4]; /* syscall arguments */
198 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100199 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int auditable; /* 1 if record should be written */
201 int name_count;
202 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400203 char * filterkey; /* key for rule that triggered record */
David Woodhouse8f37d472005-05-27 12:17:28 +0100204 struct dentry * pwd;
205 struct vfsmount * pwdmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct audit_context *previous; /* For nested syscalls */
207 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400208 struct audit_aux_data *aux_pids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400211 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 uid_t uid, euid, suid, fsuid;
213 gid_t gid, egid, sgid, fsgid;
214 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100215 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Al Viroa5cb0132007-03-20 13:58:35 -0400217 pid_t target_pid;
218 u32 target_sid;
219
Al Viro74c3cbe2007-07-22 08:04:18 -0400220 struct audit_tree_refs *trees, *first_trees;
221 int tree_count;
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#if AUDIT_DEBUG
224 int put_count;
225 int ino_count;
226#endif
227};
228
Al Viro55669bf2006-08-31 19:26:40 -0400229#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
230static inline int open_arg(int flags, int mask)
231{
232 int n = ACC_MODE(flags);
233 if (flags & (O_TRUNC | O_CREAT))
234 n |= AUDIT_PERM_WRITE;
235 return n & mask;
236}
237
238static int audit_match_perm(struct audit_context *ctx, int mask)
239{
240 unsigned n = ctx->major;
241 switch (audit_classify_syscall(ctx->arch, n)) {
242 case 0: /* native */
243 if ((mask & AUDIT_PERM_WRITE) &&
244 audit_match_class(AUDIT_CLASS_WRITE, n))
245 return 1;
246 if ((mask & AUDIT_PERM_READ) &&
247 audit_match_class(AUDIT_CLASS_READ, n))
248 return 1;
249 if ((mask & AUDIT_PERM_ATTR) &&
250 audit_match_class(AUDIT_CLASS_CHATTR, n))
251 return 1;
252 return 0;
253 case 1: /* 32bit on biarch */
254 if ((mask & AUDIT_PERM_WRITE) &&
255 audit_match_class(AUDIT_CLASS_WRITE_32, n))
256 return 1;
257 if ((mask & AUDIT_PERM_READ) &&
258 audit_match_class(AUDIT_CLASS_READ_32, n))
259 return 1;
260 if ((mask & AUDIT_PERM_ATTR) &&
261 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
262 return 1;
263 return 0;
264 case 2: /* open */
265 return mask & ACC_MODE(ctx->argv[1]);
266 case 3: /* openat */
267 return mask & ACC_MODE(ctx->argv[2]);
268 case 4: /* socketcall */
269 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
270 case 5: /* execve */
271 return mask & AUDIT_PERM_EXEC;
272 default:
273 return 0;
274 }
275}
276
Al Viro74c3cbe2007-07-22 08:04:18 -0400277/*
278 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
279 * ->first_trees points to its beginning, ->trees - to the current end of data.
280 * ->tree_count is the number of free entries in array pointed to by ->trees.
281 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
282 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
283 * it's going to remain 1-element for almost any setup) until we free context itself.
284 * References in it _are_ dropped - at the same time we free/drop aux stuff.
285 */
286
287#ifdef CONFIG_AUDIT_TREE
288static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
289{
290 struct audit_tree_refs *p = ctx->trees;
291 int left = ctx->tree_count;
292 if (likely(left)) {
293 p->c[--left] = chunk;
294 ctx->tree_count = left;
295 return 1;
296 }
297 if (!p)
298 return 0;
299 p = p->next;
300 if (p) {
301 p->c[30] = chunk;
302 ctx->trees = p;
303 ctx->tree_count = 30;
304 return 1;
305 }
306 return 0;
307}
308
309static int grow_tree_refs(struct audit_context *ctx)
310{
311 struct audit_tree_refs *p = ctx->trees;
312 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
313 if (!ctx->trees) {
314 ctx->trees = p;
315 return 0;
316 }
317 if (p)
318 p->next = ctx->trees;
319 else
320 ctx->first_trees = ctx->trees;
321 ctx->tree_count = 31;
322 return 1;
323}
324#endif
325
326static void unroll_tree_refs(struct audit_context *ctx,
327 struct audit_tree_refs *p, int count)
328{
329#ifdef CONFIG_AUDIT_TREE
330 struct audit_tree_refs *q;
331 int n;
332 if (!p) {
333 /* we started with empty chain */
334 p = ctx->first_trees;
335 count = 31;
336 /* if the very first allocation has failed, nothing to do */
337 if (!p)
338 return;
339 }
340 n = count;
341 for (q = p; q != ctx->trees; q = q->next, n = 31) {
342 while (n--) {
343 audit_put_chunk(q->c[n]);
344 q->c[n] = NULL;
345 }
346 }
347 while (n-- > ctx->tree_count) {
348 audit_put_chunk(q->c[n]);
349 q->c[n] = NULL;
350 }
351 ctx->trees = p;
352 ctx->tree_count = count;
353#endif
354}
355
356static void free_tree_refs(struct audit_context *ctx)
357{
358 struct audit_tree_refs *p, *q;
359 for (p = ctx->first_trees; p; p = q) {
360 q = p->next;
361 kfree(p);
362 }
363}
364
365static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
366{
367#ifdef CONFIG_AUDIT_TREE
368 struct audit_tree_refs *p;
369 int n;
370 if (!tree)
371 return 0;
372 /* full ones */
373 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
374 for (n = 0; n < 31; n++)
375 if (audit_tree_match(p->c[n], tree))
376 return 1;
377 }
378 /* partial */
379 if (p) {
380 for (n = ctx->tree_count; n < 31; n++)
381 if (audit_tree_match(p->c[n], tree))
382 return 1;
383 }
384#endif
385 return 0;
386}
387
Amy Griffisf368c07d2006-04-07 16:55:56 -0400388/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/* Compare a task_struct with an audit_rule. Return 1 on match, 0
390 * otherwise. */
391static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500392 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400394 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 enum audit_state *state)
396{
Steve Grubb2ad312d2006-04-11 08:50:56 -0400397 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600398 u32 sid;
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500401 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 int result = 0;
403
Amy Griffis93315ed2006-02-07 12:05:27 -0500404 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500406 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
Al Viro3c662512006-05-06 08:26:27 -0400408 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400409 if (ctx) {
410 if (!ctx->ppid)
411 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400412 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400413 }
Al Viro3c662512006-05-06 08:26:27 -0400414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 case AUDIT_UID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500416 result = audit_comparator(tsk->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 case AUDIT_EUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500419 result = audit_comparator(tsk->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 break;
421 case AUDIT_SUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500422 result = audit_comparator(tsk->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 break;
424 case AUDIT_FSUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500425 result = audit_comparator(tsk->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 break;
427 case AUDIT_GID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500428 result = audit_comparator(tsk->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 break;
430 case AUDIT_EGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500431 result = audit_comparator(tsk->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 break;
433 case AUDIT_SGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500434 result = audit_comparator(tsk->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
436 case AUDIT_FSGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500437 result = audit_comparator(tsk->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 break;
439 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500440 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
2fd6f582005-04-29 16:08:28 +0100442 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700443 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500444 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100445 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 case AUDIT_EXIT:
448 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500449 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100452 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500453 if (f->val)
454 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100455 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500456 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 break;
459 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400460 if (name)
461 result = audit_comparator(MAJOR(name->dev),
462 f->op, f->val);
463 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500465 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 ++result;
467 break;
468 }
469 }
470 }
471 break;
472 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400473 if (name)
474 result = audit_comparator(MINOR(name->dev),
475 f->op, f->val);
476 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500478 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 ++result;
480 break;
481 }
482 }
483 }
484 break;
485 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400486 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400487 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400488 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400490 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 ++result;
492 break;
493 }
494 }
495 }
496 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400497 case AUDIT_WATCH:
498 if (name && rule->watch->ino != (unsigned long)-1)
499 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400500 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400501 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400502 case AUDIT_DIR:
503 if (ctx)
504 result = match_tree_refs(ctx, rule->tree);
505 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 case AUDIT_LOGINUID:
507 result = 0;
508 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500509 result = audit_comparator(ctx->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500511 case AUDIT_SUBJ_USER:
512 case AUDIT_SUBJ_ROLE:
513 case AUDIT_SUBJ_TYPE:
514 case AUDIT_SUBJ_SEN:
515 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600516 /* NOTE: this may return negative values indicating
517 a temporary error. We simply treat this as a
518 match for now to avoid losing information that
519 may be wanted. An error message will also be
520 logged upon error */
Steve Grubb2ad312d2006-04-11 08:50:56 -0400521 if (f->se_rule) {
522 if (need_sid) {
Stephen Smalley62bac012006-09-25 23:31:56 -0700523 selinux_get_task_sid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400524 need_sid = 0;
525 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600526 result = selinux_audit_rule_match(sid, f->type,
527 f->op,
528 f->se_rule,
529 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400530 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600531 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500532 case AUDIT_OBJ_USER:
533 case AUDIT_OBJ_ROLE:
534 case AUDIT_OBJ_TYPE:
535 case AUDIT_OBJ_LEV_LOW:
536 case AUDIT_OBJ_LEV_HIGH:
537 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
538 also applies here */
539 if (f->se_rule) {
540 /* Find files that match */
541 if (name) {
542 result = selinux_audit_rule_match(
543 name->osid, f->type, f->op,
544 f->se_rule, ctx);
545 } else if (ctx) {
546 for (j = 0; j < ctx->name_count; j++) {
547 if (selinux_audit_rule_match(
548 ctx->names[j].osid,
549 f->type, f->op,
550 f->se_rule, ctx)) {
551 ++result;
552 break;
553 }
554 }
555 }
556 /* Find ipc objects that match */
557 if (ctx) {
558 struct audit_aux_data *aux;
559 for (aux = ctx->aux; aux;
560 aux = aux->next) {
561 if (aux->type == AUDIT_IPC) {
562 struct audit_aux_data_ipcctl *axi = (void *)aux;
563 if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) {
564 ++result;
565 break;
566 }
567 }
568 }
569 }
570 }
571 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 case AUDIT_ARG0:
573 case AUDIT_ARG1:
574 case AUDIT_ARG2:
575 case AUDIT_ARG3:
576 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500577 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400579 case AUDIT_FILTERKEY:
580 /* ignore this field for filtering */
581 result = 1;
582 break;
Al Viro55669bf2006-08-31 19:26:40 -0400583 case AUDIT_PERM:
584 result = audit_match_perm(ctx, f->val);
585 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (!result)
589 return 0;
590 }
Amy Griffis5adc8a62006-06-14 18:45:21 -0400591 if (rule->filterkey)
592 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 switch (rule->action) {
594 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
596 }
597 return 1;
598}
599
600/* At process creation time, we can determine if system-call auditing is
601 * completely disabled for this task. Since we only have the task
602 * structure at this point, we can only check uid and gid.
603 */
604static enum audit_state audit_filter_task(struct task_struct *tsk)
605{
606 struct audit_entry *e;
607 enum audit_state state;
608
609 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100610 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400611 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 rcu_read_unlock();
613 return state;
614 }
615 }
616 rcu_read_unlock();
617 return AUDIT_BUILD_CONTEXT;
618}
619
620/* At syscall entry and exit time, this filter is called if the
621 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100622 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700623 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
625static enum audit_state audit_filter_syscall(struct task_struct *tsk,
626 struct audit_context *ctx,
627 struct list_head *list)
628{
629 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100630 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
David Woodhouse351bb722005-07-14 14:40:06 +0100632 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100633 return AUDIT_DISABLED;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100636 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000637 int word = AUDIT_WORD(ctx->major);
638 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100639
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000640 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400641 if ((e->rule.mask[word] & bit) == bit &&
642 audit_filter_rules(tsk, &e->rule, ctx, NULL,
643 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000644 rcu_read_unlock();
645 return state;
646 }
647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649 rcu_read_unlock();
650 return AUDIT_BUILD_CONTEXT;
651}
652
Amy Griffisf368c07d2006-04-07 16:55:56 -0400653/* At syscall exit time, this filter is called if any audit_names[] have been
654 * collected during syscall processing. We only check rules in sublists at hash
655 * buckets applicable to the inode numbers in audit_names[].
656 * Regarding audit_state, same rules apply as for audit_filter_syscall().
657 */
658enum audit_state audit_filter_inodes(struct task_struct *tsk,
659 struct audit_context *ctx)
660{
661 int i;
662 struct audit_entry *e;
663 enum audit_state state;
664
665 if (audit_pid && tsk->tgid == audit_pid)
666 return AUDIT_DISABLED;
667
668 rcu_read_lock();
669 for (i = 0; i < ctx->name_count; i++) {
670 int word = AUDIT_WORD(ctx->major);
671 int bit = AUDIT_BIT(ctx->major);
672 struct audit_names *n = &ctx->names[i];
673 int h = audit_hash_ino((u32)n->ino);
674 struct list_head *list = &audit_inode_hash[h];
675
676 if (list_empty(list))
677 continue;
678
679 list_for_each_entry_rcu(e, list, list) {
680 if ((e->rule.mask[word] & bit) == bit &&
681 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
682 rcu_read_unlock();
683 return state;
684 }
685 }
686 }
687 rcu_read_unlock();
688 return AUDIT_BUILD_CONTEXT;
689}
690
691void audit_set_auditable(struct audit_context *ctx)
692{
693 ctx->auditable = 1;
694}
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696static inline struct audit_context *audit_get_context(struct task_struct *tsk,
697 int return_valid,
698 int return_code)
699{
700 struct audit_context *context = tsk->audit_context;
701
702 if (likely(!context))
703 return NULL;
704 context->return_valid = return_valid;
705 context->return_code = return_code;
706
Al Virod51374a2006-08-03 10:59:26 -0400707 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400709
David Woodhouse0f45aa12005-06-19 19:35:50 +0100710 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400711 if (state == AUDIT_RECORD_CONTEXT) {
712 context->auditable = 1;
713 goto get_context;
714 }
715
716 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (state == AUDIT_RECORD_CONTEXT)
718 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
Amy Griffisf368c07d2006-04-07 16:55:56 -0400722get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 tsk->audit_context = NULL;
725 return context;
726}
727
728static inline void audit_free_names(struct audit_context *context)
729{
730 int i;
731
732#if AUDIT_DEBUG == 2
733 if (context->auditable
734 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000735 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 " name_count=%d put_count=%d"
737 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000738 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 context->serial, context->major, context->in_syscall,
740 context->name_count, context->put_count,
741 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000742 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 printk(KERN_ERR "names[%d] = %p = %s\n", i,
744 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000745 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 dump_stack();
748 return;
749 }
750#endif
751#if AUDIT_DEBUG
752 context->put_count = 0;
753 context->ino_count = 0;
754#endif
755
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000756 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400757 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 context->name_count = 0;
David Woodhouse8f37d472005-05-27 12:17:28 +0100761 if (context->pwd)
762 dput(context->pwd);
763 if (context->pwdmnt)
764 mntput(context->pwdmnt);
765 context->pwd = NULL;
766 context->pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769static inline void audit_free_aux(struct audit_context *context)
770{
771 struct audit_aux_data *aux;
772
773 while ((aux = context->aux)) {
774 context->aux = aux->next;
775 kfree(aux);
776 }
Amy Griffise54dc242007-03-29 18:01:04 -0400777 while ((aux = context->aux_pids)) {
778 context->aux_pids = aux->next;
779 kfree(aux);
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783static inline void audit_zero_context(struct audit_context *context,
784 enum audit_state state)
785{
786 uid_t loginuid = context->loginuid;
787
788 memset(context, 0, sizeof(*context));
789 context->state = state;
790 context->loginuid = loginuid;
791}
792
793static inline struct audit_context *audit_alloc_context(enum audit_state state)
794{
795 struct audit_context *context;
796
797 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
798 return NULL;
799 audit_zero_context(context, state);
800 return context;
801}
802
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700803/**
804 * audit_alloc - allocate an audit context block for a task
805 * @tsk: task
806 *
807 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 * if necessary. Doing so turns on system call auditing for the
809 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700810 * needed.
811 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812int audit_alloc(struct task_struct *tsk)
813{
814 struct audit_context *context;
815 enum audit_state state;
816
817 if (likely(!audit_enabled))
818 return 0; /* Return if not auditing. */
819
820 state = audit_filter_task(tsk);
821 if (likely(state == AUDIT_DISABLED))
822 return 0;
823
824 if (!(context = audit_alloc_context(state))) {
825 audit_log_lost("out of memory in audit_alloc");
826 return -ENOMEM;
827 }
828
829 /* Preserve login uid */
830 context->loginuid = -1;
831 if (current->audit_context)
832 context->loginuid = current->audit_context->loginuid;
833
834 tsk->audit_context = context;
835 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
836 return 0;
837}
838
839static inline void audit_free_context(struct audit_context *context)
840{
841 struct audit_context *previous;
842 int count = 0;
843
844 do {
845 previous = context->previous;
846 if (previous || (count && count < 10)) {
847 ++count;
848 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
849 " freeing multiple contexts (%d)\n",
850 context->serial, context->major,
851 context->name_count, count);
852 }
853 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -0400854 unroll_tree_refs(context, NULL, 0);
855 free_tree_refs(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400857 kfree(context->filterkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 kfree(context);
859 context = previous;
860 } while (context);
861 if (count >= 10)
862 printk(KERN_ERR "audit: freed %d contexts\n", count);
863}
864
Joy Latten161a09e2006-11-27 13:11:54 -0600865void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000866{
867 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +0000868 unsigned len;
869 int error;
870 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000871
Al Viroc4823bc2007-03-12 16:17:42 +0000872 selinux_get_task_sid(current, &sid);
873 if (!sid)
874 return;
875
876 error = selinux_sid_to_string(sid, &ctx, &len);
877 if (error) {
878 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000879 goto error_path;
880 return;
881 }
882
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000883 audit_log_format(ab, " subj=%s", ctx);
Al Viroc4823bc2007-03-12 16:17:42 +0000884 kfree(ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000885 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000886
887error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000888 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000889 return;
890}
891
Joy Latten161a09e2006-11-27 13:11:54 -0600892EXPORT_SYMBOL(audit_log_task_context);
893
Al Viroe4951492006-03-29 20:17:10 -0500894static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700895{
Al Viro45d9bb02006-03-29 20:02:55 -0500896 char name[sizeof(tsk->comm)];
897 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700898 struct vm_area_struct *vma;
899
Al Viroe4951492006-03-29 20:17:10 -0500900 /* tsk == current */
901
Al Viro45d9bb02006-03-29 20:02:55 -0500902 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100903 audit_log_format(ab, " comm=");
904 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700905
Al Viroe4951492006-03-29 20:17:10 -0500906 if (mm) {
907 down_read(&mm->mmap_sem);
908 vma = mm->mmap;
909 while (vma) {
910 if ((vma->vm_flags & VM_EXECUTABLE) &&
911 vma->vm_file) {
912 audit_log_d_path(ab, "exe=",
Josef Sipeka7a005f2006-12-08 02:37:17 -0800913 vma->vm_file->f_path.dentry,
914 vma->vm_file->f_path.mnt);
Al Viroe4951492006-03-29 20:17:10 -0500915 break;
916 }
917 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700918 }
Al Viroe4951492006-03-29 20:17:10 -0500919 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700920 }
Al Viroe4951492006-03-29 20:17:10 -0500921 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700922}
923
Amy Griffise54dc242007-03-29 18:01:04 -0400924static int audit_log_pid_context(struct audit_context *context, pid_t pid,
925 u32 sid)
926{
927 struct audit_buffer *ab;
928 char *s = NULL;
929 u32 len;
930 int rc = 0;
931
932 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
933 if (!ab)
934 return 1;
935
936 if (selinux_sid_to_string(sid, &s, &len)) {
937 audit_log_format(ab, "opid=%d obj=(none)", pid);
938 rc = 1;
939 } else
940 audit_log_format(ab, "opid=%d obj=%s", pid, s);
941 audit_log_end(ab);
942 kfree(s);
943
944 return rc;
945}
946
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700947static void audit_log_execve_info(struct audit_buffer *ab,
948 struct audit_aux_data_execve *axi)
949{
950 int i;
951 long len, ret;
Peter Zijlstra040b3a22007-07-28 00:55:18 +0200952 const char __user *p;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700953 char *buf;
954
955 if (axi->mm != current->mm)
956 return; /* execve failed, no additional info */
957
Peter Zijlstra040b3a22007-07-28 00:55:18 +0200958 p = (const char __user *)axi->mm->arg_start;
959
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700960 for (i = 0; i < axi->argc; i++, p += len) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700961 len = strnlen_user(p, MAX_ARG_STRLEN);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700962 /*
963 * We just created this mm, if we can't find the strings
964 * we just copied into it something is _very_ wrong. Similar
965 * for strings that are too long, we should not have created
966 * any.
967 */
968 if (!len || len > MAX_ARG_STRLEN) {
969 WARN_ON(1);
970 send_sig(SIGKILL, current, 0);
971 }
972
973 buf = kmalloc(len, GFP_KERNEL);
974 if (!buf) {
975 audit_panic("out of memory for argv string\n");
976 break;
977 }
978
979 ret = copy_from_user(buf, p, len);
980 /*
981 * There is no reason for this copy to be short. We just
982 * copied them here, and the mm hasn't been exposed to user-
983 * space yet.
984 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +0200985 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700986 WARN_ON(1);
987 send_sig(SIGKILL, current, 0);
988 }
989
990 audit_log_format(ab, "a%d=", i);
991 audit_log_untrustedstring(ab, buf);
992 audit_log_format(ab, "\n");
993
994 kfree(buf);
995 }
996}
997
Al Viroe4951492006-03-29 20:17:10 -0500998static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001000 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001002 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -05001003 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Al Viroe4951492006-03-29 20:17:10 -05001005 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001006 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -04001007 if (!context->ppid)
1008 context->ppid = sys_getppid();
Al Viro3f2792f2006-07-16 06:43:48 -04001009 context->uid = tsk->uid;
1010 context->gid = tsk->gid;
1011 context->euid = tsk->euid;
1012 context->suid = tsk->suid;
1013 context->fsuid = tsk->fsuid;
1014 context->egid = tsk->egid;
1015 context->sgid = tsk->sgid;
1016 context->fsgid = tsk->fsgid;
1017 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001018
1019 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (!ab)
1021 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001022 audit_log_format(ab, "arch=%x syscall=%d",
1023 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (context->personality != PER_LINUX)
1025 audit_log_format(ab, " per=%lx", context->personality);
1026 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001027 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001028 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1029 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001030
1031 mutex_lock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001032 read_lock(&tasklist_lock);
Al Viro45d9bb02006-03-29 20:02:55 -05001033 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1034 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -05001035 else
1036 tty = "(none)";
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001037 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 audit_log_format(ab,
1039 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -04001040 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +01001041 " euid=%u suid=%u fsuid=%u"
Steve Grubba6c043a2006-01-01 14:07:00 -05001042 " egid=%u sgid=%u fsgid=%u tty=%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 context->argv[0],
1044 context->argv[1],
1045 context->argv[2],
1046 context->argv[3],
1047 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -04001048 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 context->pid,
1050 context->loginuid,
1051 context->uid,
1052 context->gid,
1053 context->euid, context->suid, context->fsuid,
Steve Grubba6c043a2006-01-01 14:07:00 -05001054 context->egid, context->sgid, context->fsgid, tty);
Alan Coxeb84a202006-09-29 02:01:41 -07001055
1056 mutex_unlock(&tty_mutex);
1057
Al Viroe4951492006-03-29 20:17:10 -05001058 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001059 if (context->filterkey) {
1060 audit_log_format(ab, " key=");
1061 audit_log_untrustedstring(ab, context->filterkey);
1062 } else
1063 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
David Woodhouse7551ced2005-05-26 12:04:57 +01001066 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001067
Al Viroe4951492006-03-29 20:17:10 -05001068 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (!ab)
1070 continue; /* audit_panic has been called */
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001073 case AUDIT_MQ_OPEN: {
1074 struct audit_aux_data_mq_open *axi = (void *)aux;
1075 audit_log_format(ab,
1076 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
1077 "mq_msgsize=%ld mq_curmsgs=%ld",
1078 axi->oflag, axi->mode, axi->attr.mq_flags,
1079 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
1080 axi->attr.mq_curmsgs);
1081 break; }
1082
1083 case AUDIT_MQ_SENDRECV: {
1084 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
1085 audit_log_format(ab,
1086 "mqdes=%d msg_len=%zd msg_prio=%u "
1087 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1088 axi->mqdes, axi->msg_len, axi->msg_prio,
1089 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
1090 break; }
1091
1092 case AUDIT_MQ_NOTIFY: {
1093 struct audit_aux_data_mq_notify *axi = (void *)aux;
1094 audit_log_format(ab,
1095 "mqdes=%d sigev_signo=%d",
1096 axi->mqdes,
1097 axi->notification.sigev_signo);
1098 break; }
1099
1100 case AUDIT_MQ_GETSETATTR: {
1101 struct audit_aux_data_mq_getsetattr *axi = (void *)aux;
1102 audit_log_format(ab,
1103 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1104 "mq_curmsgs=%ld ",
1105 axi->mqdes,
1106 axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg,
1107 axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs);
1108 break; }
1109
Steve Grubbc0404992005-05-13 18:17:42 +01001110 case AUDIT_IPC: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 struct audit_aux_data_ipcctl *axi = (void *)aux;
1112 audit_log_format(ab,
Steve Grubb5b9a4262007-05-29 10:38:18 -04001113 "ouid=%u ogid=%u mode=%#o",
Linda Knippersac032212006-05-16 22:03:48 -04001114 axi->uid, axi->gid, axi->mode);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001115 if (axi->osid != 0) {
1116 char *ctx = NULL;
1117 u32 len;
Stephen Smalley1a70cd42006-09-25 23:31:57 -07001118 if (selinux_sid_to_string(
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001119 axi->osid, &ctx, &len)) {
Steve Grubbce29b682006-04-01 18:29:34 -05001120 audit_log_format(ab, " osid=%u",
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001121 axi->osid);
1122 call_panic = 1;
1123 } else
1124 audit_log_format(ab, " obj=%s", ctx);
1125 kfree(ctx);
1126 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001127 break; }
1128
Steve Grubb073115d2006-04-02 17:07:33 -04001129 case AUDIT_IPC_SET_PERM: {
1130 struct audit_aux_data_ipcctl *axi = (void *)aux;
1131 audit_log_format(ab,
Steve Grubb5b9a4262007-05-29 10:38:18 -04001132 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
Steve Grubb073115d2006-04-02 17:07:33 -04001133 axi->qbytes, axi->uid, axi->gid, axi->mode);
Steve Grubb073115d2006-04-02 17:07:33 -04001134 break; }
Linda Knippersac032212006-05-16 22:03:48 -04001135
Al Viro473ae302006-04-26 14:04:08 -04001136 case AUDIT_EXECVE: {
1137 struct audit_aux_data_execve *axi = (void *)aux;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001138 audit_log_execve_info(ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001139 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001140
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001141 case AUDIT_SOCKETCALL: {
1142 int i;
1143 struct audit_aux_data_socketcall *axs = (void *)aux;
1144 audit_log_format(ab, "nargs=%d", axs->nargs);
1145 for (i=0; i<axs->nargs; i++)
1146 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
1147 break; }
1148
1149 case AUDIT_SOCKADDR: {
1150 struct audit_aux_data_sockaddr *axs = (void *)aux;
1151
1152 audit_log_format(ab, "saddr=");
1153 audit_log_hex(ab, axs->a, axs->len);
1154 break; }
Stephen Smalley01116102005-05-21 00:15:52 +01001155
Al Virodb349502007-02-07 01:48:00 -05001156 case AUDIT_FD_PAIR: {
1157 struct audit_aux_data_fd_pair *axs = (void *)aux;
1158 audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]);
1159 break; }
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
Amy Griffise54dc242007-03-29 18:01:04 -04001165 for (aux = context->aux_pids; aux; aux = aux->next) {
1166 struct audit_aux_data_pids *axs = (void *)aux;
1167 int i;
1168
1169 for (i = 0; i < axs->pid_count; i++)
1170 if (audit_log_pid_context(context, axs->target_pid[i],
1171 axs->target_sid[i]))
1172 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001173 }
1174
Amy Griffise54dc242007-03-29 18:01:04 -04001175 if (context->target_pid &&
1176 audit_log_pid_context(context, context->target_pid,
1177 context->target_sid))
1178 call_panic = 1;
1179
David Woodhouse8f37d472005-05-27 12:17:28 +01001180 if (context->pwd && context->pwdmnt) {
Al Viroe4951492006-03-29 20:17:10 -05001181 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001182 if (ab) {
1183 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
1184 audit_log_end(ab);
1185 }
1186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -04001188 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +00001189
Al Viroe4951492006-03-29 20:17:10 -05001190 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (!ab)
1192 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001195
Amy Griffis9c937dc2006-06-08 23:19:31 -04001196 if (n->name) {
1197 switch(n->name_len) {
1198 case AUDIT_NAME_FULL:
1199 /* log the full path */
1200 audit_log_format(ab, " name=");
1201 audit_log_untrustedstring(ab, n->name);
1202 break;
1203 case 0:
1204 /* name was specified as a relative path and the
1205 * directory component is the cwd */
1206 audit_log_d_path(ab, " name=", context->pwd,
1207 context->pwdmnt);
1208 break;
1209 default:
1210 /* log the name's directory component */
1211 audit_log_format(ab, " name=");
1212 audit_log_n_untrustedstring(ab, n->name_len,
1213 n->name);
1214 }
1215 } else
1216 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +00001217
Amy Griffis9c937dc2006-06-08 23:19:31 -04001218 if (n->ino != (unsigned long)-1) {
1219 audit_log_format(ab, " inode=%lu"
1220 " dev=%02x:%02x mode=%#o"
1221 " ouid=%u ogid=%u rdev=%02x:%02x",
1222 n->ino,
1223 MAJOR(n->dev),
1224 MINOR(n->dev),
1225 n->mode,
1226 n->uid,
1227 n->gid,
1228 MAJOR(n->rdev),
1229 MINOR(n->rdev));
1230 }
1231 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001232 char *ctx = NULL;
1233 u32 len;
Stephen Smalley1a70cd42006-09-25 23:31:57 -07001234 if (selinux_sid_to_string(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001235 n->osid, &ctx, &len)) {
1236 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001237 call_panic = 2;
Steve Grubb1b50eed2006-04-03 14:06:13 -04001238 } else
1239 audit_log_format(ab, " obj=%s", ctx);
1240 kfree(ctx);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001241 }
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 audit_log_end(ab);
1244 }
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001245 if (call_panic)
1246 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001249/**
1250 * audit_free - free a per-task audit context
1251 * @tsk: task whose audit context block to free
1252 *
Al Virofa84cb92006-03-29 20:30:19 -05001253 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001254 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255void audit_free(struct task_struct *tsk)
1256{
1257 struct audit_context *context;
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (likely(!context))
1261 return;
1262
1263 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001264 * function (e.g., exit_group), then free context block.
1265 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001266 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001267 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001268 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001269 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 audit_free_context(context);
1272}
1273
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001274/**
1275 * audit_syscall_entry - fill in an audit record at syscall entry
1276 * @tsk: task being audited
1277 * @arch: architecture type
1278 * @major: major syscall type (function)
1279 * @a1: additional syscall register 1
1280 * @a2: additional syscall register 2
1281 * @a3: additional syscall register 3
1282 * @a4: additional syscall register 4
1283 *
1284 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 * audit context was created when the task was created and the state or
1286 * filters demand the audit context be built. If the state from the
1287 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1288 * then the record will be written at syscall exit time (otherwise, it
1289 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001290 * be written).
1291 */
Al Viro5411be52006-03-29 20:23:36 -05001292void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 unsigned long a1, unsigned long a2,
1294 unsigned long a3, unsigned long a4)
1295{
Al Viro5411be52006-03-29 20:23:36 -05001296 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 struct audit_context *context = tsk->audit_context;
1298 enum audit_state state;
1299
1300 BUG_ON(!context);
1301
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001302 /*
1303 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 * calls in kernel_thread via the entry.S interface, instead of
1305 * with direct calls. (If you are porting to a new
1306 * architecture, hitting this condition can indicate that you
1307 * got the _exit/_leave calls backward in entry.S.)
1308 *
1309 * i386 no
1310 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001311 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 *
1313 * This also happens with vm86 emulation in a non-nested manner
1314 * (entries without exits), so this case must be caught.
1315 */
1316 if (context->in_syscall) {
1317 struct audit_context *newctx;
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319#if AUDIT_DEBUG
1320 printk(KERN_ERR
1321 "audit(:%d) pid=%d in syscall=%d;"
1322 " entering syscall=%d\n",
1323 context->serial, tsk->pid, context->major, major);
1324#endif
1325 newctx = audit_alloc_context(context->state);
1326 if (newctx) {
1327 newctx->previous = context;
1328 context = newctx;
1329 tsk->audit_context = newctx;
1330 } else {
1331 /* If we can't alloc a new context, the best we
1332 * can do is to leak memory (any pending putname
1333 * will be lost). The only other alternative is
1334 * to abandon auditing. */
1335 audit_zero_context(context, context->state);
1336 }
1337 }
1338 BUG_ON(context->in_syscall || context->name_count);
1339
1340 if (!audit_enabled)
1341 return;
1342
2fd6f582005-04-29 16:08:28 +01001343 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 context->major = major;
1345 context->argv[0] = a1;
1346 context->argv[1] = a2;
1347 context->argv[2] = a3;
1348 context->argv[3] = a4;
1349
1350 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001351 context->dummy = !audit_n_rules;
1352 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001353 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (likely(state == AUDIT_DISABLED))
1355 return;
1356
David Woodhousece625a82005-07-18 14:24:46 -04001357 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 context->ctime = CURRENT_TIME;
1359 context->in_syscall = 1;
1360 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
Alexander Viro419c58f2006-09-29 00:08:50 -04001361 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001364/**
1365 * audit_syscall_exit - deallocate audit context after a system call
1366 * @tsk: task being audited
1367 * @valid: success/failure flag
1368 * @return_code: syscall return value
1369 *
1370 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1372 * filtering, or because some other part of the kernel write an audit
1373 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001374 * free the names stored from getname().
1375 */
Al Viro5411be52006-03-29 20:23:36 -05001376void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Al Viro5411be52006-03-29 20:23:36 -05001378 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 struct audit_context *context;
1380
2fd6f582005-04-29 16:08:28 +01001381 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001384 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
David Woodhousef7056d62005-06-20 16:07:33 +01001386 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001387 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 context->in_syscall = 0;
1390 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (context->previous) {
1393 struct audit_context *new_context = context->previous;
1394 context->previous = NULL;
1395 audit_free_context(context);
1396 tsk->audit_context = new_context;
1397 } else {
1398 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001399 unroll_tree_refs(context, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001401 context->aux = NULL;
1402 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001403 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001404 context->target_sid = 0;
Amy Griffis5adc8a62006-06-14 18:45:21 -04001405 kfree(context->filterkey);
1406 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 tsk->audit_context = context;
1408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Al Viro74c3cbe2007-07-22 08:04:18 -04001411static inline void handle_one(const struct inode *inode)
1412{
1413#ifdef CONFIG_AUDIT_TREE
1414 struct audit_context *context;
1415 struct audit_tree_refs *p;
1416 struct audit_chunk *chunk;
1417 int count;
1418 if (likely(list_empty(&inode->inotify_watches)))
1419 return;
1420 context = current->audit_context;
1421 p = context->trees;
1422 count = context->tree_count;
1423 rcu_read_lock();
1424 chunk = audit_tree_lookup(inode);
1425 rcu_read_unlock();
1426 if (!chunk)
1427 return;
1428 if (likely(put_tree_ref(context, chunk)))
1429 return;
1430 if (unlikely(!grow_tree_refs(context))) {
1431 printk(KERN_WARNING "out of memory, audit has lost a tree reference");
1432 audit_set_auditable(context);
1433 audit_put_chunk(chunk);
1434 unroll_tree_refs(context, p, count);
1435 return;
1436 }
1437 put_tree_ref(context, chunk);
1438#endif
1439}
1440
1441static void handle_path(const struct dentry *dentry)
1442{
1443#ifdef CONFIG_AUDIT_TREE
1444 struct audit_context *context;
1445 struct audit_tree_refs *p;
1446 const struct dentry *d, *parent;
1447 struct audit_chunk *drop;
1448 unsigned long seq;
1449 int count;
1450
1451 context = current->audit_context;
1452 p = context->trees;
1453 count = context->tree_count;
1454retry:
1455 drop = NULL;
1456 d = dentry;
1457 rcu_read_lock();
1458 seq = read_seqbegin(&rename_lock);
1459 for(;;) {
1460 struct inode *inode = d->d_inode;
1461 if (inode && unlikely(!list_empty(&inode->inotify_watches))) {
1462 struct audit_chunk *chunk;
1463 chunk = audit_tree_lookup(inode);
1464 if (chunk) {
1465 if (unlikely(!put_tree_ref(context, chunk))) {
1466 drop = chunk;
1467 break;
1468 }
1469 }
1470 }
1471 parent = d->d_parent;
1472 if (parent == d)
1473 break;
1474 d = parent;
1475 }
1476 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1477 rcu_read_unlock();
1478 if (!drop) {
1479 /* just a race with rename */
1480 unroll_tree_refs(context, p, count);
1481 goto retry;
1482 }
1483 audit_put_chunk(drop);
1484 if (grow_tree_refs(context)) {
1485 /* OK, got more space */
1486 unroll_tree_refs(context, p, count);
1487 goto retry;
1488 }
1489 /* too bad */
1490 printk(KERN_WARNING
1491 "out of memory, audit has lost a tree reference");
1492 unroll_tree_refs(context, p, count);
1493 audit_set_auditable(context);
1494 return;
1495 }
1496 rcu_read_unlock();
1497#endif
1498}
1499
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001500/**
1501 * audit_getname - add a name to the list
1502 * @name: name to add
1503 *
1504 * Add a name to the list of audit names for this context.
1505 * Called from fs/namei.c:getname().
1506 */
Al Virod8945bb52006-05-18 16:01:30 -04001507void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 struct audit_context *context = current->audit_context;
1510
Al Virod8945bb52006-05-18 16:01:30 -04001511 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return;
1513
1514 if (!context->in_syscall) {
1515#if AUDIT_DEBUG == 2
1516 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1517 __FILE__, __LINE__, context->serial, name);
1518 dump_stack();
1519#endif
1520 return;
1521 }
1522 BUG_ON(context->name_count >= AUDIT_NAMES);
1523 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001524 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1525 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 context->names[context->name_count].ino = (unsigned long)-1;
Amy Griffise41e8bd2007-02-13 14:14:09 -05001527 context->names[context->name_count].osid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 ++context->name_count;
David Woodhouse8f37d472005-05-27 12:17:28 +01001529 if (!context->pwd) {
1530 read_lock(&current->fs->lock);
1531 context->pwd = dget(current->fs->pwd);
1532 context->pwdmnt = mntget(current->fs->pwdmnt);
1533 read_unlock(&current->fs->lock);
1534 }
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001538/* audit_putname - intercept a putname request
1539 * @name: name to intercept and delay for putname
1540 *
1541 * If we have stored the name from getname in the audit context,
1542 * then we delay the putname until syscall exit.
1543 * Called from include/linux/fs.h:putname().
1544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545void audit_putname(const char *name)
1546{
1547 struct audit_context *context = current->audit_context;
1548
1549 BUG_ON(!context);
1550 if (!context->in_syscall) {
1551#if AUDIT_DEBUG == 2
1552 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1553 __FILE__, __LINE__, context->serial, name);
1554 if (context->name_count) {
1555 int i;
1556 for (i = 0; i < context->name_count; i++)
1557 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1558 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001559 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
1561#endif
1562 __putname(name);
1563 }
1564#if AUDIT_DEBUG
1565 else {
1566 ++context->put_count;
1567 if (context->put_count > context->name_count) {
1568 printk(KERN_ERR "%s:%d(:%d): major=%d"
1569 " in_syscall=%d putname(%p) name_count=%d"
1570 " put_count=%d\n",
1571 __FILE__, __LINE__,
1572 context->serial, context->major,
1573 context->in_syscall, name, context->name_count,
1574 context->put_count);
1575 dump_stack();
1576 }
1577 }
1578#endif
1579}
1580
Amy Griffis5712e882007-02-13 14:15:22 -05001581static int audit_inc_name_count(struct audit_context *context,
1582 const struct inode *inode)
1583{
1584 if (context->name_count >= AUDIT_NAMES) {
1585 if (inode)
1586 printk(KERN_DEBUG "name_count maxed, losing inode data: "
1587 "dev=%02x:%02x, inode=%lu",
1588 MAJOR(inode->i_sb->s_dev),
1589 MINOR(inode->i_sb->s_dev),
1590 inode->i_ino);
1591
1592 else
1593 printk(KERN_DEBUG "name_count maxed, losing inode data");
1594 return 1;
1595 }
1596 context->name_count++;
1597#if AUDIT_DEBUG
1598 context->ino_count++;
1599#endif
1600 return 0;
1601}
1602
Amy Griffis3e2efce2006-07-13 13:16:02 -04001603/* Copy inode data into an audit_names. */
1604static void audit_copy_inode(struct audit_names *name, const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001605{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001606 name->ino = inode->i_ino;
1607 name->dev = inode->i_sb->s_dev;
1608 name->mode = inode->i_mode;
1609 name->uid = inode->i_uid;
1610 name->gid = inode->i_gid;
1611 name->rdev = inode->i_rdev;
1612 selinux_get_inode_sid(inode, &name->osid);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001613}
1614
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001615/**
1616 * audit_inode - store the inode and device from a lookup
1617 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07001618 * @dentry: dentry being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001619 *
1620 * Called from fs/namei.c:path_lookup().
1621 */
Al Viro5a190ae2007-06-07 12:19:32 -04001622void __audit_inode(const char *name, const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 int idx;
1625 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04001626 const struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 if (!context->in_syscall)
1629 return;
1630 if (context->name_count
1631 && context->names[context->name_count-1].name
1632 && context->names[context->name_count-1].name == name)
1633 idx = context->name_count - 1;
1634 else if (context->name_count > 1
1635 && context->names[context->name_count-2].name
1636 && context->names[context->name_count-2].name == name)
1637 idx = context->name_count - 2;
1638 else {
1639 /* FIXME: how much do we care about inodes that have no
1640 * associated name? */
Amy Griffis5712e882007-02-13 14:15:22 -05001641 if (audit_inc_name_count(context, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return;
Amy Griffis5712e882007-02-13 14:15:22 -05001643 idx = context->name_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 context->names[idx].name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Al Viro74c3cbe2007-07-22 08:04:18 -04001646 handle_path(dentry);
Amy Griffis3e2efce2006-07-13 13:16:02 -04001647 audit_copy_inode(&context->names[idx], inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Amy Griffis73241cc2005-11-03 16:00:25 +00001650/**
1651 * audit_inode_child - collect inode info for created/removed objects
1652 * @dname: inode's dentry name
Randy Dunlap481968f2007-10-21 20:59:53 -07001653 * @dentry: dentry being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001654 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001655 *
1656 * For syscalls that create or remove filesystem objects, audit_inode
1657 * can only collect information for the filesystem object's parent.
1658 * This call updates the audit context with the child's information.
1659 * Syscalls that create a new filesystem object must be hooked after
1660 * the object is created. Syscalls that remove a filesystem object
1661 * must be hooked prior, in order to capture the target inode during
1662 * unsuccessful attempts.
1663 */
Al Viro5a190ae2007-06-07 12:19:32 -04001664void __audit_inode_child(const char *dname, const struct dentry *dentry,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001665 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001666{
1667 int idx;
1668 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05001669 const char *found_parent = NULL, *found_child = NULL;
Al Viro5a190ae2007-06-07 12:19:32 -04001670 const struct inode *inode = dentry->d_inode;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001671 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00001672
1673 if (!context->in_syscall)
1674 return;
1675
Al Viro74c3cbe2007-07-22 08:04:18 -04001676 if (inode)
1677 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00001678 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04001679 if (!dname)
Amy Griffis5712e882007-02-13 14:15:22 -05001680 goto add_names;
Amy Griffis73241cc2005-11-03 16:00:25 +00001681
Amy Griffis5712e882007-02-13 14:15:22 -05001682 /* parent is more likely, look for it first */
1683 for (idx = 0; idx < context->name_count; idx++) {
1684 struct audit_names *n = &context->names[idx];
Amy Griffis73241cc2005-11-03 16:00:25 +00001685
Amy Griffis5712e882007-02-13 14:15:22 -05001686 if (!n->name)
1687 continue;
1688
1689 if (n->ino == parent->i_ino &&
1690 !audit_compare_dname_path(dname, n->name, &dirlen)) {
1691 n->name_len = dirlen; /* update parent data in place */
1692 found_parent = n->name;
1693 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001694 }
Steve Grubbac9910c2006-09-28 14:31:32 -04001695 }
Amy Griffis73241cc2005-11-03 16:00:25 +00001696
Amy Griffis5712e882007-02-13 14:15:22 -05001697 /* no matching parent, look for matching child */
1698 for (idx = 0; idx < context->name_count; idx++) {
1699 struct audit_names *n = &context->names[idx];
Amy Griffis73d3ec52006-07-13 13:16:39 -04001700
Amy Griffis5712e882007-02-13 14:15:22 -05001701 if (!n->name)
1702 continue;
1703
1704 /* strcmp() is the more likely scenario */
1705 if (!strcmp(dname, n->name) ||
1706 !audit_compare_dname_path(dname, n->name, &dirlen)) {
1707 if (inode)
1708 audit_copy_inode(n, inode);
1709 else
1710 n->ino = (unsigned long)-1;
1711 found_child = n->name;
1712 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04001713 }
Amy Griffis5712e882007-02-13 14:15:22 -05001714 }
1715
1716add_names:
1717 if (!found_parent) {
1718 if (audit_inc_name_count(context, parent))
1719 return;
1720 idx = context->name_count - 1;
1721 context->names[idx].name = NULL;
Amy Griffis73d3ec52006-07-13 13:16:39 -04001722 audit_copy_inode(&context->names[idx], parent);
1723 }
Amy Griffis5712e882007-02-13 14:15:22 -05001724
1725 if (!found_child) {
1726 if (audit_inc_name_count(context, inode))
1727 return;
1728 idx = context->name_count - 1;
1729
1730 /* Re-use the name belonging to the slot for a matching parent
1731 * directory. All names for this context are relinquished in
1732 * audit_free_names() */
1733 if (found_parent) {
1734 context->names[idx].name = found_parent;
1735 context->names[idx].name_len = AUDIT_NAME_FULL;
1736 /* don't call __putname() */
1737 context->names[idx].name_put = 0;
1738 } else {
1739 context->names[idx].name = NULL;
1740 }
1741
1742 if (inode)
1743 audit_copy_inode(&context->names[idx], inode);
1744 else
1745 context->names[idx].ino = (unsigned long)-1;
1746 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001747}
Trond Myklebust50e437d2007-06-07 22:44:34 -04001748EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04001749
1750/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001751 * auditsc_get_stamp - get local copies of audit_context values
1752 * @ctx: audit_context for the task
1753 * @t: timespec to store time recorded in the audit_context
1754 * @serial: serial value that is recorded in the audit_context
1755 *
1756 * Also sets the context as auditable.
1757 */
David Woodhousebfb44962005-05-21 21:08:09 +01001758void auditsc_get_stamp(struct audit_context *ctx,
1759 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
David Woodhousece625a82005-07-18 14:24:46 -04001761 if (!ctx->serial)
1762 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01001763 t->tv_sec = ctx->ctime.tv_sec;
1764 t->tv_nsec = ctx->ctime.tv_nsec;
1765 *serial = ctx->serial;
1766 ctx->auditable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001769/**
1770 * audit_set_loginuid - set a task's audit_context loginuid
1771 * @task: task whose audit context is being modified
1772 * @loginuid: loginuid value
1773 *
1774 * Returns 0.
1775 *
1776 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1777 */
Steve Grubb456be6c2005-04-29 17:30:07 +01001778int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Steve Grubb41757102006-06-12 07:48:28 -04001780 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01001781
Steve Grubb41757102006-06-12 07:48:28 -04001782 if (context) {
1783 /* Only log if audit is enabled */
1784 if (context->in_syscall) {
1785 struct audit_buffer *ab;
1786
1787 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
1788 if (ab) {
1789 audit_log_format(ab, "login pid=%d uid=%u "
1790 "old auid=%u new auid=%u",
1791 task->pid, task->uid,
1792 context->loginuid, loginuid);
1793 audit_log_end(ab);
1794 }
Steve Grubbc0404992005-05-13 18:17:42 +01001795 }
Steve Grubb41757102006-06-12 07:48:28 -04001796 context->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798 return 0;
1799}
1800
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001801/**
1802 * audit_get_loginuid - get the loginuid for an audit_context
1803 * @ctx: the audit_context
1804 *
1805 * Returns the context's loginuid or -1 if @ctx is NULL.
1806 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807uid_t audit_get_loginuid(struct audit_context *ctx)
1808{
1809 return ctx ? ctx->loginuid : -1;
1810}
1811
Joy Latten161a09e2006-11-27 13:11:54 -06001812EXPORT_SYMBOL(audit_get_loginuid);
1813
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001814/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05001815 * __audit_mq_open - record audit data for a POSIX MQ open
1816 * @oflag: open flag
1817 * @mode: mode bits
1818 * @u_attr: queue attributes
1819 *
1820 * Returns 0 for success or NULL context or < 0 on error.
1821 */
1822int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
1823{
1824 struct audit_aux_data_mq_open *ax;
1825 struct audit_context *context = current->audit_context;
1826
1827 if (!audit_enabled)
1828 return 0;
1829
1830 if (likely(!context))
1831 return 0;
1832
1833 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1834 if (!ax)
1835 return -ENOMEM;
1836
1837 if (u_attr != NULL) {
1838 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
1839 kfree(ax);
1840 return -EFAULT;
1841 }
1842 } else
1843 memset(&ax->attr, 0, sizeof(ax->attr));
1844
1845 ax->oflag = oflag;
1846 ax->mode = mode;
1847
1848 ax->d.type = AUDIT_MQ_OPEN;
1849 ax->d.next = context->aux;
1850 context->aux = (void *)ax;
1851 return 0;
1852}
1853
1854/**
1855 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1856 * @mqdes: MQ descriptor
1857 * @msg_len: Message length
1858 * @msg_prio: Message priority
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001859 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001860 *
1861 * Returns 0 for success or NULL context or < 0 on error.
1862 */
1863int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
1864 const struct timespec __user *u_abs_timeout)
1865{
1866 struct audit_aux_data_mq_sendrecv *ax;
1867 struct audit_context *context = current->audit_context;
1868
1869 if (!audit_enabled)
1870 return 0;
1871
1872 if (likely(!context))
1873 return 0;
1874
1875 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1876 if (!ax)
1877 return -ENOMEM;
1878
1879 if (u_abs_timeout != NULL) {
1880 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1881 kfree(ax);
1882 return -EFAULT;
1883 }
1884 } else
1885 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1886
1887 ax->mqdes = mqdes;
1888 ax->msg_len = msg_len;
1889 ax->msg_prio = msg_prio;
1890
1891 ax->d.type = AUDIT_MQ_SENDRECV;
1892 ax->d.next = context->aux;
1893 context->aux = (void *)ax;
1894 return 0;
1895}
1896
1897/**
1898 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1899 * @mqdes: MQ descriptor
1900 * @msg_len: Message length
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001901 * @u_msg_prio: Message priority
1902 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001903 *
1904 * Returns 0 for success or NULL context or < 0 on error.
1905 */
1906int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
1907 unsigned int __user *u_msg_prio,
1908 const struct timespec __user *u_abs_timeout)
1909{
1910 struct audit_aux_data_mq_sendrecv *ax;
1911 struct audit_context *context = current->audit_context;
1912
1913 if (!audit_enabled)
1914 return 0;
1915
1916 if (likely(!context))
1917 return 0;
1918
1919 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1920 if (!ax)
1921 return -ENOMEM;
1922
1923 if (u_msg_prio != NULL) {
1924 if (get_user(ax->msg_prio, u_msg_prio)) {
1925 kfree(ax);
1926 return -EFAULT;
1927 }
1928 } else
1929 ax->msg_prio = 0;
1930
1931 if (u_abs_timeout != NULL) {
1932 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1933 kfree(ax);
1934 return -EFAULT;
1935 }
1936 } else
1937 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1938
1939 ax->mqdes = mqdes;
1940 ax->msg_len = msg_len;
1941
1942 ax->d.type = AUDIT_MQ_SENDRECV;
1943 ax->d.next = context->aux;
1944 context->aux = (void *)ax;
1945 return 0;
1946}
1947
1948/**
1949 * __audit_mq_notify - record audit data for a POSIX MQ notify
1950 * @mqdes: MQ descriptor
1951 * @u_notification: Notification event
1952 *
1953 * Returns 0 for success or NULL context or < 0 on error.
1954 */
1955
1956int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
1957{
1958 struct audit_aux_data_mq_notify *ax;
1959 struct audit_context *context = current->audit_context;
1960
1961 if (!audit_enabled)
1962 return 0;
1963
1964 if (likely(!context))
1965 return 0;
1966
1967 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1968 if (!ax)
1969 return -ENOMEM;
1970
1971 if (u_notification != NULL) {
1972 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
1973 kfree(ax);
1974 return -EFAULT;
1975 }
1976 } else
1977 memset(&ax->notification, 0, sizeof(ax->notification));
1978
1979 ax->mqdes = mqdes;
1980
1981 ax->d.type = AUDIT_MQ_NOTIFY;
1982 ax->d.next = context->aux;
1983 context->aux = (void *)ax;
1984 return 0;
1985}
1986
1987/**
1988 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1989 * @mqdes: MQ descriptor
1990 * @mqstat: MQ flags
1991 *
1992 * Returns 0 for success or NULL context or < 0 on error.
1993 */
1994int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
1995{
1996 struct audit_aux_data_mq_getsetattr *ax;
1997 struct audit_context *context = current->audit_context;
1998
1999 if (!audit_enabled)
2000 return 0;
2001
2002 if (likely(!context))
2003 return 0;
2004
2005 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2006 if (!ax)
2007 return -ENOMEM;
2008
2009 ax->mqdes = mqdes;
2010 ax->mqstat = *mqstat;
2011
2012 ax->d.type = AUDIT_MQ_GETSETATTR;
2013 ax->d.next = context->aux;
2014 context->aux = (void *)ax;
2015 return 0;
2016}
2017
2018/**
Steve Grubb073115d2006-04-02 17:07:33 -04002019 * audit_ipc_obj - record audit data for ipc object
2020 * @ipcp: ipc permissions
2021 *
2022 * Returns 0 for success or NULL context or < 0 on error.
2023 */
Al Virod8945bb52006-05-18 16:01:30 -04002024int __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002025{
2026 struct audit_aux_data_ipcctl *ax;
2027 struct audit_context *context = current->audit_context;
2028
Steve Grubb073115d2006-04-02 17:07:33 -04002029 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2030 if (!ax)
2031 return -ENOMEM;
2032
2033 ax->uid = ipcp->uid;
2034 ax->gid = ipcp->gid;
2035 ax->mode = ipcp->mode;
2036 selinux_get_ipc_sid(ipcp, &ax->osid);
2037
2038 ax->d.type = AUDIT_IPC;
2039 ax->d.next = context->aux;
2040 context->aux = (void *)ax;
2041 return 0;
2042}
2043
2044/**
2045 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002046 * @qbytes: msgq bytes
2047 * @uid: msgq user id
2048 * @gid: msgq group id
2049 * @mode: msgq mode (permissions)
2050 *
2051 * Returns 0 for success or NULL context or < 0 on error.
2052 */
Al Virod8945bb52006-05-18 16:01:30 -04002053int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
2055 struct audit_aux_data_ipcctl *ax;
2056 struct audit_context *context = current->audit_context;
2057
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00002058 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (!ax)
2060 return -ENOMEM;
2061
2062 ax->qbytes = qbytes;
2063 ax->uid = uid;
2064 ax->gid = gid;
2065 ax->mode = mode;
2066
Steve Grubb073115d2006-04-02 17:07:33 -04002067 ax->d.type = AUDIT_IPC_SET_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 ax->d.next = context->aux;
2069 context->aux = (void *)ax;
2070 return 0;
2071}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002072
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002073int audit_argv_kb = 32;
2074
Al Viro473ae302006-04-26 14:04:08 -04002075int audit_bprm(struct linux_binprm *bprm)
2076{
2077 struct audit_aux_data_execve *ax;
2078 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002079
Al Viro5ac3a9c2006-07-16 06:38:45 -04002080 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04002081 return 0;
2082
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002083 /*
2084 * Even though the stack code doesn't limit the arg+env size any more,
2085 * the audit code requires that _all_ arguments be logged in a single
2086 * netlink skb. Hence cap it :-(
2087 */
2088 if (bprm->argv_len > (audit_argv_kb << 10))
2089 return -E2BIG;
2090
2091 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002092 if (!ax)
2093 return -ENOMEM;
2094
2095 ax->argc = bprm->argc;
2096 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002097 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002098 ax->d.type = AUDIT_EXECVE;
2099 ax->d.next = context->aux;
2100 context->aux = (void *)ax;
2101 return 0;
2102}
2103
2104
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002105/**
2106 * audit_socketcall - record audit data for sys_socketcall
2107 * @nargs: number of args
2108 * @args: args array
2109 *
2110 * Returns 0 for success or NULL context or < 0 on error.
2111 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002112int audit_socketcall(int nargs, unsigned long *args)
2113{
2114 struct audit_aux_data_socketcall *ax;
2115 struct audit_context *context = current->audit_context;
2116
Al Viro5ac3a9c2006-07-16 06:38:45 -04002117 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002118 return 0;
2119
2120 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
2121 if (!ax)
2122 return -ENOMEM;
2123
2124 ax->nargs = nargs;
2125 memcpy(ax->args, args, nargs * sizeof(unsigned long));
2126
2127 ax->d.type = AUDIT_SOCKETCALL;
2128 ax->d.next = context->aux;
2129 context->aux = (void *)ax;
2130 return 0;
2131}
2132
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002133/**
Al Virodb349502007-02-07 01:48:00 -05002134 * __audit_fd_pair - record audit data for pipe and socketpair
2135 * @fd1: the first file descriptor
2136 * @fd2: the second file descriptor
2137 *
2138 * Returns 0 for success or NULL context or < 0 on error.
2139 */
2140int __audit_fd_pair(int fd1, int fd2)
2141{
2142 struct audit_context *context = current->audit_context;
2143 struct audit_aux_data_fd_pair *ax;
2144
2145 if (likely(!context)) {
2146 return 0;
2147 }
2148
2149 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2150 if (!ax) {
2151 return -ENOMEM;
2152 }
2153
2154 ax->fd[0] = fd1;
2155 ax->fd[1] = fd2;
2156
2157 ax->d.type = AUDIT_FD_PAIR;
2158 ax->d.next = context->aux;
2159 context->aux = (void *)ax;
2160 return 0;
2161}
2162
2163/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002164 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2165 * @len: data length in user space
2166 * @a: data address in kernel space
2167 *
2168 * Returns 0 for success or NULL context or < 0 on error.
2169 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002170int audit_sockaddr(int len, void *a)
2171{
2172 struct audit_aux_data_sockaddr *ax;
2173 struct audit_context *context = current->audit_context;
2174
Al Viro5ac3a9c2006-07-16 06:38:45 -04002175 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002176 return 0;
2177
2178 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
2179 if (!ax)
2180 return -ENOMEM;
2181
2182 ax->len = len;
2183 memcpy(ax->a, a, len);
2184
2185 ax->d.type = AUDIT_SOCKADDR;
2186 ax->d.next = context->aux;
2187 context->aux = (void *)ax;
2188 return 0;
2189}
2190
Al Viroa5cb0132007-03-20 13:58:35 -04002191void __audit_ptrace(struct task_struct *t)
2192{
2193 struct audit_context *context = current->audit_context;
2194
2195 context->target_pid = t->pid;
2196 selinux_get_task_sid(t, &context->target_sid);
2197}
2198
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002199/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002200 * audit_signal_info - record signal info for shutting down audit subsystem
2201 * @sig: signal value
2202 * @t: task being signaled
2203 *
2204 * If the audit subsystem is being terminated, record the task (pid)
2205 * and uid that is doing that.
2206 */
Amy Griffise54dc242007-03-29 18:01:04 -04002207int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002208{
Amy Griffise54dc242007-03-29 18:01:04 -04002209 struct audit_aux_data_pids *axp;
2210 struct task_struct *tsk = current;
2211 struct audit_context *ctx = tsk->audit_context;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002212 extern pid_t audit_sig_pid;
2213 extern uid_t audit_sig_uid;
Al Viroe1396062006-05-25 10:19:47 -04002214 extern u32 audit_sig_sid;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002215
Al Viro175fc482007-08-08 00:01:46 +01002216 if (audit_pid && t->tgid == audit_pid) {
2217 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) {
2218 audit_sig_pid = tsk->pid;
2219 if (ctx)
2220 audit_sig_uid = ctx->loginuid;
2221 else
2222 audit_sig_uid = tsk->uid;
2223 selinux_get_task_sid(tsk, &audit_sig_sid);
2224 }
2225 if (!audit_signals || audit_dummy_context())
2226 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002227 }
Amy Griffise54dc242007-03-29 18:01:04 -04002228
Amy Griffise54dc242007-03-29 18:01:04 -04002229 /* optimize the common case by putting first signal recipient directly
2230 * in audit_context */
2231 if (!ctx->target_pid) {
2232 ctx->target_pid = t->tgid;
2233 selinux_get_task_sid(t, &ctx->target_sid);
2234 return 0;
2235 }
2236
2237 axp = (void *)ctx->aux_pids;
2238 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2239 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2240 if (!axp)
2241 return -ENOMEM;
2242
2243 axp->d.type = AUDIT_OBJ_PID;
2244 axp->d.next = ctx->aux_pids;
2245 ctx->aux_pids = (void *)axp;
2246 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002247 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002248
2249 axp->target_pid[axp->pid_count] = t->tgid;
2250 selinux_get_task_sid(t, &axp->target_sid[axp->pid_count]);
2251 axp->pid_count++;
2252
2253 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002254}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002255
2256/**
2257 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002258 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002259 *
2260 * If a process ends with a core dump, something fishy is going on and we
2261 * should record the event for investigation.
2262 */
2263void audit_core_dumps(long signr)
2264{
2265 struct audit_buffer *ab;
2266 u32 sid;
2267
2268 if (!audit_enabled)
2269 return;
2270
2271 if (signr == SIGQUIT) /* don't care for those */
2272 return;
2273
2274 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
2275 audit_log_format(ab, "auid=%u uid=%u gid=%u",
2276 audit_get_loginuid(current->audit_context),
2277 current->uid, current->gid);
2278 selinux_get_task_sid(current, &sid);
2279 if (sid) {
2280 char *ctx = NULL;
2281 u32 len;
2282
2283 if (selinux_sid_to_string(sid, &ctx, &len))
2284 audit_log_format(ab, " ssid=%u", sid);
2285 else
2286 audit_log_format(ab, " subj=%s", ctx);
2287 kfree(ctx);
2288 }
2289 audit_log_format(ab, " pid=%d comm=", current->pid);
2290 audit_log_untrustedstring(ab, current->comm);
2291 audit_log_format(ab, " sig=%ld", signr);
2292 audit_log_end(ab);
2293}