blob: b939ed2da3ee39604f5f929789cb4327dccf7e93 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/* When fs/namei.c:getname() is called, we store the pointer in name and
89 * we don't let putname() free it (instead we free all of the saved
90 * pointers at syscall exit time).
91 *
92 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
93struct audit_names {
94 const char *name;
Amy Griffis9c937dc2006-06-08 23:19:31 -040095 int name_len; /* number of name's characters to log */
96 unsigned name_put; /* call __putname() for this name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned long ino;
98 dev_t dev;
99 umode_t mode;
100 uid_t uid;
101 gid_t gid;
102 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400103 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106struct audit_aux_data {
107 struct audit_aux_data *next;
108 int type;
109};
110
111#define AUDIT_AUX_IPCPERM 0
112
George C. Wilson20ca73b2006-05-24 16:09:55 -0500113struct audit_aux_data_mq_open {
114 struct audit_aux_data d;
115 int oflag;
116 mode_t mode;
117 struct mq_attr attr;
118};
119
120struct audit_aux_data_mq_sendrecv {
121 struct audit_aux_data d;
122 mqd_t mqdes;
123 size_t msg_len;
124 unsigned int msg_prio;
125 struct timespec abs_timeout;
126};
127
128struct audit_aux_data_mq_notify {
129 struct audit_aux_data d;
130 mqd_t mqdes;
131 struct sigevent notification;
132};
133
134struct audit_aux_data_mq_getsetattr {
135 struct audit_aux_data d;
136 mqd_t mqdes;
137 struct mq_attr mqstat;
138};
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140struct audit_aux_data_ipcctl {
141 struct audit_aux_data d;
142 struct ipc_perm p;
143 unsigned long qbytes;
144 uid_t uid;
145 gid_t gid;
146 mode_t mode;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500147 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
Al Viro473ae302006-04-26 14:04:08 -0400150struct audit_aux_data_execve {
151 struct audit_aux_data d;
152 int argc;
153 int envc;
154 char mem[0];
155};
156
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100157struct audit_aux_data_socketcall {
158 struct audit_aux_data d;
159 int nargs;
160 unsigned long args[0];
161};
162
163struct audit_aux_data_sockaddr {
164 struct audit_aux_data d;
165 int len;
166 char a[0];
167};
168
Stephen Smalley01116102005-05-21 00:15:52 +0100169struct audit_aux_data_path {
170 struct audit_aux_data d;
171 struct dentry *dentry;
172 struct vfsmount *mnt;
173};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/* The per-task audit context. */
176struct audit_context {
177 int in_syscall; /* 1 if task is in a syscall */
178 enum audit_state state;
179 unsigned int serial; /* serial number for record */
180 struct timespec ctime; /* time of syscall entry */
181 uid_t loginuid; /* login uid (identity) */
182 int major; /* syscall number */
183 unsigned long argv[4]; /* syscall arguments */
184 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100185 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int auditable; /* 1 if record should be written */
187 int name_count;
188 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400189 char * filterkey; /* key for rule that triggered record */
David Woodhouse8f37d472005-05-27 12:17:28 +0100190 struct dentry * pwd;
191 struct vfsmount * pwdmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct audit_context *previous; /* For nested syscalls */
193 struct audit_aux_data *aux;
194
195 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400196 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 uid_t uid, euid, suid, fsuid;
198 gid_t gid, egid, sgid, fsgid;
199 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100200 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202#if AUDIT_DEBUG
203 int put_count;
204 int ino_count;
205#endif
206};
207
Amy Griffisf368c07d2006-04-07 16:55:56 -0400208/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/* Compare a task_struct with an audit_rule. Return 1 on match, 0
210 * otherwise. */
211static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500212 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400214 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 enum audit_state *state)
216{
Steve Grubb2ad312d2006-04-11 08:50:56 -0400217 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600218 u32 sid;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500221 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int result = 0;
223
Amy Griffis93315ed2006-02-07 12:05:27 -0500224 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500226 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
Al Viro3c662512006-05-06 08:26:27 -0400228 case AUDIT_PPID:
229 if (ctx)
230 result = audit_comparator(ctx->ppid, f->op, f->val);
231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 case AUDIT_UID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500233 result = audit_comparator(tsk->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235 case AUDIT_EUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500236 result = audit_comparator(tsk->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 break;
238 case AUDIT_SUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500239 result = audit_comparator(tsk->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 break;
241 case AUDIT_FSUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500242 result = audit_comparator(tsk->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 case AUDIT_GID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500245 result = audit_comparator(tsk->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 case AUDIT_EGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500248 result = audit_comparator(tsk->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 break;
250 case AUDIT_SGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500251 result = audit_comparator(tsk->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 break;
253 case AUDIT_FSGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500254 result = audit_comparator(tsk->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500257 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
2fd6f582005-04-29 16:08:28 +0100259 case AUDIT_ARCH:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000260 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500261 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100262 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 case AUDIT_EXIT:
265 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500266 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
268 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100269 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500270 if (f->val)
271 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100272 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500273 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 break;
276 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400277 if (name)
278 result = audit_comparator(MAJOR(name->dev),
279 f->op, f->val);
280 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500282 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ++result;
284 break;
285 }
286 }
287 }
288 break;
289 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400290 if (name)
291 result = audit_comparator(MINOR(name->dev),
292 f->op, f->val);
293 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500295 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 ++result;
297 break;
298 }
299 }
300 }
301 break;
302 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400303 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400304 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400305 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400307 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 ++result;
309 break;
310 }
311 }
312 }
313 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400314 case AUDIT_WATCH:
315 if (name && rule->watch->ino != (unsigned long)-1)
316 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400317 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 case AUDIT_LOGINUID:
320 result = 0;
321 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500322 result = audit_comparator(ctx->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500324 case AUDIT_SUBJ_USER:
325 case AUDIT_SUBJ_ROLE:
326 case AUDIT_SUBJ_TYPE:
327 case AUDIT_SUBJ_SEN:
328 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600329 /* NOTE: this may return negative values indicating
330 a temporary error. We simply treat this as a
331 match for now to avoid losing information that
332 may be wanted. An error message will also be
333 logged upon error */
Steve Grubb2ad312d2006-04-11 08:50:56 -0400334 if (f->se_rule) {
335 if (need_sid) {
336 selinux_task_ctxid(tsk, &sid);
337 need_sid = 0;
338 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600339 result = selinux_audit_rule_match(sid, f->type,
340 f->op,
341 f->se_rule,
342 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400343 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600344 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500345 case AUDIT_OBJ_USER:
346 case AUDIT_OBJ_ROLE:
347 case AUDIT_OBJ_TYPE:
348 case AUDIT_OBJ_LEV_LOW:
349 case AUDIT_OBJ_LEV_HIGH:
350 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
351 also applies here */
352 if (f->se_rule) {
353 /* Find files that match */
354 if (name) {
355 result = selinux_audit_rule_match(
356 name->osid, f->type, f->op,
357 f->se_rule, ctx);
358 } else if (ctx) {
359 for (j = 0; j < ctx->name_count; j++) {
360 if (selinux_audit_rule_match(
361 ctx->names[j].osid,
362 f->type, f->op,
363 f->se_rule, ctx)) {
364 ++result;
365 break;
366 }
367 }
368 }
369 /* Find ipc objects that match */
370 if (ctx) {
371 struct audit_aux_data *aux;
372 for (aux = ctx->aux; aux;
373 aux = aux->next) {
374 if (aux->type == AUDIT_IPC) {
375 struct audit_aux_data_ipcctl *axi = (void *)aux;
376 if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) {
377 ++result;
378 break;
379 }
380 }
381 }
382 }
383 }
384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 case AUDIT_ARG0:
386 case AUDIT_ARG1:
387 case AUDIT_ARG2:
388 case AUDIT_ARG3:
389 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500390 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400392 case AUDIT_FILTERKEY:
393 /* ignore this field for filtering */
394 result = 1;
395 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (!result)
399 return 0;
400 }
Amy Griffis5adc8a62006-06-14 18:45:21 -0400401 if (rule->filterkey)
402 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 switch (rule->action) {
404 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
406 }
407 return 1;
408}
409
410/* At process creation time, we can determine if system-call auditing is
411 * completely disabled for this task. Since we only have the task
412 * structure at this point, we can only check uid and gid.
413 */
414static enum audit_state audit_filter_task(struct task_struct *tsk)
415{
416 struct audit_entry *e;
417 enum audit_state state;
418
419 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100420 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400421 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 rcu_read_unlock();
423 return state;
424 }
425 }
426 rcu_read_unlock();
427 return AUDIT_BUILD_CONTEXT;
428}
429
430/* At syscall entry and exit time, this filter is called if the
431 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100432 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700433 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 */
435static enum audit_state audit_filter_syscall(struct task_struct *tsk,
436 struct audit_context *ctx,
437 struct list_head *list)
438{
439 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100440 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
David Woodhouse351bb722005-07-14 14:40:06 +0100442 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100443 return AUDIT_DISABLED;
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100446 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000447 int word = AUDIT_WORD(ctx->major);
448 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100449
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000450 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400451 if ((e->rule.mask[word] & bit) == bit &&
452 audit_filter_rules(tsk, &e->rule, ctx, NULL,
453 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000454 rcu_read_unlock();
455 return state;
456 }
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 rcu_read_unlock();
460 return AUDIT_BUILD_CONTEXT;
461}
462
Amy Griffisf368c07d2006-04-07 16:55:56 -0400463/* At syscall exit time, this filter is called if any audit_names[] have been
464 * collected during syscall processing. We only check rules in sublists at hash
465 * buckets applicable to the inode numbers in audit_names[].
466 * Regarding audit_state, same rules apply as for audit_filter_syscall().
467 */
468enum audit_state audit_filter_inodes(struct task_struct *tsk,
469 struct audit_context *ctx)
470{
471 int i;
472 struct audit_entry *e;
473 enum audit_state state;
474
475 if (audit_pid && tsk->tgid == audit_pid)
476 return AUDIT_DISABLED;
477
478 rcu_read_lock();
479 for (i = 0; i < ctx->name_count; i++) {
480 int word = AUDIT_WORD(ctx->major);
481 int bit = AUDIT_BIT(ctx->major);
482 struct audit_names *n = &ctx->names[i];
483 int h = audit_hash_ino((u32)n->ino);
484 struct list_head *list = &audit_inode_hash[h];
485
486 if (list_empty(list))
487 continue;
488
489 list_for_each_entry_rcu(e, list, list) {
490 if ((e->rule.mask[word] & bit) == bit &&
491 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
492 rcu_read_unlock();
493 return state;
494 }
495 }
496 }
497 rcu_read_unlock();
498 return AUDIT_BUILD_CONTEXT;
499}
500
501void audit_set_auditable(struct audit_context *ctx)
502{
503 ctx->auditable = 1;
504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506static inline struct audit_context *audit_get_context(struct task_struct *tsk,
507 int return_valid,
508 int return_code)
509{
510 struct audit_context *context = tsk->audit_context;
511
512 if (likely(!context))
513 return NULL;
514 context->return_valid = return_valid;
515 context->return_code = return_code;
516
David Woodhouse21af6c42005-07-02 14:10:46 +0100517 if (context->in_syscall && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400519
David Woodhouse0f45aa12005-06-19 19:35:50 +0100520 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400521 if (state == AUDIT_RECORD_CONTEXT) {
522 context->auditable = 1;
523 goto get_context;
524 }
525
526 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (state == AUDIT_RECORD_CONTEXT)
528 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
Amy Griffisf368c07d2006-04-07 16:55:56 -0400532get_context:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 context->pid = tsk->pid;
Al Virof46038f2006-05-06 08:22:52 -0400534 context->ppid = sys_getppid(); /* sic. tsk == current in all cases */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 context->uid = tsk->uid;
536 context->gid = tsk->gid;
537 context->euid = tsk->euid;
538 context->suid = tsk->suid;
539 context->fsuid = tsk->fsuid;
540 context->egid = tsk->egid;
541 context->sgid = tsk->sgid;
542 context->fsgid = tsk->fsgid;
543 context->personality = tsk->personality;
544 tsk->audit_context = NULL;
545 return context;
546}
547
548static inline void audit_free_names(struct audit_context *context)
549{
550 int i;
551
552#if AUDIT_DEBUG == 2
553 if (context->auditable
554 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000555 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 " name_count=%d put_count=%d"
557 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000558 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 context->serial, context->major, context->in_syscall,
560 context->name_count, context->put_count,
561 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000562 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 printk(KERN_ERR "names[%d] = %p = %s\n", i,
564 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000565 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 dump_stack();
568 return;
569 }
570#endif
571#if AUDIT_DEBUG
572 context->put_count = 0;
573 context->ino_count = 0;
574#endif
575
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000576 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400577 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 context->name_count = 0;
David Woodhouse8f37d472005-05-27 12:17:28 +0100581 if (context->pwd)
582 dput(context->pwd);
583 if (context->pwdmnt)
584 mntput(context->pwdmnt);
585 context->pwd = NULL;
586 context->pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589static inline void audit_free_aux(struct audit_context *context)
590{
591 struct audit_aux_data *aux;
592
593 while ((aux = context->aux)) {
Stephen Smalley01116102005-05-21 00:15:52 +0100594 if (aux->type == AUDIT_AVC_PATH) {
595 struct audit_aux_data_path *axi = (void *)aux;
596 dput(axi->dentry);
597 mntput(axi->mnt);
598 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 context->aux = aux->next;
601 kfree(aux);
602 }
603}
604
605static inline void audit_zero_context(struct audit_context *context,
606 enum audit_state state)
607{
608 uid_t loginuid = context->loginuid;
609
610 memset(context, 0, sizeof(*context));
611 context->state = state;
612 context->loginuid = loginuid;
613}
614
615static inline struct audit_context *audit_alloc_context(enum audit_state state)
616{
617 struct audit_context *context;
618
619 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
620 return NULL;
621 audit_zero_context(context, state);
622 return context;
623}
624
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700625/**
626 * audit_alloc - allocate an audit context block for a task
627 * @tsk: task
628 *
629 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * if necessary. Doing so turns on system call auditing for the
631 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700632 * needed.
633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634int audit_alloc(struct task_struct *tsk)
635{
636 struct audit_context *context;
637 enum audit_state state;
638
639 if (likely(!audit_enabled))
640 return 0; /* Return if not auditing. */
641
642 state = audit_filter_task(tsk);
643 if (likely(state == AUDIT_DISABLED))
644 return 0;
645
646 if (!(context = audit_alloc_context(state))) {
647 audit_log_lost("out of memory in audit_alloc");
648 return -ENOMEM;
649 }
650
651 /* Preserve login uid */
652 context->loginuid = -1;
653 if (current->audit_context)
654 context->loginuid = current->audit_context->loginuid;
655
656 tsk->audit_context = context;
657 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
658 return 0;
659}
660
661static inline void audit_free_context(struct audit_context *context)
662{
663 struct audit_context *previous;
664 int count = 0;
665
666 do {
667 previous = context->previous;
668 if (previous || (count && count < 10)) {
669 ++count;
670 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
671 " freeing multiple contexts (%d)\n",
672 context->serial, context->major,
673 context->name_count, count);
674 }
675 audit_free_names(context);
676 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400677 kfree(context->filterkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 kfree(context);
679 context = previous;
680 } while (context);
681 if (count >= 10)
682 printk(KERN_ERR "audit: freed %d contexts\n", count);
683}
684
Al Viroe4951492006-03-29 20:17:10 -0500685static void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000686{
687 char *ctx = NULL;
688 ssize_t len = 0;
689
690 len = security_getprocattr(current, "current", NULL, 0);
691 if (len < 0) {
692 if (len != -EINVAL)
693 goto error_path;
694 return;
695 }
696
Al Viroe4951492006-03-29 20:17:10 -0500697 ctx = kmalloc(len, GFP_KERNEL);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000698 if (!ctx)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000699 goto error_path;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000700
701 len = security_getprocattr(current, "current", ctx, len);
702 if (len < 0 )
703 goto error_path;
704
705 audit_log_format(ab, " subj=%s", ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000706 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000707
708error_path:
Jesper Juhl9a66a532006-06-27 02:55:05 -0700709 kfree(ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000710 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000711 return;
712}
713
Al Viroe4951492006-03-29 20:17:10 -0500714static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700715{
Al Viro45d9bb02006-03-29 20:02:55 -0500716 char name[sizeof(tsk->comm)];
717 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700718 struct vm_area_struct *vma;
719
Al Viroe4951492006-03-29 20:17:10 -0500720 /* tsk == current */
721
Al Viro45d9bb02006-03-29 20:02:55 -0500722 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100723 audit_log_format(ab, " comm=");
724 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700725
Al Viroe4951492006-03-29 20:17:10 -0500726 if (mm) {
727 down_read(&mm->mmap_sem);
728 vma = mm->mmap;
729 while (vma) {
730 if ((vma->vm_flags & VM_EXECUTABLE) &&
731 vma->vm_file) {
732 audit_log_d_path(ab, "exe=",
733 vma->vm_file->f_dentry,
734 vma->vm_file->f_vfsmnt);
735 break;
736 }
737 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700738 }
Al Viroe4951492006-03-29 20:17:10 -0500739 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700740 }
Al Viroe4951492006-03-29 20:17:10 -0500741 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700742}
743
Al Viroe4951492006-03-29 20:17:10 -0500744static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500746 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +0100748 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -0500749 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Al Viroe4951492006-03-29 20:17:10 -0500751 /* tsk == current */
752
753 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (!ab)
755 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +0100756 audit_log_format(ab, "arch=%x syscall=%d",
757 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (context->personality != PER_LINUX)
759 audit_log_format(ab, " per=%lx", context->personality);
760 if (context->return_valid)
2fd6f582005-04-29 16:08:28 +0100761 audit_log_format(ab, " success=%s exit=%ld",
762 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
763 context->return_code);
Al Viro45d9bb02006-03-29 20:02:55 -0500764 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
765 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -0500766 else
767 tty = "(none)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 audit_log_format(ab,
769 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -0400770 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +0100771 " euid=%u suid=%u fsuid=%u"
Steve Grubba6c043a2006-01-01 14:07:00 -0500772 " egid=%u sgid=%u fsgid=%u tty=%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 context->argv[0],
774 context->argv[1],
775 context->argv[2],
776 context->argv[3],
777 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -0400778 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 context->pid,
780 context->loginuid,
781 context->uid,
782 context->gid,
783 context->euid, context->suid, context->fsuid,
Steve Grubba6c043a2006-01-01 14:07:00 -0500784 context->egid, context->sgid, context->fsgid, tty);
Al Viroe4951492006-03-29 20:17:10 -0500785 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400786 if (context->filterkey) {
787 audit_log_format(ab, " key=");
788 audit_log_untrustedstring(ab, context->filterkey);
789 } else
790 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
David Woodhouse7551ced2005-05-26 12:04:57 +0100793 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +0100794
Al Viroe4951492006-03-29 20:17:10 -0500795 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!ab)
797 continue; /* audit_panic has been called */
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -0500800 case AUDIT_MQ_OPEN: {
801 struct audit_aux_data_mq_open *axi = (void *)aux;
802 audit_log_format(ab,
803 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
804 "mq_msgsize=%ld mq_curmsgs=%ld",
805 axi->oflag, axi->mode, axi->attr.mq_flags,
806 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
807 axi->attr.mq_curmsgs);
808 break; }
809
810 case AUDIT_MQ_SENDRECV: {
811 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
812 audit_log_format(ab,
813 "mqdes=%d msg_len=%zd msg_prio=%u "
814 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
815 axi->mqdes, axi->msg_len, axi->msg_prio,
816 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
817 break; }
818
819 case AUDIT_MQ_NOTIFY: {
820 struct audit_aux_data_mq_notify *axi = (void *)aux;
821 audit_log_format(ab,
822 "mqdes=%d sigev_signo=%d",
823 axi->mqdes,
824 axi->notification.sigev_signo);
825 break; }
826
827 case AUDIT_MQ_GETSETATTR: {
828 struct audit_aux_data_mq_getsetattr *axi = (void *)aux;
829 audit_log_format(ab,
830 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
831 "mq_curmsgs=%ld ",
832 axi->mqdes,
833 axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg,
834 axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs);
835 break; }
836
Steve Grubbc0404992005-05-13 18:17:42 +0100837 case AUDIT_IPC: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 struct audit_aux_data_ipcctl *axi = (void *)aux;
839 audit_log_format(ab,
Linda Knippersac032212006-05-16 22:03:48 -0400840 "ouid=%u ogid=%u mode=%x",
841 axi->uid, axi->gid, axi->mode);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500842 if (axi->osid != 0) {
843 char *ctx = NULL;
844 u32 len;
845 if (selinux_ctxid_to_string(
846 axi->osid, &ctx, &len)) {
Steve Grubbce29b682006-04-01 18:29:34 -0500847 audit_log_format(ab, " osid=%u",
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500848 axi->osid);
849 call_panic = 1;
850 } else
851 audit_log_format(ab, " obj=%s", ctx);
852 kfree(ctx);
853 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100854 break; }
855
Steve Grubb073115d2006-04-02 17:07:33 -0400856 case AUDIT_IPC_SET_PERM: {
857 struct audit_aux_data_ipcctl *axi = (void *)aux;
858 audit_log_format(ab,
Linda Knippersac032212006-05-16 22:03:48 -0400859 "qbytes=%lx ouid=%u ogid=%u mode=%x",
Steve Grubb073115d2006-04-02 17:07:33 -0400860 axi->qbytes, axi->uid, axi->gid, axi->mode);
Steve Grubb073115d2006-04-02 17:07:33 -0400861 break; }
Linda Knippersac032212006-05-16 22:03:48 -0400862
Al Viro473ae302006-04-26 14:04:08 -0400863 case AUDIT_EXECVE: {
864 struct audit_aux_data_execve *axi = (void *)aux;
865 int i;
866 const char *p;
867 for (i = 0, p = axi->mem; i < axi->argc; i++) {
868 audit_log_format(ab, "a%d=", i);
869 p = audit_log_untrustedstring(ab, p);
870 audit_log_format(ab, "\n");
871 }
872 break; }
Steve Grubb073115d2006-04-02 17:07:33 -0400873
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100874 case AUDIT_SOCKETCALL: {
875 int i;
876 struct audit_aux_data_socketcall *axs = (void *)aux;
877 audit_log_format(ab, "nargs=%d", axs->nargs);
878 for (i=0; i<axs->nargs; i++)
879 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
880 break; }
881
882 case AUDIT_SOCKADDR: {
883 struct audit_aux_data_sockaddr *axs = (void *)aux;
884
885 audit_log_format(ab, "saddr=");
886 audit_log_hex(ab, axs->a, axs->len);
887 break; }
Stephen Smalley01116102005-05-21 00:15:52 +0100888
889 case AUDIT_AVC_PATH: {
890 struct audit_aux_data_path *axi = (void *)aux;
891 audit_log_d_path(ab, "path=", axi->dentry, axi->mnt);
Stephen Smalley01116102005-05-21 00:15:52 +0100892 break; }
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
David Woodhouse8f37d472005-05-27 12:17:28 +0100898 if (context->pwd && context->pwdmnt) {
Al Viroe4951492006-03-29 20:17:10 -0500899 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +0100900 if (ab) {
901 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
902 audit_log_end(ab);
903 }
904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400906 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +0000907
Al Viroe4951492006-03-29 20:17:10 -0500908 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (!ab)
910 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +0100911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +0000913
Amy Griffis9c937dc2006-06-08 23:19:31 -0400914 if (n->name) {
915 switch(n->name_len) {
916 case AUDIT_NAME_FULL:
917 /* log the full path */
918 audit_log_format(ab, " name=");
919 audit_log_untrustedstring(ab, n->name);
920 break;
921 case 0:
922 /* name was specified as a relative path and the
923 * directory component is the cwd */
924 audit_log_d_path(ab, " name=", context->pwd,
925 context->pwdmnt);
926 break;
927 default:
928 /* log the name's directory component */
929 audit_log_format(ab, " name=");
930 audit_log_n_untrustedstring(ab, n->name_len,
931 n->name);
932 }
933 } else
934 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +0000935
Amy Griffis9c937dc2006-06-08 23:19:31 -0400936 if (n->ino != (unsigned long)-1) {
937 audit_log_format(ab, " inode=%lu"
938 " dev=%02x:%02x mode=%#o"
939 " ouid=%u ogid=%u rdev=%02x:%02x",
940 n->ino,
941 MAJOR(n->dev),
942 MINOR(n->dev),
943 n->mode,
944 n->uid,
945 n->gid,
946 MAJOR(n->rdev),
947 MINOR(n->rdev));
948 }
949 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -0400950 char *ctx = NULL;
951 u32 len;
952 if (selinux_ctxid_to_string(
Amy Griffis9c937dc2006-06-08 23:19:31 -0400953 n->osid, &ctx, &len)) {
954 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500955 call_panic = 2;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400956 } else
957 audit_log_format(ab, " obj=%s", ctx);
958 kfree(ctx);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000959 }
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 audit_log_end(ab);
962 }
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500963 if (call_panic)
964 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700967/**
968 * audit_free - free a per-task audit context
969 * @tsk: task whose audit context block to free
970 *
Al Virofa84cb92006-03-29 20:30:19 -0500971 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700972 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973void audit_free(struct task_struct *tsk)
974{
975 struct audit_context *context;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (likely(!context))
979 return;
980
981 /* Check for system calls that do not go through the exit
David Woodhousef5561962005-07-13 22:47:07 +0100982 * function (e.g., exit_group), then free context block.
983 * We use GFP_ATOMIC here because we might be doing this
984 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -0500985 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +0100986 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -0500987 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 audit_free_context(context);
990}
991
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700992/**
993 * audit_syscall_entry - fill in an audit record at syscall entry
994 * @tsk: task being audited
995 * @arch: architecture type
996 * @major: major syscall type (function)
997 * @a1: additional syscall register 1
998 * @a2: additional syscall register 2
999 * @a3: additional syscall register 3
1000 * @a4: additional syscall register 4
1001 *
1002 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 * audit context was created when the task was created and the state or
1004 * filters demand the audit context be built. If the state from the
1005 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1006 * then the record will be written at syscall exit time (otherwise, it
1007 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001008 * be written).
1009 */
Al Viro5411be52006-03-29 20:23:36 -05001010void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 unsigned long a1, unsigned long a2,
1012 unsigned long a3, unsigned long a4)
1013{
Al Viro5411be52006-03-29 20:23:36 -05001014 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct audit_context *context = tsk->audit_context;
1016 enum audit_state state;
1017
1018 BUG_ON(!context);
1019
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001020 /*
1021 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * calls in kernel_thread via the entry.S interface, instead of
1023 * with direct calls. (If you are porting to a new
1024 * architecture, hitting this condition can indicate that you
1025 * got the _exit/_leave calls backward in entry.S.)
1026 *
1027 * i386 no
1028 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001029 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 *
1031 * This also happens with vm86 emulation in a non-nested manner
1032 * (entries without exits), so this case must be caught.
1033 */
1034 if (context->in_syscall) {
1035 struct audit_context *newctx;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037#if AUDIT_DEBUG
1038 printk(KERN_ERR
1039 "audit(:%d) pid=%d in syscall=%d;"
1040 " entering syscall=%d\n",
1041 context->serial, tsk->pid, context->major, major);
1042#endif
1043 newctx = audit_alloc_context(context->state);
1044 if (newctx) {
1045 newctx->previous = context;
1046 context = newctx;
1047 tsk->audit_context = newctx;
1048 } else {
1049 /* If we can't alloc a new context, the best we
1050 * can do is to leak memory (any pending putname
1051 * will be lost). The only other alternative is
1052 * to abandon auditing. */
1053 audit_zero_context(context, context->state);
1054 }
1055 }
1056 BUG_ON(context->in_syscall || context->name_count);
1057
1058 if (!audit_enabled)
1059 return;
1060
2fd6f582005-04-29 16:08:28 +01001061 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 context->major = major;
1063 context->argv[0] = a1;
1064 context->argv[1] = a2;
1065 context->argv[2] = a3;
1066 context->argv[3] = a4;
1067
1068 state = context->state;
1069 if (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT)
David Woodhouse0f45aa12005-06-19 19:35:50 +01001070 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (likely(state == AUDIT_DISABLED))
1072 return;
1073
David Woodhousece625a82005-07-18 14:24:46 -04001074 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 context->ctime = CURRENT_TIME;
1076 context->in_syscall = 1;
1077 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
1078}
1079
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001080/**
1081 * audit_syscall_exit - deallocate audit context after a system call
1082 * @tsk: task being audited
1083 * @valid: success/failure flag
1084 * @return_code: syscall return value
1085 *
1086 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1088 * filtering, or because some other part of the kernel write an audit
1089 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001090 * free the names stored from getname().
1091 */
Al Viro5411be52006-03-29 20:23:36 -05001092void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Al Viro5411be52006-03-29 20:23:36 -05001094 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 struct audit_context *context;
1096
2fd6f582005-04-29 16:08:28 +01001097 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001100 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
David Woodhousef7056d62005-06-20 16:07:33 +01001102 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001103 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 context->in_syscall = 0;
1106 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (context->previous) {
1109 struct audit_context *new_context = context->previous;
1110 context->previous = NULL;
1111 audit_free_context(context);
1112 tsk->audit_context = new_context;
1113 } else {
1114 audit_free_names(context);
1115 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001116 kfree(context->filterkey);
1117 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 tsk->audit_context = context;
1119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001122/**
1123 * audit_getname - add a name to the list
1124 * @name: name to add
1125 *
1126 * Add a name to the list of audit names for this context.
1127 * Called from fs/namei.c:getname().
1128 */
Al Virod8945bb52006-05-18 16:01:30 -04001129void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 struct audit_context *context = current->audit_context;
1132
Al Virod8945bb52006-05-18 16:01:30 -04001133 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return;
1135
1136 if (!context->in_syscall) {
1137#if AUDIT_DEBUG == 2
1138 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1139 __FILE__, __LINE__, context->serial, name);
1140 dump_stack();
1141#endif
1142 return;
1143 }
1144 BUG_ON(context->name_count >= AUDIT_NAMES);
1145 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001146 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1147 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 context->names[context->name_count].ino = (unsigned long)-1;
1149 ++context->name_count;
David Woodhouse8f37d472005-05-27 12:17:28 +01001150 if (!context->pwd) {
1151 read_lock(&current->fs->lock);
1152 context->pwd = dget(current->fs->pwd);
1153 context->pwdmnt = mntget(current->fs->pwdmnt);
1154 read_unlock(&current->fs->lock);
1155 }
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001159/* audit_putname - intercept a putname request
1160 * @name: name to intercept and delay for putname
1161 *
1162 * If we have stored the name from getname in the audit context,
1163 * then we delay the putname until syscall exit.
1164 * Called from include/linux/fs.h:putname().
1165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166void audit_putname(const char *name)
1167{
1168 struct audit_context *context = current->audit_context;
1169
1170 BUG_ON(!context);
1171 if (!context->in_syscall) {
1172#if AUDIT_DEBUG == 2
1173 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1174 __FILE__, __LINE__, context->serial, name);
1175 if (context->name_count) {
1176 int i;
1177 for (i = 0; i < context->name_count; i++)
1178 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1179 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001180 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182#endif
1183 __putname(name);
1184 }
1185#if AUDIT_DEBUG
1186 else {
1187 ++context->put_count;
1188 if (context->put_count > context->name_count) {
1189 printk(KERN_ERR "%s:%d(:%d): major=%d"
1190 " in_syscall=%d putname(%p) name_count=%d"
1191 " put_count=%d\n",
1192 __FILE__, __LINE__,
1193 context->serial, context->major,
1194 context->in_syscall, name, context->name_count,
1195 context->put_count);
1196 dump_stack();
1197 }
1198 }
1199#endif
1200}
1201
Amy Griffis3e2efce2006-07-13 13:16:02 -04001202/* Copy inode data into an audit_names. */
1203static void audit_copy_inode(struct audit_names *name, const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001204{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001205 name->ino = inode->i_ino;
1206 name->dev = inode->i_sb->s_dev;
1207 name->mode = inode->i_mode;
1208 name->uid = inode->i_uid;
1209 name->gid = inode->i_gid;
1210 name->rdev = inode->i_rdev;
1211 selinux_get_inode_sid(inode, &name->osid);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001212}
1213
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001214/**
1215 * audit_inode - store the inode and device from a lookup
1216 * @name: name being audited
1217 * @inode: inode being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001218 *
1219 * Called from fs/namei.c:path_lookup().
1220 */
Amy Griffis9c937dc2006-06-08 23:19:31 -04001221void __audit_inode(const char *name, const struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 int idx;
1224 struct audit_context *context = current->audit_context;
1225
1226 if (!context->in_syscall)
1227 return;
1228 if (context->name_count
1229 && context->names[context->name_count-1].name
1230 && context->names[context->name_count-1].name == name)
1231 idx = context->name_count - 1;
1232 else if (context->name_count > 1
1233 && context->names[context->name_count-2].name
1234 && context->names[context->name_count-2].name == name)
1235 idx = context->name_count - 2;
1236 else {
1237 /* FIXME: how much do we care about inodes that have no
1238 * associated name? */
1239 if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED)
1240 return;
1241 idx = context->name_count++;
1242 context->names[idx].name = NULL;
1243#if AUDIT_DEBUG
1244 ++context->ino_count;
1245#endif
1246 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001247 audit_copy_inode(&context->names[idx], inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Amy Griffis73241cc2005-11-03 16:00:25 +00001250/**
1251 * audit_inode_child - collect inode info for created/removed objects
1252 * @dname: inode's dentry name
1253 * @inode: inode being audited
1254 * @pino: inode number of dentry parent
1255 *
1256 * For syscalls that create or remove filesystem objects, audit_inode
1257 * can only collect information for the filesystem object's parent.
1258 * This call updates the audit context with the child's information.
1259 * Syscalls that create a new filesystem object must be hooked after
1260 * the object is created. Syscalls that remove a filesystem object
1261 * must be hooked prior, in order to capture the target inode during
1262 * unsuccessful attempts.
1263 */
1264void __audit_inode_child(const char *dname, const struct inode *inode,
1265 unsigned long pino)
1266{
1267 int idx;
1268 struct audit_context *context = current->audit_context;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001269 const char *found_name = NULL;
1270 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00001271
1272 if (!context->in_syscall)
1273 return;
1274
1275 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04001276 if (!dname)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001277 goto update_context;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001278 for (idx = 0; idx < context->name_count; idx++)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001279 if (context->names[idx].ino == pino) {
Amy Griffisf368c07d2006-04-07 16:55:56 -04001280 const char *name = context->names[idx].name;
Amy Griffis73241cc2005-11-03 16:00:25 +00001281
Amy Griffisf368c07d2006-04-07 16:55:56 -04001282 if (!name)
1283 continue;
Amy Griffis73241cc2005-11-03 16:00:25 +00001284
Amy Griffis9c937dc2006-06-08 23:19:31 -04001285 if (audit_compare_dname_path(dname, name, &dirlen) == 0) {
1286 context->names[idx].name_len = dirlen;
1287 found_name = name;
1288 break;
1289 }
Amy Griffisf368c07d2006-04-07 16:55:56 -04001290 }
Amy Griffis73241cc2005-11-03 16:00:25 +00001291
Amy Griffis9c937dc2006-06-08 23:19:31 -04001292update_context:
Amy Griffis73241cc2005-11-03 16:00:25 +00001293 idx = context->name_count++;
Amy Griffis73241cc2005-11-03 16:00:25 +00001294#if AUDIT_DEBUG
1295 context->ino_count++;
1296#endif
Amy Griffis9c937dc2006-06-08 23:19:31 -04001297 /* Re-use the name belonging to the slot for a matching parent directory.
1298 * All names for this context are relinquished in audit_free_names() */
1299 context->names[idx].name = found_name;
1300 context->names[idx].name_len = AUDIT_NAME_FULL;
1301 context->names[idx].name_put = 0; /* don't call __putname() */
Amy Griffis73241cc2005-11-03 16:00:25 +00001302
Amy Griffis3e2efce2006-07-13 13:16:02 -04001303 if (!inode)
1304 context->names[idx].ino = (unsigned long)-1;
1305 else
1306 audit_copy_inode(&context->names[idx], inode);
1307}
1308
1309/**
1310 * audit_inode_update - update inode info for last collected name
1311 * @inode: inode being audited
1312 *
1313 * When open() is called on an existing object with the O_CREAT flag, the inode
1314 * data audit initially collects is incorrect. This additional hook ensures
1315 * audit has the inode data for the actual object to be opened.
1316 */
1317void __audit_inode_update(const struct inode *inode)
1318{
1319 struct audit_context *context = current->audit_context;
1320 int idx;
1321
1322 if (!context->in_syscall || !inode)
1323 return;
1324
1325 if (context->name_count == 0) {
1326 context->name_count++;
1327#if AUDIT_DEBUG
1328 context->ino_count++;
1329#endif
1330 }
1331 idx = context->name_count - 1;
1332
1333 audit_copy_inode(&context->names[idx], inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001336/**
1337 * auditsc_get_stamp - get local copies of audit_context values
1338 * @ctx: audit_context for the task
1339 * @t: timespec to store time recorded in the audit_context
1340 * @serial: serial value that is recorded in the audit_context
1341 *
1342 * Also sets the context as auditable.
1343 */
David Woodhousebfb44962005-05-21 21:08:09 +01001344void auditsc_get_stamp(struct audit_context *ctx,
1345 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
David Woodhousece625a82005-07-18 14:24:46 -04001347 if (!ctx->serial)
1348 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01001349 t->tv_sec = ctx->ctime.tv_sec;
1350 t->tv_nsec = ctx->ctime.tv_nsec;
1351 *serial = ctx->serial;
1352 ctx->auditable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001355/**
1356 * audit_set_loginuid - set a task's audit_context loginuid
1357 * @task: task whose audit context is being modified
1358 * @loginuid: loginuid value
1359 *
1360 * Returns 0.
1361 *
1362 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1363 */
Steve Grubb456be6c2005-04-29 17:30:07 +01001364int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Steve Grubb41757102006-06-12 07:48:28 -04001366 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01001367
Steve Grubb41757102006-06-12 07:48:28 -04001368 if (context) {
1369 /* Only log if audit is enabled */
1370 if (context->in_syscall) {
1371 struct audit_buffer *ab;
1372
1373 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
1374 if (ab) {
1375 audit_log_format(ab, "login pid=%d uid=%u "
1376 "old auid=%u new auid=%u",
1377 task->pid, task->uid,
1378 context->loginuid, loginuid);
1379 audit_log_end(ab);
1380 }
Steve Grubbc0404992005-05-13 18:17:42 +01001381 }
Steve Grubb41757102006-06-12 07:48:28 -04001382 context->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384 return 0;
1385}
1386
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001387/**
1388 * audit_get_loginuid - get the loginuid for an audit_context
1389 * @ctx: the audit_context
1390 *
1391 * Returns the context's loginuid or -1 if @ctx is NULL.
1392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393uid_t audit_get_loginuid(struct audit_context *ctx)
1394{
1395 return ctx ? ctx->loginuid : -1;
1396}
1397
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001398/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05001399 * __audit_mq_open - record audit data for a POSIX MQ open
1400 * @oflag: open flag
1401 * @mode: mode bits
1402 * @u_attr: queue attributes
1403 *
1404 * Returns 0 for success or NULL context or < 0 on error.
1405 */
1406int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
1407{
1408 struct audit_aux_data_mq_open *ax;
1409 struct audit_context *context = current->audit_context;
1410
1411 if (!audit_enabled)
1412 return 0;
1413
1414 if (likely(!context))
1415 return 0;
1416
1417 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1418 if (!ax)
1419 return -ENOMEM;
1420
1421 if (u_attr != NULL) {
1422 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
1423 kfree(ax);
1424 return -EFAULT;
1425 }
1426 } else
1427 memset(&ax->attr, 0, sizeof(ax->attr));
1428
1429 ax->oflag = oflag;
1430 ax->mode = mode;
1431
1432 ax->d.type = AUDIT_MQ_OPEN;
1433 ax->d.next = context->aux;
1434 context->aux = (void *)ax;
1435 return 0;
1436}
1437
1438/**
1439 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1440 * @mqdes: MQ descriptor
1441 * @msg_len: Message length
1442 * @msg_prio: Message priority
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001443 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001444 *
1445 * Returns 0 for success or NULL context or < 0 on error.
1446 */
1447int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
1448 const struct timespec __user *u_abs_timeout)
1449{
1450 struct audit_aux_data_mq_sendrecv *ax;
1451 struct audit_context *context = current->audit_context;
1452
1453 if (!audit_enabled)
1454 return 0;
1455
1456 if (likely(!context))
1457 return 0;
1458
1459 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1460 if (!ax)
1461 return -ENOMEM;
1462
1463 if (u_abs_timeout != NULL) {
1464 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1465 kfree(ax);
1466 return -EFAULT;
1467 }
1468 } else
1469 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1470
1471 ax->mqdes = mqdes;
1472 ax->msg_len = msg_len;
1473 ax->msg_prio = msg_prio;
1474
1475 ax->d.type = AUDIT_MQ_SENDRECV;
1476 ax->d.next = context->aux;
1477 context->aux = (void *)ax;
1478 return 0;
1479}
1480
1481/**
1482 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1483 * @mqdes: MQ descriptor
1484 * @msg_len: Message length
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001485 * @u_msg_prio: Message priority
1486 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001487 *
1488 * Returns 0 for success or NULL context or < 0 on error.
1489 */
1490int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
1491 unsigned int __user *u_msg_prio,
1492 const struct timespec __user *u_abs_timeout)
1493{
1494 struct audit_aux_data_mq_sendrecv *ax;
1495 struct audit_context *context = current->audit_context;
1496
1497 if (!audit_enabled)
1498 return 0;
1499
1500 if (likely(!context))
1501 return 0;
1502
1503 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1504 if (!ax)
1505 return -ENOMEM;
1506
1507 if (u_msg_prio != NULL) {
1508 if (get_user(ax->msg_prio, u_msg_prio)) {
1509 kfree(ax);
1510 return -EFAULT;
1511 }
1512 } else
1513 ax->msg_prio = 0;
1514
1515 if (u_abs_timeout != NULL) {
1516 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1517 kfree(ax);
1518 return -EFAULT;
1519 }
1520 } else
1521 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1522
1523 ax->mqdes = mqdes;
1524 ax->msg_len = msg_len;
1525
1526 ax->d.type = AUDIT_MQ_SENDRECV;
1527 ax->d.next = context->aux;
1528 context->aux = (void *)ax;
1529 return 0;
1530}
1531
1532/**
1533 * __audit_mq_notify - record audit data for a POSIX MQ notify
1534 * @mqdes: MQ descriptor
1535 * @u_notification: Notification event
1536 *
1537 * Returns 0 for success or NULL context or < 0 on error.
1538 */
1539
1540int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
1541{
1542 struct audit_aux_data_mq_notify *ax;
1543 struct audit_context *context = current->audit_context;
1544
1545 if (!audit_enabled)
1546 return 0;
1547
1548 if (likely(!context))
1549 return 0;
1550
1551 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1552 if (!ax)
1553 return -ENOMEM;
1554
1555 if (u_notification != NULL) {
1556 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
1557 kfree(ax);
1558 return -EFAULT;
1559 }
1560 } else
1561 memset(&ax->notification, 0, sizeof(ax->notification));
1562
1563 ax->mqdes = mqdes;
1564
1565 ax->d.type = AUDIT_MQ_NOTIFY;
1566 ax->d.next = context->aux;
1567 context->aux = (void *)ax;
1568 return 0;
1569}
1570
1571/**
1572 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1573 * @mqdes: MQ descriptor
1574 * @mqstat: MQ flags
1575 *
1576 * Returns 0 for success or NULL context or < 0 on error.
1577 */
1578int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
1579{
1580 struct audit_aux_data_mq_getsetattr *ax;
1581 struct audit_context *context = current->audit_context;
1582
1583 if (!audit_enabled)
1584 return 0;
1585
1586 if (likely(!context))
1587 return 0;
1588
1589 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1590 if (!ax)
1591 return -ENOMEM;
1592
1593 ax->mqdes = mqdes;
1594 ax->mqstat = *mqstat;
1595
1596 ax->d.type = AUDIT_MQ_GETSETATTR;
1597 ax->d.next = context->aux;
1598 context->aux = (void *)ax;
1599 return 0;
1600}
1601
1602/**
Steve Grubb073115d2006-04-02 17:07:33 -04001603 * audit_ipc_obj - record audit data for ipc object
1604 * @ipcp: ipc permissions
1605 *
1606 * Returns 0 for success or NULL context or < 0 on error.
1607 */
Al Virod8945bb52006-05-18 16:01:30 -04001608int __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04001609{
1610 struct audit_aux_data_ipcctl *ax;
1611 struct audit_context *context = current->audit_context;
1612
Steve Grubb073115d2006-04-02 17:07:33 -04001613 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1614 if (!ax)
1615 return -ENOMEM;
1616
1617 ax->uid = ipcp->uid;
1618 ax->gid = ipcp->gid;
1619 ax->mode = ipcp->mode;
1620 selinux_get_ipc_sid(ipcp, &ax->osid);
1621
1622 ax->d.type = AUDIT_IPC;
1623 ax->d.next = context->aux;
1624 context->aux = (void *)ax;
1625 return 0;
1626}
1627
1628/**
1629 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001630 * @qbytes: msgq bytes
1631 * @uid: msgq user id
1632 * @gid: msgq group id
1633 * @mode: msgq mode (permissions)
1634 *
1635 * Returns 0 for success or NULL context or < 0 on error.
1636 */
Al Virod8945bb52006-05-18 16:01:30 -04001637int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
1639 struct audit_aux_data_ipcctl *ax;
1640 struct audit_context *context = current->audit_context;
1641
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001642 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (!ax)
1644 return -ENOMEM;
1645
1646 ax->qbytes = qbytes;
1647 ax->uid = uid;
1648 ax->gid = gid;
1649 ax->mode = mode;
1650
Steve Grubb073115d2006-04-02 17:07:33 -04001651 ax->d.type = AUDIT_IPC_SET_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ax->d.next = context->aux;
1653 context->aux = (void *)ax;
1654 return 0;
1655}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001656
Al Viro473ae302006-04-26 14:04:08 -04001657int audit_bprm(struct linux_binprm *bprm)
1658{
1659 struct audit_aux_data_execve *ax;
1660 struct audit_context *context = current->audit_context;
1661 unsigned long p, next;
1662 void *to;
1663
1664 if (likely(!audit_enabled || !context))
1665 return 0;
1666
1667 ax = kmalloc(sizeof(*ax) + PAGE_SIZE * MAX_ARG_PAGES - bprm->p,
1668 GFP_KERNEL);
1669 if (!ax)
1670 return -ENOMEM;
1671
1672 ax->argc = bprm->argc;
1673 ax->envc = bprm->envc;
1674 for (p = bprm->p, to = ax->mem; p < MAX_ARG_PAGES*PAGE_SIZE; p = next) {
1675 struct page *page = bprm->page[p / PAGE_SIZE];
1676 void *kaddr = kmap(page);
1677 next = (p + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1678 memcpy(to, kaddr + (p & (PAGE_SIZE - 1)), next - p);
1679 to += next - p;
1680 kunmap(page);
1681 }
1682
1683 ax->d.type = AUDIT_EXECVE;
1684 ax->d.next = context->aux;
1685 context->aux = (void *)ax;
1686 return 0;
1687}
1688
1689
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001690/**
1691 * audit_socketcall - record audit data for sys_socketcall
1692 * @nargs: number of args
1693 * @args: args array
1694 *
1695 * Returns 0 for success or NULL context or < 0 on error.
1696 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001697int audit_socketcall(int nargs, unsigned long *args)
1698{
1699 struct audit_aux_data_socketcall *ax;
1700 struct audit_context *context = current->audit_context;
1701
1702 if (likely(!context))
1703 return 0;
1704
1705 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1706 if (!ax)
1707 return -ENOMEM;
1708
1709 ax->nargs = nargs;
1710 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1711
1712 ax->d.type = AUDIT_SOCKETCALL;
1713 ax->d.next = context->aux;
1714 context->aux = (void *)ax;
1715 return 0;
1716}
1717
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001718/**
1719 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1720 * @len: data length in user space
1721 * @a: data address in kernel space
1722 *
1723 * Returns 0 for success or NULL context or < 0 on error.
1724 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001725int audit_sockaddr(int len, void *a)
1726{
1727 struct audit_aux_data_sockaddr *ax;
1728 struct audit_context *context = current->audit_context;
1729
1730 if (likely(!context))
1731 return 0;
1732
1733 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1734 if (!ax)
1735 return -ENOMEM;
1736
1737 ax->len = len;
1738 memcpy(ax->a, a, len);
1739
1740 ax->d.type = AUDIT_SOCKADDR;
1741 ax->d.next = context->aux;
1742 context->aux = (void *)ax;
1743 return 0;
1744}
1745
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001746/**
1747 * audit_avc_path - record the granting or denial of permissions
1748 * @dentry: dentry to record
1749 * @mnt: mnt to record
1750 *
1751 * Returns 0 for success or NULL context or < 0 on error.
1752 *
1753 * Called from security/selinux/avc.c::avc_audit()
1754 */
Stephen Smalley01116102005-05-21 00:15:52 +01001755int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt)
1756{
1757 struct audit_aux_data_path *ax;
1758 struct audit_context *context = current->audit_context;
1759
1760 if (likely(!context))
1761 return 0;
1762
1763 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1764 if (!ax)
1765 return -ENOMEM;
1766
1767 ax->dentry = dget(dentry);
1768 ax->mnt = mntget(mnt);
1769
1770 ax->d.type = AUDIT_AVC_PATH;
1771 ax->d.next = context->aux;
1772 context->aux = (void *)ax;
1773 return 0;
1774}
1775
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001776/**
1777 * audit_signal_info - record signal info for shutting down audit subsystem
1778 * @sig: signal value
1779 * @t: task being signaled
1780 *
1781 * If the audit subsystem is being terminated, record the task (pid)
1782 * and uid that is doing that.
1783 */
Al Viroe1396062006-05-25 10:19:47 -04001784void __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001785{
1786 extern pid_t audit_sig_pid;
1787 extern uid_t audit_sig_uid;
Al Viroe1396062006-05-25 10:19:47 -04001788 extern u32 audit_sig_sid;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001789
Al Viroe1396062006-05-25 10:19:47 -04001790 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) {
1791 struct task_struct *tsk = current;
1792 struct audit_context *ctx = tsk->audit_context;
1793 audit_sig_pid = tsk->pid;
1794 if (ctx)
1795 audit_sig_uid = ctx->loginuid;
1796 else
1797 audit_sig_uid = tsk->uid;
1798 selinux_get_task_sid(tsk, &audit_sig_sid);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001799 }
1800}