blob: c50178c7e2455cbcdca92825cd034e7446ceeeac [file] [log] [blame]
85c87212005-04-29 16:23:29 +01001/* auditsc.c -- System-call auditing support
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Handles all system-call specific auditing features.
3 *
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
Amy Griffis73241cc2005-11-03 16:00:25 +00005 * Copyright 2005 Hewlett-Packard Development Company, L.P.
George C. Wilson20ca73b2006-05-24 16:09:55 -05006 * Copyright (C) 2005, 2006 IBM Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * All Rights Reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
24 *
25 * Many of the ideas implemented here are from Stephen C. Tweedie,
26 * especially the idea of avoiding a copy by using getname.
27 *
28 * The method for actual interception of syscall entry and exit (not in
29 * this file -- see entry.S) is based on a GPL'd patch written by
30 * okir@suse.de and Copyright 2003 SuSE Linux AG.
31 *
George C. Wilson20ca73b2006-05-24 16:09:55 -050032 * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>,
33 * 2006.
34 *
Dustin Kirklandb63862f2005-11-03 15:41:46 +000035 * The support of additional filter rules compares (>, <, >=, <=) was
36 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
37 *
Amy Griffis73241cc2005-11-03 16:00:25 +000038 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
39 * filesystem information.
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000040 *
41 * Subject and object context labeling support added by <danjones@us.ibm.com>
42 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
44
45#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/types.h>
Alan Cox715b49e2006-01-18 17:44:07 -080047#include <asm/atomic.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000048#include <linux/fs.h>
49#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mm.h>
51#include <linux/module.h>
Stephen Smalley01116102005-05-21 00:15:52 +010052#include <linux/mount.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010053#include <linux/socket.h>
George C. Wilson20ca73b2006-05-24 16:09:55 -050054#include <linux/mqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/audit.h>
56#include <linux/personality.h>
57#include <linux/time.h>
David Woodhouse5bb289b2005-06-24 14:14:05 +010058#include <linux/netlink.h>
David Woodhousef5561962005-07-13 22:47:07 +010059#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/unistd.h>
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000061#include <linux/security.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000062#include <linux/list.h>
Steve Grubba6c043a2006-01-01 14:07:00 -050063#include <linux/tty.h>
Al Viro473ae302006-04-26 14:04:08 -040064#include <linux/binfmts.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040065#include <linux/highmem.h>
Al Virof46038f2006-05-06 08:22:52 -040066#include <linux/syscalls.h>
Al Viro74c3cbe2007-07-22 08:04:18 -040067#include <linux/inotify.h>
Eric Paris851f7ff2008-11-11 21:48:14 +110068#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David Woodhousefe7752b2005-12-15 18:33:52 +000070#include "audit.h"
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* AUDIT_NAMES is the number of slots we reserve in the audit_context
73 * for saving names from getname(). */
74#define AUDIT_NAMES 20
75
Amy Griffis9c937dc2006-06-08 23:19:31 -040076/* Indicates that audit should log the full pathname. */
77#define AUDIT_NAME_FULL -1
78
Eric Parisde6bbd12008-01-07 14:31:58 -050079/* no execve audit message should be longer than this (userspace limits) */
80#define MAX_EXECVE_AUDIT_LEN 7500
81
Al Viro471a5c72006-07-10 08:29:24 -040082/* number of audit rules */
83int audit_n_rules;
84
Amy Griffise54dc242007-03-29 18:01:04 -040085/* determines whether we collect data for signals sent */
86int audit_signals;
87
Eric Paris851f7ff2008-11-11 21:48:14 +110088struct audit_cap_data {
89 kernel_cap_t permitted;
90 kernel_cap_t inheritable;
91 union {
92 unsigned int fE; /* effective bit of a file capability */
93 kernel_cap_t effective; /* effective set of a process */
94 };
95};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* When fs/namei.c:getname() is called, we store the pointer in name and
98 * we don't let putname() free it (instead we free all of the saved
99 * pointers at syscall exit time).
100 *
101 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
102struct audit_names {
103 const char *name;
Amy Griffis9c937dc2006-06-08 23:19:31 -0400104 int name_len; /* number of name's characters to log */
105 unsigned name_put; /* call __putname() for this name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unsigned long ino;
107 dev_t dev;
108 umode_t mode;
109 uid_t uid;
110 gid_t gid;
111 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400112 u32 osid;
Eric Paris851f7ff2008-11-11 21:48:14 +1100113 struct audit_cap_data fcap;
114 unsigned int fcap_ver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117struct audit_aux_data {
118 struct audit_aux_data *next;
119 int type;
120};
121
122#define AUDIT_AUX_IPCPERM 0
123
Amy Griffise54dc242007-03-29 18:01:04 -0400124/* Number of target pids per aux struct. */
125#define AUDIT_AUX_PIDS 16
126
George C. Wilson20ca73b2006-05-24 16:09:55 -0500127struct audit_aux_data_mq_open {
128 struct audit_aux_data d;
129 int oflag;
130 mode_t mode;
131 struct mq_attr attr;
132};
133
134struct audit_aux_data_mq_sendrecv {
135 struct audit_aux_data d;
136 mqd_t mqdes;
137 size_t msg_len;
138 unsigned int msg_prio;
139 struct timespec abs_timeout;
140};
141
142struct audit_aux_data_mq_notify {
143 struct audit_aux_data d;
144 mqd_t mqdes;
145 struct sigevent notification;
146};
147
Al Viro473ae302006-04-26 14:04:08 -0400148struct audit_aux_data_execve {
149 struct audit_aux_data d;
150 int argc;
151 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700152 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400153};
154
Al Virodb349502007-02-07 01:48:00 -0500155struct audit_aux_data_fd_pair {
156 struct audit_aux_data d;
157 int fd[2];
158};
159
Amy Griffise54dc242007-03-29 18:01:04 -0400160struct audit_aux_data_pids {
161 struct audit_aux_data d;
162 pid_t target_pid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500163 uid_t target_auid[AUDIT_AUX_PIDS];
164 uid_t target_uid[AUDIT_AUX_PIDS];
Eric Paris4746ec52008-01-08 10:06:53 -0500165 unsigned int target_sessionid[AUDIT_AUX_PIDS];
Amy Griffise54dc242007-03-29 18:01:04 -0400166 u32 target_sid[AUDIT_AUX_PIDS];
Eric Parisc2a77802008-01-07 13:40:17 -0500167 char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
Amy Griffise54dc242007-03-29 18:01:04 -0400168 int pid_count;
169};
170
Eric Paris3fc689e2008-11-11 21:48:18 +1100171struct audit_aux_data_bprm_fcaps {
172 struct audit_aux_data d;
173 struct audit_cap_data fcap;
174 unsigned int fcap_ver;
175 struct audit_cap_data old_pcap;
176 struct audit_cap_data new_pcap;
177};
178
Eric Parise68b75a02008-11-11 21:48:22 +1100179struct audit_aux_data_capset {
180 struct audit_aux_data d;
181 pid_t pid;
182 struct audit_cap_data cap;
183};
184
Al Viro74c3cbe2007-07-22 08:04:18 -0400185struct audit_tree_refs {
186 struct audit_tree_refs *next;
187 struct audit_chunk *c[31];
188};
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/* The per-task audit context. */
191struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400192 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int in_syscall; /* 1 if task is in a syscall */
194 enum audit_state state;
195 unsigned int serial; /* serial number for record */
196 struct timespec ctime; /* time of syscall entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 int major; /* syscall number */
198 unsigned long argv[4]; /* syscall arguments */
199 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100200 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int auditable; /* 1 if record should be written */
202 int name_count;
203 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400204 char * filterkey; /* key for rule that triggered record */
Jan Blunck44707fd2008-02-14 19:38:33 -0800205 struct path pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct audit_context *previous; /* For nested syscalls */
207 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400208 struct audit_aux_data *aux_pids;
Al Viro4f6b4342008-12-09 19:50:34 -0500209 struct sockaddr_storage *sockaddr;
210 size_t sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400212 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 uid_t uid, euid, suid, fsuid;
214 gid_t gid, egid, sgid, fsgid;
215 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100216 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Al Viroa5cb0132007-03-20 13:58:35 -0400218 pid_t target_pid;
Eric Parisc2a77802008-01-07 13:40:17 -0500219 uid_t target_auid;
220 uid_t target_uid;
Eric Paris4746ec52008-01-08 10:06:53 -0500221 unsigned int target_sessionid;
Al Viroa5cb0132007-03-20 13:58:35 -0400222 u32 target_sid;
Eric Parisc2a77802008-01-07 13:40:17 -0500223 char target_comm[TASK_COMM_LEN];
Al Viroa5cb0132007-03-20 13:58:35 -0400224
Al Viro74c3cbe2007-07-22 08:04:18 -0400225 struct audit_tree_refs *trees, *first_trees;
226 int tree_count;
227
Al Virof3298dc2008-12-10 03:16:51 -0500228 int type;
229 union {
230 struct {
231 int nargs;
232 long args[6];
233 } socketcall;
Al Viroa33e6752008-12-10 03:40:06 -0500234 struct {
235 uid_t uid;
236 gid_t gid;
237 mode_t mode;
238 u32 osid;
Al Viroe816f372008-12-10 03:47:15 -0500239 int has_perm;
240 uid_t perm_uid;
241 gid_t perm_gid;
242 mode_t perm_mode;
243 unsigned long qbytes;
Al Viroa33e6752008-12-10 03:40:06 -0500244 } ipc;
Al Viro73929062008-12-10 06:58:59 -0500245 struct {
246 mqd_t mqdes;
247 struct mq_attr mqstat;
248 } mq_getsetattr;
Al Virof3298dc2008-12-10 03:16:51 -0500249 };
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#if AUDIT_DEBUG
252 int put_count;
253 int ino_count;
254#endif
255};
256
Al Viro55669bf2006-08-31 19:26:40 -0400257#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
258static inline int open_arg(int flags, int mask)
259{
260 int n = ACC_MODE(flags);
261 if (flags & (O_TRUNC | O_CREAT))
262 n |= AUDIT_PERM_WRITE;
263 return n & mask;
264}
265
266static int audit_match_perm(struct audit_context *ctx, int mask)
267{
Cordeliac4bacef2008-08-18 09:45:51 -0700268 unsigned n;
zhangxiliang1a61c882008-08-02 10:56:37 +0800269 if (unlikely(!ctx))
270 return 0;
Cordeliac4bacef2008-08-18 09:45:51 -0700271 n = ctx->major;
Alan Coxdbda4c02008-10-13 10:40:53 +0100272
Al Viro55669bf2006-08-31 19:26:40 -0400273 switch (audit_classify_syscall(ctx->arch, n)) {
274 case 0: /* native */
275 if ((mask & AUDIT_PERM_WRITE) &&
276 audit_match_class(AUDIT_CLASS_WRITE, n))
277 return 1;
278 if ((mask & AUDIT_PERM_READ) &&
279 audit_match_class(AUDIT_CLASS_READ, n))
280 return 1;
281 if ((mask & AUDIT_PERM_ATTR) &&
282 audit_match_class(AUDIT_CLASS_CHATTR, n))
283 return 1;
284 return 0;
285 case 1: /* 32bit on biarch */
286 if ((mask & AUDIT_PERM_WRITE) &&
287 audit_match_class(AUDIT_CLASS_WRITE_32, n))
288 return 1;
289 if ((mask & AUDIT_PERM_READ) &&
290 audit_match_class(AUDIT_CLASS_READ_32, n))
291 return 1;
292 if ((mask & AUDIT_PERM_ATTR) &&
293 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
294 return 1;
295 return 0;
296 case 2: /* open */
297 return mask & ACC_MODE(ctx->argv[1]);
298 case 3: /* openat */
299 return mask & ACC_MODE(ctx->argv[2]);
300 case 4: /* socketcall */
301 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
302 case 5: /* execve */
303 return mask & AUDIT_PERM_EXEC;
304 default:
305 return 0;
306 }
307}
308
Al Viro8b67dca2008-04-28 04:15:49 -0400309static int audit_match_filetype(struct audit_context *ctx, int which)
310{
311 unsigned index = which & ~S_IFMT;
312 mode_t mode = which & S_IFMT;
zhangxiliang1a61c882008-08-02 10:56:37 +0800313
314 if (unlikely(!ctx))
315 return 0;
316
Al Viro8b67dca2008-04-28 04:15:49 -0400317 if (index >= ctx->name_count)
318 return 0;
319 if (ctx->names[index].ino == -1)
320 return 0;
321 if ((ctx->names[index].mode ^ mode) & S_IFMT)
322 return 0;
323 return 1;
324}
325
Al Viro74c3cbe2007-07-22 08:04:18 -0400326/*
327 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
328 * ->first_trees points to its beginning, ->trees - to the current end of data.
329 * ->tree_count is the number of free entries in array pointed to by ->trees.
330 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
331 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
332 * it's going to remain 1-element for almost any setup) until we free context itself.
333 * References in it _are_ dropped - at the same time we free/drop aux stuff.
334 */
335
336#ifdef CONFIG_AUDIT_TREE
337static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
338{
339 struct audit_tree_refs *p = ctx->trees;
340 int left = ctx->tree_count;
341 if (likely(left)) {
342 p->c[--left] = chunk;
343 ctx->tree_count = left;
344 return 1;
345 }
346 if (!p)
347 return 0;
348 p = p->next;
349 if (p) {
350 p->c[30] = chunk;
351 ctx->trees = p;
352 ctx->tree_count = 30;
353 return 1;
354 }
355 return 0;
356}
357
358static int grow_tree_refs(struct audit_context *ctx)
359{
360 struct audit_tree_refs *p = ctx->trees;
361 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
362 if (!ctx->trees) {
363 ctx->trees = p;
364 return 0;
365 }
366 if (p)
367 p->next = ctx->trees;
368 else
369 ctx->first_trees = ctx->trees;
370 ctx->tree_count = 31;
371 return 1;
372}
373#endif
374
375static void unroll_tree_refs(struct audit_context *ctx,
376 struct audit_tree_refs *p, int count)
377{
378#ifdef CONFIG_AUDIT_TREE
379 struct audit_tree_refs *q;
380 int n;
381 if (!p) {
382 /* we started with empty chain */
383 p = ctx->first_trees;
384 count = 31;
385 /* if the very first allocation has failed, nothing to do */
386 if (!p)
387 return;
388 }
389 n = count;
390 for (q = p; q != ctx->trees; q = q->next, n = 31) {
391 while (n--) {
392 audit_put_chunk(q->c[n]);
393 q->c[n] = NULL;
394 }
395 }
396 while (n-- > ctx->tree_count) {
397 audit_put_chunk(q->c[n]);
398 q->c[n] = NULL;
399 }
400 ctx->trees = p;
401 ctx->tree_count = count;
402#endif
403}
404
405static void free_tree_refs(struct audit_context *ctx)
406{
407 struct audit_tree_refs *p, *q;
408 for (p = ctx->first_trees; p; p = q) {
409 q = p->next;
410 kfree(p);
411 }
412}
413
414static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
415{
416#ifdef CONFIG_AUDIT_TREE
417 struct audit_tree_refs *p;
418 int n;
419 if (!tree)
420 return 0;
421 /* full ones */
422 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
423 for (n = 0; n < 31; n++)
424 if (audit_tree_match(p->c[n], tree))
425 return 1;
426 }
427 /* partial */
428 if (p) {
429 for (n = ctx->tree_count; n < 31; n++)
430 if (audit_tree_match(p->c[n], tree))
431 return 1;
432 }
433#endif
434 return 0;
435}
436
Amy Griffisf368c07d2006-04-07 16:55:56 -0400437/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/* Compare a task_struct with an audit_rule. Return 1 on match, 0
439 * otherwise. */
440static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500441 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400443 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 enum audit_state *state)
445{
David Howellsc69e8d92008-11-14 10:39:19 +1100446 const struct cred *cred = get_task_cred(tsk);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400447 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600448 u32 sid;
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500451 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int result = 0;
453
Amy Griffis93315ed2006-02-07 12:05:27 -0500454 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500456 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 break;
Al Viro3c662512006-05-06 08:26:27 -0400458 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400459 if (ctx) {
460 if (!ctx->ppid)
461 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400462 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400463 }
Al Viro3c662512006-05-06 08:26:27 -0400464 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 case AUDIT_UID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100466 result = audit_comparator(cred->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 break;
468 case AUDIT_EUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100469 result = audit_comparator(cred->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 break;
471 case AUDIT_SUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100472 result = audit_comparator(cred->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 break;
474 case AUDIT_FSUID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100475 result = audit_comparator(cred->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
477 case AUDIT_GID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100478 result = audit_comparator(cred->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 break;
480 case AUDIT_EGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100481 result = audit_comparator(cred->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483 case AUDIT_SGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100484 result = audit_comparator(cred->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 break;
486 case AUDIT_FSGID:
David Howellsb6dff3e2008-11-14 10:39:16 +1100487 result = audit_comparator(cred->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500490 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 break;
2fd6f582005-04-29 16:08:28 +0100492 case AUDIT_ARCH:
Daniel Walker9f8dbe92007-10-18 03:06:09 -0700493 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500494 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100495 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 case AUDIT_EXIT:
498 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500499 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 break;
501 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100502 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500503 if (f->val)
504 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100505 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500506 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 break;
509 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400510 if (name)
511 result = audit_comparator(MAJOR(name->dev),
512 f->op, f->val);
513 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500515 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 ++result;
517 break;
518 }
519 }
520 }
521 break;
522 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400523 if (name)
524 result = audit_comparator(MINOR(name->dev),
525 f->op, f->val);
526 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500528 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 ++result;
530 break;
531 }
532 }
533 }
534 break;
535 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400536 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400537 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400538 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400540 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 ++result;
542 break;
543 }
544 }
545 }
546 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400547 case AUDIT_WATCH:
548 if (name && rule->watch->ino != (unsigned long)-1)
549 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400550 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400551 break;
Al Viro74c3cbe2007-07-22 08:04:18 -0400552 case AUDIT_DIR:
553 if (ctx)
554 result = match_tree_refs(ctx, rule->tree);
555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case AUDIT_LOGINUID:
557 result = 0;
558 if (ctx)
Al Virobfef93a2008-01-10 04:53:18 -0500559 result = audit_comparator(tsk->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500561 case AUDIT_SUBJ_USER:
562 case AUDIT_SUBJ_ROLE:
563 case AUDIT_SUBJ_TYPE:
564 case AUDIT_SUBJ_SEN:
565 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600566 /* NOTE: this may return negative values indicating
567 a temporary error. We simply treat this as a
568 match for now to avoid losing information that
569 may be wanted. An error message will also be
570 logged upon error */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000571 if (f->lsm_rule) {
Steve Grubb2ad312d2006-04-11 08:50:56 -0400572 if (need_sid) {
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200573 security_task_getsecid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400574 need_sid = 0;
575 }
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200576 result = security_audit_rule_match(sid, f->type,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600577 f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000578 f->lsm_rule,
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600579 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400580 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600581 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500582 case AUDIT_OBJ_USER:
583 case AUDIT_OBJ_ROLE:
584 case AUDIT_OBJ_TYPE:
585 case AUDIT_OBJ_LEV_LOW:
586 case AUDIT_OBJ_LEV_HIGH:
587 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
588 also applies here */
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000589 if (f->lsm_rule) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500590 /* Find files that match */
591 if (name) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200592 result = security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500593 name->osid, f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000594 f->lsm_rule, ctx);
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500595 } else if (ctx) {
596 for (j = 0; j < ctx->name_count; j++) {
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +0200597 if (security_audit_rule_match(
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500598 ctx->names[j].osid,
599 f->type, f->op,
Ahmed S. Darwish04305e42008-04-19 09:59:43 +1000600 f->lsm_rule, ctx)) {
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500601 ++result;
602 break;
603 }
604 }
605 }
606 /* Find ipc objects that match */
Al Viroa33e6752008-12-10 03:40:06 -0500607 if (!ctx || ctx->type != AUDIT_IPC)
608 break;
609 if (security_audit_rule_match(ctx->ipc.osid,
610 f->type, f->op,
611 f->lsm_rule, ctx))
612 ++result;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500613 }
614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 case AUDIT_ARG0:
616 case AUDIT_ARG1:
617 case AUDIT_ARG2:
618 case AUDIT_ARG3:
619 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500620 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400622 case AUDIT_FILTERKEY:
623 /* ignore this field for filtering */
624 result = 1;
625 break;
Al Viro55669bf2006-08-31 19:26:40 -0400626 case AUDIT_PERM:
627 result = audit_match_perm(ctx, f->val);
628 break;
Al Viro8b67dca2008-04-28 04:15:49 -0400629 case AUDIT_FILETYPE:
630 result = audit_match_filetype(ctx, f->val);
631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
David Howellsc69e8d92008-11-14 10:39:19 +1100634 if (!result) {
635 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
zhangxiliang980dfb02008-08-01 19:15:47 +0800639 if (rule->filterkey && ctx)
Amy Griffis5adc8a62006-06-14 18:45:21 -0400640 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 switch (rule->action) {
642 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
644 }
David Howellsc69e8d92008-11-14 10:39:19 +1100645 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return 1;
647}
648
649/* At process creation time, we can determine if system-call auditing is
650 * completely disabled for this task. Since we only have the task
651 * structure at this point, we can only check uid and gid.
652 */
653static enum audit_state audit_filter_task(struct task_struct *tsk)
654{
655 struct audit_entry *e;
656 enum audit_state state;
657
658 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100659 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400660 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 rcu_read_unlock();
662 return state;
663 }
664 }
665 rcu_read_unlock();
666 return AUDIT_BUILD_CONTEXT;
667}
668
669/* At syscall entry and exit time, this filter is called if the
670 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100671 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700672 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 */
674static enum audit_state audit_filter_syscall(struct task_struct *tsk,
675 struct audit_context *ctx,
676 struct list_head *list)
677{
678 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100679 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
David Woodhouse351bb722005-07-14 14:40:06 +0100681 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100682 return AUDIT_DISABLED;
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100685 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000686 int word = AUDIT_WORD(ctx->major);
687 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100688
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000689 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400690 if ((e->rule.mask[word] & bit) == bit &&
691 audit_filter_rules(tsk, &e->rule, ctx, NULL,
692 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000693 rcu_read_unlock();
694 return state;
695 }
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698 rcu_read_unlock();
699 return AUDIT_BUILD_CONTEXT;
700}
701
Amy Griffisf368c07d2006-04-07 16:55:56 -0400702/* At syscall exit time, this filter is called if any audit_names[] have been
703 * collected during syscall processing. We only check rules in sublists at hash
704 * buckets applicable to the inode numbers in audit_names[].
705 * Regarding audit_state, same rules apply as for audit_filter_syscall().
706 */
707enum audit_state audit_filter_inodes(struct task_struct *tsk,
708 struct audit_context *ctx)
709{
710 int i;
711 struct audit_entry *e;
712 enum audit_state state;
713
714 if (audit_pid && tsk->tgid == audit_pid)
715 return AUDIT_DISABLED;
716
717 rcu_read_lock();
718 for (i = 0; i < ctx->name_count; i++) {
719 int word = AUDIT_WORD(ctx->major);
720 int bit = AUDIT_BIT(ctx->major);
721 struct audit_names *n = &ctx->names[i];
722 int h = audit_hash_ino((u32)n->ino);
723 struct list_head *list = &audit_inode_hash[h];
724
725 if (list_empty(list))
726 continue;
727
728 list_for_each_entry_rcu(e, list, list) {
729 if ((e->rule.mask[word] & bit) == bit &&
730 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
731 rcu_read_unlock();
732 return state;
733 }
734 }
735 }
736 rcu_read_unlock();
737 return AUDIT_BUILD_CONTEXT;
738}
739
740void audit_set_auditable(struct audit_context *ctx)
741{
742 ctx->auditable = 1;
743}
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745static inline struct audit_context *audit_get_context(struct task_struct *tsk,
746 int return_valid,
747 int return_code)
748{
749 struct audit_context *context = tsk->audit_context;
750
751 if (likely(!context))
752 return NULL;
753 context->return_valid = return_valid;
Eric Parisf701b752008-01-07 13:34:51 -0500754
755 /*
756 * we need to fix up the return code in the audit logs if the actual
757 * return codes are later going to be fixed up by the arch specific
758 * signal handlers
759 *
760 * This is actually a test for:
761 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
762 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
763 *
764 * but is faster than a bunch of ||
765 */
766 if (unlikely(return_code <= -ERESTARTSYS) &&
767 (return_code >= -ERESTART_RESTARTBLOCK) &&
768 (return_code != -ENOIOCTLCMD))
769 context->return_code = -EINTR;
770 else
771 context->return_code = return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Al Virod51374a2006-08-03 10:59:26 -0400773 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400775
David Woodhouse0f45aa12005-06-19 19:35:50 +0100776 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400777 if (state == AUDIT_RECORD_CONTEXT) {
778 context->auditable = 1;
779 goto get_context;
780 }
781
782 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (state == AUDIT_RECORD_CONTEXT)
784 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
Amy Griffisf368c07d2006-04-07 16:55:56 -0400788get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 tsk->audit_context = NULL;
791 return context;
792}
793
794static inline void audit_free_names(struct audit_context *context)
795{
796 int i;
797
798#if AUDIT_DEBUG == 2
799 if (context->auditable
800 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000801 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 " name_count=%d put_count=%d"
803 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000804 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 context->serial, context->major, context->in_syscall,
806 context->name_count, context->put_count,
807 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000808 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 printk(KERN_ERR "names[%d] = %p = %s\n", i,
810 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000811 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 dump_stack();
814 return;
815 }
816#endif
817#if AUDIT_DEBUG
818 context->put_count = 0;
819 context->ino_count = 0;
820#endif
821
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000822 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400823 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 context->name_count = 0;
Jan Blunck44707fd2008-02-14 19:38:33 -0800827 path_put(&context->pwd);
828 context->pwd.dentry = NULL;
829 context->pwd.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832static inline void audit_free_aux(struct audit_context *context)
833{
834 struct audit_aux_data *aux;
835
836 while ((aux = context->aux)) {
837 context->aux = aux->next;
838 kfree(aux);
839 }
Amy Griffise54dc242007-03-29 18:01:04 -0400840 while ((aux = context->aux_pids)) {
841 context->aux_pids = aux->next;
842 kfree(aux);
843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846static inline void audit_zero_context(struct audit_context *context,
847 enum audit_state state)
848{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 memset(context, 0, sizeof(*context));
850 context->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853static inline struct audit_context *audit_alloc_context(enum audit_state state)
854{
855 struct audit_context *context;
856
857 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
858 return NULL;
859 audit_zero_context(context, state);
860 return context;
861}
862
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700863/**
864 * audit_alloc - allocate an audit context block for a task
865 * @tsk: task
866 *
867 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 * if necessary. Doing so turns on system call auditing for the
869 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700870 * needed.
871 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872int audit_alloc(struct task_struct *tsk)
873{
874 struct audit_context *context;
875 enum audit_state state;
876
Eric Parisb593d382008-01-08 17:38:31 -0500877 if (likely(!audit_ever_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return 0; /* Return if not auditing. */
879
880 state = audit_filter_task(tsk);
881 if (likely(state == AUDIT_DISABLED))
882 return 0;
883
884 if (!(context = audit_alloc_context(state))) {
885 audit_log_lost("out of memory in audit_alloc");
886 return -ENOMEM;
887 }
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 tsk->audit_context = context;
890 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
891 return 0;
892}
893
894static inline void audit_free_context(struct audit_context *context)
895{
896 struct audit_context *previous;
897 int count = 0;
898
899 do {
900 previous = context->previous;
901 if (previous || (count && count < 10)) {
902 ++count;
903 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
904 " freeing multiple contexts (%d)\n",
905 context->serial, context->major,
906 context->name_count, count);
907 }
908 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -0400909 unroll_tree_refs(context, NULL, 0);
910 free_tree_refs(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400912 kfree(context->filterkey);
Al Viro4f6b4342008-12-09 19:50:34 -0500913 kfree(context->sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 kfree(context);
915 context = previous;
916 } while (context);
917 if (count >= 10)
918 printk(KERN_ERR "audit: freed %d contexts\n", count);
919}
920
Joy Latten161a09e2006-11-27 13:11:54 -0600921void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000922{
923 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +0000924 unsigned len;
925 int error;
926 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000927
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200928 security_task_getsecid(current, &sid);
Al Viroc4823bc2007-03-12 16:17:42 +0000929 if (!sid)
930 return;
931
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200932 error = security_secid_to_secctx(sid, &ctx, &len);
Al Viroc4823bc2007-03-12 16:17:42 +0000933 if (error) {
934 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000935 goto error_path;
936 return;
937 }
938
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000939 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200940 security_release_secctx(ctx, len);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000941 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000942
943error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000944 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000945 return;
946}
947
Joy Latten161a09e2006-11-27 13:11:54 -0600948EXPORT_SYMBOL(audit_log_task_context);
949
Al Viroe4951492006-03-29 20:17:10 -0500950static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700951{
Al Viro45d9bb02006-03-29 20:02:55 -0500952 char name[sizeof(tsk->comm)];
953 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700954 struct vm_area_struct *vma;
955
Al Viroe4951492006-03-29 20:17:10 -0500956 /* tsk == current */
957
Al Viro45d9bb02006-03-29 20:02:55 -0500958 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100959 audit_log_format(ab, " comm=");
960 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700961
Al Viroe4951492006-03-29 20:17:10 -0500962 if (mm) {
963 down_read(&mm->mmap_sem);
964 vma = mm->mmap;
965 while (vma) {
966 if ((vma->vm_flags & VM_EXECUTABLE) &&
967 vma->vm_file) {
968 audit_log_d_path(ab, "exe=",
Jan Blunck44707fd2008-02-14 19:38:33 -0800969 &vma->vm_file->f_path);
Al Viroe4951492006-03-29 20:17:10 -0500970 break;
971 }
972 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700973 }
Al Viroe4951492006-03-29 20:17:10 -0500974 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700975 }
Al Viroe4951492006-03-29 20:17:10 -0500976 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700977}
978
Amy Griffise54dc242007-03-29 18:01:04 -0400979static int audit_log_pid_context(struct audit_context *context, pid_t pid,
Eric Paris4746ec52008-01-08 10:06:53 -0500980 uid_t auid, uid_t uid, unsigned int sessionid,
981 u32 sid, char *comm)
Amy Griffise54dc242007-03-29 18:01:04 -0400982{
983 struct audit_buffer *ab;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200984 char *ctx = NULL;
Amy Griffise54dc242007-03-29 18:01:04 -0400985 u32 len;
986 int rc = 0;
987
988 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
989 if (!ab)
Eric Paris6246cca2008-01-07 14:01:18 -0500990 return rc;
Amy Griffise54dc242007-03-29 18:01:04 -0400991
Eric Paris4746ec52008-01-08 10:06:53 -0500992 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid, auid,
993 uid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200994 if (security_secid_to_secctx(sid, &ctx, &len)) {
Eric Parisc2a77802008-01-07 13:40:17 -0500995 audit_log_format(ab, " obj=(none)");
Amy Griffise54dc242007-03-29 18:01:04 -0400996 rc = 1;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +0200997 } else {
998 audit_log_format(ab, " obj=%s", ctx);
999 security_release_secctx(ctx, len);
1000 }
Eric Parisc2a77802008-01-07 13:40:17 -05001001 audit_log_format(ab, " ocomm=");
1002 audit_log_untrustedstring(ab, comm);
Amy Griffise54dc242007-03-29 18:01:04 -04001003 audit_log_end(ab);
Amy Griffise54dc242007-03-29 18:01:04 -04001004
1005 return rc;
1006}
1007
Eric Parisde6bbd12008-01-07 14:31:58 -05001008/*
1009 * to_send and len_sent accounting are very loose estimates. We aren't
1010 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
1011 * within about 500 bytes (next page boundry)
1012 *
1013 * why snprintf? an int is up to 12 digits long. if we just assumed when
1014 * logging that a[%d]= was going to be 16 characters long we would be wasting
1015 * space in every audit message. In one 7500 byte message we can log up to
1016 * about 1000 min size arguments. That comes down to about 50% waste of space
1017 * if we didn't do the snprintf to find out how long arg_num_len was.
1018 */
1019static int audit_log_single_execve_arg(struct audit_context *context,
1020 struct audit_buffer **ab,
1021 int arg_num,
1022 size_t *len_sent,
1023 const char __user *p,
1024 char *buf)
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001025{
Eric Parisde6bbd12008-01-07 14:31:58 -05001026 char arg_num_len_buf[12];
1027 const char __user *tmp_p = p;
1028 /* how many digits are in arg_num? 3 is the length of a=\n */
1029 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 3;
1030 size_t len, len_left, to_send;
1031 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1032 unsigned int i, has_cntl = 0, too_long = 0;
1033 int ret;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001034
Eric Parisde6bbd12008-01-07 14:31:58 -05001035 /* strnlen_user includes the null we don't want to send */
1036 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001037
Eric Parisde6bbd12008-01-07 14:31:58 -05001038 /*
1039 * We just created this mm, if we can't find the strings
1040 * we just copied into it something is _very_ wrong. Similar
1041 * for strings that are too long, we should not have created
1042 * any.
1043 */
Eric Parisb0abcfc2008-02-18 18:23:16 -05001044 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
Eric Parisde6bbd12008-01-07 14:31:58 -05001045 WARN_ON(1);
1046 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001047 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001048 }
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001049
Eric Parisde6bbd12008-01-07 14:31:58 -05001050 /* walk the whole argument looking for non-ascii chars */
1051 do {
1052 if (len_left > MAX_EXECVE_AUDIT_LEN)
1053 to_send = MAX_EXECVE_AUDIT_LEN;
1054 else
1055 to_send = len_left;
1056 ret = copy_from_user(buf, tmp_p, to_send);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001057 /*
1058 * There is no reason for this copy to be short. We just
1059 * copied them here, and the mm hasn't been exposed to user-
1060 * space yet.
1061 */
Peter Zijlstra040b3a22007-07-28 00:55:18 +02001062 if (ret) {
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001063 WARN_ON(1);
1064 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001065 return -1;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001066 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001067 buf[to_send] = '\0';
1068 has_cntl = audit_string_contains_control(buf, to_send);
1069 if (has_cntl) {
1070 /*
1071 * hex messages get logged as 2 bytes, so we can only
1072 * send half as much in each message
1073 */
1074 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
1075 break;
1076 }
1077 len_left -= to_send;
1078 tmp_p += to_send;
1079 } while (len_left > 0);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001080
Eric Parisde6bbd12008-01-07 14:31:58 -05001081 len_left = len;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001082
Eric Parisde6bbd12008-01-07 14:31:58 -05001083 if (len > max_execve_audit_len)
1084 too_long = 1;
1085
1086 /* rewalk the argument actually logging the message */
1087 for (i = 0; len_left > 0; i++) {
1088 int room_left;
1089
1090 if (len_left > max_execve_audit_len)
1091 to_send = max_execve_audit_len;
1092 else
1093 to_send = len_left;
1094
1095 /* do we have space left to send this argument in this ab? */
1096 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1097 if (has_cntl)
1098 room_left -= (to_send * 2);
1099 else
1100 room_left -= to_send;
1101 if (room_left < 0) {
1102 *len_sent = 0;
1103 audit_log_end(*ab);
1104 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1105 if (!*ab)
1106 return 0;
1107 }
1108
1109 /*
1110 * first record needs to say how long the original string was
1111 * so we can be sure nothing was lost.
1112 */
1113 if ((i == 0) && (too_long))
Paul Moore422b03c2008-02-27 10:39:22 -05001114 audit_log_format(*ab, "a%d_len=%zu ", arg_num,
Eric Parisde6bbd12008-01-07 14:31:58 -05001115 has_cntl ? 2*len : len);
1116
1117 /*
1118 * normally arguments are small enough to fit and we already
1119 * filled buf above when we checked for control characters
1120 * so don't bother with another copy_from_user
1121 */
1122 if (len >= max_execve_audit_len)
1123 ret = copy_from_user(buf, p, to_send);
1124 else
1125 ret = 0;
1126 if (ret) {
1127 WARN_ON(1);
1128 send_sig(SIGKILL, current, 0);
Eric Parisb0abcfc2008-02-18 18:23:16 -05001129 return -1;
Eric Parisde6bbd12008-01-07 14:31:58 -05001130 }
1131 buf[to_send] = '\0';
1132
1133 /* actually log it */
1134 audit_log_format(*ab, "a%d", arg_num);
1135 if (too_long)
1136 audit_log_format(*ab, "[%d]", i);
1137 audit_log_format(*ab, "=");
1138 if (has_cntl)
Eric Parisb556f8a2008-04-18 10:12:59 -04001139 audit_log_n_hex(*ab, buf, to_send);
Eric Parisde6bbd12008-01-07 14:31:58 -05001140 else
1141 audit_log_format(*ab, "\"%s\"", buf);
1142 audit_log_format(*ab, "\n");
1143
1144 p += to_send;
1145 len_left -= to_send;
1146 *len_sent += arg_num_len;
1147 if (has_cntl)
1148 *len_sent += to_send * 2;
1149 else
1150 *len_sent += to_send;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001151 }
Eric Parisde6bbd12008-01-07 14:31:58 -05001152 /* include the null we didn't log */
1153 return len + 1;
1154}
1155
1156static void audit_log_execve_info(struct audit_context *context,
1157 struct audit_buffer **ab,
1158 struct audit_aux_data_execve *axi)
1159{
1160 int i;
1161 size_t len, len_sent = 0;
1162 const char __user *p;
1163 char *buf;
1164
1165 if (axi->mm != current->mm)
1166 return; /* execve failed, no additional info */
1167
1168 p = (const char __user *)axi->mm->arg_start;
1169
1170 audit_log_format(*ab, "argc=%d ", axi->argc);
1171
1172 /*
1173 * we need some kernel buffer to hold the userspace args. Just
1174 * allocate one big one rather than allocating one of the right size
1175 * for every single argument inside audit_log_single_execve_arg()
1176 * should be <8k allocation so should be pretty safe.
1177 */
1178 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1179 if (!buf) {
1180 audit_panic("out of memory for argv string\n");
1181 return;
1182 }
1183
1184 for (i = 0; i < axi->argc; i++) {
1185 len = audit_log_single_execve_arg(context, ab, i,
1186 &len_sent, p, buf);
1187 if (len <= 0)
1188 break;
1189 p += len;
1190 }
1191 kfree(buf);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001192}
1193
Eric Paris851f7ff2008-11-11 21:48:14 +11001194static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1195{
1196 int i;
1197
1198 audit_log_format(ab, " %s=", prefix);
1199 CAP_FOR_EACH_U32(i) {
1200 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1201 }
1202}
1203
1204static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1205{
1206 kernel_cap_t *perm = &name->fcap.permitted;
1207 kernel_cap_t *inh = &name->fcap.inheritable;
1208 int log = 0;
1209
1210 if (!cap_isclear(*perm)) {
1211 audit_log_cap(ab, "cap_fp", perm);
1212 log = 1;
1213 }
1214 if (!cap_isclear(*inh)) {
1215 audit_log_cap(ab, "cap_fi", inh);
1216 log = 1;
1217 }
1218
1219 if (log)
1220 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1221}
1222
Al Viroa33e6752008-12-10 03:40:06 -05001223static void show_special(struct audit_context *context, int *call_panic)
Al Virof3298dc2008-12-10 03:16:51 -05001224{
1225 struct audit_buffer *ab;
1226 int i;
1227
1228 ab = audit_log_start(context, GFP_KERNEL, context->type);
1229 if (!ab)
1230 return;
1231
1232 switch (context->type) {
1233 case AUDIT_SOCKETCALL: {
1234 int nargs = context->socketcall.nargs;
1235 audit_log_format(ab, "nargs=%d", nargs);
1236 for (i = 0; i < nargs; i++)
1237 audit_log_format(ab, " a%d=%lx", i,
1238 context->socketcall.args[i]);
1239 break; }
Al Viroa33e6752008-12-10 03:40:06 -05001240 case AUDIT_IPC: {
1241 u32 osid = context->ipc.osid;
1242
1243 audit_log_format(ab, "ouid=%u ogid=%u mode=%#o",
1244 context->ipc.uid, context->ipc.gid, context->ipc.mode);
1245 if (osid) {
1246 char *ctx = NULL;
1247 u32 len;
1248 if (security_secid_to_secctx(osid, &ctx, &len)) {
1249 audit_log_format(ab, " osid=%u", osid);
1250 *call_panic = 1;
1251 } else {
1252 audit_log_format(ab, " obj=%s", ctx);
1253 security_release_secctx(ctx, len);
1254 }
1255 }
Al Viroe816f372008-12-10 03:47:15 -05001256 if (context->ipc.has_perm) {
1257 audit_log_end(ab);
1258 ab = audit_log_start(context, GFP_KERNEL,
1259 AUDIT_IPC_SET_PERM);
1260 audit_log_format(ab,
1261 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
1262 context->ipc.qbytes,
1263 context->ipc.perm_uid,
1264 context->ipc.perm_gid,
1265 context->ipc.perm_mode);
1266 if (!ab)
1267 return;
1268 }
Al Viroa33e6752008-12-10 03:40:06 -05001269 break; }
Al Viro73929062008-12-10 06:58:59 -05001270 case AUDIT_MQ_GETSETATTR: {
1271 struct mq_attr *attr = &context->mq_getsetattr.mqstat;
1272 audit_log_format(ab,
1273 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1274 "mq_curmsgs=%ld ",
1275 context->mq_getsetattr.mqdes,
1276 attr->mq_flags, attr->mq_maxmsg,
1277 attr->mq_msgsize, attr->mq_curmsgs);
1278 break; }
Al Virof3298dc2008-12-10 03:16:51 -05001279 }
1280 audit_log_end(ab);
1281}
1282
Al Viroe4951492006-03-29 20:17:10 -05001283static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
David Howellsc69e8d92008-11-14 10:39:19 +11001285 const struct cred *cred;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001286 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +01001288 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -05001289 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Al Viroe4951492006-03-29 20:17:10 -05001291 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -04001292 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -04001293 if (!context->ppid)
1294 context->ppid = sys_getppid();
David Howellsc69e8d92008-11-14 10:39:19 +11001295 cred = current_cred();
1296 context->uid = cred->uid;
1297 context->gid = cred->gid;
1298 context->euid = cred->euid;
1299 context->suid = cred->suid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001300 context->fsuid = cred->fsuid;
David Howellsc69e8d92008-11-14 10:39:19 +11001301 context->egid = cred->egid;
1302 context->sgid = cred->sgid;
David Howellsb6dff3e2008-11-14 10:39:16 +11001303 context->fsgid = cred->fsgid;
Al Viro3f2792f2006-07-16 06:43:48 -04001304 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -05001305
1306 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (!ab)
1308 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +01001309 audit_log_format(ab, "arch=%x syscall=%d",
1310 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (context->personality != PER_LINUX)
1312 audit_log_format(ab, " per=%lx", context->personality);
1313 if (context->return_valid)
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001314 audit_log_format(ab, " success=%s exit=%ld",
2fd6f582005-04-29 16:08:28 +01001315 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1316 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -07001317
Alan Coxdbda4c02008-10-13 10:40:53 +01001318 spin_lock_irq(&tsk->sighand->siglock);
Al Viro45d9bb02006-03-29 20:02:55 -05001319 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
1320 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -05001321 else
1322 tty = "(none)";
Alan Coxdbda4c02008-10-13 10:40:53 +01001323 spin_unlock_irq(&tsk->sighand->siglock);
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 audit_log_format(ab,
1326 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -04001327 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +01001328 " euid=%u suid=%u fsuid=%u"
Eric Paris4746ec52008-01-08 10:06:53 -05001329 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 context->argv[0],
1331 context->argv[1],
1332 context->argv[2],
1333 context->argv[3],
1334 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -04001335 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 context->pid,
Al Virobfef93a2008-01-10 04:53:18 -05001337 tsk->loginuid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 context->uid,
1339 context->gid,
1340 context->euid, context->suid, context->fsuid,
Eric Paris4746ec52008-01-08 10:06:53 -05001341 context->egid, context->sgid, context->fsgid, tty,
1342 tsk->sessionid);
Alan Coxeb84a202006-09-29 02:01:41 -07001343
Alan Coxeb84a202006-09-29 02:01:41 -07001344
Al Viroe4951492006-03-29 20:17:10 -05001345 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001346 if (context->filterkey) {
1347 audit_log_format(ab, " key=");
1348 audit_log_untrustedstring(ab, context->filterkey);
1349 } else
1350 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
David Woodhouse7551ced2005-05-26 12:04:57 +01001353 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +01001354
Al Viroe4951492006-03-29 20:17:10 -05001355 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!ab)
1357 continue; /* audit_panic has been called */
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -05001360 case AUDIT_MQ_OPEN: {
1361 struct audit_aux_data_mq_open *axi = (void *)aux;
1362 audit_log_format(ab,
1363 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
1364 "mq_msgsize=%ld mq_curmsgs=%ld",
1365 axi->oflag, axi->mode, axi->attr.mq_flags,
1366 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
1367 axi->attr.mq_curmsgs);
1368 break; }
1369
1370 case AUDIT_MQ_SENDRECV: {
1371 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
1372 audit_log_format(ab,
1373 "mqdes=%d msg_len=%zd msg_prio=%u "
1374 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1375 axi->mqdes, axi->msg_len, axi->msg_prio,
1376 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
1377 break; }
1378
1379 case AUDIT_MQ_NOTIFY: {
1380 struct audit_aux_data_mq_notify *axi = (void *)aux;
1381 audit_log_format(ab,
1382 "mqdes=%d sigev_signo=%d",
1383 axi->mqdes,
1384 axi->notification.sigev_signo);
1385 break; }
1386
Al Viro473ae302006-04-26 14:04:08 -04001387 case AUDIT_EXECVE: {
1388 struct audit_aux_data_execve *axi = (void *)aux;
Eric Parisde6bbd12008-01-07 14:31:58 -05001389 audit_log_execve_info(context, &ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001390 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001391
Al Virodb349502007-02-07 01:48:00 -05001392 case AUDIT_FD_PAIR: {
1393 struct audit_aux_data_fd_pair *axs = (void *)aux;
1394 audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]);
1395 break; }
1396
Eric Paris3fc689e2008-11-11 21:48:18 +11001397 case AUDIT_BPRM_FCAPS: {
1398 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1399 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1400 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1401 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1402 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1403 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1404 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1405 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1406 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1407 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1408 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1409 break; }
1410
Eric Parise68b75a02008-11-11 21:48:22 +11001411 case AUDIT_CAPSET: {
1412 struct audit_aux_data_capset *axs = (void *)aux;
1413 audit_log_format(ab, "pid=%d", axs->pid);
1414 audit_log_cap(ab, "cap_pi", &axs->cap.inheritable);
1415 audit_log_cap(ab, "cap_pp", &axs->cap.permitted);
1416 audit_log_cap(ab, "cap_pe", &axs->cap.effective);
1417 break; }
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
Al Virof3298dc2008-12-10 03:16:51 -05001423 if (context->type)
Al Viroa33e6752008-12-10 03:40:06 -05001424 show_special(context, &call_panic);
Al Virof3298dc2008-12-10 03:16:51 -05001425
Al Viro4f6b4342008-12-09 19:50:34 -05001426 if (context->sockaddr_len) {
1427 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1428 if (ab) {
1429 audit_log_format(ab, "saddr=");
1430 audit_log_n_hex(ab, (void *)context->sockaddr,
1431 context->sockaddr_len);
1432 audit_log_end(ab);
1433 }
1434 }
1435
Amy Griffise54dc242007-03-29 18:01:04 -04001436 for (aux = context->aux_pids; aux; aux = aux->next) {
1437 struct audit_aux_data_pids *axs = (void *)aux;
Amy Griffise54dc242007-03-29 18:01:04 -04001438
1439 for (i = 0; i < axs->pid_count; i++)
1440 if (audit_log_pid_context(context, axs->target_pid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001441 axs->target_auid[i],
1442 axs->target_uid[i],
Eric Paris4746ec52008-01-08 10:06:53 -05001443 axs->target_sessionid[i],
Eric Parisc2a77802008-01-07 13:40:17 -05001444 axs->target_sid[i],
1445 axs->target_comm[i]))
Amy Griffise54dc242007-03-29 18:01:04 -04001446 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001447 }
1448
Amy Griffise54dc242007-03-29 18:01:04 -04001449 if (context->target_pid &&
1450 audit_log_pid_context(context, context->target_pid,
Eric Parisc2a77802008-01-07 13:40:17 -05001451 context->target_auid, context->target_uid,
Eric Paris4746ec52008-01-08 10:06:53 -05001452 context->target_sessionid,
Eric Parisc2a77802008-01-07 13:40:17 -05001453 context->target_sid, context->target_comm))
Amy Griffise54dc242007-03-29 18:01:04 -04001454 call_panic = 1;
1455
Jan Blunck44707fd2008-02-14 19:38:33 -08001456 if (context->pwd.dentry && context->pwd.mnt) {
Al Viroe4951492006-03-29 20:17:10 -05001457 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001458 if (ab) {
Jan Blunck44707fd2008-02-14 19:38:33 -08001459 audit_log_d_path(ab, "cwd=", &context->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001460 audit_log_end(ab);
1461 }
1462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -04001464 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +00001465
Al Viroe4951492006-03-29 20:17:10 -05001466 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (!ab)
1468 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001471
Amy Griffis9c937dc2006-06-08 23:19:31 -04001472 if (n->name) {
1473 switch(n->name_len) {
1474 case AUDIT_NAME_FULL:
1475 /* log the full path */
1476 audit_log_format(ab, " name=");
1477 audit_log_untrustedstring(ab, n->name);
1478 break;
1479 case 0:
1480 /* name was specified as a relative path and the
1481 * directory component is the cwd */
Jan Blunck44707fd2008-02-14 19:38:33 -08001482 audit_log_d_path(ab, " name=", &context->pwd);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001483 break;
1484 default:
1485 /* log the name's directory component */
1486 audit_log_format(ab, " name=");
Eric Parisb556f8a2008-04-18 10:12:59 -04001487 audit_log_n_untrustedstring(ab, n->name,
1488 n->name_len);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001489 }
1490 } else
1491 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +00001492
Amy Griffis9c937dc2006-06-08 23:19:31 -04001493 if (n->ino != (unsigned long)-1) {
1494 audit_log_format(ab, " inode=%lu"
1495 " dev=%02x:%02x mode=%#o"
1496 " ouid=%u ogid=%u rdev=%02x:%02x",
1497 n->ino,
1498 MAJOR(n->dev),
1499 MINOR(n->dev),
1500 n->mode,
1501 n->uid,
1502 n->gid,
1503 MAJOR(n->rdev),
1504 MINOR(n->rdev));
1505 }
1506 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001507 char *ctx = NULL;
1508 u32 len;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001509 if (security_secid_to_secctx(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001510 n->osid, &ctx, &len)) {
1511 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001512 call_panic = 2;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001513 } else {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001514 audit_log_format(ab, " obj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001515 security_release_secctx(ctx, len);
1516 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001517 }
1518
Eric Paris851f7ff2008-11-11 21:48:14 +11001519 audit_log_fcaps(ab, n);
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 audit_log_end(ab);
1522 }
Eric Parisc0641f22008-01-07 13:49:15 -05001523
1524 /* Send end of event record to help user space know we are finished */
1525 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1526 if (ab)
1527 audit_log_end(ab);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001528 if (call_panic)
1529 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001532/**
1533 * audit_free - free a per-task audit context
1534 * @tsk: task whose audit context block to free
1535 *
Al Virofa84cb92006-03-29 20:30:19 -05001536 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538void audit_free(struct task_struct *tsk)
1539{
1540 struct audit_context *context;
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (likely(!context))
1544 return;
1545
1546 /* Check for system calls that do not go through the exit
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001547 * function (e.g., exit_group), then free context block.
1548 * We use GFP_ATOMIC here because we might be doing this
David Woodhousef5561962005-07-13 22:47:07 +01001549 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001550 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001551 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001552 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 audit_free_context(context);
1555}
1556
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001557/**
1558 * audit_syscall_entry - fill in an audit record at syscall entry
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001559 * @arch: architecture type
1560 * @major: major syscall type (function)
1561 * @a1: additional syscall register 1
1562 * @a2: additional syscall register 2
1563 * @a3: additional syscall register 3
1564 * @a4: additional syscall register 4
1565 *
1566 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 * audit context was created when the task was created and the state or
1568 * filters demand the audit context be built. If the state from the
1569 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1570 * then the record will be written at syscall exit time (otherwise, it
1571 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001572 * be written).
1573 */
Al Viro5411be52006-03-29 20:23:36 -05001574void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 unsigned long a1, unsigned long a2,
1576 unsigned long a3, unsigned long a4)
1577{
Al Viro5411be52006-03-29 20:23:36 -05001578 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 struct audit_context *context = tsk->audit_context;
1580 enum audit_state state;
1581
Roland McGrath86a1c342008-06-23 15:37:04 -07001582 if (unlikely(!context))
1583 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001585 /*
1586 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 * calls in kernel_thread via the entry.S interface, instead of
1588 * with direct calls. (If you are porting to a new
1589 * architecture, hitting this condition can indicate that you
1590 * got the _exit/_leave calls backward in entry.S.)
1591 *
1592 * i386 no
1593 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001594 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 *
1596 * This also happens with vm86 emulation in a non-nested manner
1597 * (entries without exits), so this case must be caught.
1598 */
1599 if (context->in_syscall) {
1600 struct audit_context *newctx;
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602#if AUDIT_DEBUG
1603 printk(KERN_ERR
1604 "audit(:%d) pid=%d in syscall=%d;"
1605 " entering syscall=%d\n",
1606 context->serial, tsk->pid, context->major, major);
1607#endif
1608 newctx = audit_alloc_context(context->state);
1609 if (newctx) {
1610 newctx->previous = context;
1611 context = newctx;
1612 tsk->audit_context = newctx;
1613 } else {
1614 /* If we can't alloc a new context, the best we
1615 * can do is to leak memory (any pending putname
1616 * will be lost). The only other alternative is
1617 * to abandon auditing. */
1618 audit_zero_context(context, context->state);
1619 }
1620 }
1621 BUG_ON(context->in_syscall || context->name_count);
1622
1623 if (!audit_enabled)
1624 return;
1625
2fd6f582005-04-29 16:08:28 +01001626 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 context->major = major;
1628 context->argv[0] = a1;
1629 context->argv[1] = a2;
1630 context->argv[2] = a3;
1631 context->argv[3] = a4;
1632
1633 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001634 context->dummy = !audit_n_rules;
1635 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001636 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (likely(state == AUDIT_DISABLED))
1638 return;
1639
David Woodhousece625a82005-07-18 14:24:46 -04001640 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 context->ctime = CURRENT_TIME;
1642 context->in_syscall = 1;
1643 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
Alexander Viro419c58f2006-09-29 00:08:50 -04001644 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
Al Viroa64e6492008-11-12 18:37:41 -05001647void audit_finish_fork(struct task_struct *child)
1648{
1649 struct audit_context *ctx = current->audit_context;
1650 struct audit_context *p = child->audit_context;
1651 if (!p || !ctx || !ctx->auditable)
1652 return;
1653 p->arch = ctx->arch;
1654 p->major = ctx->major;
1655 memcpy(p->argv, ctx->argv, sizeof(ctx->argv));
1656 p->ctime = ctx->ctime;
1657 p->dummy = ctx->dummy;
1658 p->auditable = ctx->auditable;
1659 p->in_syscall = ctx->in_syscall;
1660 p->filterkey = kstrdup(ctx->filterkey, GFP_KERNEL);
1661 p->ppid = current->pid;
1662}
1663
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001664/**
1665 * audit_syscall_exit - deallocate audit context after a system call
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001666 * @valid: success/failure flag
1667 * @return_code: syscall return value
1668 *
1669 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1671 * filtering, or because some other part of the kernel write an audit
1672 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001673 * free the names stored from getname().
1674 */
Al Viro5411be52006-03-29 20:23:36 -05001675void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
Al Viro5411be52006-03-29 20:23:36 -05001677 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 struct audit_context *context;
1679
2fd6f582005-04-29 16:08:28 +01001680 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001683 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
David Woodhousef7056d62005-06-20 16:07:33 +01001685 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001686 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 context->in_syscall = 0;
1689 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (context->previous) {
1692 struct audit_context *new_context = context->previous;
1693 context->previous = NULL;
1694 audit_free_context(context);
1695 tsk->audit_context = new_context;
1696 } else {
1697 audit_free_names(context);
Al Viro74c3cbe2007-07-22 08:04:18 -04001698 unroll_tree_refs(context, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001700 context->aux = NULL;
1701 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001702 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001703 context->target_sid = 0;
Al Viro4f6b4342008-12-09 19:50:34 -05001704 context->sockaddr_len = 0;
Al Virof3298dc2008-12-10 03:16:51 -05001705 context->type = 0;
Amy Griffis5adc8a62006-06-14 18:45:21 -04001706 kfree(context->filterkey);
1707 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 tsk->audit_context = context;
1709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
1711
Al Viro74c3cbe2007-07-22 08:04:18 -04001712static inline void handle_one(const struct inode *inode)
1713{
1714#ifdef CONFIG_AUDIT_TREE
1715 struct audit_context *context;
1716 struct audit_tree_refs *p;
1717 struct audit_chunk *chunk;
1718 int count;
1719 if (likely(list_empty(&inode->inotify_watches)))
1720 return;
1721 context = current->audit_context;
1722 p = context->trees;
1723 count = context->tree_count;
1724 rcu_read_lock();
1725 chunk = audit_tree_lookup(inode);
1726 rcu_read_unlock();
1727 if (!chunk)
1728 return;
1729 if (likely(put_tree_ref(context, chunk)))
1730 return;
1731 if (unlikely(!grow_tree_refs(context))) {
Eric Paris436c4052008-04-18 10:01:04 -04001732 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001733 audit_set_auditable(context);
1734 audit_put_chunk(chunk);
1735 unroll_tree_refs(context, p, count);
1736 return;
1737 }
1738 put_tree_ref(context, chunk);
1739#endif
1740}
1741
1742static void handle_path(const struct dentry *dentry)
1743{
1744#ifdef CONFIG_AUDIT_TREE
1745 struct audit_context *context;
1746 struct audit_tree_refs *p;
1747 const struct dentry *d, *parent;
1748 struct audit_chunk *drop;
1749 unsigned long seq;
1750 int count;
1751
1752 context = current->audit_context;
1753 p = context->trees;
1754 count = context->tree_count;
1755retry:
1756 drop = NULL;
1757 d = dentry;
1758 rcu_read_lock();
1759 seq = read_seqbegin(&rename_lock);
1760 for(;;) {
1761 struct inode *inode = d->d_inode;
1762 if (inode && unlikely(!list_empty(&inode->inotify_watches))) {
1763 struct audit_chunk *chunk;
1764 chunk = audit_tree_lookup(inode);
1765 if (chunk) {
1766 if (unlikely(!put_tree_ref(context, chunk))) {
1767 drop = chunk;
1768 break;
1769 }
1770 }
1771 }
1772 parent = d->d_parent;
1773 if (parent == d)
1774 break;
1775 d = parent;
1776 }
1777 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1778 rcu_read_unlock();
1779 if (!drop) {
1780 /* just a race with rename */
1781 unroll_tree_refs(context, p, count);
1782 goto retry;
1783 }
1784 audit_put_chunk(drop);
1785 if (grow_tree_refs(context)) {
1786 /* OK, got more space */
1787 unroll_tree_refs(context, p, count);
1788 goto retry;
1789 }
1790 /* too bad */
1791 printk(KERN_WARNING
Eric Paris436c4052008-04-18 10:01:04 -04001792 "out of memory, audit has lost a tree reference\n");
Al Viro74c3cbe2007-07-22 08:04:18 -04001793 unroll_tree_refs(context, p, count);
1794 audit_set_auditable(context);
1795 return;
1796 }
1797 rcu_read_unlock();
1798#endif
1799}
1800
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001801/**
1802 * audit_getname - add a name to the list
1803 * @name: name to add
1804 *
1805 * Add a name to the list of audit names for this context.
1806 * Called from fs/namei.c:getname().
1807 */
Al Virod8945bb52006-05-18 16:01:30 -04001808void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 struct audit_context *context = current->audit_context;
1811
Al Virod8945bb52006-05-18 16:01:30 -04001812 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return;
1814
1815 if (!context->in_syscall) {
1816#if AUDIT_DEBUG == 2
1817 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1818 __FILE__, __LINE__, context->serial, name);
1819 dump_stack();
1820#endif
1821 return;
1822 }
1823 BUG_ON(context->name_count >= AUDIT_NAMES);
1824 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001825 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1826 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 context->names[context->name_count].ino = (unsigned long)-1;
Amy Griffise41e8bd2007-02-13 14:14:09 -05001828 context->names[context->name_count].osid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 ++context->name_count;
Jan Blunck44707fd2008-02-14 19:38:33 -08001830 if (!context->pwd.dentry) {
David Woodhouse8f37d472005-05-27 12:17:28 +01001831 read_lock(&current->fs->lock);
Jan Blunck44707fd2008-02-14 19:38:33 -08001832 context->pwd = current->fs->pwd;
1833 path_get(&current->fs->pwd);
David Woodhouse8f37d472005-05-27 12:17:28 +01001834 read_unlock(&current->fs->lock);
1835 }
Daniel Walker9f8dbe92007-10-18 03:06:09 -07001836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001839/* audit_putname - intercept a putname request
1840 * @name: name to intercept and delay for putname
1841 *
1842 * If we have stored the name from getname in the audit context,
1843 * then we delay the putname until syscall exit.
1844 * Called from include/linux/fs.h:putname().
1845 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846void audit_putname(const char *name)
1847{
1848 struct audit_context *context = current->audit_context;
1849
1850 BUG_ON(!context);
1851 if (!context->in_syscall) {
1852#if AUDIT_DEBUG == 2
1853 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1854 __FILE__, __LINE__, context->serial, name);
1855 if (context->name_count) {
1856 int i;
1857 for (i = 0; i < context->name_count; i++)
1858 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1859 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001860 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
1862#endif
1863 __putname(name);
1864 }
1865#if AUDIT_DEBUG
1866 else {
1867 ++context->put_count;
1868 if (context->put_count > context->name_count) {
1869 printk(KERN_ERR "%s:%d(:%d): major=%d"
1870 " in_syscall=%d putname(%p) name_count=%d"
1871 " put_count=%d\n",
1872 __FILE__, __LINE__,
1873 context->serial, context->major,
1874 context->in_syscall, name, context->name_count,
1875 context->put_count);
1876 dump_stack();
1877 }
1878 }
1879#endif
1880}
1881
Amy Griffis5712e882007-02-13 14:15:22 -05001882static int audit_inc_name_count(struct audit_context *context,
1883 const struct inode *inode)
1884{
1885 if (context->name_count >= AUDIT_NAMES) {
1886 if (inode)
1887 printk(KERN_DEBUG "name_count maxed, losing inode data: "
Eric Paris436c4052008-04-18 10:01:04 -04001888 "dev=%02x:%02x, inode=%lu\n",
Amy Griffis5712e882007-02-13 14:15:22 -05001889 MAJOR(inode->i_sb->s_dev),
1890 MINOR(inode->i_sb->s_dev),
1891 inode->i_ino);
1892
1893 else
Eric Paris436c4052008-04-18 10:01:04 -04001894 printk(KERN_DEBUG "name_count maxed, losing inode data\n");
Amy Griffis5712e882007-02-13 14:15:22 -05001895 return 1;
1896 }
1897 context->name_count++;
1898#if AUDIT_DEBUG
1899 context->ino_count++;
1900#endif
1901 return 0;
1902}
1903
Eric Paris851f7ff2008-11-11 21:48:14 +11001904
1905static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
1906{
1907 struct cpu_vfs_cap_data caps;
1908 int rc;
1909
1910 memset(&name->fcap.permitted, 0, sizeof(kernel_cap_t));
1911 memset(&name->fcap.inheritable, 0, sizeof(kernel_cap_t));
1912 name->fcap.fE = 0;
1913 name->fcap_ver = 0;
1914
1915 if (!dentry)
1916 return 0;
1917
1918 rc = get_vfs_caps_from_disk(dentry, &caps);
1919 if (rc)
1920 return rc;
1921
1922 name->fcap.permitted = caps.permitted;
1923 name->fcap.inheritable = caps.inheritable;
1924 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
1925 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
1926
1927 return 0;
1928}
1929
1930
Amy Griffis3e2efce2006-07-13 13:16:02 -04001931/* Copy inode data into an audit_names. */
Eric Paris851f7ff2008-11-11 21:48:14 +11001932static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
1933 const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001934{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001935 name->ino = inode->i_ino;
1936 name->dev = inode->i_sb->s_dev;
1937 name->mode = inode->i_mode;
1938 name->uid = inode->i_uid;
1939 name->gid = inode->i_gid;
1940 name->rdev = inode->i_rdev;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02001941 security_inode_getsecid(inode, &name->osid);
Eric Paris851f7ff2008-11-11 21:48:14 +11001942 audit_copy_fcaps(name, dentry);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001943}
1944
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001945/**
1946 * audit_inode - store the inode and device from a lookup
1947 * @name: name being audited
Randy Dunlap481968f2007-10-21 20:59:53 -07001948 * @dentry: dentry being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001949 *
1950 * Called from fs/namei.c:path_lookup().
1951 */
Al Viro5a190ae2007-06-07 12:19:32 -04001952void __audit_inode(const char *name, const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
1954 int idx;
1955 struct audit_context *context = current->audit_context;
Al Viro74c3cbe2007-07-22 08:04:18 -04001956 const struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 if (!context->in_syscall)
1959 return;
1960 if (context->name_count
1961 && context->names[context->name_count-1].name
1962 && context->names[context->name_count-1].name == name)
1963 idx = context->name_count - 1;
1964 else if (context->name_count > 1
1965 && context->names[context->name_count-2].name
1966 && context->names[context->name_count-2].name == name)
1967 idx = context->name_count - 2;
1968 else {
1969 /* FIXME: how much do we care about inodes that have no
1970 * associated name? */
Amy Griffis5712e882007-02-13 14:15:22 -05001971 if (audit_inc_name_count(context, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return;
Amy Griffis5712e882007-02-13 14:15:22 -05001973 idx = context->name_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 context->names[idx].name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
Al Viro74c3cbe2007-07-22 08:04:18 -04001976 handle_path(dentry);
Eric Paris851f7ff2008-11-11 21:48:14 +11001977 audit_copy_inode(&context->names[idx], dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
1979
Amy Griffis73241cc2005-11-03 16:00:25 +00001980/**
1981 * audit_inode_child - collect inode info for created/removed objects
1982 * @dname: inode's dentry name
Randy Dunlap481968f2007-10-21 20:59:53 -07001983 * @dentry: dentry being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001984 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001985 *
1986 * For syscalls that create or remove filesystem objects, audit_inode
1987 * can only collect information for the filesystem object's parent.
1988 * This call updates the audit context with the child's information.
1989 * Syscalls that create a new filesystem object must be hooked after
1990 * the object is created. Syscalls that remove a filesystem object
1991 * must be hooked prior, in order to capture the target inode during
1992 * unsuccessful attempts.
1993 */
Al Viro5a190ae2007-06-07 12:19:32 -04001994void __audit_inode_child(const char *dname, const struct dentry *dentry,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001995 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001996{
1997 int idx;
1998 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05001999 const char *found_parent = NULL, *found_child = NULL;
Al Viro5a190ae2007-06-07 12:19:32 -04002000 const struct inode *inode = dentry->d_inode;
Amy Griffis9c937dc2006-06-08 23:19:31 -04002001 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00002002
2003 if (!context->in_syscall)
2004 return;
2005
Al Viro74c3cbe2007-07-22 08:04:18 -04002006 if (inode)
2007 handle_one(inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00002008 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04002009 if (!dname)
Amy Griffis5712e882007-02-13 14:15:22 -05002010 goto add_names;
Amy Griffis73241cc2005-11-03 16:00:25 +00002011
Amy Griffis5712e882007-02-13 14:15:22 -05002012 /* parent is more likely, look for it first */
2013 for (idx = 0; idx < context->name_count; idx++) {
2014 struct audit_names *n = &context->names[idx];
Amy Griffis73241cc2005-11-03 16:00:25 +00002015
Amy Griffis5712e882007-02-13 14:15:22 -05002016 if (!n->name)
2017 continue;
2018
2019 if (n->ino == parent->i_ino &&
2020 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2021 n->name_len = dirlen; /* update parent data in place */
2022 found_parent = n->name;
2023 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04002024 }
Steve Grubbac9910c2006-09-28 14:31:32 -04002025 }
Amy Griffis73241cc2005-11-03 16:00:25 +00002026
Amy Griffis5712e882007-02-13 14:15:22 -05002027 /* no matching parent, look for matching child */
2028 for (idx = 0; idx < context->name_count; idx++) {
2029 struct audit_names *n = &context->names[idx];
Amy Griffis73d3ec52006-07-13 13:16:39 -04002030
Amy Griffis5712e882007-02-13 14:15:22 -05002031 if (!n->name)
2032 continue;
2033
2034 /* strcmp() is the more likely scenario */
2035 if (!strcmp(dname, n->name) ||
2036 !audit_compare_dname_path(dname, n->name, &dirlen)) {
2037 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002038 audit_copy_inode(n, NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002039 else
2040 n->ino = (unsigned long)-1;
2041 found_child = n->name;
2042 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04002043 }
Amy Griffis5712e882007-02-13 14:15:22 -05002044 }
2045
2046add_names:
2047 if (!found_parent) {
2048 if (audit_inc_name_count(context, parent))
2049 return;
2050 idx = context->name_count - 1;
2051 context->names[idx].name = NULL;
Eric Paris851f7ff2008-11-11 21:48:14 +11002052 audit_copy_inode(&context->names[idx], NULL, parent);
Amy Griffis73d3ec52006-07-13 13:16:39 -04002053 }
Amy Griffis5712e882007-02-13 14:15:22 -05002054
2055 if (!found_child) {
2056 if (audit_inc_name_count(context, inode))
2057 return;
2058 idx = context->name_count - 1;
2059
2060 /* Re-use the name belonging to the slot for a matching parent
2061 * directory. All names for this context are relinquished in
2062 * audit_free_names() */
2063 if (found_parent) {
2064 context->names[idx].name = found_parent;
2065 context->names[idx].name_len = AUDIT_NAME_FULL;
2066 /* don't call __putname() */
2067 context->names[idx].name_put = 0;
2068 } else {
2069 context->names[idx].name = NULL;
2070 }
2071
2072 if (inode)
Eric Paris851f7ff2008-11-11 21:48:14 +11002073 audit_copy_inode(&context->names[idx], NULL, inode);
Amy Griffis5712e882007-02-13 14:15:22 -05002074 else
2075 context->names[idx].ino = (unsigned long)-1;
2076 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04002077}
Trond Myklebust50e437d2007-06-07 22:44:34 -04002078EXPORT_SYMBOL_GPL(__audit_inode_child);
Amy Griffis3e2efce2006-07-13 13:16:02 -04002079
2080/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002081 * auditsc_get_stamp - get local copies of audit_context values
2082 * @ctx: audit_context for the task
2083 * @t: timespec to store time recorded in the audit_context
2084 * @serial: serial value that is recorded in the audit_context
2085 *
2086 * Also sets the context as auditable.
2087 */
Al Viro48887e62008-12-06 01:05:50 -05002088int auditsc_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01002089 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
Al Viro48887e62008-12-06 01:05:50 -05002091 if (!ctx->in_syscall)
2092 return 0;
David Woodhousece625a82005-07-18 14:24:46 -04002093 if (!ctx->serial)
2094 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01002095 t->tv_sec = ctx->ctime.tv_sec;
2096 t->tv_nsec = ctx->ctime.tv_nsec;
2097 *serial = ctx->serial;
2098 ctx->auditable = 1;
Al Viro48887e62008-12-06 01:05:50 -05002099 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
Eric Paris4746ec52008-01-08 10:06:53 -05002102/* global counter which is incremented every time something logs in */
2103static atomic_t session_id = ATOMIC_INIT(0);
2104
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002105/**
2106 * audit_set_loginuid - set a task's audit_context loginuid
2107 * @task: task whose audit context is being modified
2108 * @loginuid: loginuid value
2109 *
2110 * Returns 0.
2111 *
2112 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2113 */
Steve Grubb456be6c2005-04-29 17:30:07 +01002114int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Eric Paris4746ec52008-01-08 10:06:53 -05002116 unsigned int sessionid = atomic_inc_return(&session_id);
Steve Grubb41757102006-06-12 07:48:28 -04002117 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01002118
Al Virobfef93a2008-01-10 04:53:18 -05002119 if (context && context->in_syscall) {
2120 struct audit_buffer *ab;
Steve Grubb41757102006-06-12 07:48:28 -04002121
Al Virobfef93a2008-01-10 04:53:18 -05002122 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2123 if (ab) {
2124 audit_log_format(ab, "login pid=%d uid=%u "
Eric Paris4746ec52008-01-08 10:06:53 -05002125 "old auid=%u new auid=%u"
2126 " old ses=%u new ses=%u",
David Howellsc69e8d92008-11-14 10:39:19 +11002127 task->pid, task_uid(task),
Eric Paris4746ec52008-01-08 10:06:53 -05002128 task->loginuid, loginuid,
2129 task->sessionid, sessionid);
Al Virobfef93a2008-01-10 04:53:18 -05002130 audit_log_end(ab);
Steve Grubbc0404992005-05-13 18:17:42 +01002131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
Eric Paris4746ec52008-01-08 10:06:53 -05002133 task->sessionid = sessionid;
Al Virobfef93a2008-01-10 04:53:18 -05002134 task->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return 0;
2136}
2137
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002138/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05002139 * __audit_mq_open - record audit data for a POSIX MQ open
2140 * @oflag: open flag
2141 * @mode: mode bits
2142 * @u_attr: queue attributes
2143 *
2144 * Returns 0 for success or NULL context or < 0 on error.
2145 */
2146int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
2147{
2148 struct audit_aux_data_mq_open *ax;
2149 struct audit_context *context = current->audit_context;
2150
2151 if (!audit_enabled)
2152 return 0;
2153
2154 if (likely(!context))
2155 return 0;
2156
2157 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2158 if (!ax)
2159 return -ENOMEM;
2160
2161 if (u_attr != NULL) {
2162 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
2163 kfree(ax);
2164 return -EFAULT;
2165 }
2166 } else
2167 memset(&ax->attr, 0, sizeof(ax->attr));
2168
2169 ax->oflag = oflag;
2170 ax->mode = mode;
2171
2172 ax->d.type = AUDIT_MQ_OPEN;
2173 ax->d.next = context->aux;
2174 context->aux = (void *)ax;
2175 return 0;
2176}
2177
2178/**
2179 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
2180 * @mqdes: MQ descriptor
2181 * @msg_len: Message length
2182 * @msg_prio: Message priority
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07002183 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002184 *
2185 * Returns 0 for success or NULL context or < 0 on error.
2186 */
2187int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2188 const struct timespec __user *u_abs_timeout)
2189{
2190 struct audit_aux_data_mq_sendrecv *ax;
2191 struct audit_context *context = current->audit_context;
2192
2193 if (!audit_enabled)
2194 return 0;
2195
2196 if (likely(!context))
2197 return 0;
2198
2199 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2200 if (!ax)
2201 return -ENOMEM;
2202
2203 if (u_abs_timeout != NULL) {
2204 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
2205 kfree(ax);
2206 return -EFAULT;
2207 }
2208 } else
2209 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
2210
2211 ax->mqdes = mqdes;
2212 ax->msg_len = msg_len;
2213 ax->msg_prio = msg_prio;
2214
2215 ax->d.type = AUDIT_MQ_SENDRECV;
2216 ax->d.next = context->aux;
2217 context->aux = (void *)ax;
2218 return 0;
2219}
2220
2221/**
2222 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
2223 * @mqdes: MQ descriptor
2224 * @msg_len: Message length
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07002225 * @u_msg_prio: Message priority
2226 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05002227 *
2228 * Returns 0 for success or NULL context or < 0 on error.
2229 */
2230int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
2231 unsigned int __user *u_msg_prio,
2232 const struct timespec __user *u_abs_timeout)
2233{
2234 struct audit_aux_data_mq_sendrecv *ax;
2235 struct audit_context *context = current->audit_context;
2236
2237 if (!audit_enabled)
2238 return 0;
2239
2240 if (likely(!context))
2241 return 0;
2242
2243 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2244 if (!ax)
2245 return -ENOMEM;
2246
2247 if (u_msg_prio != NULL) {
2248 if (get_user(ax->msg_prio, u_msg_prio)) {
2249 kfree(ax);
2250 return -EFAULT;
2251 }
2252 } else
2253 ax->msg_prio = 0;
2254
2255 if (u_abs_timeout != NULL) {
2256 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
2257 kfree(ax);
2258 return -EFAULT;
2259 }
2260 } else
2261 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
2262
2263 ax->mqdes = mqdes;
2264 ax->msg_len = msg_len;
2265
2266 ax->d.type = AUDIT_MQ_SENDRECV;
2267 ax->d.next = context->aux;
2268 context->aux = (void *)ax;
2269 return 0;
2270}
2271
2272/**
2273 * __audit_mq_notify - record audit data for a POSIX MQ notify
2274 * @mqdes: MQ descriptor
2275 * @u_notification: Notification event
2276 *
2277 * Returns 0 for success or NULL context or < 0 on error.
2278 */
2279
2280int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
2281{
2282 struct audit_aux_data_mq_notify *ax;
2283 struct audit_context *context = current->audit_context;
2284
2285 if (!audit_enabled)
2286 return 0;
2287
2288 if (likely(!context))
2289 return 0;
2290
2291 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
2292 if (!ax)
2293 return -ENOMEM;
2294
2295 if (u_notification != NULL) {
2296 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
2297 kfree(ax);
2298 return -EFAULT;
2299 }
2300 } else
2301 memset(&ax->notification, 0, sizeof(ax->notification));
2302
2303 ax->mqdes = mqdes;
2304
2305 ax->d.type = AUDIT_MQ_NOTIFY;
2306 ax->d.next = context->aux;
2307 context->aux = (void *)ax;
2308 return 0;
2309}
2310
2311/**
2312 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2313 * @mqdes: MQ descriptor
2314 * @mqstat: MQ flags
2315 *
George C. Wilson20ca73b2006-05-24 16:09:55 -05002316 */
Al Viro73929062008-12-10 06:58:59 -05002317void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
George C. Wilson20ca73b2006-05-24 16:09:55 -05002318{
George C. Wilson20ca73b2006-05-24 16:09:55 -05002319 struct audit_context *context = current->audit_context;
Al Viro73929062008-12-10 06:58:59 -05002320 context->mq_getsetattr.mqdes = mqdes;
2321 context->mq_getsetattr.mqstat = *mqstat;
2322 context->type = AUDIT_MQ_GETSETATTR;
George C. Wilson20ca73b2006-05-24 16:09:55 -05002323}
2324
2325/**
Steve Grubb073115d2006-04-02 17:07:33 -04002326 * audit_ipc_obj - record audit data for ipc object
2327 * @ipcp: ipc permissions
2328 *
Steve Grubb073115d2006-04-02 17:07:33 -04002329 */
Al Viroa33e6752008-12-10 03:40:06 -05002330void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04002331{
Steve Grubb073115d2006-04-02 17:07:33 -04002332 struct audit_context *context = current->audit_context;
Al Viroa33e6752008-12-10 03:40:06 -05002333 context->ipc.uid = ipcp->uid;
2334 context->ipc.gid = ipcp->gid;
2335 context->ipc.mode = ipcp->mode;
Al Viroe816f372008-12-10 03:47:15 -05002336 context->ipc.has_perm = 0;
Al Viroa33e6752008-12-10 03:40:06 -05002337 security_ipc_getsecid(ipcp, &context->ipc.osid);
2338 context->type = AUDIT_IPC;
Steve Grubb073115d2006-04-02 17:07:33 -04002339}
2340
2341/**
2342 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002343 * @qbytes: msgq bytes
2344 * @uid: msgq user id
2345 * @gid: msgq group id
2346 * @mode: msgq mode (permissions)
2347 *
Al Viroe816f372008-12-10 03:47:15 -05002348 * Called only after audit_ipc_obj().
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002349 */
Al Viroe816f372008-12-10 03:47:15 -05002350void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 struct audit_context *context = current->audit_context;
2353
Al Viroe816f372008-12-10 03:47:15 -05002354 context->ipc.qbytes = qbytes;
2355 context->ipc.perm_uid = uid;
2356 context->ipc.perm_gid = gid;
2357 context->ipc.perm_mode = mode;
2358 context->ipc.has_perm = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002360
Al Viro473ae302006-04-26 14:04:08 -04002361int audit_bprm(struct linux_binprm *bprm)
2362{
2363 struct audit_aux_data_execve *ax;
2364 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04002365
Al Viro5ac3a9c2006-07-16 06:38:45 -04002366 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04002367 return 0;
2368
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002369 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04002370 if (!ax)
2371 return -ENOMEM;
2372
2373 ax->argc = bprm->argc;
2374 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07002375 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04002376 ax->d.type = AUDIT_EXECVE;
2377 ax->d.next = context->aux;
2378 context->aux = (void *)ax;
2379 return 0;
2380}
2381
2382
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002383/**
2384 * audit_socketcall - record audit data for sys_socketcall
2385 * @nargs: number of args
2386 * @args: args array
2387 *
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002388 */
Al Virof3298dc2008-12-10 03:16:51 -05002389void audit_socketcall(int nargs, unsigned long *args)
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002390{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002391 struct audit_context *context = current->audit_context;
2392
Al Viro5ac3a9c2006-07-16 06:38:45 -04002393 if (likely(!context || context->dummy))
Al Virof3298dc2008-12-10 03:16:51 -05002394 return;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002395
Al Virof3298dc2008-12-10 03:16:51 -05002396 context->type = AUDIT_SOCKETCALL;
2397 context->socketcall.nargs = nargs;
2398 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002399}
2400
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002401/**
Al Virodb349502007-02-07 01:48:00 -05002402 * __audit_fd_pair - record audit data for pipe and socketpair
2403 * @fd1: the first file descriptor
2404 * @fd2: the second file descriptor
2405 *
2406 * Returns 0 for success or NULL context or < 0 on error.
2407 */
2408int __audit_fd_pair(int fd1, int fd2)
2409{
2410 struct audit_context *context = current->audit_context;
2411 struct audit_aux_data_fd_pair *ax;
2412
2413 if (likely(!context)) {
2414 return 0;
2415 }
2416
2417 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2418 if (!ax) {
2419 return -ENOMEM;
2420 }
2421
2422 ax->fd[0] = fd1;
2423 ax->fd[1] = fd2;
2424
2425 ax->d.type = AUDIT_FD_PAIR;
2426 ax->d.next = context->aux;
2427 context->aux = (void *)ax;
2428 return 0;
2429}
2430
2431/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002432 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2433 * @len: data length in user space
2434 * @a: data address in kernel space
2435 *
2436 * Returns 0 for success or NULL context or < 0 on error.
2437 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002438int audit_sockaddr(int len, void *a)
2439{
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002440 struct audit_context *context = current->audit_context;
2441
Al Viro5ac3a9c2006-07-16 06:38:45 -04002442 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002443 return 0;
2444
Al Viro4f6b4342008-12-09 19:50:34 -05002445 if (!context->sockaddr) {
2446 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2447 if (!p)
2448 return -ENOMEM;
2449 context->sockaddr = p;
2450 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002451
Al Viro4f6b4342008-12-09 19:50:34 -05002452 context->sockaddr_len = len;
2453 memcpy(context->sockaddr, a, len);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002454 return 0;
2455}
2456
Al Viroa5cb0132007-03-20 13:58:35 -04002457void __audit_ptrace(struct task_struct *t)
2458{
2459 struct audit_context *context = current->audit_context;
2460
2461 context->target_pid = t->pid;
Eric Parisc2a77802008-01-07 13:40:17 -05002462 context->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002463 context->target_uid = task_uid(t);
Eric Paris4746ec52008-01-08 10:06:53 -05002464 context->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002465 security_task_getsecid(t, &context->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002466 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
Al Viroa5cb0132007-03-20 13:58:35 -04002467}
2468
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002469/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002470 * audit_signal_info - record signal info for shutting down audit subsystem
2471 * @sig: signal value
2472 * @t: task being signaled
2473 *
2474 * If the audit subsystem is being terminated, record the task (pid)
2475 * and uid that is doing that.
2476 */
Amy Griffise54dc242007-03-29 18:01:04 -04002477int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002478{
Amy Griffise54dc242007-03-29 18:01:04 -04002479 struct audit_aux_data_pids *axp;
2480 struct task_struct *tsk = current;
2481 struct audit_context *ctx = tsk->audit_context;
David Howellsc69e8d92008-11-14 10:39:19 +11002482 uid_t uid = current_uid(), t_uid = task_uid(t);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002483
Al Viro175fc482007-08-08 00:01:46 +01002484 if (audit_pid && t->tgid == audit_pid) {
Eric Parisee1d3152008-07-07 10:49:45 -04002485 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
Al Viro175fc482007-08-08 00:01:46 +01002486 audit_sig_pid = tsk->pid;
Al Virobfef93a2008-01-10 04:53:18 -05002487 if (tsk->loginuid != -1)
2488 audit_sig_uid = tsk->loginuid;
Al Viro175fc482007-08-08 00:01:46 +01002489 else
David Howellsc69e8d92008-11-14 10:39:19 +11002490 audit_sig_uid = uid;
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002491 security_task_getsecid(tsk, &audit_sig_sid);
Al Viro175fc482007-08-08 00:01:46 +01002492 }
2493 if (!audit_signals || audit_dummy_context())
2494 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002495 }
Amy Griffise54dc242007-03-29 18:01:04 -04002496
Amy Griffise54dc242007-03-29 18:01:04 -04002497 /* optimize the common case by putting first signal recipient directly
2498 * in audit_context */
2499 if (!ctx->target_pid) {
2500 ctx->target_pid = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002501 ctx->target_auid = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002502 ctx->target_uid = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002503 ctx->target_sessionid = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002504 security_task_getsecid(t, &ctx->target_sid);
Eric Parisc2a77802008-01-07 13:40:17 -05002505 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002506 return 0;
2507 }
2508
2509 axp = (void *)ctx->aux_pids;
2510 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2511 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2512 if (!axp)
2513 return -ENOMEM;
2514
2515 axp->d.type = AUDIT_OBJ_PID;
2516 axp->d.next = ctx->aux_pids;
2517 ctx->aux_pids = (void *)axp;
2518 }
Adrian Bunk88ae7042007-08-22 14:01:05 -07002519 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
Amy Griffise54dc242007-03-29 18:01:04 -04002520
2521 axp->target_pid[axp->pid_count] = t->tgid;
Eric Parisc2a77802008-01-07 13:40:17 -05002522 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
David Howellsc69e8d92008-11-14 10:39:19 +11002523 axp->target_uid[axp->pid_count] = t_uid;
Eric Paris4746ec52008-01-08 10:06:53 -05002524 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002525 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
Eric Parisc2a77802008-01-07 13:40:17 -05002526 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
Amy Griffise54dc242007-03-29 18:01:04 -04002527 axp->pid_count++;
2528
2529 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002530}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002531
2532/**
Eric Paris3fc689e2008-11-11 21:48:18 +11002533 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
David Howellsd84f4f92008-11-14 10:39:23 +11002534 * @bprm: pointer to the bprm being processed
2535 * @new: the proposed new credentials
2536 * @old: the old credentials
Eric Paris3fc689e2008-11-11 21:48:18 +11002537 *
2538 * Simply check if the proc already has the caps given by the file and if not
2539 * store the priv escalation info for later auditing at the end of the syscall
2540 *
Eric Paris3fc689e2008-11-11 21:48:18 +11002541 * -Eric
2542 */
David Howellsd84f4f92008-11-14 10:39:23 +11002543int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2544 const struct cred *new, const struct cred *old)
Eric Paris3fc689e2008-11-11 21:48:18 +11002545{
2546 struct audit_aux_data_bprm_fcaps *ax;
2547 struct audit_context *context = current->audit_context;
2548 struct cpu_vfs_cap_data vcaps;
2549 struct dentry *dentry;
2550
2551 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2552 if (!ax)
David Howellsd84f4f92008-11-14 10:39:23 +11002553 return -ENOMEM;
Eric Paris3fc689e2008-11-11 21:48:18 +11002554
2555 ax->d.type = AUDIT_BPRM_FCAPS;
2556 ax->d.next = context->aux;
2557 context->aux = (void *)ax;
2558
2559 dentry = dget(bprm->file->f_dentry);
2560 get_vfs_caps_from_disk(dentry, &vcaps);
2561 dput(dentry);
2562
2563 ax->fcap.permitted = vcaps.permitted;
2564 ax->fcap.inheritable = vcaps.inheritable;
2565 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2566 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2567
David Howellsd84f4f92008-11-14 10:39:23 +11002568 ax->old_pcap.permitted = old->cap_permitted;
2569 ax->old_pcap.inheritable = old->cap_inheritable;
2570 ax->old_pcap.effective = old->cap_effective;
Eric Paris3fc689e2008-11-11 21:48:18 +11002571
David Howellsd84f4f92008-11-14 10:39:23 +11002572 ax->new_pcap.permitted = new->cap_permitted;
2573 ax->new_pcap.inheritable = new->cap_inheritable;
2574 ax->new_pcap.effective = new->cap_effective;
2575 return 0;
Eric Paris3fc689e2008-11-11 21:48:18 +11002576}
2577
2578/**
Eric Parise68b75a02008-11-11 21:48:22 +11002579 * __audit_log_capset - store information about the arguments to the capset syscall
David Howellsd84f4f92008-11-14 10:39:23 +11002580 * @pid: target pid of the capset call
2581 * @new: the new credentials
2582 * @old: the old (current) credentials
Eric Parise68b75a02008-11-11 21:48:22 +11002583 *
2584 * Record the aguments userspace sent to sys_capset for later printing by the
2585 * audit system if applicable
2586 */
David Howellsd84f4f92008-11-14 10:39:23 +11002587int __audit_log_capset(pid_t pid,
2588 const struct cred *new, const struct cred *old)
Eric Parise68b75a02008-11-11 21:48:22 +11002589{
2590 struct audit_aux_data_capset *ax;
2591 struct audit_context *context = current->audit_context;
2592
2593 if (likely(!audit_enabled || !context || context->dummy))
2594 return 0;
2595
2596 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2597 if (!ax)
2598 return -ENOMEM;
2599
2600 ax->d.type = AUDIT_CAPSET;
2601 ax->d.next = context->aux;
2602 context->aux = (void *)ax;
2603
2604 ax->pid = pid;
David Howellsd84f4f92008-11-14 10:39:23 +11002605 ax->cap.effective = new->cap_effective;
2606 ax->cap.inheritable = new->cap_effective;
2607 ax->cap.permitted = new->cap_permitted;
Eric Parise68b75a02008-11-11 21:48:22 +11002608
2609 return 0;
2610}
2611
2612/**
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002613 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002614 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002615 *
2616 * If a process ends with a core dump, something fishy is going on and we
2617 * should record the event for investigation.
2618 */
2619void audit_core_dumps(long signr)
2620{
2621 struct audit_buffer *ab;
2622 u32 sid;
David Howells76aac0e2008-11-14 10:39:12 +11002623 uid_t auid = audit_get_loginuid(current), uid;
2624 gid_t gid;
Eric Paris4746ec52008-01-08 10:06:53 -05002625 unsigned int sessionid = audit_get_sessionid(current);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002626
2627 if (!audit_enabled)
2628 return;
2629
2630 if (signr == SIGQUIT) /* don't care for those */
2631 return;
2632
2633 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
David Howells76aac0e2008-11-14 10:39:12 +11002634 current_uid_gid(&uid, &gid);
Eric Paris4746ec52008-01-08 10:06:53 -05002635 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
David Howells76aac0e2008-11-14 10:39:12 +11002636 auid, uid, gid, sessionid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002637 security_task_getsecid(current, &sid);
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002638 if (sid) {
2639 char *ctx = NULL;
2640 u32 len;
2641
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002642 if (security_secid_to_secctx(sid, &ctx, &len))
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002643 audit_log_format(ab, " ssid=%u", sid);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002644 else {
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002645 audit_log_format(ab, " subj=%s", ctx);
Ahmed S. Darwish2a862b32008-03-01 21:54:38 +02002646 security_release_secctx(ctx, len);
2647 }
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002648 }
2649 audit_log_format(ab, " pid=%d comm=", current->pid);
2650 audit_log_untrustedstring(ab, current->comm);
2651 audit_log_format(ab, " sig=%ld", signr);
2652 audit_log_end(ab);
2653}