blob: 4503c4663cf8aa6c3cf692102c2d8c2d26cf34f6 [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.
Dustin Kirklandb63862f2005-11-03 15:41:46 +00006 * Copyright (C) 2005 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 *
Dustin Kirklandb63862f2005-11-03 15:41:46 +000032 * The support of additional filter rules compares (>, <, >=, <=) was
33 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
34 *
Amy Griffis73241cc2005-11-03 16:00:25 +000035 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
36 * filesystem information.
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000037 *
38 * Subject and object context labeling support added by <danjones@us.ibm.com>
39 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
42#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/types.h>
Alan Cox715b49e2006-01-18 17:44:07 -080044#include <asm/atomic.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000045#include <asm/types.h>
46#include <linux/fs.h>
47#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mm.h>
49#include <linux/module.h>
Stephen Smalley01116102005-05-21 00:15:52 +010050#include <linux/mount.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010051#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/audit.h>
53#include <linux/personality.h>
54#include <linux/time.h>
David Woodhouse5bb289b2005-06-24 14:14:05 +010055#include <linux/netlink.h>
David Woodhousef5561962005-07-13 22:47:07 +010056#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/unistd.h>
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000058#include <linux/security.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000059#include <linux/list.h>
Steve Grubba6c043a2006-01-01 14:07:00 -050060#include <linux/tty.h>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060061#include <linux/selinux.h>
Al Viro473ae302006-04-26 14:04:08 -040062#include <linux/binfmts.h>
Al Virof46038f2006-05-06 08:22:52 -040063#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
David Woodhousefe7752b2005-12-15 18:33:52 +000065#include "audit.h"
66
67extern struct list_head audit_filter_list[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* No syscall auditing will take place unless audit_enabled != 0. */
70extern int audit_enabled;
71
72/* 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
76/* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
77 * audit_context from being used for nameless inodes from
78 * path_lookup. */
79#define AUDIT_NAMES_RESERVED 7
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* When fs/namei.c:getname() is called, we store the pointer in name and
82 * we don't let putname() free it (instead we free all of the saved
83 * pointers at syscall exit time).
84 *
85 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
86struct audit_names {
87 const char *name;
88 unsigned long ino;
Amy Griffis73241cc2005-11-03 16:00:25 +000089 unsigned long pino;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 dev_t dev;
91 umode_t mode;
92 uid_t uid;
93 gid_t gid;
94 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -040095 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
98struct audit_aux_data {
99 struct audit_aux_data *next;
100 int type;
101};
102
103#define AUDIT_AUX_IPCPERM 0
104
105struct audit_aux_data_ipcctl {
106 struct audit_aux_data d;
107 struct ipc_perm p;
108 unsigned long qbytes;
109 uid_t uid;
110 gid_t gid;
111 mode_t mode;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500112 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
Al Viro473ae302006-04-26 14:04:08 -0400115struct audit_aux_data_execve {
116 struct audit_aux_data d;
117 int argc;
118 int envc;
119 char mem[0];
120};
121
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100122struct audit_aux_data_socketcall {
123 struct audit_aux_data d;
124 int nargs;
125 unsigned long args[0];
126};
127
128struct audit_aux_data_sockaddr {
129 struct audit_aux_data d;
130 int len;
131 char a[0];
132};
133
Stephen Smalley01116102005-05-21 00:15:52 +0100134struct audit_aux_data_path {
135 struct audit_aux_data d;
136 struct dentry *dentry;
137 struct vfsmount *mnt;
138};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/* The per-task audit context. */
141struct audit_context {
142 int in_syscall; /* 1 if task is in a syscall */
143 enum audit_state state;
144 unsigned int serial; /* serial number for record */
145 struct timespec ctime; /* time of syscall entry */
146 uid_t loginuid; /* login uid (identity) */
147 int major; /* syscall number */
148 unsigned long argv[4]; /* syscall arguments */
149 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100150 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int auditable; /* 1 if record should be written */
152 int name_count;
153 struct audit_names names[AUDIT_NAMES];
David Woodhouse8f37d472005-05-27 12:17:28 +0100154 struct dentry * pwd;
155 struct vfsmount * pwdmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct audit_context *previous; /* For nested syscalls */
157 struct audit_aux_data *aux;
158
159 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400160 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 uid_t uid, euid, suid, fsuid;
162 gid_t gid, egid, sgid, fsgid;
163 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100164 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166#if AUDIT_DEBUG
167 int put_count;
168 int ino_count;
169#endif
170};
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/* Compare a task_struct with an audit_rule. Return 1 on match, 0
174 * otherwise. */
175static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500176 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct audit_context *ctx,
178 enum audit_state *state)
179{
Steve Grubb2ad312d2006-04-11 08:50:56 -0400180 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600181 u32 sid;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500184 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int result = 0;
186
Amy Griffis93315ed2006-02-07 12:05:27 -0500187 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500189 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 break;
Al Viro3c662512006-05-06 08:26:27 -0400191 case AUDIT_PPID:
192 if (ctx)
193 result = audit_comparator(ctx->ppid, f->op, f->val);
194 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 case AUDIT_UID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500196 result = audit_comparator(tsk->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 break;
198 case AUDIT_EUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500199 result = audit_comparator(tsk->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 break;
201 case AUDIT_SUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500202 result = audit_comparator(tsk->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 break;
204 case AUDIT_FSUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500205 result = audit_comparator(tsk->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
207 case AUDIT_GID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500208 result = audit_comparator(tsk->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 break;
210 case AUDIT_EGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500211 result = audit_comparator(tsk->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 case AUDIT_SGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500214 result = audit_comparator(tsk->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 break;
216 case AUDIT_FSGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500217 result = audit_comparator(tsk->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 break;
219 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500220 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 break;
2fd6f582005-04-29 16:08:28 +0100222 case AUDIT_ARCH:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000223 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500224 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100225 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 case AUDIT_EXIT:
228 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500229 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
231 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100232 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500233 if (f->val)
234 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100235 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500236 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239 case AUDIT_DEVMAJOR:
240 if (ctx) {
241 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500242 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 ++result;
244 break;
245 }
246 }
247 }
248 break;
249 case AUDIT_DEVMINOR:
250 if (ctx) {
251 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500252 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 ++result;
254 break;
255 }
256 }
257 }
258 break;
259 case AUDIT_INODE:
260 if (ctx) {
261 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500262 if (audit_comparator(ctx->names[j].ino, f->op, f->val) ||
263 audit_comparator(ctx->names[j].pino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ++result;
265 break;
266 }
267 }
268 }
269 break;
270 case AUDIT_LOGINUID:
271 result = 0;
272 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500273 result = audit_comparator(ctx->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600275 case AUDIT_SE_USER:
276 case AUDIT_SE_ROLE:
277 case AUDIT_SE_TYPE:
278 case AUDIT_SE_SEN:
279 case AUDIT_SE_CLR:
280 /* NOTE: this may return negative values indicating
281 a temporary error. We simply treat this as a
282 match for now to avoid losing information that
283 may be wanted. An error message will also be
284 logged upon error */
Steve Grubb2ad312d2006-04-11 08:50:56 -0400285 if (f->se_rule) {
286 if (need_sid) {
287 selinux_task_ctxid(tsk, &sid);
288 need_sid = 0;
289 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600290 result = selinux_audit_rule_match(sid, f->type,
291 f->op,
292 f->se_rule,
293 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400294 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 case AUDIT_ARG0:
297 case AUDIT_ARG1:
298 case AUDIT_ARG2:
299 case AUDIT_ARG3:
300 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500301 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303 }
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!result)
306 return 0;
307 }
308 switch (rule->action) {
309 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
311 }
312 return 1;
313}
314
315/* At process creation time, we can determine if system-call auditing is
316 * completely disabled for this task. Since we only have the task
317 * structure at this point, we can only check uid and gid.
318 */
319static enum audit_state audit_filter_task(struct task_struct *tsk)
320{
321 struct audit_entry *e;
322 enum audit_state state;
323
324 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100325 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (audit_filter_rules(tsk, &e->rule, NULL, &state)) {
327 rcu_read_unlock();
328 return state;
329 }
330 }
331 rcu_read_unlock();
332 return AUDIT_BUILD_CONTEXT;
333}
334
335/* At syscall entry and exit time, this filter is called if the
336 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100337 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700338 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
340static enum audit_state audit_filter_syscall(struct task_struct *tsk,
341 struct audit_context *ctx,
342 struct list_head *list)
343{
344 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100345 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
David Woodhouse351bb722005-07-14 14:40:06 +0100347 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100348 return AUDIT_DISABLED;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100351 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000352 int word = AUDIT_WORD(ctx->major);
353 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100354
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000355 list_for_each_entry_rcu(e, list, list) {
356 if ((e->rule.mask[word] & bit) == bit
357 && audit_filter_rules(tsk, &e->rule, ctx, &state)) {
358 rcu_read_unlock();
359 return state;
360 }
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363 rcu_read_unlock();
364 return AUDIT_BUILD_CONTEXT;
365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static inline struct audit_context *audit_get_context(struct task_struct *tsk,
368 int return_valid,
369 int return_code)
370{
371 struct audit_context *context = tsk->audit_context;
372
373 if (likely(!context))
374 return NULL;
375 context->return_valid = return_valid;
376 context->return_code = return_code;
377
David Woodhouse21af6c42005-07-02 14:10:46 +0100378 if (context->in_syscall && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 enum audit_state state;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100380 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (state == AUDIT_RECORD_CONTEXT)
382 context->auditable = 1;
383 }
384
385 context->pid = tsk->pid;
Al Virof46038f2006-05-06 08:22:52 -0400386 context->ppid = sys_getppid(); /* sic. tsk == current in all cases */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 context->uid = tsk->uid;
388 context->gid = tsk->gid;
389 context->euid = tsk->euid;
390 context->suid = tsk->suid;
391 context->fsuid = tsk->fsuid;
392 context->egid = tsk->egid;
393 context->sgid = tsk->sgid;
394 context->fsgid = tsk->fsgid;
395 context->personality = tsk->personality;
396 tsk->audit_context = NULL;
397 return context;
398}
399
400static inline void audit_free_names(struct audit_context *context)
401{
402 int i;
403
404#if AUDIT_DEBUG == 2
405 if (context->auditable
406 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000407 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 " name_count=%d put_count=%d"
409 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000410 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 context->serial, context->major, context->in_syscall,
412 context->name_count, context->put_count,
413 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000414 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 printk(KERN_ERR "names[%d] = %p = %s\n", i,
416 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000417 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 dump_stack();
420 return;
421 }
422#endif
423#if AUDIT_DEBUG
424 context->put_count = 0;
425 context->ino_count = 0;
426#endif
427
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000428 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (context->names[i].name)
430 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 context->name_count = 0;
David Woodhouse8f37d472005-05-27 12:17:28 +0100433 if (context->pwd)
434 dput(context->pwd);
435 if (context->pwdmnt)
436 mntput(context->pwdmnt);
437 context->pwd = NULL;
438 context->pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441static inline void audit_free_aux(struct audit_context *context)
442{
443 struct audit_aux_data *aux;
444
445 while ((aux = context->aux)) {
Stephen Smalley01116102005-05-21 00:15:52 +0100446 if (aux->type == AUDIT_AVC_PATH) {
447 struct audit_aux_data_path *axi = (void *)aux;
448 dput(axi->dentry);
449 mntput(axi->mnt);
450 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 context->aux = aux->next;
453 kfree(aux);
454 }
455}
456
457static inline void audit_zero_context(struct audit_context *context,
458 enum audit_state state)
459{
460 uid_t loginuid = context->loginuid;
461
462 memset(context, 0, sizeof(*context));
463 context->state = state;
464 context->loginuid = loginuid;
465}
466
467static inline struct audit_context *audit_alloc_context(enum audit_state state)
468{
469 struct audit_context *context;
470
471 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
472 return NULL;
473 audit_zero_context(context, state);
474 return context;
475}
476
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700477/**
478 * audit_alloc - allocate an audit context block for a task
479 * @tsk: task
480 *
481 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * if necessary. Doing so turns on system call auditing for the
483 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700484 * needed.
485 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486int audit_alloc(struct task_struct *tsk)
487{
488 struct audit_context *context;
489 enum audit_state state;
490
491 if (likely(!audit_enabled))
492 return 0; /* Return if not auditing. */
493
494 state = audit_filter_task(tsk);
495 if (likely(state == AUDIT_DISABLED))
496 return 0;
497
498 if (!(context = audit_alloc_context(state))) {
499 audit_log_lost("out of memory in audit_alloc");
500 return -ENOMEM;
501 }
502
503 /* Preserve login uid */
504 context->loginuid = -1;
505 if (current->audit_context)
506 context->loginuid = current->audit_context->loginuid;
507
508 tsk->audit_context = context;
509 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
510 return 0;
511}
512
513static inline void audit_free_context(struct audit_context *context)
514{
515 struct audit_context *previous;
516 int count = 0;
517
518 do {
519 previous = context->previous;
520 if (previous || (count && count < 10)) {
521 ++count;
522 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
523 " freeing multiple contexts (%d)\n",
524 context->serial, context->major,
525 context->name_count, count);
526 }
527 audit_free_names(context);
528 audit_free_aux(context);
529 kfree(context);
530 context = previous;
531 } while (context);
532 if (count >= 10)
533 printk(KERN_ERR "audit: freed %d contexts\n", count);
534}
535
Al Viroe4951492006-03-29 20:17:10 -0500536static void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000537{
538 char *ctx = NULL;
539 ssize_t len = 0;
540
541 len = security_getprocattr(current, "current", NULL, 0);
542 if (len < 0) {
543 if (len != -EINVAL)
544 goto error_path;
545 return;
546 }
547
Al Viroe4951492006-03-29 20:17:10 -0500548 ctx = kmalloc(len, GFP_KERNEL);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000549 if (!ctx)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000550 goto error_path;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000551
552 len = security_getprocattr(current, "current", ctx, len);
553 if (len < 0 )
554 goto error_path;
555
556 audit_log_format(ab, " subj=%s", ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000557 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000558
559error_path:
560 if (ctx)
561 kfree(ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000562 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000563 return;
564}
565
Al Viroe4951492006-03-29 20:17:10 -0500566static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700567{
Al Viro45d9bb02006-03-29 20:02:55 -0500568 char name[sizeof(tsk->comm)];
569 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700570 struct vm_area_struct *vma;
571
Al Viroe4951492006-03-29 20:17:10 -0500572 /* tsk == current */
573
Al Viro45d9bb02006-03-29 20:02:55 -0500574 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100575 audit_log_format(ab, " comm=");
576 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700577
Al Viroe4951492006-03-29 20:17:10 -0500578 if (mm) {
579 down_read(&mm->mmap_sem);
580 vma = mm->mmap;
581 while (vma) {
582 if ((vma->vm_flags & VM_EXECUTABLE) &&
583 vma->vm_file) {
584 audit_log_d_path(ab, "exe=",
585 vma->vm_file->f_dentry,
586 vma->vm_file->f_vfsmnt);
587 break;
588 }
589 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700590 }
Al Viroe4951492006-03-29 20:17:10 -0500591 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700592 }
Al Viroe4951492006-03-29 20:17:10 -0500593 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700594}
595
Al Viroe4951492006-03-29 20:17:10 -0500596static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500598 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +0100600 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -0500601 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Al Viroe4951492006-03-29 20:17:10 -0500603 /* tsk == current */
604
605 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (!ab)
607 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +0100608 audit_log_format(ab, "arch=%x syscall=%d",
609 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (context->personality != PER_LINUX)
611 audit_log_format(ab, " per=%lx", context->personality);
612 if (context->return_valid)
2fd6f582005-04-29 16:08:28 +0100613 audit_log_format(ab, " success=%s exit=%ld",
614 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
615 context->return_code);
Al Viro45d9bb02006-03-29 20:02:55 -0500616 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
617 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -0500618 else
619 tty = "(none)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 audit_log_format(ab,
621 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -0400622 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +0100623 " euid=%u suid=%u fsuid=%u"
Steve Grubba6c043a2006-01-01 14:07:00 -0500624 " egid=%u sgid=%u fsgid=%u tty=%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 context->argv[0],
626 context->argv[1],
627 context->argv[2],
628 context->argv[3],
629 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -0400630 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 context->pid,
632 context->loginuid,
633 context->uid,
634 context->gid,
635 context->euid, context->suid, context->fsuid,
Steve Grubba6c043a2006-01-01 14:07:00 -0500636 context->egid, context->sgid, context->fsgid, tty);
Al Viroe4951492006-03-29 20:17:10 -0500637 audit_log_task_info(ab, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
David Woodhouse7551ced2005-05-26 12:04:57 +0100640 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +0100641
Al Viroe4951492006-03-29 20:17:10 -0500642 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (!ab)
644 continue; /* audit_panic has been called */
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 switch (aux->type) {
Steve Grubbc0404992005-05-13 18:17:42 +0100647 case AUDIT_IPC: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 struct audit_aux_data_ipcctl *axi = (void *)aux;
649 audit_log_format(ab,
Linda Knippersac032212006-05-16 22:03:48 -0400650 "ouid=%u ogid=%u mode=%x",
651 axi->uid, axi->gid, axi->mode);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500652 if (axi->osid != 0) {
653 char *ctx = NULL;
654 u32 len;
655 if (selinux_ctxid_to_string(
656 axi->osid, &ctx, &len)) {
Steve Grubbce29b682006-04-01 18:29:34 -0500657 audit_log_format(ab, " osid=%u",
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500658 axi->osid);
659 call_panic = 1;
660 } else
661 audit_log_format(ab, " obj=%s", ctx);
662 kfree(ctx);
663 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100664 break; }
665
Steve Grubb073115d2006-04-02 17:07:33 -0400666 case AUDIT_IPC_SET_PERM: {
667 struct audit_aux_data_ipcctl *axi = (void *)aux;
668 audit_log_format(ab,
Linda Knippersac032212006-05-16 22:03:48 -0400669 "qbytes=%lx ouid=%u ogid=%u mode=%x",
Steve Grubb073115d2006-04-02 17:07:33 -0400670 axi->qbytes, axi->uid, axi->gid, axi->mode);
Steve Grubb073115d2006-04-02 17:07:33 -0400671 break; }
Linda Knippersac032212006-05-16 22:03:48 -0400672
Al Viro473ae302006-04-26 14:04:08 -0400673 case AUDIT_EXECVE: {
674 struct audit_aux_data_execve *axi = (void *)aux;
675 int i;
676 const char *p;
677 for (i = 0, p = axi->mem; i < axi->argc; i++) {
678 audit_log_format(ab, "a%d=", i);
679 p = audit_log_untrustedstring(ab, p);
680 audit_log_format(ab, "\n");
681 }
682 break; }
Steve Grubb073115d2006-04-02 17:07:33 -0400683
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100684 case AUDIT_SOCKETCALL: {
685 int i;
686 struct audit_aux_data_socketcall *axs = (void *)aux;
687 audit_log_format(ab, "nargs=%d", axs->nargs);
688 for (i=0; i<axs->nargs; i++)
689 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
690 break; }
691
692 case AUDIT_SOCKADDR: {
693 struct audit_aux_data_sockaddr *axs = (void *)aux;
694
695 audit_log_format(ab, "saddr=");
696 audit_log_hex(ab, axs->a, axs->len);
697 break; }
Stephen Smalley01116102005-05-21 00:15:52 +0100698
699 case AUDIT_AVC_PATH: {
700 struct audit_aux_data_path *axi = (void *)aux;
701 audit_log_d_path(ab, "path=", axi->dentry, axi->mnt);
Stephen Smalley01116102005-05-21 00:15:52 +0100702 break; }
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
David Woodhouse8f37d472005-05-27 12:17:28 +0100708 if (context->pwd && context->pwdmnt) {
Al Viroe4951492006-03-29 20:17:10 -0500709 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +0100710 if (ab) {
711 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
712 audit_log_end(ab);
713 }
714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 for (i = 0; i < context->name_count; i++) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000716 unsigned long ino = context->names[i].ino;
717 unsigned long pino = context->names[i].pino;
718
Al Viroe4951492006-03-29 20:17:10 -0500719 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (!ab)
721 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +0100722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +0000724
725 audit_log_format(ab, " name=");
726 if (context->names[i].name)
83c7d092005-04-29 15:54:44 +0100727 audit_log_untrustedstring(ab, context->names[i].name);
Amy Griffis73241cc2005-11-03 16:00:25 +0000728 else
729 audit_log_format(ab, "(null)");
730
731 if (pino != (unsigned long)-1)
732 audit_log_format(ab, " parent=%lu", pino);
733 if (ino != (unsigned long)-1)
734 audit_log_format(ab, " inode=%lu", ino);
735 if ((pino != (unsigned long)-1) || (ino != (unsigned long)-1))
736 audit_log_format(ab, " dev=%02x:%02x mode=%#o"
737 " ouid=%u ogid=%u rdev=%02x:%02x",
738 MAJOR(context->names[i].dev),
739 MINOR(context->names[i].dev),
740 context->names[i].mode,
741 context->names[i].uid,
742 context->names[i].gid,
743 MAJOR(context->names[i].rdev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 MINOR(context->names[i].rdev));
Steve Grubb1b50eed2006-04-03 14:06:13 -0400745 if (context->names[i].osid != 0) {
746 char *ctx = NULL;
747 u32 len;
748 if (selinux_ctxid_to_string(
749 context->names[i].osid, &ctx, &len)) {
Steve Grubbce29b682006-04-01 18:29:34 -0500750 audit_log_format(ab, " osid=%u",
Steve Grubb1b50eed2006-04-03 14:06:13 -0400751 context->names[i].osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500752 call_panic = 2;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400753 } else
754 audit_log_format(ab, " obj=%s", ctx);
755 kfree(ctx);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000756 }
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 audit_log_end(ab);
759 }
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500760 if (call_panic)
761 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700764/**
765 * audit_free - free a per-task audit context
766 * @tsk: task whose audit context block to free
767 *
Al Virofa84cb92006-03-29 20:30:19 -0500768 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700769 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770void audit_free(struct task_struct *tsk)
771{
772 struct audit_context *context;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (likely(!context))
776 return;
777
778 /* Check for system calls that do not go through the exit
David Woodhousef5561962005-07-13 22:47:07 +0100779 * function (e.g., exit_group), then free context block.
780 * We use GFP_ATOMIC here because we might be doing this
781 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -0500782 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +0100783 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -0500784 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 audit_free_context(context);
787}
788
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700789/**
790 * audit_syscall_entry - fill in an audit record at syscall entry
791 * @tsk: task being audited
792 * @arch: architecture type
793 * @major: major syscall type (function)
794 * @a1: additional syscall register 1
795 * @a2: additional syscall register 2
796 * @a3: additional syscall register 3
797 * @a4: additional syscall register 4
798 *
799 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * audit context was created when the task was created and the state or
801 * filters demand the audit context be built. If the state from the
802 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
803 * then the record will be written at syscall exit time (otherwise, it
804 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700805 * be written).
806 */
Al Viro5411be52006-03-29 20:23:36 -0500807void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 unsigned long a1, unsigned long a2,
809 unsigned long a3, unsigned long a4)
810{
Al Viro5411be52006-03-29 20:23:36 -0500811 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 struct audit_context *context = tsk->audit_context;
813 enum audit_state state;
814
815 BUG_ON(!context);
816
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700817 /*
818 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * calls in kernel_thread via the entry.S interface, instead of
820 * with direct calls. (If you are porting to a new
821 * architecture, hitting this condition can indicate that you
822 * got the _exit/_leave calls backward in entry.S.)
823 *
824 * i386 no
825 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -0600826 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 *
828 * This also happens with vm86 emulation in a non-nested manner
829 * (entries without exits), so this case must be caught.
830 */
831 if (context->in_syscall) {
832 struct audit_context *newctx;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#if AUDIT_DEBUG
835 printk(KERN_ERR
836 "audit(:%d) pid=%d in syscall=%d;"
837 " entering syscall=%d\n",
838 context->serial, tsk->pid, context->major, major);
839#endif
840 newctx = audit_alloc_context(context->state);
841 if (newctx) {
842 newctx->previous = context;
843 context = newctx;
844 tsk->audit_context = newctx;
845 } else {
846 /* If we can't alloc a new context, the best we
847 * can do is to leak memory (any pending putname
848 * will be lost). The only other alternative is
849 * to abandon auditing. */
850 audit_zero_context(context, context->state);
851 }
852 }
853 BUG_ON(context->in_syscall || context->name_count);
854
855 if (!audit_enabled)
856 return;
857
2fd6f582005-04-29 16:08:28 +0100858 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 context->major = major;
860 context->argv[0] = a1;
861 context->argv[1] = a2;
862 context->argv[2] = a3;
863 context->argv[3] = a4;
864
865 state = context->state;
866 if (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT)
David Woodhouse0f45aa12005-06-19 19:35:50 +0100867 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (likely(state == AUDIT_DISABLED))
869 return;
870
David Woodhousece625a82005-07-18 14:24:46 -0400871 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 context->ctime = CURRENT_TIME;
873 context->in_syscall = 1;
874 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
875}
876
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700877/**
878 * audit_syscall_exit - deallocate audit context after a system call
879 * @tsk: task being audited
880 * @valid: success/failure flag
881 * @return_code: syscall return value
882 *
883 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
885 * filtering, or because some other part of the kernel write an audit
886 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700887 * free the names stored from getname().
888 */
Al Viro5411be52006-03-29 20:23:36 -0500889void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Al Viro5411be52006-03-29 20:23:36 -0500891 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 struct audit_context *context;
893
2fd6f582005-04-29 16:08:28 +0100894 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -0500897 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
David Woodhousef7056d62005-06-20 16:07:33 +0100899 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -0500900 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 context->in_syscall = 0;
903 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +0100904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (context->previous) {
906 struct audit_context *new_context = context->previous;
907 context->previous = NULL;
908 audit_free_context(context);
909 tsk->audit_context = new_context;
910 } else {
911 audit_free_names(context);
912 audit_free_aux(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 tsk->audit_context = context;
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700917/**
918 * audit_getname - add a name to the list
919 * @name: name to add
920 *
921 * Add a name to the list of audit names for this context.
922 * Called from fs/namei.c:getname().
923 */
Al Virod8945bb52006-05-18 16:01:30 -0400924void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
926 struct audit_context *context = current->audit_context;
927
Al Virod8945bb52006-05-18 16:01:30 -0400928 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return;
930
931 if (!context->in_syscall) {
932#if AUDIT_DEBUG == 2
933 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
934 __FILE__, __LINE__, context->serial, name);
935 dump_stack();
936#endif
937 return;
938 }
939 BUG_ON(context->name_count >= AUDIT_NAMES);
940 context->names[context->name_count].name = name;
941 context->names[context->name_count].ino = (unsigned long)-1;
942 ++context->name_count;
David Woodhouse8f37d472005-05-27 12:17:28 +0100943 if (!context->pwd) {
944 read_lock(&current->fs->lock);
945 context->pwd = dget(current->fs->pwd);
946 context->pwdmnt = mntget(current->fs->pwdmnt);
947 read_unlock(&current->fs->lock);
948 }
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700952/* audit_putname - intercept a putname request
953 * @name: name to intercept and delay for putname
954 *
955 * If we have stored the name from getname in the audit context,
956 * then we delay the putname until syscall exit.
957 * Called from include/linux/fs.h:putname().
958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959void audit_putname(const char *name)
960{
961 struct audit_context *context = current->audit_context;
962
963 BUG_ON(!context);
964 if (!context->in_syscall) {
965#if AUDIT_DEBUG == 2
966 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
967 __FILE__, __LINE__, context->serial, name);
968 if (context->name_count) {
969 int i;
970 for (i = 0; i < context->name_count; i++)
971 printk(KERN_ERR "name[%d] = %p = %s\n", i,
972 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000973 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975#endif
976 __putname(name);
977 }
978#if AUDIT_DEBUG
979 else {
980 ++context->put_count;
981 if (context->put_count > context->name_count) {
982 printk(KERN_ERR "%s:%d(:%d): major=%d"
983 " in_syscall=%d putname(%p) name_count=%d"
984 " put_count=%d\n",
985 __FILE__, __LINE__,
986 context->serial, context->major,
987 context->in_syscall, name, context->name_count,
988 context->put_count);
989 dump_stack();
990 }
991 }
992#endif
993}
994
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500995static void audit_inode_context(int idx, const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000996{
997 struct audit_context *context = current->audit_context;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000998
Steve Grubb1b50eed2006-04-03 14:06:13 -0400999 selinux_get_inode_sid(inode, &context->names[idx].osid);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001000}
1001
1002
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001003/**
1004 * audit_inode - store the inode and device from a lookup
1005 * @name: name being audited
1006 * @inode: inode being audited
1007 * @flags: lookup flags (as used in path_lookup())
1008 *
1009 * Called from fs/namei.c:path_lookup().
1010 */
Amy Griffis73241cc2005-11-03 16:00:25 +00001011void __audit_inode(const char *name, const struct inode *inode, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 int idx;
1014 struct audit_context *context = current->audit_context;
1015
1016 if (!context->in_syscall)
1017 return;
1018 if (context->name_count
1019 && context->names[context->name_count-1].name
1020 && context->names[context->name_count-1].name == name)
1021 idx = context->name_count - 1;
1022 else if (context->name_count > 1
1023 && context->names[context->name_count-2].name
1024 && context->names[context->name_count-2].name == name)
1025 idx = context->name_count - 2;
1026 else {
1027 /* FIXME: how much do we care about inodes that have no
1028 * associated name? */
1029 if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED)
1030 return;
1031 idx = context->name_count++;
1032 context->names[idx].name = NULL;
1033#if AUDIT_DEBUG
1034 ++context->ino_count;
1035#endif
1036 }
David Woodhouseae7b9612005-06-20 16:11:05 +01001037 context->names[idx].dev = inode->i_sb->s_dev;
1038 context->names[idx].mode = inode->i_mode;
1039 context->names[idx].uid = inode->i_uid;
1040 context->names[idx].gid = inode->i_gid;
1041 context->names[idx].rdev = inode->i_rdev;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001042 audit_inode_context(idx, inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00001043 if ((flags & LOOKUP_PARENT) && (strcmp(name, "/") != 0) &&
1044 (strcmp(name, ".") != 0)) {
1045 context->names[idx].ino = (unsigned long)-1;
1046 context->names[idx].pino = inode->i_ino;
1047 } else {
1048 context->names[idx].ino = inode->i_ino;
1049 context->names[idx].pino = (unsigned long)-1;
1050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Amy Griffis73241cc2005-11-03 16:00:25 +00001053/**
1054 * audit_inode_child - collect inode info for created/removed objects
1055 * @dname: inode's dentry name
1056 * @inode: inode being audited
1057 * @pino: inode number of dentry parent
1058 *
1059 * For syscalls that create or remove filesystem objects, audit_inode
1060 * can only collect information for the filesystem object's parent.
1061 * This call updates the audit context with the child's information.
1062 * Syscalls that create a new filesystem object must be hooked after
1063 * the object is created. Syscalls that remove a filesystem object
1064 * must be hooked prior, in order to capture the target inode during
1065 * unsuccessful attempts.
1066 */
1067void __audit_inode_child(const char *dname, const struct inode *inode,
1068 unsigned long pino)
1069{
1070 int idx;
1071 struct audit_context *context = current->audit_context;
1072
1073 if (!context->in_syscall)
1074 return;
1075
1076 /* determine matching parent */
1077 if (dname)
1078 for (idx = 0; idx < context->name_count; idx++)
1079 if (context->names[idx].pino == pino) {
1080 const char *n;
1081 const char *name = context->names[idx].name;
1082 int dlen = strlen(dname);
1083 int nlen = name ? strlen(name) : 0;
1084
1085 if (nlen < dlen)
1086 continue;
1087
1088 /* disregard trailing slashes */
1089 n = name + nlen - 1;
1090 while ((*n == '/') && (n > name))
1091 n--;
1092
1093 /* find last path component */
1094 n = n - dlen + 1;
1095 if (n < name)
1096 continue;
1097 else if (n > name) {
1098 if (*--n != '/')
1099 continue;
1100 else
1101 n++;
1102 }
1103
1104 if (strncmp(n, dname, dlen) == 0)
1105 goto update_context;
1106 }
1107
1108 /* catch-all in case match not found */
1109 idx = context->name_count++;
1110 context->names[idx].name = NULL;
1111 context->names[idx].pino = pino;
1112#if AUDIT_DEBUG
1113 context->ino_count++;
1114#endif
1115
1116update_context:
1117 if (inode) {
1118 context->names[idx].ino = inode->i_ino;
1119 context->names[idx].dev = inode->i_sb->s_dev;
1120 context->names[idx].mode = inode->i_mode;
1121 context->names[idx].uid = inode->i_uid;
1122 context->names[idx].gid = inode->i_gid;
1123 context->names[idx].rdev = inode->i_rdev;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001124 audit_inode_context(idx, inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00001125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001128/**
1129 * auditsc_get_stamp - get local copies of audit_context values
1130 * @ctx: audit_context for the task
1131 * @t: timespec to store time recorded in the audit_context
1132 * @serial: serial value that is recorded in the audit_context
1133 *
1134 * Also sets the context as auditable.
1135 */
David Woodhousebfb44962005-05-21 21:08:09 +01001136void auditsc_get_stamp(struct audit_context *ctx,
1137 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
David Woodhousece625a82005-07-18 14:24:46 -04001139 if (!ctx->serial)
1140 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01001141 t->tv_sec = ctx->ctime.tv_sec;
1142 t->tv_nsec = ctx->ctime.tv_nsec;
1143 *serial = ctx->serial;
1144 ctx->auditable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001147/**
1148 * audit_set_loginuid - set a task's audit_context loginuid
1149 * @task: task whose audit context is being modified
1150 * @loginuid: loginuid value
1151 *
1152 * Returns 0.
1153 *
1154 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1155 */
Steve Grubb456be6c2005-04-29 17:30:07 +01001156int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Steve Grubb456be6c2005-04-29 17:30:07 +01001158 if (task->audit_context) {
Steve Grubbc0404992005-05-13 18:17:42 +01001159 struct audit_buffer *ab;
1160
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001161 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
Steve Grubbc0404992005-05-13 18:17:42 +01001162 if (ab) {
1163 audit_log_format(ab, "login pid=%d uid=%u "
Steve Grubb326e9c82005-05-21 00:22:31 +01001164 "old auid=%u new auid=%u",
Steve Grubbc0404992005-05-13 18:17:42 +01001165 task->pid, task->uid,
1166 task->audit_context->loginuid, loginuid);
1167 audit_log_end(ab);
1168 }
Steve Grubb456be6c2005-04-29 17:30:07 +01001169 task->audit_context->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171 return 0;
1172}
1173
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001174/**
1175 * audit_get_loginuid - get the loginuid for an audit_context
1176 * @ctx: the audit_context
1177 *
1178 * Returns the context's loginuid or -1 if @ctx is NULL.
1179 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180uid_t audit_get_loginuid(struct audit_context *ctx)
1181{
1182 return ctx ? ctx->loginuid : -1;
1183}
1184
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001185/**
Steve Grubb073115d2006-04-02 17:07:33 -04001186 * audit_ipc_obj - record audit data for ipc object
1187 * @ipcp: ipc permissions
1188 *
1189 * Returns 0 for success or NULL context or < 0 on error.
1190 */
Al Virod8945bb52006-05-18 16:01:30 -04001191int __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04001192{
1193 struct audit_aux_data_ipcctl *ax;
1194 struct audit_context *context = current->audit_context;
1195
Steve Grubb073115d2006-04-02 17:07:33 -04001196 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1197 if (!ax)
1198 return -ENOMEM;
1199
1200 ax->uid = ipcp->uid;
1201 ax->gid = ipcp->gid;
1202 ax->mode = ipcp->mode;
1203 selinux_get_ipc_sid(ipcp, &ax->osid);
1204
1205 ax->d.type = AUDIT_IPC;
1206 ax->d.next = context->aux;
1207 context->aux = (void *)ax;
1208 return 0;
1209}
1210
1211/**
1212 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001213 * @qbytes: msgq bytes
1214 * @uid: msgq user id
1215 * @gid: msgq group id
1216 * @mode: msgq mode (permissions)
1217 *
1218 * Returns 0 for success or NULL context or < 0 on error.
1219 */
Al Virod8945bb52006-05-18 16:01:30 -04001220int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 struct audit_aux_data_ipcctl *ax;
1223 struct audit_context *context = current->audit_context;
1224
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001225 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (!ax)
1227 return -ENOMEM;
1228
1229 ax->qbytes = qbytes;
1230 ax->uid = uid;
1231 ax->gid = gid;
1232 ax->mode = mode;
1233
Steve Grubb073115d2006-04-02 17:07:33 -04001234 ax->d.type = AUDIT_IPC_SET_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 ax->d.next = context->aux;
1236 context->aux = (void *)ax;
1237 return 0;
1238}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001239
Al Viro473ae302006-04-26 14:04:08 -04001240int audit_bprm(struct linux_binprm *bprm)
1241{
1242 struct audit_aux_data_execve *ax;
1243 struct audit_context *context = current->audit_context;
1244 unsigned long p, next;
1245 void *to;
1246
1247 if (likely(!audit_enabled || !context))
1248 return 0;
1249
1250 ax = kmalloc(sizeof(*ax) + PAGE_SIZE * MAX_ARG_PAGES - bprm->p,
1251 GFP_KERNEL);
1252 if (!ax)
1253 return -ENOMEM;
1254
1255 ax->argc = bprm->argc;
1256 ax->envc = bprm->envc;
1257 for (p = bprm->p, to = ax->mem; p < MAX_ARG_PAGES*PAGE_SIZE; p = next) {
1258 struct page *page = bprm->page[p / PAGE_SIZE];
1259 void *kaddr = kmap(page);
1260 next = (p + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1261 memcpy(to, kaddr + (p & (PAGE_SIZE - 1)), next - p);
1262 to += next - p;
1263 kunmap(page);
1264 }
1265
1266 ax->d.type = AUDIT_EXECVE;
1267 ax->d.next = context->aux;
1268 context->aux = (void *)ax;
1269 return 0;
1270}
1271
1272
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001273/**
1274 * audit_socketcall - record audit data for sys_socketcall
1275 * @nargs: number of args
1276 * @args: args array
1277 *
1278 * Returns 0 for success or NULL context or < 0 on error.
1279 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001280int audit_socketcall(int nargs, unsigned long *args)
1281{
1282 struct audit_aux_data_socketcall *ax;
1283 struct audit_context *context = current->audit_context;
1284
1285 if (likely(!context))
1286 return 0;
1287
1288 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1289 if (!ax)
1290 return -ENOMEM;
1291
1292 ax->nargs = nargs;
1293 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1294
1295 ax->d.type = AUDIT_SOCKETCALL;
1296 ax->d.next = context->aux;
1297 context->aux = (void *)ax;
1298 return 0;
1299}
1300
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001301/**
1302 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1303 * @len: data length in user space
1304 * @a: data address in kernel space
1305 *
1306 * Returns 0 for success or NULL context or < 0 on error.
1307 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001308int audit_sockaddr(int len, void *a)
1309{
1310 struct audit_aux_data_sockaddr *ax;
1311 struct audit_context *context = current->audit_context;
1312
1313 if (likely(!context))
1314 return 0;
1315
1316 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1317 if (!ax)
1318 return -ENOMEM;
1319
1320 ax->len = len;
1321 memcpy(ax->a, a, len);
1322
1323 ax->d.type = AUDIT_SOCKADDR;
1324 ax->d.next = context->aux;
1325 context->aux = (void *)ax;
1326 return 0;
1327}
1328
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001329/**
1330 * audit_avc_path - record the granting or denial of permissions
1331 * @dentry: dentry to record
1332 * @mnt: mnt to record
1333 *
1334 * Returns 0 for success or NULL context or < 0 on error.
1335 *
1336 * Called from security/selinux/avc.c::avc_audit()
1337 */
Stephen Smalley01116102005-05-21 00:15:52 +01001338int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt)
1339{
1340 struct audit_aux_data_path *ax;
1341 struct audit_context *context = current->audit_context;
1342
1343 if (likely(!context))
1344 return 0;
1345
1346 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1347 if (!ax)
1348 return -ENOMEM;
1349
1350 ax->dentry = dget(dentry);
1351 ax->mnt = mntget(mnt);
1352
1353 ax->d.type = AUDIT_AVC_PATH;
1354 ax->d.next = context->aux;
1355 context->aux = (void *)ax;
1356 return 0;
1357}
1358
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001359/**
1360 * audit_signal_info - record signal info for shutting down audit subsystem
1361 * @sig: signal value
1362 * @t: task being signaled
1363 *
1364 * If the audit subsystem is being terminated, record the task (pid)
1365 * and uid that is doing that.
1366 */
Al Viroe1396062006-05-25 10:19:47 -04001367void __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001368{
1369 extern pid_t audit_sig_pid;
1370 extern uid_t audit_sig_uid;
Al Viroe1396062006-05-25 10:19:47 -04001371 extern u32 audit_sig_sid;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001372
Al Viroe1396062006-05-25 10:19:47 -04001373 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) {
1374 struct task_struct *tsk = current;
1375 struct audit_context *ctx = tsk->audit_context;
1376 audit_sig_pid = tsk->pid;
1377 if (ctx)
1378 audit_sig_uid = ctx->loginuid;
1379 else
1380 audit_sig_uid = tsk->uid;
1381 selinux_get_task_sid(tsk, &audit_sig_sid);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001382 }
1383}