blob: 105147631753f1b4f68fc17878a0e4531b436593 [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 <asm/types.h>
49#include <linux/fs.h>
50#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/mm.h>
52#include <linux/module.h>
Stephen Smalley01116102005-05-21 00:15:52 +010053#include <linux/mount.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010054#include <linux/socket.h>
George C. Wilson20ca73b2006-05-24 16:09:55 -050055#include <linux/mqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/audit.h>
57#include <linux/personality.h>
58#include <linux/time.h>
David Woodhouse5bb289b2005-06-24 14:14:05 +010059#include <linux/netlink.h>
David Woodhousef5561962005-07-13 22:47:07 +010060#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/unistd.h>
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000062#include <linux/security.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000063#include <linux/list.h>
Steve Grubba6c043a2006-01-01 14:07:00 -050064#include <linux/tty.h>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060065#include <linux/selinux.h>
Al Viro473ae302006-04-26 14:04:08 -040066#include <linux/binfmts.h>
Al Virof46038f2006-05-06 08:22:52 -040067#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
David Woodhousefe7752b2005-12-15 18:33:52 +000069#include "audit.h"
70
71extern struct list_head audit_filter_list[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/* No syscall auditing will take place unless audit_enabled != 0. */
74extern int audit_enabled;
75
76/* AUDIT_NAMES is the number of slots we reserve in the audit_context
77 * for saving names from getname(). */
78#define AUDIT_NAMES 20
79
80/* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
81 * audit_context from being used for nameless inodes from
82 * path_lookup. */
83#define AUDIT_NAMES_RESERVED 7
84
Amy Griffis9c937dc2006-06-08 23:19:31 -040085/* Indicates that audit should log the full pathname. */
86#define AUDIT_NAME_FULL -1
87
Al Viro471a5c72006-07-10 08:29:24 -040088/* number of audit rules */
89int audit_n_rules;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* When fs/namei.c:getname() is called, we store the pointer in name and
92 * we don't let putname() free it (instead we free all of the saved
93 * pointers at syscall exit time).
94 *
95 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
96struct audit_names {
97 const char *name;
Amy Griffis9c937dc2006-06-08 23:19:31 -040098 int name_len; /* number of name's characters to log */
99 unsigned name_put; /* call __putname() for this name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 unsigned long ino;
101 dev_t dev;
102 umode_t mode;
103 uid_t uid;
104 gid_t gid;
105 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400106 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109struct audit_aux_data {
110 struct audit_aux_data *next;
111 int type;
112};
113
114#define AUDIT_AUX_IPCPERM 0
115
George C. Wilson20ca73b2006-05-24 16:09:55 -0500116struct audit_aux_data_mq_open {
117 struct audit_aux_data d;
118 int oflag;
119 mode_t mode;
120 struct mq_attr attr;
121};
122
123struct audit_aux_data_mq_sendrecv {
124 struct audit_aux_data d;
125 mqd_t mqdes;
126 size_t msg_len;
127 unsigned int msg_prio;
128 struct timespec abs_timeout;
129};
130
131struct audit_aux_data_mq_notify {
132 struct audit_aux_data d;
133 mqd_t mqdes;
134 struct sigevent notification;
135};
136
137struct audit_aux_data_mq_getsetattr {
138 struct audit_aux_data d;
139 mqd_t mqdes;
140 struct mq_attr mqstat;
141};
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143struct audit_aux_data_ipcctl {
144 struct audit_aux_data d;
145 struct ipc_perm p;
146 unsigned long qbytes;
147 uid_t uid;
148 gid_t gid;
149 mode_t mode;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500150 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
Al Viro473ae302006-04-26 14:04:08 -0400153struct audit_aux_data_execve {
154 struct audit_aux_data d;
155 int argc;
156 int envc;
157 char mem[0];
158};
159
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100160struct audit_aux_data_socketcall {
161 struct audit_aux_data d;
162 int nargs;
163 unsigned long args[0];
164};
165
166struct audit_aux_data_sockaddr {
167 struct audit_aux_data d;
168 int len;
169 char a[0];
170};
171
Stephen Smalley01116102005-05-21 00:15:52 +0100172struct audit_aux_data_path {
173 struct audit_aux_data d;
174 struct dentry *dentry;
175 struct vfsmount *mnt;
176};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/* The per-task audit context. */
179struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400180 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int in_syscall; /* 1 if task is in a syscall */
182 enum audit_state state;
183 unsigned int serial; /* serial number for record */
184 struct timespec ctime; /* time of syscall entry */
185 uid_t loginuid; /* login uid (identity) */
186 int major; /* syscall number */
187 unsigned long argv[4]; /* syscall arguments */
188 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100189 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int auditable; /* 1 if record should be written */
191 int name_count;
192 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400193 char * filterkey; /* key for rule that triggered record */
David Woodhouse8f37d472005-05-27 12:17:28 +0100194 struct dentry * pwd;
195 struct vfsmount * pwdmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct audit_context *previous; /* For nested syscalls */
197 struct audit_aux_data *aux;
198
199 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400200 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 uid_t uid, euid, suid, fsuid;
202 gid_t gid, egid, sgid, fsgid;
203 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100204 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206#if AUDIT_DEBUG
207 int put_count;
208 int ino_count;
209#endif
210};
211
Al Viro55669bf2006-08-31 19:26:40 -0400212#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
213static inline int open_arg(int flags, int mask)
214{
215 int n = ACC_MODE(flags);
216 if (flags & (O_TRUNC | O_CREAT))
217 n |= AUDIT_PERM_WRITE;
218 return n & mask;
219}
220
221static int audit_match_perm(struct audit_context *ctx, int mask)
222{
223 unsigned n = ctx->major;
224 switch (audit_classify_syscall(ctx->arch, n)) {
225 case 0: /* native */
226 if ((mask & AUDIT_PERM_WRITE) &&
227 audit_match_class(AUDIT_CLASS_WRITE, n))
228 return 1;
229 if ((mask & AUDIT_PERM_READ) &&
230 audit_match_class(AUDIT_CLASS_READ, n))
231 return 1;
232 if ((mask & AUDIT_PERM_ATTR) &&
233 audit_match_class(AUDIT_CLASS_CHATTR, n))
234 return 1;
235 return 0;
236 case 1: /* 32bit on biarch */
237 if ((mask & AUDIT_PERM_WRITE) &&
238 audit_match_class(AUDIT_CLASS_WRITE_32, n))
239 return 1;
240 if ((mask & AUDIT_PERM_READ) &&
241 audit_match_class(AUDIT_CLASS_READ_32, n))
242 return 1;
243 if ((mask & AUDIT_PERM_ATTR) &&
244 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
245 return 1;
246 return 0;
247 case 2: /* open */
248 return mask & ACC_MODE(ctx->argv[1]);
249 case 3: /* openat */
250 return mask & ACC_MODE(ctx->argv[2]);
251 case 4: /* socketcall */
252 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
253 case 5: /* execve */
254 return mask & AUDIT_PERM_EXEC;
255 default:
256 return 0;
257 }
258}
259
Amy Griffisf368c07d2006-04-07 16:55:56 -0400260/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/* Compare a task_struct with an audit_rule. Return 1 on match, 0
262 * otherwise. */
263static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500264 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400266 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 enum audit_state *state)
268{
Steve Grubb2ad312d2006-04-11 08:50:56 -0400269 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600270 u32 sid;
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500273 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 int result = 0;
275
Amy Griffis93315ed2006-02-07 12:05:27 -0500276 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500278 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
Al Viro3c662512006-05-06 08:26:27 -0400280 case AUDIT_PPID:
281 if (ctx)
282 result = audit_comparator(ctx->ppid, f->op, f->val);
283 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 case AUDIT_UID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500285 result = audit_comparator(tsk->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 break;
287 case AUDIT_EUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500288 result = audit_comparator(tsk->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
290 case AUDIT_SUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500291 result = audit_comparator(tsk->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 break;
293 case AUDIT_FSUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500294 result = audit_comparator(tsk->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296 case AUDIT_GID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500297 result = audit_comparator(tsk->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
299 case AUDIT_EGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500300 result = audit_comparator(tsk->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
302 case AUDIT_SGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500303 result = audit_comparator(tsk->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 break;
305 case AUDIT_FSGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500306 result = audit_comparator(tsk->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 break;
308 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500309 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
2fd6f582005-04-29 16:08:28 +0100311 case AUDIT_ARCH:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000312 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500313 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100314 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 case AUDIT_EXIT:
317 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500318 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100321 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500322 if (f->val)
323 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100324 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500325 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 break;
328 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400329 if (name)
330 result = audit_comparator(MAJOR(name->dev),
331 f->op, f->val);
332 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500334 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 ++result;
336 break;
337 }
338 }
339 }
340 break;
341 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400342 if (name)
343 result = audit_comparator(MINOR(name->dev),
344 f->op, f->val);
345 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500347 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 ++result;
349 break;
350 }
351 }
352 }
353 break;
354 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400355 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400356 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400357 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400359 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 ++result;
361 break;
362 }
363 }
364 }
365 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400366 case AUDIT_WATCH:
367 if (name && rule->watch->ino != (unsigned long)-1)
368 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400369 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 case AUDIT_LOGINUID:
372 result = 0;
373 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500374 result = audit_comparator(ctx->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500376 case AUDIT_SUBJ_USER:
377 case AUDIT_SUBJ_ROLE:
378 case AUDIT_SUBJ_TYPE:
379 case AUDIT_SUBJ_SEN:
380 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600381 /* NOTE: this may return negative values indicating
382 a temporary error. We simply treat this as a
383 match for now to avoid losing information that
384 may be wanted. An error message will also be
385 logged upon error */
Steve Grubb2ad312d2006-04-11 08:50:56 -0400386 if (f->se_rule) {
387 if (need_sid) {
Stephen Smalley62bac012006-09-25 23:31:56 -0700388 selinux_get_task_sid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400389 need_sid = 0;
390 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600391 result = selinux_audit_rule_match(sid, f->type,
392 f->op,
393 f->se_rule,
394 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400395 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600396 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500397 case AUDIT_OBJ_USER:
398 case AUDIT_OBJ_ROLE:
399 case AUDIT_OBJ_TYPE:
400 case AUDIT_OBJ_LEV_LOW:
401 case AUDIT_OBJ_LEV_HIGH:
402 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
403 also applies here */
404 if (f->se_rule) {
405 /* Find files that match */
406 if (name) {
407 result = selinux_audit_rule_match(
408 name->osid, f->type, f->op,
409 f->se_rule, ctx);
410 } else if (ctx) {
411 for (j = 0; j < ctx->name_count; j++) {
412 if (selinux_audit_rule_match(
413 ctx->names[j].osid,
414 f->type, f->op,
415 f->se_rule, ctx)) {
416 ++result;
417 break;
418 }
419 }
420 }
421 /* Find ipc objects that match */
422 if (ctx) {
423 struct audit_aux_data *aux;
424 for (aux = ctx->aux; aux;
425 aux = aux->next) {
426 if (aux->type == AUDIT_IPC) {
427 struct audit_aux_data_ipcctl *axi = (void *)aux;
428 if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) {
429 ++result;
430 break;
431 }
432 }
433 }
434 }
435 }
436 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 case AUDIT_ARG0:
438 case AUDIT_ARG1:
439 case AUDIT_ARG2:
440 case AUDIT_ARG3:
441 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500442 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400444 case AUDIT_FILTERKEY:
445 /* ignore this field for filtering */
446 result = 1;
447 break;
Al Viro55669bf2006-08-31 19:26:40 -0400448 case AUDIT_PERM:
449 result = audit_match_perm(ctx, f->val);
450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (!result)
454 return 0;
455 }
Amy Griffis5adc8a62006-06-14 18:45:21 -0400456 if (rule->filterkey)
457 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 switch (rule->action) {
459 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
461 }
462 return 1;
463}
464
465/* At process creation time, we can determine if system-call auditing is
466 * completely disabled for this task. Since we only have the task
467 * structure at this point, we can only check uid and gid.
468 */
469static enum audit_state audit_filter_task(struct task_struct *tsk)
470{
471 struct audit_entry *e;
472 enum audit_state state;
473
474 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100475 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400476 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 rcu_read_unlock();
478 return state;
479 }
480 }
481 rcu_read_unlock();
482 return AUDIT_BUILD_CONTEXT;
483}
484
485/* At syscall entry and exit time, this filter is called if the
486 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100487 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700488 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
490static enum audit_state audit_filter_syscall(struct task_struct *tsk,
491 struct audit_context *ctx,
492 struct list_head *list)
493{
494 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100495 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
David Woodhouse351bb722005-07-14 14:40:06 +0100497 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100498 return AUDIT_DISABLED;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100501 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000502 int word = AUDIT_WORD(ctx->major);
503 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100504
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000505 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400506 if ((e->rule.mask[word] & bit) == bit &&
507 audit_filter_rules(tsk, &e->rule, ctx, NULL,
508 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000509 rcu_read_unlock();
510 return state;
511 }
512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 rcu_read_unlock();
515 return AUDIT_BUILD_CONTEXT;
516}
517
Amy Griffisf368c07d2006-04-07 16:55:56 -0400518/* At syscall exit time, this filter is called if any audit_names[] have been
519 * collected during syscall processing. We only check rules in sublists at hash
520 * buckets applicable to the inode numbers in audit_names[].
521 * Regarding audit_state, same rules apply as for audit_filter_syscall().
522 */
523enum audit_state audit_filter_inodes(struct task_struct *tsk,
524 struct audit_context *ctx)
525{
526 int i;
527 struct audit_entry *e;
528 enum audit_state state;
529
530 if (audit_pid && tsk->tgid == audit_pid)
531 return AUDIT_DISABLED;
532
533 rcu_read_lock();
534 for (i = 0; i < ctx->name_count; i++) {
535 int word = AUDIT_WORD(ctx->major);
536 int bit = AUDIT_BIT(ctx->major);
537 struct audit_names *n = &ctx->names[i];
538 int h = audit_hash_ino((u32)n->ino);
539 struct list_head *list = &audit_inode_hash[h];
540
541 if (list_empty(list))
542 continue;
543
544 list_for_each_entry_rcu(e, list, list) {
545 if ((e->rule.mask[word] & bit) == bit &&
546 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
547 rcu_read_unlock();
548 return state;
549 }
550 }
551 }
552 rcu_read_unlock();
553 return AUDIT_BUILD_CONTEXT;
554}
555
556void audit_set_auditable(struct audit_context *ctx)
557{
558 ctx->auditable = 1;
559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561static inline struct audit_context *audit_get_context(struct task_struct *tsk,
562 int return_valid,
563 int return_code)
564{
565 struct audit_context *context = tsk->audit_context;
566
567 if (likely(!context))
568 return NULL;
569 context->return_valid = return_valid;
570 context->return_code = return_code;
571
Al Virod51374a2006-08-03 10:59:26 -0400572 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400574
David Woodhouse0f45aa12005-06-19 19:35:50 +0100575 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400576 if (state == AUDIT_RECORD_CONTEXT) {
577 context->auditable = 1;
578 goto get_context;
579 }
580
581 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (state == AUDIT_RECORD_CONTEXT)
583 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
Amy Griffisf368c07d2006-04-07 16:55:56 -0400587get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 tsk->audit_context = NULL;
590 return context;
591}
592
593static inline void audit_free_names(struct audit_context *context)
594{
595 int i;
596
597#if AUDIT_DEBUG == 2
598 if (context->auditable
599 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000600 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 " name_count=%d put_count=%d"
602 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000603 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 context->serial, context->major, context->in_syscall,
605 context->name_count, context->put_count,
606 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000607 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 printk(KERN_ERR "names[%d] = %p = %s\n", i,
609 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000610 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 dump_stack();
613 return;
614 }
615#endif
616#if AUDIT_DEBUG
617 context->put_count = 0;
618 context->ino_count = 0;
619#endif
620
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000621 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400622 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 context->name_count = 0;
David Woodhouse8f37d472005-05-27 12:17:28 +0100626 if (context->pwd)
627 dput(context->pwd);
628 if (context->pwdmnt)
629 mntput(context->pwdmnt);
630 context->pwd = NULL;
631 context->pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634static inline void audit_free_aux(struct audit_context *context)
635{
636 struct audit_aux_data *aux;
637
638 while ((aux = context->aux)) {
Stephen Smalley01116102005-05-21 00:15:52 +0100639 if (aux->type == AUDIT_AVC_PATH) {
640 struct audit_aux_data_path *axi = (void *)aux;
641 dput(axi->dentry);
642 mntput(axi->mnt);
643 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 context->aux = aux->next;
646 kfree(aux);
647 }
648}
649
650static inline void audit_zero_context(struct audit_context *context,
651 enum audit_state state)
652{
653 uid_t loginuid = context->loginuid;
654
655 memset(context, 0, sizeof(*context));
656 context->state = state;
657 context->loginuid = loginuid;
658}
659
660static inline struct audit_context *audit_alloc_context(enum audit_state state)
661{
662 struct audit_context *context;
663
664 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
665 return NULL;
666 audit_zero_context(context, state);
667 return context;
668}
669
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700670/**
671 * audit_alloc - allocate an audit context block for a task
672 * @tsk: task
673 *
674 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * if necessary. Doing so turns on system call auditing for the
676 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700677 * needed.
678 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679int audit_alloc(struct task_struct *tsk)
680{
681 struct audit_context *context;
682 enum audit_state state;
683
684 if (likely(!audit_enabled))
685 return 0; /* Return if not auditing. */
686
687 state = audit_filter_task(tsk);
688 if (likely(state == AUDIT_DISABLED))
689 return 0;
690
691 if (!(context = audit_alloc_context(state))) {
692 audit_log_lost("out of memory in audit_alloc");
693 return -ENOMEM;
694 }
695
696 /* Preserve login uid */
697 context->loginuid = -1;
698 if (current->audit_context)
699 context->loginuid = current->audit_context->loginuid;
700
701 tsk->audit_context = context;
702 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
703 return 0;
704}
705
706static inline void audit_free_context(struct audit_context *context)
707{
708 struct audit_context *previous;
709 int count = 0;
710
711 do {
712 previous = context->previous;
713 if (previous || (count && count < 10)) {
714 ++count;
715 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
716 " freeing multiple contexts (%d)\n",
717 context->serial, context->major,
718 context->name_count, count);
719 }
720 audit_free_names(context);
721 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400722 kfree(context->filterkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 kfree(context);
724 context = previous;
725 } while (context);
726 if (count >= 10)
727 printk(KERN_ERR "audit: freed %d contexts\n", count);
728}
729
Al Viroe4951492006-03-29 20:17:10 -0500730static void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000731{
732 char *ctx = NULL;
733 ssize_t len = 0;
734
735 len = security_getprocattr(current, "current", NULL, 0);
736 if (len < 0) {
737 if (len != -EINVAL)
738 goto error_path;
739 return;
740 }
741
Al Viroe4951492006-03-29 20:17:10 -0500742 ctx = kmalloc(len, GFP_KERNEL);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000743 if (!ctx)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000744 goto error_path;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000745
746 len = security_getprocattr(current, "current", ctx, len);
747 if (len < 0 )
748 goto error_path;
749
750 audit_log_format(ab, " subj=%s", ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000751 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000752
753error_path:
Jesper Juhl9a66a532006-06-27 02:55:05 -0700754 kfree(ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000755 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000756 return;
757}
758
Al Viroe4951492006-03-29 20:17:10 -0500759static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700760{
Al Viro45d9bb02006-03-29 20:02:55 -0500761 char name[sizeof(tsk->comm)];
762 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700763 struct vm_area_struct *vma;
764
Al Viroe4951492006-03-29 20:17:10 -0500765 /* tsk == current */
766
Al Viro45d9bb02006-03-29 20:02:55 -0500767 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100768 audit_log_format(ab, " comm=");
769 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700770
Al Viroe4951492006-03-29 20:17:10 -0500771 if (mm) {
772 down_read(&mm->mmap_sem);
773 vma = mm->mmap;
774 while (vma) {
775 if ((vma->vm_flags & VM_EXECUTABLE) &&
776 vma->vm_file) {
777 audit_log_d_path(ab, "exe=",
778 vma->vm_file->f_dentry,
779 vma->vm_file->f_vfsmnt);
780 break;
781 }
782 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700783 }
Al Viroe4951492006-03-29 20:17:10 -0500784 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700785 }
Al Viroe4951492006-03-29 20:17:10 -0500786 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700787}
788
Al Viroe4951492006-03-29 20:17:10 -0500789static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500791 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +0100793 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -0500794 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Al Viroe4951492006-03-29 20:17:10 -0500796 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -0400797 context->pid = tsk->pid;
798 context->ppid = sys_getppid(); /* sic. tsk == current in all cases */
799 context->uid = tsk->uid;
800 context->gid = tsk->gid;
801 context->euid = tsk->euid;
802 context->suid = tsk->suid;
803 context->fsuid = tsk->fsuid;
804 context->egid = tsk->egid;
805 context->sgid = tsk->sgid;
806 context->fsgid = tsk->fsgid;
807 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -0500808
809 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (!ab)
811 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +0100812 audit_log_format(ab, "arch=%x syscall=%d",
813 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (context->personality != PER_LINUX)
815 audit_log_format(ab, " per=%lx", context->personality);
816 if (context->return_valid)
2fd6f582005-04-29 16:08:28 +0100817 audit_log_format(ab, " success=%s exit=%ld",
818 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
819 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -0700820
821 mutex_lock(&tty_mutex);
Al Viro45d9bb02006-03-29 20:02:55 -0500822 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
823 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -0500824 else
825 tty = "(none)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 audit_log_format(ab,
827 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -0400828 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +0100829 " euid=%u suid=%u fsuid=%u"
Steve Grubba6c043a2006-01-01 14:07:00 -0500830 " egid=%u sgid=%u fsgid=%u tty=%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 context->argv[0],
832 context->argv[1],
833 context->argv[2],
834 context->argv[3],
835 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -0400836 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 context->pid,
838 context->loginuid,
839 context->uid,
840 context->gid,
841 context->euid, context->suid, context->fsuid,
Steve Grubba6c043a2006-01-01 14:07:00 -0500842 context->egid, context->sgid, context->fsgid, tty);
Alan Coxeb84a202006-09-29 02:01:41 -0700843
844 mutex_unlock(&tty_mutex);
845
Al Viroe4951492006-03-29 20:17:10 -0500846 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400847 if (context->filterkey) {
848 audit_log_format(ab, " key=");
849 audit_log_untrustedstring(ab, context->filterkey);
850 } else
851 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
David Woodhouse7551ced2005-05-26 12:04:57 +0100854 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +0100855
Al Viroe4951492006-03-29 20:17:10 -0500856 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!ab)
858 continue; /* audit_panic has been called */
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -0500861 case AUDIT_MQ_OPEN: {
862 struct audit_aux_data_mq_open *axi = (void *)aux;
863 audit_log_format(ab,
864 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
865 "mq_msgsize=%ld mq_curmsgs=%ld",
866 axi->oflag, axi->mode, axi->attr.mq_flags,
867 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
868 axi->attr.mq_curmsgs);
869 break; }
870
871 case AUDIT_MQ_SENDRECV: {
872 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
873 audit_log_format(ab,
874 "mqdes=%d msg_len=%zd msg_prio=%u "
875 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
876 axi->mqdes, axi->msg_len, axi->msg_prio,
877 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
878 break; }
879
880 case AUDIT_MQ_NOTIFY: {
881 struct audit_aux_data_mq_notify *axi = (void *)aux;
882 audit_log_format(ab,
883 "mqdes=%d sigev_signo=%d",
884 axi->mqdes,
885 axi->notification.sigev_signo);
886 break; }
887
888 case AUDIT_MQ_GETSETATTR: {
889 struct audit_aux_data_mq_getsetattr *axi = (void *)aux;
890 audit_log_format(ab,
891 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
892 "mq_curmsgs=%ld ",
893 axi->mqdes,
894 axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg,
895 axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs);
896 break; }
897
Steve Grubbc0404992005-05-13 18:17:42 +0100898 case AUDIT_IPC: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 struct audit_aux_data_ipcctl *axi = (void *)aux;
900 audit_log_format(ab,
Linda Knippersac032212006-05-16 22:03:48 -0400901 "ouid=%u ogid=%u mode=%x",
902 axi->uid, axi->gid, axi->mode);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500903 if (axi->osid != 0) {
904 char *ctx = NULL;
905 u32 len;
Stephen Smalley1a70cd42006-09-25 23:31:57 -0700906 if (selinux_sid_to_string(
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500907 axi->osid, &ctx, &len)) {
Steve Grubbce29b682006-04-01 18:29:34 -0500908 audit_log_format(ab, " osid=%u",
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500909 axi->osid);
910 call_panic = 1;
911 } else
912 audit_log_format(ab, " obj=%s", ctx);
913 kfree(ctx);
914 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100915 break; }
916
Steve Grubb073115d2006-04-02 17:07:33 -0400917 case AUDIT_IPC_SET_PERM: {
918 struct audit_aux_data_ipcctl *axi = (void *)aux;
919 audit_log_format(ab,
Linda Knippersac032212006-05-16 22:03:48 -0400920 "qbytes=%lx ouid=%u ogid=%u mode=%x",
Steve Grubb073115d2006-04-02 17:07:33 -0400921 axi->qbytes, axi->uid, axi->gid, axi->mode);
Steve Grubb073115d2006-04-02 17:07:33 -0400922 break; }
Linda Knippersac032212006-05-16 22:03:48 -0400923
Al Viro473ae302006-04-26 14:04:08 -0400924 case AUDIT_EXECVE: {
925 struct audit_aux_data_execve *axi = (void *)aux;
926 int i;
927 const char *p;
928 for (i = 0, p = axi->mem; i < axi->argc; i++) {
929 audit_log_format(ab, "a%d=", i);
930 p = audit_log_untrustedstring(ab, p);
931 audit_log_format(ab, "\n");
932 }
933 break; }
Steve Grubb073115d2006-04-02 17:07:33 -0400934
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100935 case AUDIT_SOCKETCALL: {
936 int i;
937 struct audit_aux_data_socketcall *axs = (void *)aux;
938 audit_log_format(ab, "nargs=%d", axs->nargs);
939 for (i=0; i<axs->nargs; i++)
940 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
941 break; }
942
943 case AUDIT_SOCKADDR: {
944 struct audit_aux_data_sockaddr *axs = (void *)aux;
945
946 audit_log_format(ab, "saddr=");
947 audit_log_hex(ab, axs->a, axs->len);
948 break; }
Stephen Smalley01116102005-05-21 00:15:52 +0100949
950 case AUDIT_AVC_PATH: {
951 struct audit_aux_data_path *axi = (void *)aux;
952 audit_log_d_path(ab, "path=", axi->dentry, axi->mnt);
Stephen Smalley01116102005-05-21 00:15:52 +0100953 break; }
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958
David Woodhouse8f37d472005-05-27 12:17:28 +0100959 if (context->pwd && context->pwdmnt) {
Al Viroe4951492006-03-29 20:17:10 -0500960 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +0100961 if (ab) {
962 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
963 audit_log_end(ab);
964 }
965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400967 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +0000968
Al Viroe4951492006-03-29 20:17:10 -0500969 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (!ab)
971 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +0100972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +0000974
Amy Griffis9c937dc2006-06-08 23:19:31 -0400975 if (n->name) {
976 switch(n->name_len) {
977 case AUDIT_NAME_FULL:
978 /* log the full path */
979 audit_log_format(ab, " name=");
980 audit_log_untrustedstring(ab, n->name);
981 break;
982 case 0:
983 /* name was specified as a relative path and the
984 * directory component is the cwd */
985 audit_log_d_path(ab, " name=", context->pwd,
986 context->pwdmnt);
987 break;
988 default:
989 /* log the name's directory component */
990 audit_log_format(ab, " name=");
991 audit_log_n_untrustedstring(ab, n->name_len,
992 n->name);
993 }
994 } else
995 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +0000996
Amy Griffis9c937dc2006-06-08 23:19:31 -0400997 if (n->ino != (unsigned long)-1) {
998 audit_log_format(ab, " inode=%lu"
999 " dev=%02x:%02x mode=%#o"
1000 " ouid=%u ogid=%u rdev=%02x:%02x",
1001 n->ino,
1002 MAJOR(n->dev),
1003 MINOR(n->dev),
1004 n->mode,
1005 n->uid,
1006 n->gid,
1007 MAJOR(n->rdev),
1008 MINOR(n->rdev));
1009 }
1010 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001011 char *ctx = NULL;
1012 u32 len;
Stephen Smalley1a70cd42006-09-25 23:31:57 -07001013 if (selinux_sid_to_string(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001014 n->osid, &ctx, &len)) {
1015 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001016 call_panic = 2;
Steve Grubb1b50eed2006-04-03 14:06:13 -04001017 } else
1018 audit_log_format(ab, " obj=%s", ctx);
1019 kfree(ctx);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001020 }
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 audit_log_end(ab);
1023 }
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001024 if (call_panic)
1025 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001028/**
1029 * audit_free - free a per-task audit context
1030 * @tsk: task whose audit context block to free
1031 *
Al Virofa84cb92006-03-29 20:30:19 -05001032 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001033 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034void audit_free(struct task_struct *tsk)
1035{
1036 struct audit_context *context;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 if (likely(!context))
1040 return;
1041
1042 /* Check for system calls that do not go through the exit
David Woodhousef5561962005-07-13 22:47:07 +01001043 * function (e.g., exit_group), then free context block.
1044 * We use GFP_ATOMIC here because we might be doing this
1045 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001046 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001047 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001048 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 audit_free_context(context);
1051}
1052
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001053/**
1054 * audit_syscall_entry - fill in an audit record at syscall entry
1055 * @tsk: task being audited
1056 * @arch: architecture type
1057 * @major: major syscall type (function)
1058 * @a1: additional syscall register 1
1059 * @a2: additional syscall register 2
1060 * @a3: additional syscall register 3
1061 * @a4: additional syscall register 4
1062 *
1063 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * audit context was created when the task was created and the state or
1065 * filters demand the audit context be built. If the state from the
1066 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1067 * then the record will be written at syscall exit time (otherwise, it
1068 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001069 * be written).
1070 */
Al Viro5411be52006-03-29 20:23:36 -05001071void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 unsigned long a1, unsigned long a2,
1073 unsigned long a3, unsigned long a4)
1074{
Al Viro5411be52006-03-29 20:23:36 -05001075 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct audit_context *context = tsk->audit_context;
1077 enum audit_state state;
1078
1079 BUG_ON(!context);
1080
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001081 /*
1082 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 * calls in kernel_thread via the entry.S interface, instead of
1084 * with direct calls. (If you are porting to a new
1085 * architecture, hitting this condition can indicate that you
1086 * got the _exit/_leave calls backward in entry.S.)
1087 *
1088 * i386 no
1089 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001090 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 *
1092 * This also happens with vm86 emulation in a non-nested manner
1093 * (entries without exits), so this case must be caught.
1094 */
1095 if (context->in_syscall) {
1096 struct audit_context *newctx;
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098#if AUDIT_DEBUG
1099 printk(KERN_ERR
1100 "audit(:%d) pid=%d in syscall=%d;"
1101 " entering syscall=%d\n",
1102 context->serial, tsk->pid, context->major, major);
1103#endif
1104 newctx = audit_alloc_context(context->state);
1105 if (newctx) {
1106 newctx->previous = context;
1107 context = newctx;
1108 tsk->audit_context = newctx;
1109 } else {
1110 /* If we can't alloc a new context, the best we
1111 * can do is to leak memory (any pending putname
1112 * will be lost). The only other alternative is
1113 * to abandon auditing. */
1114 audit_zero_context(context, context->state);
1115 }
1116 }
1117 BUG_ON(context->in_syscall || context->name_count);
1118
1119 if (!audit_enabled)
1120 return;
1121
2fd6f582005-04-29 16:08:28 +01001122 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 context->major = major;
1124 context->argv[0] = a1;
1125 context->argv[1] = a2;
1126 context->argv[2] = a3;
1127 context->argv[3] = a4;
1128
1129 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001130 context->dummy = !audit_n_rules;
1131 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001132 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (likely(state == AUDIT_DISABLED))
1134 return;
1135
David Woodhousece625a82005-07-18 14:24:46 -04001136 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 context->ctime = CURRENT_TIME;
1138 context->in_syscall = 1;
1139 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
1140}
1141
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001142/**
1143 * audit_syscall_exit - deallocate audit context after a system call
1144 * @tsk: task being audited
1145 * @valid: success/failure flag
1146 * @return_code: syscall return value
1147 *
1148 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1150 * filtering, or because some other part of the kernel write an audit
1151 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001152 * free the names stored from getname().
1153 */
Al Viro5411be52006-03-29 20:23:36 -05001154void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Al Viro5411be52006-03-29 20:23:36 -05001156 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 struct audit_context *context;
1158
2fd6f582005-04-29 16:08:28 +01001159 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001162 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
David Woodhousef7056d62005-06-20 16:07:33 +01001164 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001165 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 context->in_syscall = 0;
1168 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (context->previous) {
1171 struct audit_context *new_context = context->previous;
1172 context->previous = NULL;
1173 audit_free_context(context);
1174 tsk->audit_context = new_context;
1175 } else {
1176 audit_free_names(context);
1177 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001178 kfree(context->filterkey);
1179 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 tsk->audit_context = context;
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001184/**
1185 * audit_getname - add a name to the list
1186 * @name: name to add
1187 *
1188 * Add a name to the list of audit names for this context.
1189 * Called from fs/namei.c:getname().
1190 */
Al Virod8945bb52006-05-18 16:01:30 -04001191void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 struct audit_context *context = current->audit_context;
1194
Al Virod8945bb52006-05-18 16:01:30 -04001195 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 return;
1197
1198 if (!context->in_syscall) {
1199#if AUDIT_DEBUG == 2
1200 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1201 __FILE__, __LINE__, context->serial, name);
1202 dump_stack();
1203#endif
1204 return;
1205 }
1206 BUG_ON(context->name_count >= AUDIT_NAMES);
1207 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001208 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1209 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 context->names[context->name_count].ino = (unsigned long)-1;
1211 ++context->name_count;
David Woodhouse8f37d472005-05-27 12:17:28 +01001212 if (!context->pwd) {
1213 read_lock(&current->fs->lock);
1214 context->pwd = dget(current->fs->pwd);
1215 context->pwdmnt = mntget(current->fs->pwdmnt);
1216 read_unlock(&current->fs->lock);
1217 }
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001221/* audit_putname - intercept a putname request
1222 * @name: name to intercept and delay for putname
1223 *
1224 * If we have stored the name from getname in the audit context,
1225 * then we delay the putname until syscall exit.
1226 * Called from include/linux/fs.h:putname().
1227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228void audit_putname(const char *name)
1229{
1230 struct audit_context *context = current->audit_context;
1231
1232 BUG_ON(!context);
1233 if (!context->in_syscall) {
1234#if AUDIT_DEBUG == 2
1235 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1236 __FILE__, __LINE__, context->serial, name);
1237 if (context->name_count) {
1238 int i;
1239 for (i = 0; i < context->name_count; i++)
1240 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1241 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001242 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244#endif
1245 __putname(name);
1246 }
1247#if AUDIT_DEBUG
1248 else {
1249 ++context->put_count;
1250 if (context->put_count > context->name_count) {
1251 printk(KERN_ERR "%s:%d(:%d): major=%d"
1252 " in_syscall=%d putname(%p) name_count=%d"
1253 " put_count=%d\n",
1254 __FILE__, __LINE__,
1255 context->serial, context->major,
1256 context->in_syscall, name, context->name_count,
1257 context->put_count);
1258 dump_stack();
1259 }
1260 }
1261#endif
1262}
1263
Amy Griffis3e2efce2006-07-13 13:16:02 -04001264/* Copy inode data into an audit_names. */
1265static void audit_copy_inode(struct audit_names *name, const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001266{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001267 name->ino = inode->i_ino;
1268 name->dev = inode->i_sb->s_dev;
1269 name->mode = inode->i_mode;
1270 name->uid = inode->i_uid;
1271 name->gid = inode->i_gid;
1272 name->rdev = inode->i_rdev;
1273 selinux_get_inode_sid(inode, &name->osid);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001274}
1275
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001276/**
1277 * audit_inode - store the inode and device from a lookup
1278 * @name: name being audited
1279 * @inode: inode being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001280 *
1281 * Called from fs/namei.c:path_lookup().
1282 */
Amy Griffis9c937dc2006-06-08 23:19:31 -04001283void __audit_inode(const char *name, const struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
1285 int idx;
1286 struct audit_context *context = current->audit_context;
1287
1288 if (!context->in_syscall)
1289 return;
1290 if (context->name_count
1291 && context->names[context->name_count-1].name
1292 && context->names[context->name_count-1].name == name)
1293 idx = context->name_count - 1;
1294 else if (context->name_count > 1
1295 && context->names[context->name_count-2].name
1296 && context->names[context->name_count-2].name == name)
1297 idx = context->name_count - 2;
1298 else {
1299 /* FIXME: how much do we care about inodes that have no
1300 * associated name? */
1301 if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED)
1302 return;
1303 idx = context->name_count++;
1304 context->names[idx].name = NULL;
1305#if AUDIT_DEBUG
1306 ++context->ino_count;
1307#endif
1308 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001309 audit_copy_inode(&context->names[idx], inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
Amy Griffis73241cc2005-11-03 16:00:25 +00001312/**
1313 * audit_inode_child - collect inode info for created/removed objects
1314 * @dname: inode's dentry name
1315 * @inode: inode being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001316 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001317 *
1318 * For syscalls that create or remove filesystem objects, audit_inode
1319 * can only collect information for the filesystem object's parent.
1320 * This call updates the audit context with the child's information.
1321 * Syscalls that create a new filesystem object must be hooked after
1322 * the object is created. Syscalls that remove a filesystem object
1323 * must be hooked prior, in order to capture the target inode during
1324 * unsuccessful attempts.
1325 */
1326void __audit_inode_child(const char *dname, const struct inode *inode,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001327 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001328{
1329 int idx;
1330 struct audit_context *context = current->audit_context;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001331 const char *found_name = NULL;
1332 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00001333
1334 if (!context->in_syscall)
1335 return;
1336
1337 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04001338 if (!dname)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001339 goto update_context;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001340 for (idx = 0; idx < context->name_count; idx++)
Amy Griffis73d3ec52006-07-13 13:16:39 -04001341 if (context->names[idx].ino == parent->i_ino) {
Amy Griffisf368c07d2006-04-07 16:55:56 -04001342 const char *name = context->names[idx].name;
Amy Griffis73241cc2005-11-03 16:00:25 +00001343
Amy Griffisf368c07d2006-04-07 16:55:56 -04001344 if (!name)
1345 continue;
Amy Griffis73241cc2005-11-03 16:00:25 +00001346
Amy Griffis9c937dc2006-06-08 23:19:31 -04001347 if (audit_compare_dname_path(dname, name, &dirlen) == 0) {
1348 context->names[idx].name_len = dirlen;
1349 found_name = name;
1350 break;
1351 }
Amy Griffisf368c07d2006-04-07 16:55:56 -04001352 }
Amy Griffis73241cc2005-11-03 16:00:25 +00001353
Amy Griffis9c937dc2006-06-08 23:19:31 -04001354update_context:
Amy Griffis73241cc2005-11-03 16:00:25 +00001355 idx = context->name_count++;
Amy Griffis73241cc2005-11-03 16:00:25 +00001356#if AUDIT_DEBUG
1357 context->ino_count++;
1358#endif
Amy Griffis9c937dc2006-06-08 23:19:31 -04001359 /* Re-use the name belonging to the slot for a matching parent directory.
1360 * All names for this context are relinquished in audit_free_names() */
1361 context->names[idx].name = found_name;
1362 context->names[idx].name_len = AUDIT_NAME_FULL;
1363 context->names[idx].name_put = 0; /* don't call __putname() */
Amy Griffis73241cc2005-11-03 16:00:25 +00001364
Amy Griffis3e2efce2006-07-13 13:16:02 -04001365 if (!inode)
1366 context->names[idx].ino = (unsigned long)-1;
1367 else
1368 audit_copy_inode(&context->names[idx], inode);
Amy Griffis73d3ec52006-07-13 13:16:39 -04001369
1370 /* A parent was not found in audit_names, so copy the inode data for the
1371 * provided parent. */
1372 if (!found_name) {
1373 idx = context->name_count++;
1374#if AUDIT_DEBUG
1375 context->ino_count++;
1376#endif
1377 audit_copy_inode(&context->names[idx], parent);
1378 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001379}
1380
1381/**
1382 * audit_inode_update - update inode info for last collected name
1383 * @inode: inode being audited
1384 *
1385 * When open() is called on an existing object with the O_CREAT flag, the inode
1386 * data audit initially collects is incorrect. This additional hook ensures
1387 * audit has the inode data for the actual object to be opened.
1388 */
1389void __audit_inode_update(const struct inode *inode)
1390{
1391 struct audit_context *context = current->audit_context;
1392 int idx;
1393
1394 if (!context->in_syscall || !inode)
1395 return;
1396
1397 if (context->name_count == 0) {
1398 context->name_count++;
1399#if AUDIT_DEBUG
1400 context->ino_count++;
1401#endif
1402 }
1403 idx = context->name_count - 1;
1404
1405 audit_copy_inode(&context->names[idx], inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001408/**
1409 * auditsc_get_stamp - get local copies of audit_context values
1410 * @ctx: audit_context for the task
1411 * @t: timespec to store time recorded in the audit_context
1412 * @serial: serial value that is recorded in the audit_context
1413 *
1414 * Also sets the context as auditable.
1415 */
David Woodhousebfb44962005-05-21 21:08:09 +01001416void auditsc_get_stamp(struct audit_context *ctx,
1417 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
David Woodhousece625a82005-07-18 14:24:46 -04001419 if (!ctx->serial)
1420 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01001421 t->tv_sec = ctx->ctime.tv_sec;
1422 t->tv_nsec = ctx->ctime.tv_nsec;
1423 *serial = ctx->serial;
1424 ctx->auditable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001427/**
1428 * audit_set_loginuid - set a task's audit_context loginuid
1429 * @task: task whose audit context is being modified
1430 * @loginuid: loginuid value
1431 *
1432 * Returns 0.
1433 *
1434 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1435 */
Steve Grubb456be6c2005-04-29 17:30:07 +01001436int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Steve Grubb41757102006-06-12 07:48:28 -04001438 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01001439
Steve Grubb41757102006-06-12 07:48:28 -04001440 if (context) {
1441 /* Only log if audit is enabled */
1442 if (context->in_syscall) {
1443 struct audit_buffer *ab;
1444
1445 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
1446 if (ab) {
1447 audit_log_format(ab, "login pid=%d uid=%u "
1448 "old auid=%u new auid=%u",
1449 task->pid, task->uid,
1450 context->loginuid, loginuid);
1451 audit_log_end(ab);
1452 }
Steve Grubbc0404992005-05-13 18:17:42 +01001453 }
Steve Grubb41757102006-06-12 07:48:28 -04001454 context->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456 return 0;
1457}
1458
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001459/**
1460 * audit_get_loginuid - get the loginuid for an audit_context
1461 * @ctx: the audit_context
1462 *
1463 * Returns the context's loginuid or -1 if @ctx is NULL.
1464 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465uid_t audit_get_loginuid(struct audit_context *ctx)
1466{
1467 return ctx ? ctx->loginuid : -1;
1468}
1469
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001470/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05001471 * __audit_mq_open - record audit data for a POSIX MQ open
1472 * @oflag: open flag
1473 * @mode: mode bits
1474 * @u_attr: queue attributes
1475 *
1476 * Returns 0 for success or NULL context or < 0 on error.
1477 */
1478int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
1479{
1480 struct audit_aux_data_mq_open *ax;
1481 struct audit_context *context = current->audit_context;
1482
1483 if (!audit_enabled)
1484 return 0;
1485
1486 if (likely(!context))
1487 return 0;
1488
1489 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1490 if (!ax)
1491 return -ENOMEM;
1492
1493 if (u_attr != NULL) {
1494 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
1495 kfree(ax);
1496 return -EFAULT;
1497 }
1498 } else
1499 memset(&ax->attr, 0, sizeof(ax->attr));
1500
1501 ax->oflag = oflag;
1502 ax->mode = mode;
1503
1504 ax->d.type = AUDIT_MQ_OPEN;
1505 ax->d.next = context->aux;
1506 context->aux = (void *)ax;
1507 return 0;
1508}
1509
1510/**
1511 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1512 * @mqdes: MQ descriptor
1513 * @msg_len: Message length
1514 * @msg_prio: Message priority
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001515 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001516 *
1517 * Returns 0 for success or NULL context or < 0 on error.
1518 */
1519int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
1520 const struct timespec __user *u_abs_timeout)
1521{
1522 struct audit_aux_data_mq_sendrecv *ax;
1523 struct audit_context *context = current->audit_context;
1524
1525 if (!audit_enabled)
1526 return 0;
1527
1528 if (likely(!context))
1529 return 0;
1530
1531 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1532 if (!ax)
1533 return -ENOMEM;
1534
1535 if (u_abs_timeout != NULL) {
1536 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1537 kfree(ax);
1538 return -EFAULT;
1539 }
1540 } else
1541 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1542
1543 ax->mqdes = mqdes;
1544 ax->msg_len = msg_len;
1545 ax->msg_prio = msg_prio;
1546
1547 ax->d.type = AUDIT_MQ_SENDRECV;
1548 ax->d.next = context->aux;
1549 context->aux = (void *)ax;
1550 return 0;
1551}
1552
1553/**
1554 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1555 * @mqdes: MQ descriptor
1556 * @msg_len: Message length
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001557 * @u_msg_prio: Message priority
1558 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001559 *
1560 * Returns 0 for success or NULL context or < 0 on error.
1561 */
1562int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
1563 unsigned int __user *u_msg_prio,
1564 const struct timespec __user *u_abs_timeout)
1565{
1566 struct audit_aux_data_mq_sendrecv *ax;
1567 struct audit_context *context = current->audit_context;
1568
1569 if (!audit_enabled)
1570 return 0;
1571
1572 if (likely(!context))
1573 return 0;
1574
1575 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1576 if (!ax)
1577 return -ENOMEM;
1578
1579 if (u_msg_prio != NULL) {
1580 if (get_user(ax->msg_prio, u_msg_prio)) {
1581 kfree(ax);
1582 return -EFAULT;
1583 }
1584 } else
1585 ax->msg_prio = 0;
1586
1587 if (u_abs_timeout != NULL) {
1588 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1589 kfree(ax);
1590 return -EFAULT;
1591 }
1592 } else
1593 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1594
1595 ax->mqdes = mqdes;
1596 ax->msg_len = msg_len;
1597
1598 ax->d.type = AUDIT_MQ_SENDRECV;
1599 ax->d.next = context->aux;
1600 context->aux = (void *)ax;
1601 return 0;
1602}
1603
1604/**
1605 * __audit_mq_notify - record audit data for a POSIX MQ notify
1606 * @mqdes: MQ descriptor
1607 * @u_notification: Notification event
1608 *
1609 * Returns 0 for success or NULL context or < 0 on error.
1610 */
1611
1612int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
1613{
1614 struct audit_aux_data_mq_notify *ax;
1615 struct audit_context *context = current->audit_context;
1616
1617 if (!audit_enabled)
1618 return 0;
1619
1620 if (likely(!context))
1621 return 0;
1622
1623 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1624 if (!ax)
1625 return -ENOMEM;
1626
1627 if (u_notification != NULL) {
1628 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
1629 kfree(ax);
1630 return -EFAULT;
1631 }
1632 } else
1633 memset(&ax->notification, 0, sizeof(ax->notification));
1634
1635 ax->mqdes = mqdes;
1636
1637 ax->d.type = AUDIT_MQ_NOTIFY;
1638 ax->d.next = context->aux;
1639 context->aux = (void *)ax;
1640 return 0;
1641}
1642
1643/**
1644 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1645 * @mqdes: MQ descriptor
1646 * @mqstat: MQ flags
1647 *
1648 * Returns 0 for success or NULL context or < 0 on error.
1649 */
1650int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
1651{
1652 struct audit_aux_data_mq_getsetattr *ax;
1653 struct audit_context *context = current->audit_context;
1654
1655 if (!audit_enabled)
1656 return 0;
1657
1658 if (likely(!context))
1659 return 0;
1660
1661 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1662 if (!ax)
1663 return -ENOMEM;
1664
1665 ax->mqdes = mqdes;
1666 ax->mqstat = *mqstat;
1667
1668 ax->d.type = AUDIT_MQ_GETSETATTR;
1669 ax->d.next = context->aux;
1670 context->aux = (void *)ax;
1671 return 0;
1672}
1673
1674/**
Steve Grubb073115d2006-04-02 17:07:33 -04001675 * audit_ipc_obj - record audit data for ipc object
1676 * @ipcp: ipc permissions
1677 *
1678 * Returns 0 for success or NULL context or < 0 on error.
1679 */
Al Virod8945bb52006-05-18 16:01:30 -04001680int __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04001681{
1682 struct audit_aux_data_ipcctl *ax;
1683 struct audit_context *context = current->audit_context;
1684
Steve Grubb073115d2006-04-02 17:07:33 -04001685 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1686 if (!ax)
1687 return -ENOMEM;
1688
1689 ax->uid = ipcp->uid;
1690 ax->gid = ipcp->gid;
1691 ax->mode = ipcp->mode;
1692 selinux_get_ipc_sid(ipcp, &ax->osid);
1693
1694 ax->d.type = AUDIT_IPC;
1695 ax->d.next = context->aux;
1696 context->aux = (void *)ax;
1697 return 0;
1698}
1699
1700/**
1701 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001702 * @qbytes: msgq bytes
1703 * @uid: msgq user id
1704 * @gid: msgq group id
1705 * @mode: msgq mode (permissions)
1706 *
1707 * Returns 0 for success or NULL context or < 0 on error.
1708 */
Al Virod8945bb52006-05-18 16:01:30 -04001709int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
1711 struct audit_aux_data_ipcctl *ax;
1712 struct audit_context *context = current->audit_context;
1713
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001714 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 if (!ax)
1716 return -ENOMEM;
1717
1718 ax->qbytes = qbytes;
1719 ax->uid = uid;
1720 ax->gid = gid;
1721 ax->mode = mode;
1722
Steve Grubb073115d2006-04-02 17:07:33 -04001723 ax->d.type = AUDIT_IPC_SET_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 ax->d.next = context->aux;
1725 context->aux = (void *)ax;
1726 return 0;
1727}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001728
Al Viro473ae302006-04-26 14:04:08 -04001729int audit_bprm(struct linux_binprm *bprm)
1730{
1731 struct audit_aux_data_execve *ax;
1732 struct audit_context *context = current->audit_context;
1733 unsigned long p, next;
1734 void *to;
1735
Al Viro5ac3a9c2006-07-16 06:38:45 -04001736 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04001737 return 0;
1738
1739 ax = kmalloc(sizeof(*ax) + PAGE_SIZE * MAX_ARG_PAGES - bprm->p,
1740 GFP_KERNEL);
1741 if (!ax)
1742 return -ENOMEM;
1743
1744 ax->argc = bprm->argc;
1745 ax->envc = bprm->envc;
1746 for (p = bprm->p, to = ax->mem; p < MAX_ARG_PAGES*PAGE_SIZE; p = next) {
1747 struct page *page = bprm->page[p / PAGE_SIZE];
1748 void *kaddr = kmap(page);
1749 next = (p + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1750 memcpy(to, kaddr + (p & (PAGE_SIZE - 1)), next - p);
1751 to += next - p;
1752 kunmap(page);
1753 }
1754
1755 ax->d.type = AUDIT_EXECVE;
1756 ax->d.next = context->aux;
1757 context->aux = (void *)ax;
1758 return 0;
1759}
1760
1761
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001762/**
1763 * audit_socketcall - record audit data for sys_socketcall
1764 * @nargs: number of args
1765 * @args: args array
1766 *
1767 * Returns 0 for success or NULL context or < 0 on error.
1768 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001769int audit_socketcall(int nargs, unsigned long *args)
1770{
1771 struct audit_aux_data_socketcall *ax;
1772 struct audit_context *context = current->audit_context;
1773
Al Viro5ac3a9c2006-07-16 06:38:45 -04001774 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001775 return 0;
1776
1777 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1778 if (!ax)
1779 return -ENOMEM;
1780
1781 ax->nargs = nargs;
1782 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1783
1784 ax->d.type = AUDIT_SOCKETCALL;
1785 ax->d.next = context->aux;
1786 context->aux = (void *)ax;
1787 return 0;
1788}
1789
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001790/**
1791 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1792 * @len: data length in user space
1793 * @a: data address in kernel space
1794 *
1795 * Returns 0 for success or NULL context or < 0 on error.
1796 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001797int audit_sockaddr(int len, void *a)
1798{
1799 struct audit_aux_data_sockaddr *ax;
1800 struct audit_context *context = current->audit_context;
1801
Al Viro5ac3a9c2006-07-16 06:38:45 -04001802 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001803 return 0;
1804
1805 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1806 if (!ax)
1807 return -ENOMEM;
1808
1809 ax->len = len;
1810 memcpy(ax->a, a, len);
1811
1812 ax->d.type = AUDIT_SOCKADDR;
1813 ax->d.next = context->aux;
1814 context->aux = (void *)ax;
1815 return 0;
1816}
1817
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001818/**
1819 * audit_avc_path - record the granting or denial of permissions
1820 * @dentry: dentry to record
1821 * @mnt: mnt to record
1822 *
1823 * Returns 0 for success or NULL context or < 0 on error.
1824 *
1825 * Called from security/selinux/avc.c::avc_audit()
1826 */
Stephen Smalley01116102005-05-21 00:15:52 +01001827int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt)
1828{
1829 struct audit_aux_data_path *ax;
1830 struct audit_context *context = current->audit_context;
1831
1832 if (likely(!context))
1833 return 0;
1834
1835 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1836 if (!ax)
1837 return -ENOMEM;
1838
1839 ax->dentry = dget(dentry);
1840 ax->mnt = mntget(mnt);
1841
1842 ax->d.type = AUDIT_AVC_PATH;
1843 ax->d.next = context->aux;
1844 context->aux = (void *)ax;
1845 return 0;
1846}
1847
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001848/**
1849 * audit_signal_info - record signal info for shutting down audit subsystem
1850 * @sig: signal value
1851 * @t: task being signaled
1852 *
1853 * If the audit subsystem is being terminated, record the task (pid)
1854 * and uid that is doing that.
1855 */
Al Viroe1396062006-05-25 10:19:47 -04001856void __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001857{
1858 extern pid_t audit_sig_pid;
1859 extern uid_t audit_sig_uid;
Al Viroe1396062006-05-25 10:19:47 -04001860 extern u32 audit_sig_sid;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001861
Al Viroe1396062006-05-25 10:19:47 -04001862 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) {
1863 struct task_struct *tsk = current;
1864 struct audit_context *ctx = tsk->audit_context;
1865 audit_sig_pid = tsk->pid;
1866 if (ctx)
1867 audit_sig_uid = ctx->loginuid;
1868 else
1869 audit_sig_uid = tsk->uid;
1870 selinux_get_task_sid(tsk, &audit_sig_sid);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001871 }
1872}