blob: 140c47453470afc498e54ce88610c15c79390d58 [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
Al Viro473ae302006-04-26 14:04:08 -0400134struct audit_aux_data_execve {
135 struct audit_aux_data d;
136 int argc;
137 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700138 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400139};
140
Al Virodb349502007-02-07 01:48:00 -0500141struct audit_aux_data_fd_pair {
142 struct audit_aux_data d;
143 int fd[2];
144};
145
Amy Griffise54dc242007-03-29 18:01:04 -0400146struct audit_aux_data_pids {
147 struct audit_aux_data d;
148 pid_t target_pid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500149 uid_t target_auid[AUDIT_AUX_PIDS];
150 uid_t target_uid[AUDIT_AUX_PIDS];
Eric Paris4746ec52008-01-08 10:06:53 -0500151 unsigned int target_sessionid[AUDIT_AUX_PIDS];
Amy Griffise54dc242007-03-29 18:01:04 -0400152 u32 target_sid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500153 char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
Amy Griffise54dc242007-03-29 18:01:04 -0400154 int pid_count;
155};
156
Eric Paris3fc689e2008-11-11 21:48:18 +1100157struct audit_aux_data_bprm_fcaps {
158 struct audit_aux_data d;
159 struct audit_cap_data fcap;
160 unsigned int fcap_ver;
161 struct audit_cap_data old_pcap;
162 struct audit_cap_data new_pcap;
163};
164
Eric Parise68b75a02008-11-11 21:48:22 +1100165struct audit_aux_data_capset {
166 struct audit_aux_data d;
167 pid_t pid;
168 struct audit_cap_data cap;
169};
170
Al Viro74c3cbe2007-07-22 08:04:18 -0400171struct audit_tree_refs {
172 struct audit_tree_refs *next;
173 struct audit_chunk *c[31];
174};
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* The per-task audit context. */
177struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400178 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 int in_syscall; /* 1 if task is in a syscall */
180 enum audit_state state;
181 unsigned int serial; /* serial number for record */
182 struct timespec ctime; /* time of syscall entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int major; /* syscall number */
184 unsigned long argv[4]; /* syscall arguments */
185 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100186 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int auditable; /* 1 if record should be written */
188 int name_count;
189 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400190 char * filterkey; /* key for rule that triggered record */
Jan Blunck44707fd2008-02-14 19:38:33 -0800191 struct path pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct audit_context *previous; /* For nested syscalls */
193 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400194 struct audit_aux_data *aux_pids;
Al Viro4f6b4342008-12-09 19:50:34 -0500195 struct sockaddr_storage *sockaddr;
196 size_t sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400198 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 uid_t uid, euid, suid, fsuid;
200 gid_t gid, egid, sgid, fsgid;
201 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100202 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Al Viroa5cb0132007-03-20 13:58:35 -0400204 pid_t target_pid;
Eric Parisc2a77802008-01-07 13:40:17 -0500205 uid_t target_auid;
206 uid_t target_uid;
Eric Paris4746ec52008-01-08 10:06:53 -0500207 unsigned int target_sessionid;
Al Viroa5cb0132007-03-20 13:58:35 -0400208 u32 target_sid;
Eric Parisc2a77802008-01-07 13:40:17 -0500209 char target_comm[TASK_COMM_LEN];
Al Viroa5cb0132007-03-20 13:58:35 -0400210
Al Viro74c3cbe2007-07-22 08:04:18 -0400211 struct audit_tree_refs *trees, *first_trees;
212 int tree_count;
213
Al Virof3298dc2008-12-10 03:16:51 -0500214 int type;
215 union {
216 struct {
217 int nargs;
218 long args[6];
219 } socketcall;
Al Viroa33e6752008-12-10 03:40:06 -0500220 struct {
221 uid_t uid;
222 gid_t gid;
223 mode_t mode;
224 u32 osid;
Al Viroe816f372008-12-10 03:47:15 -0500225 int has_perm;
226 uid_t perm_uid;
227 gid_t perm_gid;
228 mode_t perm_mode;
229 unsigned long qbytes;
Al Viroa33e6752008-12-10 03:40:06 -0500230 } ipc;
Al Viro73929062008-12-10 06:58:59 -0500231 struct {
232 mqd_t mqdes;
233 struct mq_attr mqstat;
234 } mq_getsetattr;
Al Viro20114f72008-12-10 07:16:12 -0500235 struct {
236 mqd_t mqdes;
237 int sigev_signo;
238 } mq_notify;
Al Viroc32c8af2008-12-14 03:46:48 -0500239 struct {
240 mqd_t mqdes;
241 size_t msg_len;
242 unsigned int msg_prio;
243 struct timespec abs_timeout;
244 } mq_sendrecv;
Al Virof3298dc2008-12-10 03:16:51 -0500245 };
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#if AUDIT_DEBUG
248 int put_count;
249 int ino_count;
250#endif
251};
252
Al Viro55669bf2006-08-31 19:26:40 -0400253#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
254static inline int open_arg(int flags, int mask)
255{
256 int n = ACC_MODE(flags);
257 if (flags & (O_TRUNC | O_CREAT))
258 n |= AUDIT_PERM_WRITE;
259 return n & mask;
260}
261
262static int audit_match_perm(struct audit_context *ctx, int mask)
263{
Cordeliac4bacef2008-08-18 09:45:51 -0700264 unsigned n;
zhangxiliang1a61c882008-08-02 10:56:37 +0800265 if (unlikely(!ctx))
266 return 0;
Cordeliac4bacef2008-08-18 09:45:51 -0700267 n = ctx->major;
Alan Coxdbda4c02008-10-13 10:40:53 +0100268
Al Viro55669bf2006-08-31 19:26:40 -0400269 switch (audit_classify_syscall(ctx->arch, n)) {
270 case 0: /* native */
271 if ((mask & AUDIT_PERM_WRITE) &&
272 audit_match_class(AUDIT_CLASS_WRITE, n))
273 return 1;
274 if ((mask & AUDIT_PERM_READ) &&
275 audit_match_class(AUDIT_CLASS_READ, n))
276 return 1;
277 if ((mask & AUDIT_PERM_ATTR) &&
278 audit_match_class(AUDIT_CLASS_CHATTR, n))
279 return 1;
280 return 0;
281 case 1: /* 32bit on biarch */
282 if ((mask & AUDIT_PERM_WRITE) &&
283 audit_match_class(AUDIT_CLASS_WRITE_32, n))
284 return 1;
285 if ((mask & AUDIT_PERM_READ) &&
286 audit_match_class(AUDIT_CLASS_READ_32, n))
287 return 1;
288 if ((mask & AUDIT_PERM_ATTR) &&
289 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
290 return 1;
291 return 0;
292 case 2: /* open */
293 return mask & ACC_MODE(ctx->argv[1]);
294 case 3: /* openat */
295 return mask & ACC_MODE(ctx->argv[2]);
296 case 4: /* socketcall */
297 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
298 case 5: /* execve */
299 return mask & AUDIT_PERM_EXEC;
300 default:
301 return 0;
302 }
303}
304
Al Viro8b67dca2008-04-28 04:15:49 -0400305static int audit_match_filetype(struct audit_context *ctx, int which)
306{
307 unsigned index = which & ~S_IFMT;
308 mode_t mode = which & S_IFMT;
zhangxiliang1a61c882008-08-02 10:56:37 +0800309
310 if (unlikely(!ctx))
311 return 0;
312
Al Viro8b67dca2008-04-28 04:15:49 -0400313 if (index >= ctx->name_count)
314 return 0;
315 if (ctx->names[index].ino == -1)
316 return 0;
317 if ((ctx->names[index].mode ^ mode) & S_IFMT)
318 return 0;
319 return 1;
320}
321
Al Viro74c3cbe2007-07-22 08:04:18 -0400322/*
323 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
324 * ->first_trees points to its beginning, ->trees - to the current end of data.
325 * ->tree_count is the number of free entries in array pointed to by ->trees.
326 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
327 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
328 * it's going to remain 1-element for almost any setup) until we free context itself.
329 * References in it _are_ dropped - at the same time we free/drop aux stuff.
330 */
331
332#ifdef CONFIG_AUDIT_TREE
333static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
334{
335 struct audit_tree_refs *p = ctx->trees;
336 int left = ctx->tree_count;
337 if (likely(left)) {
338 p->c[--left] = chunk;
339 ctx->tree_count = left;
340 return 1;
341 }
342 if (!p)
343 return 0;
344 p = p->next;
345 if (p) {
346 p->c[30] = chunk;
347 ctx->trees = p;
348 ctx->tree_count = 30;
349 return 1;
350 }
351 return 0;
352}
353
354static int grow_tree_refs(struct audit_context *ctx)
355{
356 struct audit_tree_refs *p = ctx->trees;
357 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
358 if (!ctx->trees) {
359 ctx->trees = p;
360 return 0;
361 }
362 if (p)
363 p->next = ctx->trees;
364 else
365 ctx->first_trees = ctx->trees;
366 ctx->tree_count = 31;
367 return 1;
368}
369#endif
370
371static void unroll_tree_refs(struct audit_context *ctx,
372 struct audit_tree_refs *p, int count)
373{
374#ifdef CONFIG_AUDIT_TREE
375 struct audit_tree_refs *q;
376 int n;
377 if (!p) {
378 /* we started with empty chain */
379 p = ctx->first_trees;
380 count = 31;
381 /* if the very first allocation has failed, nothing to do */
382 if (!p)
383 return;
384 }
385 n = count;
386 for (q = p; q != ctx->trees; q = q->next, n = 31) {
387 while (n--) {
388 audit_put_chunk(q->c[n]);
389 q->c[n] = NULL;
390 }
391 }
392 while (n-- > ctx->tree_count) {
393 audit_put_chunk(q->c[n]);
394 q->c[n] = NULL;
395 }
396 ctx->trees = p;
397 ctx->tree_count = count;
398#endif
399}
400
401static void free_tree_refs(struct audit_context *ctx)
402{
403 struct audit_tree_refs *p, *q;
404 for (p = ctx->first_trees; p; p = q) {
405 q = p->next;
406 kfree(p);
407 }
408}
409
410static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
411{
412#ifdef CONFIG_AUDIT_TREE
413 struct audit_tree_refs *p;
414 int n;
415 if (!tree)
416 return 0;
417 /* full ones */
418 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
419 for (n = 0; n < 31; n++)
420 if (audit_tree_match(p->c[n], tree))
421 return 1;
422 }
423 /* partial */
424 if (p) {
425 for (n = ctx->tree_count; n < 31; n++)
426 if (audit_tree_match(p->c[n], tree))
427 return 1;
428 }
429#endif
430 return 0;
431}
432
Amy Griffisf368c07d2006-04-07 16:55:56 -0400433/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/* Compare a task_struct with an audit_rule. Return 1 on match, 0
435 * otherwise. */
436static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500437 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400439 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 enum audit_state *state)
441{
David Howellsc69e8d92008-11-14 10:39:19 +1100442 const struct cred *cred = get_task_cred(tsk);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400443 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600444 u32 sid;
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500447 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int result = 0;
449
Amy Griffis93315ed2006-02-07 12:05:27 -0500450 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500452 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
Al Viro3c662512006-05-06 08:26:27 -0400454 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400455 if (ctx) {
456 if (!ctx->ppid)
457 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400458 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400459 }
Al Viro3c662512006-05-06 08:26:27 -0400460 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 case AUDIT_UID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100462 result = audit_comparator(cred->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 case AUDIT_EUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100465 result = audit_comparator(cred->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 case AUDIT_SUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100468 result = audit_comparator(cred->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case AUDIT_FSUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100471 result = audit_comparator(cred->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 case AUDIT_GID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100474 result = audit_comparator(cred->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476 case AUDIT_EGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100477 result = audit_comparator(cred->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 case AUDIT_SGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100480 result = audit_comparator(cred->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 break;
482 case AUDIT_FSGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100483 result = audit_comparator(cred->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500486 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
2fd6f582005-04-29 16:08:28 +0100488 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700489 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500490 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100491 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 case AUDIT_EXIT:
494 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500495 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
497 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100498 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500499 if (f->val)
500 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100501 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500502 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400506 if (name)
507 result = audit_comparator(MAJOR(name->dev),
508 f->op, f->val);
509 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500511 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 ++result;
513 break;
514 }
515 }
516 }
517 break;
518 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400519 if (name)
520 result = audit_comparator(MINOR(name->dev),
521 f->op, f->val);
522 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500524 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 ++result;
526 break;
527 }
528 }
529 }
530 break;
531 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400532 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400533 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400534 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400536 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 ++result;
538 break;
539 }
540 }
541 }
542 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400543 case AUDIT_WATCH:
544 if (name && rule->watch->ino != (unsigned long)-1)
545 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400546 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400547 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400548 case AUDIT_DIR:
549 if (ctx)
550 result = match_tree_refs(ctx, rule->tree);
551 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 case AUDIT_LOGINUID:
553 result = 0;
554 if (ctx)
Al Virobfef93a2008-01-10 04:53:18 -0500555 result = audit_comparator(tsk->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500557 case AUDIT_SUBJ_USER:
558 case AUDIT_SUBJ_ROLE:
559 case AUDIT_SUBJ_TYPE:
560 case AUDIT_SUBJ_SEN:
561 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600562 /* NOTE: this may return negative values indicating
563 a temporary error. We simply treat this as a
564 match for now to avoid losing information that
565 may be wanted. An error message will also be
566 logged upon error */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000567 if (f->lsm_rule) {
Steve Grubb2ad312d2006-04-11 08:50:56 -0400568 if (need_sid) {
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200569 security_task_getsecid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400570 need_sid = 0;
571 }
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200572 result = security_audit_rule_match(sid, f->type,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600573 f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000574 f->lsm_rule,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600575 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400576 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600577 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500578 case AUDIT_OBJ_USER:
579 case AUDIT_OBJ_ROLE:
580 case AUDIT_OBJ_TYPE:
581 case AUDIT_OBJ_LEV_LOW:
582 case AUDIT_OBJ_LEV_HIGH:
583 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
584 also applies here */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000585 if (f->lsm_rule) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500586 /* Find files that match */
587 if (name) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200588 result = security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500589 name->osid, f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000590 f->lsm_rule, ctx);
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500591 } else if (ctx) {
592 for (j = 0; j < ctx->name_count; j++) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200593 if (security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500594 ctx->names[j].osid,
595 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 ++result;
598 break;
599 }
600 }
601 }
602 /* Find ipc objects that match */
Al Viroa33e6752008-12-10 03:40:06 -0500603 if (!ctx || ctx->type != AUDIT_IPC)
604 break;
605 if (security_audit_rule_match(ctx->ipc.osid,
606 f->type, f->op,
607 f->lsm_rule, ctx))
608 ++result;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500609 }
610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 case AUDIT_ARG0:
612 case AUDIT_ARG1:
613 case AUDIT_ARG2:
614 case AUDIT_ARG3:
615 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500616 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400618 case AUDIT_FILTERKEY:
619 /* ignore this field for filtering */
620 result = 1;
621 break;
Al Viro55669bf2006-08-31 19:26:40 -0400622 case AUDIT_PERM:
623 result = audit_match_perm(ctx, f->val);
624 break;
Al Viro8b67dca2008-04-28 04:15:49 -0400625 case AUDIT_FILETYPE:
626 result = audit_match_filetype(ctx, f->val);
627 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629
David Howellsc69e8d92008-11-14 10:39:19 +1100630 if (!result) {
631 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
zhangxiliang980dfb02008-08-01 19:15:47 +0800635 if (rule->filterkey && ctx)
Amy Griffis5adc8a62006-06-14 18:45:21 -0400636 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 switch (rule->action) {
638 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
640 }
David Howellsc69e8d92008-11-14 10:39:19 +1100641 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 1;
643}
644
645/* At process creation time, we can determine if system-call auditing is
646 * completely disabled for this task. Since we only have the task
647 * structure at this point, we can only check uid and gid.
648 */
649static enum audit_state audit_filter_task(struct task_struct *tsk)
650{
651 struct audit_entry *e;
652 enum audit_state state;
653
654 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100655 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400656 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 rcu_read_unlock();
658 return state;
659 }
660 }
661 rcu_read_unlock();
662 return AUDIT_BUILD_CONTEXT;
663}
664
665/* At syscall entry and exit time, this filter is called if the
666 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100667 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700668 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 */
670static enum audit_state audit_filter_syscall(struct task_struct *tsk,
671 struct audit_context *ctx,
672 struct list_head *list)
673{
674 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100675 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
David Woodhouse351bb722005-07-14 14:40:06 +0100677 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100678 return AUDIT_DISABLED;
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100681 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000682 int word = AUDIT_WORD(ctx->major);
683 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100684
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000685 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400686 if ((e->rule.mask[word] & bit) == bit &&
687 audit_filter_rules(tsk, &e->rule, ctx, NULL,
688 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000689 rcu_read_unlock();
690 return state;
691 }
692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694 rcu_read_unlock();
695 return AUDIT_BUILD_CONTEXT;
696}
697
Amy Griffisf368c07d2006-04-07 16:55:56 -0400698/* At syscall exit time, this filter is called if any audit_names[] have been
699 * collected during syscall processing. We only check rules in sublists at hash
700 * buckets applicable to the inode numbers in audit_names[].
701 * Regarding audit_state, same rules apply as for audit_filter_syscall().
702 */
703enum audit_state audit_filter_inodes(struct task_struct *tsk,
704 struct audit_context *ctx)
705{
706 int i;
707 struct audit_entry *e;
708 enum audit_state state;
709
710 if (audit_pid && tsk->tgid == audit_pid)
711 return AUDIT_DISABLED;
712
713 rcu_read_lock();
714 for (i = 0; i < ctx->name_count; i++) {
715 int word = AUDIT_WORD(ctx->major);
716 int bit = AUDIT_BIT(ctx->major);
717 struct audit_names *n = &ctx->names[i];
718 int h = audit_hash_ino((u32)n->ino);
719 struct list_head *list = &audit_inode_hash[h];
720
721 if (list_empty(list))
722 continue;
723
724 list_for_each_entry_rcu(e, list, list) {
725 if ((e->rule.mask[word] & bit) == bit &&
726 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
727 rcu_read_unlock();
728 return state;
729 }
730 }
731 }
732 rcu_read_unlock();
733 return AUDIT_BUILD_CONTEXT;
734}
735
736void audit_set_auditable(struct audit_context *ctx)
737{
738 ctx->auditable = 1;
739}
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741static inline struct audit_context *audit_get_context(struct task_struct *tsk,
742 int return_valid,
743 int return_code)
744{
745 struct audit_context *context = tsk->audit_context;
746
747 if (likely(!context))
748 return NULL;
749 context->return_valid = return_valid;
Eric Parisf701b752008-01-07 13:34:51 -0500750
751 /*
752 * we need to fix up the return code in the audit logs if the actual
753 * return codes are later going to be fixed up by the arch specific
754 * signal handlers
755 *
756 * This is actually a test for:
757 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
758 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
759 *
760 * but is faster than a bunch of ||
761 */
762 if (unlikely(return_code <= -ERESTARTSYS) &&
763 (return_code >= -ERESTART_RESTARTBLOCK) &&
764 (return_code != -ENOIOCTLCMD))
765 context->return_code = -EINTR;
766 else
767 context->return_code = return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Al Virod51374a2006-08-03 10:59:26 -0400769 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400771
David Woodhouse0f45aa12005-06-19 19:35:50 +0100772 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400773 if (state == AUDIT_RECORD_CONTEXT) {
774 context->auditable = 1;
775 goto get_context;
776 }
777
778 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (state == AUDIT_RECORD_CONTEXT)
780 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
Amy Griffisf368c07d2006-04-07 16:55:56 -0400784get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 tsk->audit_context = NULL;
787 return context;
788}
789
790static inline void audit_free_names(struct audit_context *context)
791{
792 int i;
793
794#if AUDIT_DEBUG == 2
795 if (context->auditable
796 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000797 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 " name_count=%d put_count=%d"
799 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000800 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 context->serial, context->major, context->in_syscall,
802 context->name_count, context->put_count,
803 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000804 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 printk(KERN_ERR "names[%d] = %p = %s\n", i,
806 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000807 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 dump_stack();
810 return;
811 }
812#endif
813#if AUDIT_DEBUG
814 context->put_count = 0;
815 context->ino_count = 0;
816#endif
817
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000818 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400819 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 context->name_count = 0;
Jan Blunck44707fd2008-02-14 19:38:33 -0800823 path_put(&context->pwd);
824 context->pwd.dentry = NULL;
825 context->pwd.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828static inline void audit_free_aux(struct audit_context *context)
829{
830 struct audit_aux_data *aux;
831
832 while ((aux = context->aux)) {
833 context->aux = aux->next;
834 kfree(aux);
835 }
Amy Griffise54dc242007-03-29 18:01:04 -0400836 while ((aux = context->aux_pids)) {
837 context->aux_pids = aux->next;
838 kfree(aux);
839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842static inline void audit_zero_context(struct audit_context *context,
843 enum audit_state state)
844{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 memset(context, 0, sizeof(*context));
846 context->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
849static inline struct audit_context *audit_alloc_context(enum audit_state state)
850{
851 struct audit_context *context;
852
853 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
854 return NULL;
855 audit_zero_context(context, state);
856 return context;
857}
858
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700859/**
860 * audit_alloc - allocate an audit context block for a task
861 * @tsk: task
862 *
863 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 * if necessary. Doing so turns on system call auditing for the
865 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700866 * needed.
867 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868int audit_alloc(struct task_struct *tsk)
869{
870 struct audit_context *context;
871 enum audit_state state;
872
Eric Parisb593d382008-01-08 17:38:31 -0500873 if (likely(!audit_ever_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return 0; /* Return if not auditing. */
875
876 state = audit_filter_task(tsk);
877 if (likely(state == AUDIT_DISABLED))
878 return 0;
879
880 if (!(context = audit_alloc_context(state))) {
881 audit_log_lost("out of memory in audit_alloc");
882 return -ENOMEM;
883 }
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 tsk->audit_context = context;
886 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
887 return 0;
888}
889
890static inline void audit_free_context(struct audit_context *context)
891{
892 struct audit_context *previous;
893 int count = 0;
894
895 do {
896 previous = context->previous;
897 if (previous || (count && count < 10)) {
898 ++count;
899 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
900 " freeing multiple contexts (%d)\n",
901 context->serial, context->major,
902 context->name_count, count);
903 }
904 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -0400905 unroll_tree_refs(context, NULL, 0);
906 free_tree_refs(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400908 kfree(context->filterkey);
Al Viro4f6b4342008-12-09 19:50:34 -0500909 kfree(context->sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 kfree(context);
911 context = previous;
912 } while (context);
913 if (count >= 10)
914 printk(KERN_ERR "audit: freed %d contexts\n", count);
915}
916
Joy Latten161a09e2006-11-27 13:11:54 -0600917void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000918{
919 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +0000920 unsigned len;
921 int error;
922 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000923
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200924 security_task_getsecid(current, &sid);
Al Viroc4823bc2007-03-12 16:17:42 +0000925 if (!sid)
926 return;
927
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200928 error = security_secid_to_secctx(sid, &ctx, &len);
Al Viroc4823bc2007-03-12 16:17:42 +0000929 if (error) {
930 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000931 goto error_path;
932 return;
933 }
934
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000935 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200936 security_release_secctx(ctx, len);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000937 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000938
939error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000940 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000941 return;
942}
943
Joy Latten161a09e2006-11-27 13:11:54 -0600944EXPORT_SYMBOL(audit_log_task_context);
945
Al Viroe4951492006-03-29 20:17:10 -0500946static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700947{
Al Viro45d9bb02006-03-29 20:02:55 -0500948 char name[sizeof(tsk->comm)];
949 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700950 struct vm_area_struct *vma;
951
Al Viroe4951492006-03-29 20:17:10 -0500952 /* tsk == current */
953
Al Viro45d9bb02006-03-29 20:02:55 -0500954 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100955 audit_log_format(ab, " comm=");
956 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700957
Al Viroe4951492006-03-29 20:17:10 -0500958 if (mm) {
959 down_read(&mm->mmap_sem);
960 vma = mm->mmap;
961 while (vma) {
962 if ((vma->vm_flags & VM_EXECUTABLE) &&
963 vma->vm_file) {
964 audit_log_d_path(ab, "exe=",
Jan Blunck44707fd2008-02-14 19:38:33 -0800965 &vma->vm_file->f_path);
Al Viroe4951492006-03-29 20:17:10 -0500966 break;
967 }
968 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700969 }
Al Viroe4951492006-03-29 20:17:10 -0500970 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700971 }
Al Viroe4951492006-03-29 20:17:10 -0500972 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700973}
974
Amy Griffise54dc242007-03-29 18:01:04 -0400975static int audit_log_pid_context(struct audit_context *context, pid_t pid,
Eric Paris4746ec52008-01-08 10:06:53 -0500976 uid_t auid, uid_t uid, unsigned int sessionid,
977 u32 sid, char *comm)
Amy Griffise54dc242007-03-29 18:01:04 -0400978{
979 struct audit_buffer *ab;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200980 char *ctx = NULL;
Amy Griffise54dc242007-03-29 18:01:04 -0400981 u32 len;
982 int rc = 0;
983
984 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
985 if (!ab)
Eric Paris6246cca2008-01-07 14:01:18 -0500986 return rc;
Amy Griffise54dc242007-03-29 18:01:04 -0400987
Eric Paris4746ec52008-01-08 10:06:53 -0500988 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid, auid,
989 uid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200990 if (security_secid_to_secctx(sid, &ctx, &len)) {
Eric Parisc2a77802008-01-07 13:40:17 -0500991 audit_log_format(ab, " obj=(none)");
Amy Griffise54dc242007-03-29 18:01:04 -0400992 rc = 1;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200993 } else {
994 audit_log_format(ab, " obj=%s", ctx);
995 security_release_secctx(ctx, len);
996 }
Eric Parisc2a77802008-01-07 13:40:17 -0500997 audit_log_format(ab, " ocomm=");
998 audit_log_untrustedstring(ab, comm);
Amy Griffise54dc242007-03-29 18:01:04 -0400999 audit_log_end(ab);
Amy Griffise54dc242007-03-29 18:01:04 -04001000
1001 return rc;
1002}
1003
Eric Parisde6bbd12008-01-07 14:31:58 -05001004/*
1005 * to_send and len_sent accounting are very loose estimates. We aren't
1006 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
1007 * within about 500 bytes (next page boundry)
1008 *
1009 * why snprintf? an int is up to 12 digits long. if we just assumed when
1010 * logging that a[%d]= was going to be 16 characters long we would be wasting
1011 * space in every audit message. In one 7500 byte message we can log up to
1012 * about 1000 min size arguments. That comes down to about 50% waste of space
1013 * if we didn't do the snprintf to find out how long arg_num_len was.
1014 */
1015static int audit_log_single_execve_arg(struct audit_context *context,
1016 struct audit_buffer **ab,
1017 int arg_num,
1018 size_t *len_sent,
1019 const char __user *p,
1020 char *buf)
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001021{
Eric Parisde6bbd12008-01-07 14:31:58 -05001022 char arg_num_len_buf[12];
1023 const char __user *tmp_p = p;
1024 /* how many digits are in arg_num? 3 is the length of a=\n */
1025 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 3;
1026 size_t len, len_left, to_send;
1027 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1028 unsigned int i, has_cntl = 0, too_long = 0;
1029 int ret;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001030
Eric Parisde6bbd12008-01-07 14:31:58 -05001031 /* strnlen_user includes the null we don't want to send */
1032 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001033
Eric Parisde6bbd12008-01-07 14:31:58 -05001034 /*
1035 * We just created this mm, if we can't find the strings
1036 * we just copied into it something is _very_ wrong. Similar
1037 * for strings that are too long, we should not have created
1038 * any.
1039 */
Eric Parisb0abcfc2008-02-18 18:23:16 -05001040 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
Eric Parisde6bbd12008-01-07 14:31:58 -05001041 WARN_ON(1);
1042 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001043 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001044 }
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001045
Eric Parisde6bbd12008-01-07 14:31:58 -05001046 /* walk the whole argument looking for non-ascii chars */
1047 do {
1048 if (len_left > MAX_EXECVE_AUDIT_LEN)
1049 to_send = MAX_EXECVE_AUDIT_LEN;
1050 else
1051 to_send = len_left;
1052 ret = copy_from_user(buf, tmp_p, to_send);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001053 /*
1054 * There is no reason for this copy to be short. We just
1055 * copied them here, and the mm hasn't been exposed to user-
1056 * space yet.
1057 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001058 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001059 WARN_ON(1);
1060 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001061 return -1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001062 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001063 buf[to_send] = '\0';
1064 has_cntl = audit_string_contains_control(buf, to_send);
1065 if (has_cntl) {
1066 /*
1067 * hex messages get logged as 2 bytes, so we can only
1068 * send half as much in each message
1069 */
1070 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
1071 break;
1072 }
1073 len_left -= to_send;
1074 tmp_p += to_send;
1075 } while (len_left > 0);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001076
Eric Parisde6bbd12008-01-07 14:31:58 -05001077 len_left = len;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001078
Eric Parisde6bbd12008-01-07 14:31:58 -05001079 if (len > max_execve_audit_len)
1080 too_long = 1;
1081
1082 /* rewalk the argument actually logging the message */
1083 for (i = 0; len_left > 0; i++) {
1084 int room_left;
1085
1086 if (len_left > max_execve_audit_len)
1087 to_send = max_execve_audit_len;
1088 else
1089 to_send = len_left;
1090
1091 /* do we have space left to send this argument in this ab? */
1092 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1093 if (has_cntl)
1094 room_left -= (to_send * 2);
1095 else
1096 room_left -= to_send;
1097 if (room_left < 0) {
1098 *len_sent = 0;
1099 audit_log_end(*ab);
1100 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1101 if (!*ab)
1102 return 0;
1103 }
1104
1105 /*
1106 * first record needs to say how long the original string was
1107 * so we can be sure nothing was lost.
1108 */
1109 if ((i == 0) && (too_long))
Paul Moore422b03c2008-02-27 10:39:22 -05001110 audit_log_format(*ab, "a%d_len=%zu ", arg_num,
Eric Parisde6bbd12008-01-07 14:31:58 -05001111 has_cntl ? 2*len : len);
1112
1113 /*
1114 * normally arguments are small enough to fit and we already
1115 * filled buf above when we checked for control characters
1116 * so don't bother with another copy_from_user
1117 */
1118 if (len >= max_execve_audit_len)
1119 ret = copy_from_user(buf, p, to_send);
1120 else
1121 ret = 0;
1122 if (ret) {
1123 WARN_ON(1);
1124 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001125 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001126 }
1127 buf[to_send] = '\0';
1128
1129 /* actually log it */
1130 audit_log_format(*ab, "a%d", arg_num);
1131 if (too_long)
1132 audit_log_format(*ab, "[%d]", i);
1133 audit_log_format(*ab, "=");
1134 if (has_cntl)
Eric Parisb556f8a2008-04-18 10:12:59 -04001135 audit_log_n_hex(*ab, buf, to_send);
Eric Parisde6bbd12008-01-07 14:31:58 -05001136 else
1137 audit_log_format(*ab, "\"%s\"", buf);
1138 audit_log_format(*ab, "\n");
1139
1140 p += to_send;
1141 len_left -= to_send;
1142 *len_sent += arg_num_len;
1143 if (has_cntl)
1144 *len_sent += to_send * 2;
1145 else
1146 *len_sent += to_send;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001147 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001148 /* include the null we didn't log */
1149 return len + 1;
1150}
1151
1152static void audit_log_execve_info(struct audit_context *context,
1153 struct audit_buffer **ab,
1154 struct audit_aux_data_execve *axi)
1155{
1156 int i;
1157 size_t len, len_sent = 0;
1158 const char __user *p;
1159 char *buf;
1160
1161 if (axi->mm != current->mm)
1162 return; /* execve failed, no additional info */
1163
1164 p = (const char __user *)axi->mm->arg_start;
1165
1166 audit_log_format(*ab, "argc=%d ", axi->argc);
1167
1168 /*
1169 * we need some kernel buffer to hold the userspace args. Just
1170 * allocate one big one rather than allocating one of the right size
1171 * for every single argument inside audit_log_single_execve_arg()
1172 * should be <8k allocation so should be pretty safe.
1173 */
1174 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1175 if (!buf) {
1176 audit_panic("out of memory for argv string\n");
1177 return;
1178 }
1179
1180 for (i = 0; i < axi->argc; i++) {
1181 len = audit_log_single_execve_arg(context, ab, i,
1182 &len_sent, p, buf);
1183 if (len <= 0)
1184 break;
1185 p += len;
1186 }
1187 kfree(buf);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001188}
1189
Eric Paris851f7ff2008-11-11 21:48:14 +11001190static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1191{
1192 int i;
1193
1194 audit_log_format(ab, " %s=", prefix);
1195 CAP_FOR_EACH_U32(i) {
1196 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1197 }
1198}
1199
1200static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1201{
1202 kernel_cap_t *perm = &name->fcap.permitted;
1203 kernel_cap_t *inh = &name->fcap.inheritable;
1204 int log = 0;
1205
1206 if (!cap_isclear(*perm)) {
1207 audit_log_cap(ab, "cap_fp", perm);
1208 log = 1;
1209 }
1210 if (!cap_isclear(*inh)) {
1211 audit_log_cap(ab, "cap_fi", inh);
1212 log = 1;
1213 }
1214
1215 if (log)
1216 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1217}
1218
Al Viroa33e6752008-12-10 03:40:06 -05001219static void show_special(struct audit_context *context, int *call_panic)
Al Virof3298dc2008-12-10 03:16:51 -05001220{
1221 struct audit_buffer *ab;
1222 int i;
1223
1224 ab = audit_log_start(context, GFP_KERNEL, context->type);
1225 if (!ab)
1226 return;
1227
1228 switch (context->type) {
1229 case AUDIT_SOCKETCALL: {
1230 int nargs = context->socketcall.nargs;
1231 audit_log_format(ab, "nargs=%d", nargs);
1232 for (i = 0; i < nargs; i++)
1233 audit_log_format(ab, " a%d=%lx", i,
1234 context->socketcall.args[i]);
1235 break; }
Al Viroa33e6752008-12-10 03:40:06 -05001236 case AUDIT_IPC: {
1237 u32 osid = context->ipc.osid;
1238
1239 audit_log_format(ab, "ouid=%u ogid=%u mode=%#o",
1240 context->ipc.uid, context->ipc.gid, context->ipc.mode);
1241 if (osid) {
1242 char *ctx = NULL;
1243 u32 len;
1244 if (security_secid_to_secctx(osid, &ctx, &len)) {
1245 audit_log_format(ab, " osid=%u", osid);
1246 *call_panic = 1;
1247 } else {
1248 audit_log_format(ab, " obj=%s", ctx);
1249 security_release_secctx(ctx, len);
1250 }
1251 }
Al Viroe816f372008-12-10 03:47:15 -05001252 if (context->ipc.has_perm) {
1253 audit_log_end(ab);
1254 ab = audit_log_start(context, GFP_KERNEL,
1255 AUDIT_IPC_SET_PERM);
1256 audit_log_format(ab,
1257 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
1258 context->ipc.qbytes,
1259 context->ipc.perm_uid,
1260 context->ipc.perm_gid,
1261 context->ipc.perm_mode);
1262 if (!ab)
1263 return;
1264 }
Al Viroa33e6752008-12-10 03:40:06 -05001265 break; }
Al Viroc32c8af2008-12-14 03:46:48 -05001266 case AUDIT_MQ_SENDRECV: {
1267 audit_log_format(ab,
1268 "mqdes=%d msg_len=%zd msg_prio=%u "
1269 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1270 context->mq_sendrecv.mqdes,
1271 context->mq_sendrecv.msg_len,
1272 context->mq_sendrecv.msg_prio,
1273 context->mq_sendrecv.abs_timeout.tv_sec,
1274 context->mq_sendrecv.abs_timeout.tv_nsec);
1275 break; }
Al Viro20114f72008-12-10 07:16:12 -05001276 case AUDIT_MQ_NOTIFY: {
1277 audit_log_format(ab, "mqdes=%d sigev_signo=%d",
1278 context->mq_notify.mqdes,
1279 context->mq_notify.sigev_signo);
1280 break; }
Al Viro73929062008-12-10 06:58:59 -05001281 case AUDIT_MQ_GETSETATTR: {
1282 struct mq_attr *attr = &context->mq_getsetattr.mqstat;
1283 audit_log_format(ab,
1284 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1285 "mq_curmsgs=%ld ",
1286 context->mq_getsetattr.mqdes,
1287 attr->mq_flags, attr->mq_maxmsg,
1288 attr->mq_msgsize, attr->mq_curmsgs);
1289 break; }
Al Virof3298dc2008-12-10 03:16:51 -05001290 }
1291 audit_log_end(ab);
1292}
1293
Al Viroe4951492006-03-29 20:17:10 -05001294static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
David Howellsc69e8d92008-11-14 10:39:19 +11001296 const struct cred *cred;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001297 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001299 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -05001300 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Al Viroe4951492006-03-29 20:17:10 -05001302 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001303 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -04001304 if (!context->ppid)
1305 context->ppid = sys_getppid();
David Howellsc69e8d92008-11-14 10:39:19 +11001306 cred = current_cred();
1307 context->uid = cred->uid;
1308 context->gid = cred->gid;
1309 context->euid = cred->euid;
1310 context->suid = cred->suid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001311 context->fsuid = cred->fsuid;
David Howellsc69e8d92008-11-14 10:39:19 +11001312 context->egid = cred->egid;
1313 context->sgid = cred->sgid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001314 context->fsgid = cred->fsgid;
Al Viro3f2792f2006-07-16 06:43:48 -04001315 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001316
1317 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (!ab)
1319 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001320 audit_log_format(ab, "arch=%x syscall=%d",
1321 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (context->personality != PER_LINUX)
1323 audit_log_format(ab, " per=%lx", context->personality);
1324 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001325 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001326 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1327 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001328
Alan Coxdbda4c02008-10-13 10:40:53 +01001329 spin_lock_irq(&tsk->sighand->siglock);
Al Viro45d9bb02006-03-29 20:02:55 -05001330 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1331 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -05001332 else
1333 tty = "(none)";
Alan Coxdbda4c02008-10-13 10:40:53 +01001334 spin_unlock_irq(&tsk->sighand->siglock);
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 audit_log_format(ab,
1337 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -04001338 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +01001339 " euid=%u suid=%u fsuid=%u"
Eric Paris4746ec52008-01-08 10:06:53 -05001340 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 context->argv[0],
1342 context->argv[1],
1343 context->argv[2],
1344 context->argv[3],
1345 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -04001346 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 context->pid,
Al Virobfef93a2008-01-10 04:53:18 -05001348 tsk->loginuid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 context->uid,
1350 context->gid,
1351 context->euid, context->suid, context->fsuid,
Eric Paris4746ec52008-01-08 10:06:53 -05001352 context->egid, context->sgid, context->fsgid, tty,
1353 tsk->sessionid);
Alan Coxeb84a202006-09-29 02:01:41 -07001354
Alan Coxeb84a202006-09-29 02:01:41 -07001355
Al Viroe4951492006-03-29 20:17:10 -05001356 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001357 if (context->filterkey) {
1358 audit_log_format(ab, " key=");
1359 audit_log_untrustedstring(ab, context->filterkey);
1360 } else
1361 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
David Woodhouse7551ced2005-05-26 12:04:57 +01001364 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001365
Al Viroe4951492006-03-29 20:17:10 -05001366 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (!ab)
1368 continue; /* audit_panic has been called */
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001371 case AUDIT_MQ_OPEN: {
1372 struct audit_aux_data_mq_open *axi = (void *)aux;
1373 audit_log_format(ab,
1374 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
1375 "mq_msgsize=%ld mq_curmsgs=%ld",
1376 axi->oflag, axi->mode, axi->attr.mq_flags,
1377 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
1378 axi->attr.mq_curmsgs);
1379 break; }
1380
Al Viro473ae302006-04-26 14:04:08 -04001381 case AUDIT_EXECVE: {
1382 struct audit_aux_data_execve *axi = (void *)aux;
Eric Parisde6bbd12008-01-07 14:31:58 -05001383 audit_log_execve_info(context, &ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001384 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001385
Al Virodb349502007-02-07 01:48:00 -05001386 case AUDIT_FD_PAIR: {
1387 struct audit_aux_data_fd_pair *axs = (void *)aux;
1388 audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]);
1389 break; }
1390
Eric Paris3fc689e2008-11-11 21:48:18 +11001391 case AUDIT_BPRM_FCAPS: {
1392 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1393 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1394 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1395 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1396 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1397 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1398 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1399 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1400 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1401 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1402 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1403 break; }
1404
Eric Parise68b75a02008-11-11 21:48:22 +11001405 case AUDIT_CAPSET: {
1406 struct audit_aux_data_capset *axs = (void *)aux;
1407 audit_log_format(ab, "pid=%d", axs->pid);
1408 audit_log_cap(ab, "cap_pi", &axs->cap.inheritable);
1409 audit_log_cap(ab, "cap_pp", &axs->cap.permitted);
1410 audit_log_cap(ab, "cap_pe", &axs->cap.effective);
1411 break; }
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416
Al Virof3298dc2008-12-10 03:16:51 -05001417 if (context->type)
Al Viroa33e6752008-12-10 03:40:06 -05001418 show_special(context, &call_panic);
Al Virof3298dc2008-12-10 03:16:51 -05001419
Al Viro4f6b4342008-12-09 19:50:34 -05001420 if (context->sockaddr_len) {
1421 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1422 if (ab) {
1423 audit_log_format(ab, "saddr=");
1424 audit_log_n_hex(ab, (void *)context->sockaddr,
1425 context->sockaddr_len);
1426 audit_log_end(ab);
1427 }
1428 }
1429
Amy Griffise54dc242007-03-29 18:01:04 -04001430 for (aux = context->aux_pids; aux; aux = aux->next) {
1431 struct audit_aux_data_pids *axs = (void *)aux;
Amy Griffise54dc242007-03-29 18:01:04 -04001432
1433 for (i = 0; i < axs->pid_count; i++)
1434 if (audit_log_pid_context(context, axs->target_pid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001435 axs->target_auid[i],
1436 axs->target_uid[i],
Eric Paris4746ec52008-01-08 10:06:53 -05001437 axs->target_sessionid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001438 axs->target_sid[i],
1439 axs->target_comm[i]))
Amy Griffise54dc242007-03-29 18:01:04 -04001440 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001441 }
1442
Amy Griffise54dc242007-03-29 18:01:04 -04001443 if (context->target_pid &&
1444 audit_log_pid_context(context, context->target_pid,
Eric Parisc2a77802008-01-07 13:40:17 -05001445 context->target_auid, context->target_uid,
Eric Paris4746ec52008-01-08 10:06:53 -05001446 context->target_sessionid,
Eric Parisc2a77802008-01-07 13:40:17 -05001447 context->target_sid, context->target_comm))
Amy Griffise54dc242007-03-29 18:01:04 -04001448 call_panic = 1;
1449
Jan Blunck44707fd2008-02-14 19:38:33 -08001450 if (context->pwd.dentry && context->pwd.mnt) {
Al Viroe4951492006-03-29 20:17:10 -05001451 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001452 if (ab) {
Jan Blunck44707fd2008-02-14 19:38:33 -08001453 audit_log_d_path(ab, "cwd=", &context->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001454 audit_log_end(ab);
1455 }
1456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -04001458 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +00001459
Al Viroe4951492006-03-29 20:17:10 -05001460 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if (!ab)
1462 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001465
Amy Griffis9c937dc2006-06-08 23:19:31 -04001466 if (n->name) {
1467 switch(n->name_len) {
1468 case AUDIT_NAME_FULL:
1469 /* log the full path */
1470 audit_log_format(ab, " name=");
1471 audit_log_untrustedstring(ab, n->name);
1472 break;
1473 case 0:
1474 /* name was specified as a relative path and the
1475 * directory component is the cwd */
Jan Blunck44707fd2008-02-14 19:38:33 -08001476 audit_log_d_path(ab, " name=", &context->pwd);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001477 break;
1478 default:
1479 /* log the name's directory component */
1480 audit_log_format(ab, " name=");
Eric Parisb556f8a2008-04-18 10:12:59 -04001481 audit_log_n_untrustedstring(ab, n->name,
1482 n->name_len);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001483 }
1484 } else
1485 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +00001486
Amy Griffis9c937dc2006-06-08 23:19:31 -04001487 if (n->ino != (unsigned long)-1) {
1488 audit_log_format(ab, " inode=%lu"
1489 " dev=%02x:%02x mode=%#o"
1490 " ouid=%u ogid=%u rdev=%02x:%02x",
1491 n->ino,
1492 MAJOR(n->dev),
1493 MINOR(n->dev),
1494 n->mode,
1495 n->uid,
1496 n->gid,
1497 MAJOR(n->rdev),
1498 MINOR(n->rdev));
1499 }
1500 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001501 char *ctx = NULL;
1502 u32 len;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001503 if (security_secid_to_secctx(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001504 n->osid, &ctx, &len)) {
1505 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001506 call_panic = 2;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001507 } else {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001508 audit_log_format(ab, " obj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001509 security_release_secctx(ctx, len);
1510 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001511 }
1512
Eric Paris851f7ff2008-11-11 21:48:14 +11001513 audit_log_fcaps(ab, n);
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 audit_log_end(ab);
1516 }
Eric Parisc0641f22008-01-07 13:49:15 -05001517
1518 /* Send end of event record to help user space know we are finished */
1519 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1520 if (ab)
1521 audit_log_end(ab);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001522 if (call_panic)
1523 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524}
1525
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001526/**
1527 * audit_free - free a per-task audit context
1528 * @tsk: task whose audit context block to free
1529 *
Al Virofa84cb92006-03-29 20:30:19 -05001530 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532void audit_free(struct task_struct *tsk)
1533{
1534 struct audit_context *context;
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (likely(!context))
1538 return;
1539
1540 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001541 * function (e.g., exit_group), then free context block.
1542 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001543 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001544 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001545 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001546 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 audit_free_context(context);
1549}
1550
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001551/**
1552 * audit_syscall_entry - fill in an audit record at syscall entry
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001553 * @arch: architecture type
1554 * @major: major syscall type (function)
1555 * @a1: additional syscall register 1
1556 * @a2: additional syscall register 2
1557 * @a3: additional syscall register 3
1558 * @a4: additional syscall register 4
1559 *
1560 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 * audit context was created when the task was created and the state or
1562 * filters demand the audit context be built. If the state from the
1563 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1564 * then the record will be written at syscall exit time (otherwise, it
1565 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001566 * be written).
1567 */
Al Viro5411be52006-03-29 20:23:36 -05001568void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 unsigned long a1, unsigned long a2,
1570 unsigned long a3, unsigned long a4)
1571{
Al Viro5411be52006-03-29 20:23:36 -05001572 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 struct audit_context *context = tsk->audit_context;
1574 enum audit_state state;
1575
Roland McGrath86a1c342008-06-23 15:37:04 -07001576 if (unlikely(!context))
1577 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001579 /*
1580 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 * calls in kernel_thread via the entry.S interface, instead of
1582 * with direct calls. (If you are porting to a new
1583 * architecture, hitting this condition can indicate that you
1584 * got the _exit/_leave calls backward in entry.S.)
1585 *
1586 * i386 no
1587 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001588 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 *
1590 * This also happens with vm86 emulation in a non-nested manner
1591 * (entries without exits), so this case must be caught.
1592 */
1593 if (context->in_syscall) {
1594 struct audit_context *newctx;
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596#if AUDIT_DEBUG
1597 printk(KERN_ERR
1598 "audit(:%d) pid=%d in syscall=%d;"
1599 " entering syscall=%d\n",
1600 context->serial, tsk->pid, context->major, major);
1601#endif
1602 newctx = audit_alloc_context(context->state);
1603 if (newctx) {
1604 newctx->previous = context;
1605 context = newctx;
1606 tsk->audit_context = newctx;
1607 } else {
1608 /* If we can't alloc a new context, the best we
1609 * can do is to leak memory (any pending putname
1610 * will be lost). The only other alternative is
1611 * to abandon auditing. */
1612 audit_zero_context(context, context->state);
1613 }
1614 }
1615 BUG_ON(context->in_syscall || context->name_count);
1616
1617 if (!audit_enabled)
1618 return;
1619
2fd6f582005-04-29 16:08:28 +01001620 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 context->major = major;
1622 context->argv[0] = a1;
1623 context->argv[1] = a2;
1624 context->argv[2] = a3;
1625 context->argv[3] = a4;
1626
1627 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001628 context->dummy = !audit_n_rules;
1629 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001630 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (likely(state == AUDIT_DISABLED))
1632 return;
1633
David Woodhousece625a82005-07-18 14:24:46 -04001634 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 context->ctime = CURRENT_TIME;
1636 context->in_syscall = 1;
1637 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
Alexander Viro419c58f2006-09-29 00:08:50 -04001638 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
Al Viroa64e6492008-11-12 18:37:41 -05001641void audit_finish_fork(struct task_struct *child)
1642{
1643 struct audit_context *ctx = current->audit_context;
1644 struct audit_context *p = child->audit_context;
1645 if (!p || !ctx || !ctx->auditable)
1646 return;
1647 p->arch = ctx->arch;
1648 p->major = ctx->major;
1649 memcpy(p->argv, ctx->argv, sizeof(ctx->argv));
1650 p->ctime = ctx->ctime;
1651 p->dummy = ctx->dummy;
1652 p->auditable = ctx->auditable;
1653 p->in_syscall = ctx->in_syscall;
1654 p->filterkey = kstrdup(ctx->filterkey, GFP_KERNEL);
1655 p->ppid = current->pid;
1656}
1657
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001658/**
1659 * audit_syscall_exit - deallocate audit context after a system call
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001660 * @valid: success/failure flag
1661 * @return_code: syscall return value
1662 *
1663 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1665 * filtering, or because some other part of the kernel write an audit
1666 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001667 * free the names stored from getname().
1668 */
Al Viro5411be52006-03-29 20:23:36 -05001669void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
Al Viro5411be52006-03-29 20:23:36 -05001671 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 struct audit_context *context;
1673
2fd6f582005-04-29 16:08:28 +01001674 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001677 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
David Woodhousef7056d62005-06-20 16:07:33 +01001679 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001680 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 context->in_syscall = 0;
1683 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (context->previous) {
1686 struct audit_context *new_context = context->previous;
1687 context->previous = NULL;
1688 audit_free_context(context);
1689 tsk->audit_context = new_context;
1690 } else {
1691 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001692 unroll_tree_refs(context, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001694 context->aux = NULL;
1695 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001696 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001697 context->target_sid = 0;
Al Viro4f6b4342008-12-09 19:50:34 -05001698 context->sockaddr_len = 0;
Al Virof3298dc2008-12-10 03:16:51 -05001699 context->type = 0;
Amy Griffis5adc8a62006-06-14 18:45:21 -04001700 kfree(context->filterkey);
1701 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 tsk->audit_context = context;
1703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Al Viro74c3cbe2007-07-22 08:04:18 -04001706static inline void handle_one(const struct inode *inode)
1707{
1708#ifdef CONFIG_AUDIT_TREE
1709 struct audit_context *context;
1710 struct audit_tree_refs *p;
1711 struct audit_chunk *chunk;
1712 int count;
1713 if (likely(list_empty(&inode->inotify_watches)))
1714 return;
1715 context = current->audit_context;
1716 p = context->trees;
1717 count = context->tree_count;
1718 rcu_read_lock();
1719 chunk = audit_tree_lookup(inode);
1720 rcu_read_unlock();
1721 if (!chunk)
1722 return;
1723 if (likely(put_tree_ref(context, chunk)))
1724 return;
1725 if (unlikely(!grow_tree_refs(context))) {
Eric Paris436c4052008-04-18 10:01:04 -04001726 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001727 audit_set_auditable(context);
1728 audit_put_chunk(chunk);
1729 unroll_tree_refs(context, p, count);
1730 return;
1731 }
1732 put_tree_ref(context, chunk);
1733#endif
1734}
1735
1736static void handle_path(const struct dentry *dentry)
1737{
1738#ifdef CONFIG_AUDIT_TREE
1739 struct audit_context *context;
1740 struct audit_tree_refs *p;
1741 const struct dentry *d, *parent;
1742 struct audit_chunk *drop;
1743 unsigned long seq;
1744 int count;
1745
1746 context = current->audit_context;
1747 p = context->trees;
1748 count = context->tree_count;
1749retry:
1750 drop = NULL;
1751 d = dentry;
1752 rcu_read_lock();
1753 seq = read_seqbegin(&rename_lock);
1754 for(;;) {
1755 struct inode *inode = d->d_inode;
1756 if (inode && unlikely(!list_empty(&inode->inotify_watches))) {
1757 struct audit_chunk *chunk;
1758 chunk = audit_tree_lookup(inode);
1759 if (chunk) {
1760 if (unlikely(!put_tree_ref(context, chunk))) {
1761 drop = chunk;
1762 break;
1763 }
1764 }
1765 }
1766 parent = d->d_parent;
1767 if (parent == d)
1768 break;
1769 d = parent;
1770 }
1771 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1772 rcu_read_unlock();
1773 if (!drop) {
1774 /* just a race with rename */
1775 unroll_tree_refs(context, p, count);
1776 goto retry;
1777 }
1778 audit_put_chunk(drop);
1779 if (grow_tree_refs(context)) {
1780 /* OK, got more space */
1781 unroll_tree_refs(context, p, count);
1782 goto retry;
1783 }
1784 /* too bad */
1785 printk(KERN_WARNING
Eric Paris436c4052008-04-18 10:01:04 -04001786 "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001787 unroll_tree_refs(context, p, count);
1788 audit_set_auditable(context);
1789 return;
1790 }
1791 rcu_read_unlock();
1792#endif
1793}
1794
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001795/**
1796 * audit_getname - add a name to the list
1797 * @name: name to add
1798 *
1799 * Add a name to the list of audit names for this context.
1800 * Called from fs/namei.c:getname().
1801 */
Al Virod8945bb52006-05-18 16:01:30 -04001802void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 struct audit_context *context = current->audit_context;
1805
Al Virod8945bb52006-05-18 16:01:30 -04001806 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return;
1808
1809 if (!context->in_syscall) {
1810#if AUDIT_DEBUG == 2
1811 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1812 __FILE__, __LINE__, context->serial, name);
1813 dump_stack();
1814#endif
1815 return;
1816 }
1817 BUG_ON(context->name_count >= AUDIT_NAMES);
1818 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001819 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1820 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 context->names[context->name_count].ino = (unsigned long)-1;
Amy Griffise41e8bd2007-02-13 14:14:09 -05001822 context->names[context->name_count].osid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ++context->name_count;
Jan Blunck44707fd2008-02-14 19:38:33 -08001824 if (!context->pwd.dentry) {
David Woodhouse8f37d472005-05-27 12:17:28 +01001825 read_lock(&current->fs->lock);
Jan Blunck44707fd2008-02-14 19:38:33 -08001826 context->pwd = current->fs->pwd;
1827 path_get(&current->fs->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001828 read_unlock(&current->fs->lock);
1829 }
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001833/* audit_putname - intercept a putname request
1834 * @name: name to intercept and delay for putname
1835 *
1836 * If we have stored the name from getname in the audit context,
1837 * then we delay the putname until syscall exit.
1838 * Called from include/linux/fs.h:putname().
1839 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840void audit_putname(const char *name)
1841{
1842 struct audit_context *context = current->audit_context;
1843
1844 BUG_ON(!context);
1845 if (!context->in_syscall) {
1846#if AUDIT_DEBUG == 2
1847 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1848 __FILE__, __LINE__, context->serial, name);
1849 if (context->name_count) {
1850 int i;
1851 for (i = 0; i < context->name_count; i++)
1852 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1853 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001854 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856#endif
1857 __putname(name);
1858 }
1859#if AUDIT_DEBUG
1860 else {
1861 ++context->put_count;
1862 if (context->put_count > context->name_count) {
1863 printk(KERN_ERR "%s:%d(:%d): major=%d"
1864 " in_syscall=%d putname(%p) name_count=%d"
1865 " put_count=%d\n",
1866 __FILE__, __LINE__,
1867 context->serial, context->major,
1868 context->in_syscall, name, context->name_count,
1869 context->put_count);
1870 dump_stack();
1871 }
1872 }
1873#endif
1874}
1875
Amy Griffis5712e882007-02-13 14:15:22 -05001876static int audit_inc_name_count(struct audit_context *context,
1877 const struct inode *inode)
1878{
1879 if (context->name_count >= AUDIT_NAMES) {
1880 if (inode)
1881 printk(KERN_DEBUG "name_count maxed, losing inode data: "
Eric Paris436c4052008-04-18 10:01:04 -04001882 "dev=%02x:%02x, inode=%lu\n",
Amy Griffis5712e882007-02-13 14:15:22 -05001883 MAJOR(inode->i_sb->s_dev),
1884 MINOR(inode->i_sb->s_dev),
1885 inode->i_ino);
1886
1887 else
Eric Paris436c4052008-04-18 10:01:04 -04001888 printk(KERN_DEBUG "name_count maxed, losing inode data\n");
Amy Griffis5712e882007-02-13 14:15:22 -05001889 return 1;
1890 }
1891 context->name_count++;
1892#if AUDIT_DEBUG
1893 context->ino_count++;
1894#endif
1895 return 0;
1896}
1897
Eric Paris851f7ff2008-11-11 21:48:14 +11001898
1899static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
1900{
1901 struct cpu_vfs_cap_data caps;
1902 int rc;
1903
1904 memset(&name->fcap.permitted, 0, sizeof(kernel_cap_t));
1905 memset(&name->fcap.inheritable, 0, sizeof(kernel_cap_t));
1906 name->fcap.fE = 0;
1907 name->fcap_ver = 0;
1908
1909 if (!dentry)
1910 return 0;
1911
1912 rc = get_vfs_caps_from_disk(dentry, &caps);
1913 if (rc)
1914 return rc;
1915
1916 name->fcap.permitted = caps.permitted;
1917 name->fcap.inheritable = caps.inheritable;
1918 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
1919 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
1920
1921 return 0;
1922}
1923
1924
Amy Griffis3e2efce2006-07-13 13:16:02 -04001925/* Copy inode data into an audit_names. */
Eric Paris851f7ff2008-11-11 21:48:14 +11001926static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
1927 const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001928{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001929 name->ino = inode->i_ino;
1930 name->dev = inode->i_sb->s_dev;
1931 name->mode = inode->i_mode;
1932 name->uid = inode->i_uid;
1933 name->gid = inode->i_gid;
1934 name->rdev = inode->i_rdev;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001935 security_inode_getsecid(inode, &name->osid);
Eric Paris851f7ff2008-11-11 21:48:14 +11001936 audit_copy_fcaps(name, dentry);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001937}
1938
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001939/**
1940 * audit_inode - store the inode and device from a lookup
1941 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07001942 * @dentry: dentry being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001943 *
1944 * Called from fs/namei.c:path_lookup().
1945 */
Al Viro5a190ae2007-06-07 12:19:32 -04001946void __audit_inode(const char *name, const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 int idx;
1949 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04001950 const struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 if (!context->in_syscall)
1953 return;
1954 if (context->name_count
1955 && context->names[context->name_count-1].name
1956 && context->names[context->name_count-1].name == name)
1957 idx = context->name_count - 1;
1958 else if (context->name_count > 1
1959 && context->names[context->name_count-2].name
1960 && context->names[context->name_count-2].name == name)
1961 idx = context->name_count - 2;
1962 else {
1963 /* FIXME: how much do we care about inodes that have no
1964 * associated name? */
Amy Griffis5712e882007-02-13 14:15:22 -05001965 if (audit_inc_name_count(context, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return;
Amy Griffis5712e882007-02-13 14:15:22 -05001967 idx = context->name_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 context->names[idx].name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Al Viro74c3cbe2007-07-22 08:04:18 -04001970 handle_path(dentry);
Eric Paris851f7ff2008-11-11 21:48:14 +11001971 audit_copy_inode(&context->names[idx], dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
Amy Griffis73241cc2005-11-03 16:00:25 +00001974/**
1975 * audit_inode_child - collect inode info for created/removed objects
1976 * @dname: inode's dentry name
Randy Dunlap481968f2007-10-21 20:59:53 -07001977 * @dentry: dentry being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001978 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001979 *
1980 * For syscalls that create or remove filesystem objects, audit_inode
1981 * can only collect information for the filesystem object's parent.
1982 * This call updates the audit context with the child's information.
1983 * Syscalls that create a new filesystem object must be hooked after
1984 * the object is created. Syscalls that remove a filesystem object
1985 * must be hooked prior, in order to capture the target inode during
1986 * unsuccessful attempts.
1987 */
Al Viro5a190ae2007-06-07 12:19:32 -04001988void __audit_inode_child(const char *dname, const struct dentry *dentry,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001989 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001990{
1991 int idx;
1992 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05001993 const char *found_parent = NULL, *found_child = NULL;
Al Viro5a190ae2007-06-07 12:19:32 -04001994 const struct inode *inode = dentry->d_inode;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001995 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00001996
1997 if (!context->in_syscall)
1998 return;
1999
Al Viro74c3cbe2007-07-22 08:04:18 -04002000 if (inode)
2001 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00002002 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04002003 if (!dname)
Amy Griffis5712e882007-02-13 14:15:22 -05002004 goto add_names;
Amy Griffis73241cc2005-11-03 16:00:25 +00002005
Amy Griffis5712e882007-02-13 14:15:22 -05002006 /* parent is more likely, look for it first */
2007 for (idx = 0; idx < context->name_count; idx++) {
2008 struct audit_names *n = &context->names[idx];
Amy Griffis73241cc2005-11-03 16:00:25 +00002009
Amy Griffis5712e882007-02-13 14:15:22 -05002010 if (!n->name)
2011 continue;
2012
2013 if (n->ino == parent->i_ino &&
2014 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2015 n->name_len = dirlen; /* update parent data in place */
2016 found_parent = n->name;
2017 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04002018 }
Steve Grubbac9910c2006-09-28 14:31:32 -04002019 }
Amy Griffis73241cc2005-11-03 16:00:25 +00002020
Amy Griffis5712e882007-02-13 14:15:22 -05002021 /* no matching parent, look for matching child */
2022 for (idx = 0; idx < context->name_count; idx++) {
2023 struct audit_names *n = &context->names[idx];
Amy Griffis73d3ec52006-07-13 13:16:39 -04002024
Amy Griffis5712e882007-02-13 14:15:22 -05002025 if (!n->name)
2026 continue;
2027
2028 /* strcmp() is the more likely scenario */
2029 if (!strcmp(dname, n->name) ||
2030 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2031 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002032 audit_copy_inode(n, NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002033 else
2034 n->ino = (unsigned long)-1;
2035 found_child = n->name;
2036 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04002037 }
Amy Griffis5712e882007-02-13 14:15:22 -05002038 }
2039
2040add_names:
2041 if (!found_parent) {
2042 if (audit_inc_name_count(context, parent))
2043 return;
2044 idx = context->name_count - 1;
2045 context->names[idx].name = NULL;
Eric Paris851f7ff2008-11-11 21:48:14 +11002046 audit_copy_inode(&context->names[idx], NULL, parent);
Amy Griffis73d3ec52006-07-13 13:16:39 -04002047 }
Amy Griffis5712e882007-02-13 14:15:22 -05002048
2049 if (!found_child) {
2050 if (audit_inc_name_count(context, inode))
2051 return;
2052 idx = context->name_count - 1;
2053
2054 /* Re-use the name belonging to the slot for a matching parent
2055 * directory. All names for this context are relinquished in
2056 * audit_free_names() */
2057 if (found_parent) {
2058 context->names[idx].name = found_parent;
2059 context->names[idx].name_len = AUDIT_NAME_FULL;
2060 /* don't call __putname() */
2061 context->names[idx].name_put = 0;
2062 } else {
2063 context->names[idx].name = NULL;
2064 }
2065
2066 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002067 audit_copy_inode(&context->names[idx], NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002068 else
2069 context->names[idx].ino = (unsigned long)-1;
2070 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04002071}
Trond Myklebust50e437d2007-06-07 22:44:34 -04002072EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04002073
2074/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002075 * auditsc_get_stamp - get local copies of audit_context values
2076 * @ctx: audit_context for the task
2077 * @t: timespec to store time recorded in the audit_context
2078 * @serial: serial value that is recorded in the audit_context
2079 *
2080 * Also sets the context as auditable.
2081 */
Al Viro48887e62008-12-06 01:05:50 -05002082int auditsc_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01002083 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Al Viro48887e62008-12-06 01:05:50 -05002085 if (!ctx->in_syscall)
2086 return 0;
David Woodhousece625a82005-07-18 14:24:46 -04002087 if (!ctx->serial)
2088 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01002089 t->tv_sec = ctx->ctime.tv_sec;
2090 t->tv_nsec = ctx->ctime.tv_nsec;
2091 *serial = ctx->serial;
2092 ctx->auditable = 1;
Al Viro48887e62008-12-06 01:05:50 -05002093 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Eric Paris4746ec52008-01-08 10:06:53 -05002096/* global counter which is incremented every time something logs in */
2097static atomic_t session_id = ATOMIC_INIT(0);
2098
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002099/**
2100 * audit_set_loginuid - set a task's audit_context loginuid
2101 * @task: task whose audit context is being modified
2102 * @loginuid: loginuid value
2103 *
2104 * Returns 0.
2105 *
2106 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2107 */
Steve Grubb456be6c2005-04-29 17:30:07 +01002108int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Eric Paris4746ec52008-01-08 10:06:53 -05002110 unsigned int sessionid = atomic_inc_return(&session_id);
Steve Grubb41757102006-06-12 07:48:28 -04002111 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01002112
Al Virobfef93a2008-01-10 04:53:18 -05002113 if (context && context->in_syscall) {
2114 struct audit_buffer *ab;
Steve Grubb41757102006-06-12 07:48:28 -04002115
Al Virobfef93a2008-01-10 04:53:18 -05002116 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2117 if (ab) {
2118 audit_log_format(ab, "login pid=%d uid=%u "
Eric Paris4746ec52008-01-08 10:06:53 -05002119 "old auid=%u new auid=%u"
2120 " old ses=%u new ses=%u",
David Howellsc69e8d92008-11-14 10:39:19 +11002121 task->pid, task_uid(task),
Eric Paris4746ec52008-01-08 10:06:53 -05002122 task->loginuid, loginuid,
2123 task->sessionid, sessionid);
Al Virobfef93a2008-01-10 04:53:18 -05002124 audit_log_end(ab);
Steve Grubbc0404992005-05-13 18:17:42 +01002125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Eric Paris4746ec52008-01-08 10:06:53 -05002127 task->sessionid = sessionid;
Al Virobfef93a2008-01-10 04:53:18 -05002128 task->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return 0;
2130}
2131
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002132/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05002133 * __audit_mq_open - record audit data for a POSIX MQ open
2134 * @oflag: open flag
2135 * @mode: mode bits
2136 * @u_attr: queue attributes
2137 *
2138 * Returns 0 for success or NULL context or < 0 on error.
2139 */
2140int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
2141{
2142 struct audit_aux_data_mq_open *ax;
2143 struct audit_context *context = current->audit_context;
2144
2145 if (!audit_enabled)
2146 return 0;
2147
2148 if (likely(!context))
2149 return 0;
2150
2151 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2152 if (!ax)
2153 return -ENOMEM;
2154
2155 if (u_attr != NULL) {
2156 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
2157 kfree(ax);
2158 return -EFAULT;
2159 }
2160 } else
2161 memset(&ax->attr, 0, sizeof(ax->attr));
2162
2163 ax->oflag = oflag;
2164 ax->mode = mode;
2165
2166 ax->d.type = AUDIT_MQ_OPEN;
2167 ax->d.next = context->aux;
2168 context->aux = (void *)ax;
2169 return 0;
2170}
2171
2172/**
Al Viroc32c8af2008-12-14 03:46:48 -05002173 * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
George C. Wilson20ca73b2006-05-24 16:09:55 -05002174 * @mqdes: MQ descriptor
2175 * @msg_len: Message length
2176 * @msg_prio: Message priority
Al Viroc32c8af2008-12-14 03:46:48 -05002177 * @abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002178 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002179 */
Al Viroc32c8af2008-12-14 03:46:48 -05002180void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2181 const struct timespec *abs_timeout)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002182{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002183 struct audit_context *context = current->audit_context;
Al Viroc32c8af2008-12-14 03:46:48 -05002184 struct timespec *p = &context->mq_sendrecv.abs_timeout;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002185
Al Viroc32c8af2008-12-14 03:46:48 -05002186 if (abs_timeout)
2187 memcpy(p, abs_timeout, sizeof(struct timespec));
2188 else
2189 memset(p, 0, sizeof(struct timespec));
George C. Wilson20ca73b2006-05-24 16:09:55 -05002190
Al Viroc32c8af2008-12-14 03:46:48 -05002191 context->mq_sendrecv.mqdes = mqdes;
2192 context->mq_sendrecv.msg_len = msg_len;
2193 context->mq_sendrecv.msg_prio = msg_prio;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002194
Al Viroc32c8af2008-12-14 03:46:48 -05002195 context->type = AUDIT_MQ_SENDRECV;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002196}
2197
2198/**
2199 * __audit_mq_notify - record audit data for a POSIX MQ notify
2200 * @mqdes: MQ descriptor
2201 * @u_notification: Notification event
2202 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002203 */
2204
Al Viro20114f72008-12-10 07:16:12 -05002205void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002206{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002207 struct audit_context *context = current->audit_context;
2208
Al Viro20114f72008-12-10 07:16:12 -05002209 if (notification)
2210 context->mq_notify.sigev_signo = notification->sigev_signo;
2211 else
2212 context->mq_notify.sigev_signo = 0;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002213
Al Viro20114f72008-12-10 07:16:12 -05002214 context->mq_notify.mqdes = mqdes;
2215 context->type = AUDIT_MQ_NOTIFY;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002216}
2217
2218/**
2219 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2220 * @mqdes: MQ descriptor
2221 * @mqstat: MQ flags
2222 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002223 */
Al Viro73929062008-12-10 06:58:59 -05002224void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002225{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002226 struct audit_context *context = current->audit_context;
Al Viro73929062008-12-10 06:58:59 -05002227 context->mq_getsetattr.mqdes = mqdes;
2228 context->mq_getsetattr.mqstat = *mqstat;
2229 context->type = AUDIT_MQ_GETSETATTR;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002230}
2231
2232/**
Steve Grubb073115d2006-04-02 17:07:33 -04002233 * audit_ipc_obj - record audit data for ipc object
2234 * @ipcp: ipc permissions
2235 *
Steve Grubb073115d2006-04-02 17:07:33 -04002236 */
Al Viroa33e6752008-12-10 03:40:06 -05002237void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002238{
Steve Grubb073115d2006-04-02 17:07:33 -04002239 struct audit_context *context = current->audit_context;
Al Viroa33e6752008-12-10 03:40:06 -05002240 context->ipc.uid = ipcp->uid;
2241 context->ipc.gid = ipcp->gid;
2242 context->ipc.mode = ipcp->mode;
Al Viroe816f372008-12-10 03:47:15 -05002243 context->ipc.has_perm = 0;
Al Viroa33e6752008-12-10 03:40:06 -05002244 security_ipc_getsecid(ipcp, &context->ipc.osid);
2245 context->type = AUDIT_IPC;
Steve Grubb073115d2006-04-02 17:07:33 -04002246}
2247
2248/**
2249 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002250 * @qbytes: msgq bytes
2251 * @uid: msgq user id
2252 * @gid: msgq group id
2253 * @mode: msgq mode (permissions)
2254 *
Al Viroe816f372008-12-10 03:47:15 -05002255 * Called only after audit_ipc_obj().
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002256 */
Al Viroe816f372008-12-10 03:47:15 -05002257void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct audit_context *context = current->audit_context;
2260
Al Viroe816f372008-12-10 03:47:15 -05002261 context->ipc.qbytes = qbytes;
2262 context->ipc.perm_uid = uid;
2263 context->ipc.perm_gid = gid;
2264 context->ipc.perm_mode = mode;
2265 context->ipc.has_perm = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002267
Al Viro473ae302006-04-26 14:04:08 -04002268int audit_bprm(struct linux_binprm *bprm)
2269{
2270 struct audit_aux_data_execve *ax;
2271 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002272
Al Viro5ac3a9c2006-07-16 06:38:45 -04002273 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04002274 return 0;
2275
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002276 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002277 if (!ax)
2278 return -ENOMEM;
2279
2280 ax->argc = bprm->argc;
2281 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002282 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002283 ax->d.type = AUDIT_EXECVE;
2284 ax->d.next = context->aux;
2285 context->aux = (void *)ax;
2286 return 0;
2287}
2288
2289
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002290/**
2291 * audit_socketcall - record audit data for sys_socketcall
2292 * @nargs: number of args
2293 * @args: args array
2294 *
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002295 */
Al Virof3298dc2008-12-10 03:16:51 -05002296void audit_socketcall(int nargs, unsigned long *args)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002297{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002298 struct audit_context *context = current->audit_context;
2299
Al Viro5ac3a9c2006-07-16 06:38:45 -04002300 if (likely(!context || context->dummy))
Al Virof3298dc2008-12-10 03:16:51 -05002301 return;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002302
Al Virof3298dc2008-12-10 03:16:51 -05002303 context->type = AUDIT_SOCKETCALL;
2304 context->socketcall.nargs = nargs;
2305 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002306}
2307
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002308/**
Al Virodb349502007-02-07 01:48:00 -05002309 * __audit_fd_pair - record audit data for pipe and socketpair
2310 * @fd1: the first file descriptor
2311 * @fd2: the second file descriptor
2312 *
2313 * Returns 0 for success or NULL context or < 0 on error.
2314 */
2315int __audit_fd_pair(int fd1, int fd2)
2316{
2317 struct audit_context *context = current->audit_context;
2318 struct audit_aux_data_fd_pair *ax;
2319
2320 if (likely(!context)) {
2321 return 0;
2322 }
2323
2324 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2325 if (!ax) {
2326 return -ENOMEM;
2327 }
2328
2329 ax->fd[0] = fd1;
2330 ax->fd[1] = fd2;
2331
2332 ax->d.type = AUDIT_FD_PAIR;
2333 ax->d.next = context->aux;
2334 context->aux = (void *)ax;
2335 return 0;
2336}
2337
2338/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002339 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2340 * @len: data length in user space
2341 * @a: data address in kernel space
2342 *
2343 * Returns 0 for success or NULL context or < 0 on error.
2344 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002345int audit_sockaddr(int len, void *a)
2346{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002347 struct audit_context *context = current->audit_context;
2348
Al Viro5ac3a9c2006-07-16 06:38:45 -04002349 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002350 return 0;
2351
Al Viro4f6b4342008-12-09 19:50:34 -05002352 if (!context->sockaddr) {
2353 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2354 if (!p)
2355 return -ENOMEM;
2356 context->sockaddr = p;
2357 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002358
Al Viro4f6b4342008-12-09 19:50:34 -05002359 context->sockaddr_len = len;
2360 memcpy(context->sockaddr, a, len);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002361 return 0;
2362}
2363
Al Viroa5cb0132007-03-20 13:58:35 -04002364void __audit_ptrace(struct task_struct *t)
2365{
2366 struct audit_context *context = current->audit_context;
2367
2368 context->target_pid = t->pid;
Eric Parisc2a77802008-01-07 13:40:17 -05002369 context->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002370 context->target_uid = task_uid(t);
Eric Paris4746ec52008-01-08 10:06:53 -05002371 context->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002372 security_task_getsecid(t, &context->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002373 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
Al Viroa5cb0132007-03-20 13:58:35 -04002374}
2375
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002376/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002377 * audit_signal_info - record signal info for shutting down audit subsystem
2378 * @sig: signal value
2379 * @t: task being signaled
2380 *
2381 * If the audit subsystem is being terminated, record the task (pid)
2382 * and uid that is doing that.
2383 */
Amy Griffise54dc242007-03-29 18:01:04 -04002384int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002385{
Amy Griffise54dc242007-03-29 18:01:04 -04002386 struct audit_aux_data_pids *axp;
2387 struct task_struct *tsk = current;
2388 struct audit_context *ctx = tsk->audit_context;
David Howellsc69e8d92008-11-14 10:39:19 +11002389 uid_t uid = current_uid(), t_uid = task_uid(t);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002390
Al Viro175fc482007-08-08 00:01:46 +01002391 if (audit_pid && t->tgid == audit_pid) {
Eric Parisee1d3152008-07-07 10:49:45 -04002392 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
Al Viro175fc482007-08-08 00:01:46 +01002393 audit_sig_pid = tsk->pid;
Al Virobfef93a2008-01-10 04:53:18 -05002394 if (tsk->loginuid != -1)
2395 audit_sig_uid = tsk->loginuid;
Al Viro175fc482007-08-08 00:01:46 +01002396 else
David Howellsc69e8d92008-11-14 10:39:19 +11002397 audit_sig_uid = uid;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002398 security_task_getsecid(tsk, &audit_sig_sid);
Al Viro175fc482007-08-08 00:01:46 +01002399 }
2400 if (!audit_signals || audit_dummy_context())
2401 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002402 }
Amy Griffise54dc242007-03-29 18:01:04 -04002403
Amy Griffise54dc242007-03-29 18:01:04 -04002404 /* optimize the common case by putting first signal recipient directly
2405 * in audit_context */
2406 if (!ctx->target_pid) {
2407 ctx->target_pid = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002408 ctx->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002409 ctx->target_uid = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002410 ctx->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002411 security_task_getsecid(t, &ctx->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002412 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002413 return 0;
2414 }
2415
2416 axp = (void *)ctx->aux_pids;
2417 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2418 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2419 if (!axp)
2420 return -ENOMEM;
2421
2422 axp->d.type = AUDIT_OBJ_PID;
2423 axp->d.next = ctx->aux_pids;
2424 ctx->aux_pids = (void *)axp;
2425 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002426 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002427
2428 axp->target_pid[axp->pid_count] = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002429 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002430 axp->target_uid[axp->pid_count] = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002431 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002432 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
Eric Parisc2a77802008-01-07 13:40:17 -05002433 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002434 axp->pid_count++;
2435
2436 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002437}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002438
2439/**
Eric Paris3fc689e2008-11-11 21:48:18 +11002440 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
David Howellsd84f4f92008-11-14 10:39:23 +11002441 * @bprm: pointer to the bprm being processed
2442 * @new: the proposed new credentials
2443 * @old: the old credentials
Eric Paris3fc689e2008-11-11 21:48:18 +11002444 *
2445 * Simply check if the proc already has the caps given by the file and if not
2446 * store the priv escalation info for later auditing at the end of the syscall
2447 *
Eric Paris3fc689e2008-11-11 21:48:18 +11002448 * -Eric
2449 */
David Howellsd84f4f92008-11-14 10:39:23 +11002450int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2451 const struct cred *new, const struct cred *old)
Eric Paris3fc689e2008-11-11 21:48:18 +11002452{
2453 struct audit_aux_data_bprm_fcaps *ax;
2454 struct audit_context *context = current->audit_context;
2455 struct cpu_vfs_cap_data vcaps;
2456 struct dentry *dentry;
2457
2458 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2459 if (!ax)
David Howellsd84f4f92008-11-14 10:39:23 +11002460 return -ENOMEM;
Eric Paris3fc689e2008-11-11 21:48:18 +11002461
2462 ax->d.type = AUDIT_BPRM_FCAPS;
2463 ax->d.next = context->aux;
2464 context->aux = (void *)ax;
2465
2466 dentry = dget(bprm->file->f_dentry);
2467 get_vfs_caps_from_disk(dentry, &vcaps);
2468 dput(dentry);
2469
2470 ax->fcap.permitted = vcaps.permitted;
2471 ax->fcap.inheritable = vcaps.inheritable;
2472 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2473 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2474
David Howellsd84f4f92008-11-14 10:39:23 +11002475 ax->old_pcap.permitted = old->cap_permitted;
2476 ax->old_pcap.inheritable = old->cap_inheritable;
2477 ax->old_pcap.effective = old->cap_effective;
Eric Paris3fc689e2008-11-11 21:48:18 +11002478
David Howellsd84f4f92008-11-14 10:39:23 +11002479 ax->new_pcap.permitted = new->cap_permitted;
2480 ax->new_pcap.inheritable = new->cap_inheritable;
2481 ax->new_pcap.effective = new->cap_effective;
2482 return 0;
Eric Paris3fc689e2008-11-11 21:48:18 +11002483}
2484
2485/**
Eric Parise68b75a02008-11-11 21:48:22 +11002486 * __audit_log_capset - store information about the arguments to the capset syscall
David Howellsd84f4f92008-11-14 10:39:23 +11002487 * @pid: target pid of the capset call
2488 * @new: the new credentials
2489 * @old: the old (current) credentials
Eric Parise68b75a02008-11-11 21:48:22 +11002490 *
2491 * Record the aguments userspace sent to sys_capset for later printing by the
2492 * audit system if applicable
2493 */
David Howellsd84f4f92008-11-14 10:39:23 +11002494int __audit_log_capset(pid_t pid,
2495 const struct cred *new, const struct cred *old)
Eric Parise68b75a02008-11-11 21:48:22 +11002496{
2497 struct audit_aux_data_capset *ax;
2498 struct audit_context *context = current->audit_context;
2499
2500 if (likely(!audit_enabled || !context || context->dummy))
2501 return 0;
2502
2503 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2504 if (!ax)
2505 return -ENOMEM;
2506
2507 ax->d.type = AUDIT_CAPSET;
2508 ax->d.next = context->aux;
2509 context->aux = (void *)ax;
2510
2511 ax->pid = pid;
David Howellsd84f4f92008-11-14 10:39:23 +11002512 ax->cap.effective = new->cap_effective;
2513 ax->cap.inheritable = new->cap_effective;
2514 ax->cap.permitted = new->cap_permitted;
Eric Parise68b75a02008-11-11 21:48:22 +11002515
2516 return 0;
2517}
2518
2519/**
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002520 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002521 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002522 *
2523 * If a process ends with a core dump, something fishy is going on and we
2524 * should record the event for investigation.
2525 */
2526void audit_core_dumps(long signr)
2527{
2528 struct audit_buffer *ab;
2529 u32 sid;
David Howells76aac0e2008-11-14 10:39:12 +11002530 uid_t auid = audit_get_loginuid(current), uid;
2531 gid_t gid;
Eric Paris4746ec52008-01-08 10:06:53 -05002532 unsigned int sessionid = audit_get_sessionid(current);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002533
2534 if (!audit_enabled)
2535 return;
2536
2537 if (signr == SIGQUIT) /* don't care for those */
2538 return;
2539
2540 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
David Howells76aac0e2008-11-14 10:39:12 +11002541 current_uid_gid(&uid, &gid);
Eric Paris4746ec52008-01-08 10:06:53 -05002542 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
David Howells76aac0e2008-11-14 10:39:12 +11002543 auid, uid, gid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002544 security_task_getsecid(current, &sid);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002545 if (sid) {
2546 char *ctx = NULL;
2547 u32 len;
2548
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002549 if (security_secid_to_secctx(sid, &ctx, &len))
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002550 audit_log_format(ab, " ssid=%u", sid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002551 else {
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002552 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002553 security_release_secctx(ctx, len);
2554 }
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002555 }
2556 audit_log_format(ab, " pid=%d comm=", current->pid);
2557 audit_log_untrustedstring(ab, current->comm);
2558 audit_log_format(ab, " sig=%ld", signr);
2559 audit_log_end(ab);
2560}