blob: bde1124d590891d42f4fced9ecf0f15a80fe8297 [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 Viroa1f8e7f2006-10-19 16:08:53 -040067#include <linux/highmem.h>
Al Virof46038f2006-05-06 08:22:52 -040068#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David Woodhousefe7752b2005-12-15 18:33:52 +000070#include "audit.h"
71
72extern struct list_head audit_filter_list[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* AUDIT_NAMES is the number of slots we reserve in the audit_context
75 * for saving names from getname(). */
76#define AUDIT_NAMES 20
77
Amy Griffis9c937dc2006-06-08 23:19:31 -040078/* Indicates that audit should log the full pathname. */
79#define AUDIT_NAME_FULL -1
80
Al Viro471a5c72006-07-10 08:29:24 -040081/* number of audit rules */
82int audit_n_rules;
83
Amy Griffise54dc242007-03-29 18:01:04 -040084/* determines whether we collect data for signals sent */
85int audit_signals;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* When fs/namei.c:getname() is called, we store the pointer in name and
88 * we don't let putname() free it (instead we free all of the saved
89 * pointers at syscall exit time).
90 *
91 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
92struct audit_names {
93 const char *name;
Amy Griffis9c937dc2006-06-08 23:19:31 -040094 int name_len; /* number of name's characters to log */
95 unsigned name_put; /* call __putname() for this name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 unsigned long ino;
97 dev_t dev;
98 umode_t mode;
99 uid_t uid;
100 gid_t gid;
101 dev_t rdev;
Steve Grubb1b50eed2006-04-03 14:06:13 -0400102 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
105struct audit_aux_data {
106 struct audit_aux_data *next;
107 int type;
108};
109
110#define AUDIT_AUX_IPCPERM 0
111
Amy Griffise54dc242007-03-29 18:01:04 -0400112/* Number of target pids per aux struct. */
113#define AUDIT_AUX_PIDS 16
114
George C. Wilson20ca73b2006-05-24 16:09:55 -0500115struct audit_aux_data_mq_open {
116 struct audit_aux_data d;
117 int oflag;
118 mode_t mode;
119 struct mq_attr attr;
120};
121
122struct audit_aux_data_mq_sendrecv {
123 struct audit_aux_data d;
124 mqd_t mqdes;
125 size_t msg_len;
126 unsigned int msg_prio;
127 struct timespec abs_timeout;
128};
129
130struct audit_aux_data_mq_notify {
131 struct audit_aux_data d;
132 mqd_t mqdes;
133 struct sigevent notification;
134};
135
136struct audit_aux_data_mq_getsetattr {
137 struct audit_aux_data d;
138 mqd_t mqdes;
139 struct mq_attr mqstat;
140};
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142struct audit_aux_data_ipcctl {
143 struct audit_aux_data d;
144 struct ipc_perm p;
145 unsigned long qbytes;
146 uid_t uid;
147 gid_t gid;
148 mode_t mode;
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500149 u32 osid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
Al Viro473ae302006-04-26 14:04:08 -0400152struct audit_aux_data_execve {
153 struct audit_aux_data d;
154 int argc;
155 int envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700156 struct mm_struct *mm;
Al Viro473ae302006-04-26 14:04:08 -0400157};
158
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100159struct audit_aux_data_socketcall {
160 struct audit_aux_data d;
161 int nargs;
162 unsigned long args[0];
163};
164
165struct audit_aux_data_sockaddr {
166 struct audit_aux_data d;
167 int len;
168 char a[0];
169};
170
Al Virodb349502007-02-07 01:48:00 -0500171struct audit_aux_data_fd_pair {
172 struct audit_aux_data d;
173 int fd[2];
174};
175
Amy Griffise54dc242007-03-29 18:01:04 -0400176struct audit_aux_data_pids {
177 struct audit_aux_data d;
178 pid_t target_pid[AUDIT_AUX_PIDS];
179 u32 target_sid[AUDIT_AUX_PIDS];
180 int pid_count;
181};
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/* The per-task audit context. */
184struct audit_context {
Al Virod51374a2006-08-03 10:59:26 -0400185 int dummy; /* must be the first element */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int in_syscall; /* 1 if task is in a syscall */
187 enum audit_state state;
188 unsigned int serial; /* serial number for record */
189 struct timespec ctime; /* time of syscall entry */
190 uid_t loginuid; /* login uid (identity) */
191 int major; /* syscall number */
192 unsigned long argv[4]; /* syscall arguments */
193 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100194 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int auditable; /* 1 if record should be written */
196 int name_count;
197 struct audit_names names[AUDIT_NAMES];
Amy Griffis5adc8a62006-06-14 18:45:21 -0400198 char * filterkey; /* key for rule that triggered record */
David Woodhouse8f37d472005-05-27 12:17:28 +0100199 struct dentry * pwd;
200 struct vfsmount * pwdmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct audit_context *previous; /* For nested syscalls */
202 struct audit_aux_data *aux;
Amy Griffise54dc242007-03-29 18:01:04 -0400203 struct audit_aux_data *aux_pids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /* Save things to print about task_struct */
Al Virof46038f2006-05-06 08:22:52 -0400206 pid_t pid, ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 uid_t uid, euid, suid, fsuid;
208 gid_t gid, egid, sgid, fsgid;
209 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100210 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Al Viroa5cb0132007-03-20 13:58:35 -0400212 pid_t target_pid;
213 u32 target_sid;
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#if AUDIT_DEBUG
216 int put_count;
217 int ino_count;
218#endif
219};
220
Al Viro55669bf2006-08-31 19:26:40 -0400221#define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE])
222static inline int open_arg(int flags, int mask)
223{
224 int n = ACC_MODE(flags);
225 if (flags & (O_TRUNC | O_CREAT))
226 n |= AUDIT_PERM_WRITE;
227 return n & mask;
228}
229
230static int audit_match_perm(struct audit_context *ctx, int mask)
231{
232 unsigned n = ctx->major;
233 switch (audit_classify_syscall(ctx->arch, n)) {
234 case 0: /* native */
235 if ((mask & AUDIT_PERM_WRITE) &&
236 audit_match_class(AUDIT_CLASS_WRITE, n))
237 return 1;
238 if ((mask & AUDIT_PERM_READ) &&
239 audit_match_class(AUDIT_CLASS_READ, n))
240 return 1;
241 if ((mask & AUDIT_PERM_ATTR) &&
242 audit_match_class(AUDIT_CLASS_CHATTR, n))
243 return 1;
244 return 0;
245 case 1: /* 32bit on biarch */
246 if ((mask & AUDIT_PERM_WRITE) &&
247 audit_match_class(AUDIT_CLASS_WRITE_32, n))
248 return 1;
249 if ((mask & AUDIT_PERM_READ) &&
250 audit_match_class(AUDIT_CLASS_READ_32, n))
251 return 1;
252 if ((mask & AUDIT_PERM_ATTR) &&
253 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
254 return 1;
255 return 0;
256 case 2: /* open */
257 return mask & ACC_MODE(ctx->argv[1]);
258 case 3: /* openat */
259 return mask & ACC_MODE(ctx->argv[2]);
260 case 4: /* socketcall */
261 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
262 case 5: /* execve */
263 return mask & AUDIT_PERM_EXEC;
264 default:
265 return 0;
266 }
267}
268
Amy Griffisf368c07d2006-04-07 16:55:56 -0400269/* Determine if any context name data matches a rule's watch data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270/* Compare a task_struct with an audit_rule. Return 1 on match, 0
271 * otherwise. */
272static int audit_filter_rules(struct task_struct *tsk,
Amy Griffis93315ed2006-02-07 12:05:27 -0500273 struct audit_krule *rule,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct audit_context *ctx,
Amy Griffisf368c07d2006-04-07 16:55:56 -0400275 struct audit_names *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 enum audit_state *state)
277{
Steve Grubb2ad312d2006-04-11 08:50:56 -0400278 int i, j, need_sid = 1;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600279 u32 sid;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500282 struct audit_field *f = &rule->fields[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 int result = 0;
284
Amy Griffis93315ed2006-02-07 12:05:27 -0500285 switch (f->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500287 result = audit_comparator(tsk->pid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 break;
Al Viro3c662512006-05-06 08:26:27 -0400289 case AUDIT_PPID:
Alexander Viro419c58f2006-09-29 00:08:50 -0400290 if (ctx) {
291 if (!ctx->ppid)
292 ctx->ppid = sys_getppid();
Al Viro3c662512006-05-06 08:26:27 -0400293 result = audit_comparator(ctx->ppid, f->op, f->val);
Alexander Viro419c58f2006-09-29 00:08:50 -0400294 }
Al Viro3c662512006-05-06 08:26:27 -0400295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 case AUDIT_UID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500297 result = audit_comparator(tsk->uid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
299 case AUDIT_EUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500300 result = audit_comparator(tsk->euid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
302 case AUDIT_SUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500303 result = audit_comparator(tsk->suid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 break;
305 case AUDIT_FSUID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500306 result = audit_comparator(tsk->fsuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 break;
308 case AUDIT_GID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500309 result = audit_comparator(tsk->gid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311 case AUDIT_EGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500312 result = audit_comparator(tsk->egid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 break;
314 case AUDIT_SGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500315 result = audit_comparator(tsk->sgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 break;
317 case AUDIT_FSGID:
Amy Griffis93315ed2006-02-07 12:05:27 -0500318 result = audit_comparator(tsk->fsgid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320 case AUDIT_PERS:
Amy Griffis93315ed2006-02-07 12:05:27 -0500321 result = audit_comparator(tsk->personality, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
2fd6f582005-04-29 16:08:28 +0100323 case AUDIT_ARCH:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000324 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500325 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f582005-04-29 16:08:28 +0100326 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 case AUDIT_EXIT:
329 if (ctx && ctx->return_valid)
Amy Griffis93315ed2006-02-07 12:05:27 -0500330 result = audit_comparator(ctx->return_code, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100333 if (ctx && ctx->return_valid) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500334 if (f->val)
335 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100336 else
Amy Griffis93315ed2006-02-07 12:05:27 -0500337 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
340 case AUDIT_DEVMAJOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400341 if (name)
342 result = audit_comparator(MAJOR(name->dev),
343 f->op, f->val);
344 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500346 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 ++result;
348 break;
349 }
350 }
351 }
352 break;
353 case AUDIT_DEVMINOR:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400354 if (name)
355 result = audit_comparator(MINOR(name->dev),
356 f->op, f->val);
357 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500359 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 ++result;
361 break;
362 }
363 }
364 }
365 break;
366 case AUDIT_INODE:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400367 if (name)
Amy Griffis9c937dc2006-06-08 23:19:31 -0400368 result = (name->ino == f->val);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400369 else if (ctx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400371 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 ++result;
373 break;
374 }
375 }
376 }
377 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400378 case AUDIT_WATCH:
379 if (name && rule->watch->ino != (unsigned long)-1)
380 result = (name->dev == rule->watch->dev &&
Amy Griffis9c937dc2006-06-08 23:19:31 -0400381 name->ino == rule->watch->ino);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 case AUDIT_LOGINUID:
384 result = 0;
385 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500386 result = audit_comparator(ctx->loginuid, f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500388 case AUDIT_SUBJ_USER:
389 case AUDIT_SUBJ_ROLE:
390 case AUDIT_SUBJ_TYPE:
391 case AUDIT_SUBJ_SEN:
392 case AUDIT_SUBJ_CLR:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600393 /* NOTE: this may return negative values indicating
394 a temporary error. We simply treat this as a
395 match for now to avoid losing information that
396 may be wanted. An error message will also be
397 logged upon error */
Steve Grubb2ad312d2006-04-11 08:50:56 -0400398 if (f->se_rule) {
399 if (need_sid) {
Stephen Smalley62bac012006-09-25 23:31:56 -0700400 selinux_get_task_sid(tsk, &sid);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400401 need_sid = 0;
402 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600403 result = selinux_audit_rule_match(sid, f->type,
404 f->op,
405 f->se_rule,
406 ctx);
Steve Grubb2ad312d2006-04-11 08:50:56 -0400407 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600408 break;
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500409 case AUDIT_OBJ_USER:
410 case AUDIT_OBJ_ROLE:
411 case AUDIT_OBJ_TYPE:
412 case AUDIT_OBJ_LEV_LOW:
413 case AUDIT_OBJ_LEV_HIGH:
414 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
415 also applies here */
416 if (f->se_rule) {
417 /* Find files that match */
418 if (name) {
419 result = selinux_audit_rule_match(
420 name->osid, f->type, f->op,
421 f->se_rule, ctx);
422 } else if (ctx) {
423 for (j = 0; j < ctx->name_count; j++) {
424 if (selinux_audit_rule_match(
425 ctx->names[j].osid,
426 f->type, f->op,
427 f->se_rule, ctx)) {
428 ++result;
429 break;
430 }
431 }
432 }
433 /* Find ipc objects that match */
434 if (ctx) {
435 struct audit_aux_data *aux;
436 for (aux = ctx->aux; aux;
437 aux = aux->next) {
438 if (aux->type == AUDIT_IPC) {
439 struct audit_aux_data_ipcctl *axi = (void *)aux;
440 if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) {
441 ++result;
442 break;
443 }
444 }
445 }
446 }
447 }
448 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case AUDIT_ARG0:
450 case AUDIT_ARG1:
451 case AUDIT_ARG2:
452 case AUDIT_ARG3:
453 if (ctx)
Amy Griffis93315ed2006-02-07 12:05:27 -0500454 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400456 case AUDIT_FILTERKEY:
457 /* ignore this field for filtering */
458 result = 1;
459 break;
Al Viro55669bf2006-08-31 19:26:40 -0400460 case AUDIT_PERM:
461 result = audit_match_perm(ctx, f->val);
462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!result)
466 return 0;
467 }
Amy Griffis5adc8a62006-06-14 18:45:21 -0400468 if (rule->filterkey)
469 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 switch (rule->action) {
471 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
473 }
474 return 1;
475}
476
477/* At process creation time, we can determine if system-call auditing is
478 * completely disabled for this task. Since we only have the task
479 * structure at this point, we can only check uid and gid.
480 */
481static enum audit_state audit_filter_task(struct task_struct *tsk)
482{
483 struct audit_entry *e;
484 enum audit_state state;
485
486 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100487 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400488 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 rcu_read_unlock();
490 return state;
491 }
492 }
493 rcu_read_unlock();
494 return AUDIT_BUILD_CONTEXT;
495}
496
497/* At syscall entry and exit time, this filter is called if the
498 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100499 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700500 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
502static enum audit_state audit_filter_syscall(struct task_struct *tsk,
503 struct audit_context *ctx,
504 struct list_head *list)
505{
506 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100507 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
David Woodhouse351bb722005-07-14 14:40:06 +0100509 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100510 return AUDIT_DISABLED;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100513 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000514 int word = AUDIT_WORD(ctx->major);
515 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100516
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000517 list_for_each_entry_rcu(e, list, list) {
Amy Griffisf368c07d2006-04-07 16:55:56 -0400518 if ((e->rule.mask[word] & bit) == bit &&
519 audit_filter_rules(tsk, &e->rule, ctx, NULL,
520 &state)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000521 rcu_read_unlock();
522 return state;
523 }
524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526 rcu_read_unlock();
527 return AUDIT_BUILD_CONTEXT;
528}
529
Amy Griffisf368c07d2006-04-07 16:55:56 -0400530/* At syscall exit time, this filter is called if any audit_names[] have been
531 * collected during syscall processing. We only check rules in sublists at hash
532 * buckets applicable to the inode numbers in audit_names[].
533 * Regarding audit_state, same rules apply as for audit_filter_syscall().
534 */
535enum audit_state audit_filter_inodes(struct task_struct *tsk,
536 struct audit_context *ctx)
537{
538 int i;
539 struct audit_entry *e;
540 enum audit_state state;
541
542 if (audit_pid && tsk->tgid == audit_pid)
543 return AUDIT_DISABLED;
544
545 rcu_read_lock();
546 for (i = 0; i < ctx->name_count; i++) {
547 int word = AUDIT_WORD(ctx->major);
548 int bit = AUDIT_BIT(ctx->major);
549 struct audit_names *n = &ctx->names[i];
550 int h = audit_hash_ino((u32)n->ino);
551 struct list_head *list = &audit_inode_hash[h];
552
553 if (list_empty(list))
554 continue;
555
556 list_for_each_entry_rcu(e, list, list) {
557 if ((e->rule.mask[word] & bit) == bit &&
558 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
559 rcu_read_unlock();
560 return state;
561 }
562 }
563 }
564 rcu_read_unlock();
565 return AUDIT_BUILD_CONTEXT;
566}
567
568void audit_set_auditable(struct audit_context *ctx)
569{
570 ctx->auditable = 1;
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573static inline struct audit_context *audit_get_context(struct task_struct *tsk,
574 int return_valid,
575 int return_code)
576{
577 struct audit_context *context = tsk->audit_context;
578
579 if (likely(!context))
580 return NULL;
581 context->return_valid = return_valid;
582 context->return_code = return_code;
583
Al Virod51374a2006-08-03 10:59:26 -0400584 if (context->in_syscall && !context->dummy && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 enum audit_state state;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400586
David Woodhouse0f45aa12005-06-19 19:35:50 +0100587 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Amy Griffisf368c07d2006-04-07 16:55:56 -0400588 if (state == AUDIT_RECORD_CONTEXT) {
589 context->auditable = 1;
590 goto get_context;
591 }
592
593 state = audit_filter_inodes(tsk, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (state == AUDIT_RECORD_CONTEXT)
595 context->auditable = 1;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
Amy Griffisf368c07d2006-04-07 16:55:56 -0400599get_context:
Al Viro3f2792f2006-07-16 06:43:48 -0400600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 tsk->audit_context = NULL;
602 return context;
603}
604
605static inline void audit_free_names(struct audit_context *context)
606{
607 int i;
608
609#if AUDIT_DEBUG == 2
610 if (context->auditable
611 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000612 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 " name_count=%d put_count=%d"
614 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000615 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 context->serial, context->major, context->in_syscall,
617 context->name_count, context->put_count,
618 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000619 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 printk(KERN_ERR "names[%d] = %p = %s\n", i,
621 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000622 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 dump_stack();
625 return;
626 }
627#endif
628#if AUDIT_DEBUG
629 context->put_count = 0;
630 context->ino_count = 0;
631#endif
632
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000633 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400634 if (context->names[i].name && context->names[i].name_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 context->name_count = 0;
David Woodhouse8f37d472005-05-27 12:17:28 +0100638 if (context->pwd)
639 dput(context->pwd);
640 if (context->pwdmnt)
641 mntput(context->pwdmnt);
642 context->pwd = NULL;
643 context->pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646static inline void audit_free_aux(struct audit_context *context)
647{
648 struct audit_aux_data *aux;
649
650 while ((aux = context->aux)) {
651 context->aux = aux->next;
652 kfree(aux);
653 }
Amy Griffise54dc242007-03-29 18:01:04 -0400654 while ((aux = context->aux_pids)) {
655 context->aux_pids = aux->next;
656 kfree(aux);
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660static inline void audit_zero_context(struct audit_context *context,
661 enum audit_state state)
662{
663 uid_t loginuid = context->loginuid;
664
665 memset(context, 0, sizeof(*context));
666 context->state = state;
667 context->loginuid = loginuid;
668}
669
670static inline struct audit_context *audit_alloc_context(enum audit_state state)
671{
672 struct audit_context *context;
673
674 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
675 return NULL;
676 audit_zero_context(context, state);
677 return context;
678}
679
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700680/**
681 * audit_alloc - allocate an audit context block for a task
682 * @tsk: task
683 *
684 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 * if necessary. Doing so turns on system call auditing for the
686 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700687 * needed.
688 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689int audit_alloc(struct task_struct *tsk)
690{
691 struct audit_context *context;
692 enum audit_state state;
693
694 if (likely(!audit_enabled))
695 return 0; /* Return if not auditing. */
696
697 state = audit_filter_task(tsk);
698 if (likely(state == AUDIT_DISABLED))
699 return 0;
700
701 if (!(context = audit_alloc_context(state))) {
702 audit_log_lost("out of memory in audit_alloc");
703 return -ENOMEM;
704 }
705
706 /* Preserve login uid */
707 context->loginuid = -1;
708 if (current->audit_context)
709 context->loginuid = current->audit_context->loginuid;
710
711 tsk->audit_context = context;
712 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
713 return 0;
714}
715
716static inline void audit_free_context(struct audit_context *context)
717{
718 struct audit_context *previous;
719 int count = 0;
720
721 do {
722 previous = context->previous;
723 if (previous || (count && count < 10)) {
724 ++count;
725 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
726 " freeing multiple contexts (%d)\n",
727 context->serial, context->major,
728 context->name_count, count);
729 }
730 audit_free_names(context);
731 audit_free_aux(context);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400732 kfree(context->filterkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 kfree(context);
734 context = previous;
735 } while (context);
736 if (count >= 10)
737 printk(KERN_ERR "audit: freed %d contexts\n", count);
738}
739
Joy Latten161a09e2006-11-27 13:11:54 -0600740void audit_log_task_context(struct audit_buffer *ab)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000741{
742 char *ctx = NULL;
Al Viroc4823bc2007-03-12 16:17:42 +0000743 unsigned len;
744 int error;
745 u32 sid;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000746
Al Viroc4823bc2007-03-12 16:17:42 +0000747 selinux_get_task_sid(current, &sid);
748 if (!sid)
749 return;
750
751 error = selinux_sid_to_string(sid, &ctx, &len);
752 if (error) {
753 if (error != -EINVAL)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000754 goto error_path;
755 return;
756 }
757
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000758 audit_log_format(ab, " subj=%s", ctx);
Al Viroc4823bc2007-03-12 16:17:42 +0000759 kfree(ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000760 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000761
762error_path:
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000763 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000764 return;
765}
766
Joy Latten161a09e2006-11-27 13:11:54 -0600767EXPORT_SYMBOL(audit_log_task_context);
768
Al Viroe4951492006-03-29 20:17:10 -0500769static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
Stephen Smalley219f0812005-04-18 10:47:35 -0700770{
Al Viro45d9bb02006-03-29 20:02:55 -0500771 char name[sizeof(tsk->comm)];
772 struct mm_struct *mm = tsk->mm;
Stephen Smalley219f0812005-04-18 10:47:35 -0700773 struct vm_area_struct *vma;
774
Al Viroe4951492006-03-29 20:17:10 -0500775 /* tsk == current */
776
Al Viro45d9bb02006-03-29 20:02:55 -0500777 get_task_comm(name, tsk);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100778 audit_log_format(ab, " comm=");
779 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700780
Al Viroe4951492006-03-29 20:17:10 -0500781 if (mm) {
782 down_read(&mm->mmap_sem);
783 vma = mm->mmap;
784 while (vma) {
785 if ((vma->vm_flags & VM_EXECUTABLE) &&
786 vma->vm_file) {
787 audit_log_d_path(ab, "exe=",
Josef Sipeka7a005f2006-12-08 02:37:17 -0800788 vma->vm_file->f_path.dentry,
789 vma->vm_file->f_path.mnt);
Al Viroe4951492006-03-29 20:17:10 -0500790 break;
791 }
792 vma = vma->vm_next;
Stephen Smalley219f0812005-04-18 10:47:35 -0700793 }
Al Viroe4951492006-03-29 20:17:10 -0500794 up_read(&mm->mmap_sem);
Stephen Smalley219f0812005-04-18 10:47:35 -0700795 }
Al Viroe4951492006-03-29 20:17:10 -0500796 audit_log_task_context(ab);
Stephen Smalley219f0812005-04-18 10:47:35 -0700797}
798
Amy Griffise54dc242007-03-29 18:01:04 -0400799static int audit_log_pid_context(struct audit_context *context, pid_t pid,
800 u32 sid)
801{
802 struct audit_buffer *ab;
803 char *s = NULL;
804 u32 len;
805 int rc = 0;
806
807 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
808 if (!ab)
809 return 1;
810
811 if (selinux_sid_to_string(sid, &s, &len)) {
812 audit_log_format(ab, "opid=%d obj=(none)", pid);
813 rc = 1;
814 } else
815 audit_log_format(ab, "opid=%d obj=%s", pid, s);
816 audit_log_end(ab);
817 kfree(s);
818
819 return rc;
820}
821
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700822static void audit_log_execve_info(struct audit_buffer *ab,
823 struct audit_aux_data_execve *axi)
824{
825 int i;
826 long len, ret;
827 const char __user *p = (const char __user *)axi->mm->arg_start;
828 char *buf;
829
830 if (axi->mm != current->mm)
831 return; /* execve failed, no additional info */
832
833 for (i = 0; i < axi->argc; i++, p += len) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700834 len = strnlen_user(p, MAX_ARG_STRLEN);
Peter Zijlstrabdf4c482007-07-19 01:48:15 -0700835 /*
836 * We just created this mm, if we can't find the strings
837 * we just copied into it something is _very_ wrong. Similar
838 * for strings that are too long, we should not have created
839 * any.
840 */
841 if (!len || len > MAX_ARG_STRLEN) {
842 WARN_ON(1);
843 send_sig(SIGKILL, current, 0);
844 }
845
846 buf = kmalloc(len, GFP_KERNEL);
847 if (!buf) {
848 audit_panic("out of memory for argv string\n");
849 break;
850 }
851
852 ret = copy_from_user(buf, p, len);
853 /*
854 * There is no reason for this copy to be short. We just
855 * copied them here, and the mm hasn't been exposed to user-
856 * space yet.
857 */
858 if (!ret) {
859 WARN_ON(1);
860 send_sig(SIGKILL, current, 0);
861 }
862
863 audit_log_format(ab, "a%d=", i);
864 audit_log_untrustedstring(ab, buf);
865 audit_log_format(ab, "\n");
866
867 kfree(buf);
868 }
869}
870
Al Viroe4951492006-03-29 20:17:10 -0500871static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500873 int i, call_panic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +0100875 struct audit_aux_data *aux;
Steve Grubba6c043a2006-01-01 14:07:00 -0500876 const char *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Al Viroe4951492006-03-29 20:17:10 -0500878 /* tsk == current */
Al Viro3f2792f2006-07-16 06:43:48 -0400879 context->pid = tsk->pid;
Alexander Viro419c58f2006-09-29 00:08:50 -0400880 if (!context->ppid)
881 context->ppid = sys_getppid();
Al Viro3f2792f2006-07-16 06:43:48 -0400882 context->uid = tsk->uid;
883 context->gid = tsk->gid;
884 context->euid = tsk->euid;
885 context->suid = tsk->suid;
886 context->fsuid = tsk->fsuid;
887 context->egid = tsk->egid;
888 context->sgid = tsk->sgid;
889 context->fsgid = tsk->fsgid;
890 context->personality = tsk->personality;
Al Viroe4951492006-03-29 20:17:10 -0500891
892 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!ab)
894 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +0100895 audit_log_format(ab, "arch=%x syscall=%d",
896 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (context->personality != PER_LINUX)
898 audit_log_format(ab, " per=%lx", context->personality);
899 if (context->return_valid)
2fd6f582005-04-29 16:08:28 +0100900 audit_log_format(ab, " success=%s exit=%ld",
901 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
902 context->return_code);
Alan Coxeb84a202006-09-29 02:01:41 -0700903
904 mutex_lock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800905 read_lock(&tasklist_lock);
Al Viro45d9bb02006-03-29 20:02:55 -0500906 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
907 tty = tsk->signal->tty->name;
Steve Grubba6c043a2006-01-01 14:07:00 -0500908 else
909 tty = "(none)";
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800910 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 audit_log_format(ab,
912 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Al Virof46038f2006-05-06 08:22:52 -0400913 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Steve Grubb326e9c82005-05-21 00:22:31 +0100914 " euid=%u suid=%u fsuid=%u"
Steve Grubba6c043a2006-01-01 14:07:00 -0500915 " egid=%u sgid=%u fsgid=%u tty=%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 context->argv[0],
917 context->argv[1],
918 context->argv[2],
919 context->argv[3],
920 context->name_count,
Al Virof46038f2006-05-06 08:22:52 -0400921 context->ppid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 context->pid,
923 context->loginuid,
924 context->uid,
925 context->gid,
926 context->euid, context->suid, context->fsuid,
Steve Grubba6c043a2006-01-01 14:07:00 -0500927 context->egid, context->sgid, context->fsgid, tty);
Alan Coxeb84a202006-09-29 02:01:41 -0700928
929 mutex_unlock(&tty_mutex);
930
Al Viroe4951492006-03-29 20:17:10 -0500931 audit_log_task_info(ab, tsk);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400932 if (context->filterkey) {
933 audit_log_format(ab, " key=");
934 audit_log_untrustedstring(ab, context->filterkey);
935 } else
936 audit_log_format(ab, " key=(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
David Woodhouse7551ced2005-05-26 12:04:57 +0100939 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +0100940
Al Viroe4951492006-03-29 20:17:10 -0500941 ab = audit_log_start(context, GFP_KERNEL, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (!ab)
943 continue; /* audit_panic has been called */
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 switch (aux->type) {
George C. Wilson20ca73b2006-05-24 16:09:55 -0500946 case AUDIT_MQ_OPEN: {
947 struct audit_aux_data_mq_open *axi = (void *)aux;
948 audit_log_format(ab,
949 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
950 "mq_msgsize=%ld mq_curmsgs=%ld",
951 axi->oflag, axi->mode, axi->attr.mq_flags,
952 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
953 axi->attr.mq_curmsgs);
954 break; }
955
956 case AUDIT_MQ_SENDRECV: {
957 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
958 audit_log_format(ab,
959 "mqdes=%d msg_len=%zd msg_prio=%u "
960 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
961 axi->mqdes, axi->msg_len, axi->msg_prio,
962 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
963 break; }
964
965 case AUDIT_MQ_NOTIFY: {
966 struct audit_aux_data_mq_notify *axi = (void *)aux;
967 audit_log_format(ab,
968 "mqdes=%d sigev_signo=%d",
969 axi->mqdes,
970 axi->notification.sigev_signo);
971 break; }
972
973 case AUDIT_MQ_GETSETATTR: {
974 struct audit_aux_data_mq_getsetattr *axi = (void *)aux;
975 audit_log_format(ab,
976 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
977 "mq_curmsgs=%ld ",
978 axi->mqdes,
979 axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg,
980 axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs);
981 break; }
982
Steve Grubbc0404992005-05-13 18:17:42 +0100983 case AUDIT_IPC: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 struct audit_aux_data_ipcctl *axi = (void *)aux;
985 audit_log_format(ab,
Steve Grubb5b9a4262007-05-29 10:38:18 -0400986 "ouid=%u ogid=%u mode=%#o",
Linda Knippersac032212006-05-16 22:03:48 -0400987 axi->uid, axi->gid, axi->mode);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500988 if (axi->osid != 0) {
989 char *ctx = NULL;
990 u32 len;
Stephen Smalley1a70cd42006-09-25 23:31:57 -0700991 if (selinux_sid_to_string(
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500992 axi->osid, &ctx, &len)) {
Steve Grubbce29b682006-04-01 18:29:34 -0500993 audit_log_format(ab, " osid=%u",
Steve Grubb9c7aa6a2006-03-31 15:22:49 -0500994 axi->osid);
995 call_panic = 1;
996 } else
997 audit_log_format(ab, " obj=%s", ctx);
998 kfree(ctx);
999 }
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001000 break; }
1001
Steve Grubb073115d2006-04-02 17:07:33 -04001002 case AUDIT_IPC_SET_PERM: {
1003 struct audit_aux_data_ipcctl *axi = (void *)aux;
1004 audit_log_format(ab,
Steve Grubb5b9a4262007-05-29 10:38:18 -04001005 "qbytes=%lx ouid=%u ogid=%u mode=%#o",
Steve Grubb073115d2006-04-02 17:07:33 -04001006 axi->qbytes, axi->uid, axi->gid, axi->mode);
Steve Grubb073115d2006-04-02 17:07:33 -04001007 break; }
Linda Knippersac032212006-05-16 22:03:48 -04001008
Al Viro473ae302006-04-26 14:04:08 -04001009 case AUDIT_EXECVE: {
1010 struct audit_aux_data_execve *axi = (void *)aux;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001011 audit_log_execve_info(ab, axi);
Al Viro473ae302006-04-26 14:04:08 -04001012 break; }
Steve Grubb073115d2006-04-02 17:07:33 -04001013
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001014 case AUDIT_SOCKETCALL: {
1015 int i;
1016 struct audit_aux_data_socketcall *axs = (void *)aux;
1017 audit_log_format(ab, "nargs=%d", axs->nargs);
1018 for (i=0; i<axs->nargs; i++)
1019 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
1020 break; }
1021
1022 case AUDIT_SOCKADDR: {
1023 struct audit_aux_data_sockaddr *axs = (void *)aux;
1024
1025 audit_log_format(ab, "saddr=");
1026 audit_log_hex(ab, axs->a, axs->len);
1027 break; }
Stephen Smalley01116102005-05-21 00:15:52 +01001028
Al Virodb349502007-02-07 01:48:00 -05001029 case AUDIT_FD_PAIR: {
1030 struct audit_aux_data_fd_pair *axs = (void *)aux;
1031 audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]);
1032 break; }
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
Amy Griffise54dc242007-03-29 18:01:04 -04001038 for (aux = context->aux_pids; aux; aux = aux->next) {
1039 struct audit_aux_data_pids *axs = (void *)aux;
1040 int i;
1041
1042 for (i = 0; i < axs->pid_count; i++)
1043 if (audit_log_pid_context(context, axs->target_pid[i],
1044 axs->target_sid[i]))
1045 call_panic = 1;
Al Viroa5cb0132007-03-20 13:58:35 -04001046 }
1047
Amy Griffise54dc242007-03-29 18:01:04 -04001048 if (context->target_pid &&
1049 audit_log_pid_context(context, context->target_pid,
1050 context->target_sid))
1051 call_panic = 1;
1052
David Woodhouse8f37d472005-05-27 12:17:28 +01001053 if (context->pwd && context->pwdmnt) {
Al Viroe4951492006-03-29 20:17:10 -05001054 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001055 if (ab) {
1056 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
1057 audit_log_end(ab);
1058 }
1059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 for (i = 0; i < context->name_count; i++) {
Amy Griffis9c937dc2006-06-08 23:19:31 -04001061 struct audit_names *n = &context->names[i];
Amy Griffis73241cc2005-11-03 16:00:25 +00001062
Al Viroe4951492006-03-29 20:17:10 -05001063 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (!ab)
1065 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001068
Amy Griffis9c937dc2006-06-08 23:19:31 -04001069 if (n->name) {
1070 switch(n->name_len) {
1071 case AUDIT_NAME_FULL:
1072 /* log the full path */
1073 audit_log_format(ab, " name=");
1074 audit_log_untrustedstring(ab, n->name);
1075 break;
1076 case 0:
1077 /* name was specified as a relative path and the
1078 * directory component is the cwd */
1079 audit_log_d_path(ab, " name=", context->pwd,
1080 context->pwdmnt);
1081 break;
1082 default:
1083 /* log the name's directory component */
1084 audit_log_format(ab, " name=");
1085 audit_log_n_untrustedstring(ab, n->name_len,
1086 n->name);
1087 }
1088 } else
1089 audit_log_format(ab, " name=(null)");
Amy Griffis73241cc2005-11-03 16:00:25 +00001090
Amy Griffis9c937dc2006-06-08 23:19:31 -04001091 if (n->ino != (unsigned long)-1) {
1092 audit_log_format(ab, " inode=%lu"
1093 " dev=%02x:%02x mode=%#o"
1094 " ouid=%u ogid=%u rdev=%02x:%02x",
1095 n->ino,
1096 MAJOR(n->dev),
1097 MINOR(n->dev),
1098 n->mode,
1099 n->uid,
1100 n->gid,
1101 MAJOR(n->rdev),
1102 MINOR(n->rdev));
1103 }
1104 if (n->osid != 0) {
Steve Grubb1b50eed2006-04-03 14:06:13 -04001105 char *ctx = NULL;
1106 u32 len;
Stephen Smalley1a70cd42006-09-25 23:31:57 -07001107 if (selinux_sid_to_string(
Amy Griffis9c937dc2006-06-08 23:19:31 -04001108 n->osid, &ctx, &len)) {
1109 audit_log_format(ab, " osid=%u", n->osid);
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001110 call_panic = 2;
Steve Grubb1b50eed2006-04-03 14:06:13 -04001111 } else
1112 audit_log_format(ab, " obj=%s", ctx);
1113 kfree(ctx);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001114 }
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 audit_log_end(ab);
1117 }
Steve Grubb9c7aa6a2006-03-31 15:22:49 -05001118 if (call_panic)
1119 audit_panic("error converting sid to string");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001122/**
1123 * audit_free - free a per-task audit context
1124 * @tsk: task whose audit context block to free
1125 *
Al Virofa84cb92006-03-29 20:30:19 -05001126 * Called from copy_process and do_exit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128void audit_free(struct task_struct *tsk)
1129{
1130 struct audit_context *context;
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 context = audit_get_context(tsk, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (likely(!context))
1134 return;
1135
1136 /* Check for system calls that do not go through the exit
David Woodhousef5561962005-07-13 22:47:07 +01001137 * function (e.g., exit_group), then free context block.
1138 * We use GFP_ATOMIC here because we might be doing this
1139 * in the context of the idle thread */
Al Viroe4951492006-03-29 20:17:10 -05001140 /* that can happen only if we are called from do_exit() */
David Woodhousef7056d62005-06-20 16:07:33 +01001141 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001142 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 audit_free_context(context);
1145}
1146
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001147/**
1148 * audit_syscall_entry - fill in an audit record at syscall entry
1149 * @tsk: task being audited
1150 * @arch: architecture type
1151 * @major: major syscall type (function)
1152 * @a1: additional syscall register 1
1153 * @a2: additional syscall register 2
1154 * @a3: additional syscall register 3
1155 * @a4: additional syscall register 4
1156 *
1157 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 * audit context was created when the task was created and the state or
1159 * filters demand the audit context be built. If the state from the
1160 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1161 * then the record will be written at syscall exit time (otherwise, it
1162 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001163 * be written).
1164 */
Al Viro5411be52006-03-29 20:23:36 -05001165void audit_syscall_entry(int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 unsigned long a1, unsigned long a2,
1167 unsigned long a3, unsigned long a4)
1168{
Al Viro5411be52006-03-29 20:23:36 -05001169 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 struct audit_context *context = tsk->audit_context;
1171 enum audit_state state;
1172
1173 BUG_ON(!context);
1174
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001175 /*
1176 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 * calls in kernel_thread via the entry.S interface, instead of
1178 * with direct calls. (If you are porting to a new
1179 * architecture, hitting this condition can indicate that you
1180 * got the _exit/_leave calls backward in entry.S.)
1181 *
1182 * i386 no
1183 * x86_64 no
Jon Mason2ef94812006-01-23 10:58:20 -06001184 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 *
1186 * This also happens with vm86 emulation in a non-nested manner
1187 * (entries without exits), so this case must be caught.
1188 */
1189 if (context->in_syscall) {
1190 struct audit_context *newctx;
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192#if AUDIT_DEBUG
1193 printk(KERN_ERR
1194 "audit(:%d) pid=%d in syscall=%d;"
1195 " entering syscall=%d\n",
1196 context->serial, tsk->pid, context->major, major);
1197#endif
1198 newctx = audit_alloc_context(context->state);
1199 if (newctx) {
1200 newctx->previous = context;
1201 context = newctx;
1202 tsk->audit_context = newctx;
1203 } else {
1204 /* If we can't alloc a new context, the best we
1205 * can do is to leak memory (any pending putname
1206 * will be lost). The only other alternative is
1207 * to abandon auditing. */
1208 audit_zero_context(context, context->state);
1209 }
1210 }
1211 BUG_ON(context->in_syscall || context->name_count);
1212
1213 if (!audit_enabled)
1214 return;
1215
2fd6f582005-04-29 16:08:28 +01001216 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 context->major = major;
1218 context->argv[0] = a1;
1219 context->argv[1] = a2;
1220 context->argv[2] = a3;
1221 context->argv[3] = a4;
1222
1223 state = context->state;
Al Virod51374a2006-08-03 10:59:26 -04001224 context->dummy = !audit_n_rules;
1225 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
David Woodhouse0f45aa12005-06-19 19:35:50 +01001226 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (likely(state == AUDIT_DISABLED))
1228 return;
1229
David Woodhousece625a82005-07-18 14:24:46 -04001230 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 context->ctime = CURRENT_TIME;
1232 context->in_syscall = 1;
1233 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
Alexander Viro419c58f2006-09-29 00:08:50 -04001234 context->ppid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001237/**
1238 * audit_syscall_exit - deallocate audit context after a system call
1239 * @tsk: task being audited
1240 * @valid: success/failure flag
1241 * @return_code: syscall return value
1242 *
1243 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1245 * filtering, or because some other part of the kernel write an audit
1246 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001247 * free the names stored from getname().
1248 */
Al Viro5411be52006-03-29 20:23:36 -05001249void audit_syscall_exit(int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Al Viro5411be52006-03-29 20:23:36 -05001251 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 struct audit_context *context;
1253
2fd6f582005-04-29 16:08:28 +01001254 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (likely(!context))
Al Viro97e94c42006-03-29 20:26:24 -05001257 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
David Woodhousef7056d62005-06-20 16:07:33 +01001259 if (context->in_syscall && context->auditable)
Al Viroe4951492006-03-29 20:17:10 -05001260 audit_log_exit(context, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 context->in_syscall = 0;
1263 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (context->previous) {
1266 struct audit_context *new_context = context->previous;
1267 context->previous = NULL;
1268 audit_free_context(context);
1269 tsk->audit_context = new_context;
1270 } else {
1271 audit_free_names(context);
1272 audit_free_aux(context);
Amy Griffise54dc242007-03-29 18:01:04 -04001273 context->aux = NULL;
1274 context->aux_pids = NULL;
Al Viroa5cb0132007-03-20 13:58:35 -04001275 context->target_pid = 0;
Amy Griffise54dc242007-03-29 18:01:04 -04001276 context->target_sid = 0;
Amy Griffis5adc8a62006-06-14 18:45:21 -04001277 kfree(context->filterkey);
1278 context->filterkey = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 tsk->audit_context = context;
1280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001283/**
1284 * audit_getname - add a name to the list
1285 * @name: name to add
1286 *
1287 * Add a name to the list of audit names for this context.
1288 * Called from fs/namei.c:getname().
1289 */
Al Virod8945bb52006-05-18 16:01:30 -04001290void __audit_getname(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 struct audit_context *context = current->audit_context;
1293
Al Virod8945bb52006-05-18 16:01:30 -04001294 if (IS_ERR(name) || !name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return;
1296
1297 if (!context->in_syscall) {
1298#if AUDIT_DEBUG == 2
1299 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1300 __FILE__, __LINE__, context->serial, name);
1301 dump_stack();
1302#endif
1303 return;
1304 }
1305 BUG_ON(context->name_count >= AUDIT_NAMES);
1306 context->names[context->name_count].name = name;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001307 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1308 context->names[context->name_count].name_put = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 context->names[context->name_count].ino = (unsigned long)-1;
Amy Griffise41e8bd2007-02-13 14:14:09 -05001310 context->names[context->name_count].osid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 ++context->name_count;
David Woodhouse8f37d472005-05-27 12:17:28 +01001312 if (!context->pwd) {
1313 read_lock(&current->fs->lock);
1314 context->pwd = dget(current->fs->pwd);
1315 context->pwdmnt = mntget(current->fs->pwdmnt);
1316 read_unlock(&current->fs->lock);
1317 }
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001321/* audit_putname - intercept a putname request
1322 * @name: name to intercept and delay for putname
1323 *
1324 * If we have stored the name from getname in the audit context,
1325 * then we delay the putname until syscall exit.
1326 * Called from include/linux/fs.h:putname().
1327 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328void audit_putname(const char *name)
1329{
1330 struct audit_context *context = current->audit_context;
1331
1332 BUG_ON(!context);
1333 if (!context->in_syscall) {
1334#if AUDIT_DEBUG == 2
1335 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1336 __FILE__, __LINE__, context->serial, name);
1337 if (context->name_count) {
1338 int i;
1339 for (i = 0; i < context->name_count; i++)
1340 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1341 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001342 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344#endif
1345 __putname(name);
1346 }
1347#if AUDIT_DEBUG
1348 else {
1349 ++context->put_count;
1350 if (context->put_count > context->name_count) {
1351 printk(KERN_ERR "%s:%d(:%d): major=%d"
1352 " in_syscall=%d putname(%p) name_count=%d"
1353 " put_count=%d\n",
1354 __FILE__, __LINE__,
1355 context->serial, context->major,
1356 context->in_syscall, name, context->name_count,
1357 context->put_count);
1358 dump_stack();
1359 }
1360 }
1361#endif
1362}
1363
Amy Griffis5712e882007-02-13 14:15:22 -05001364static int audit_inc_name_count(struct audit_context *context,
1365 const struct inode *inode)
1366{
1367 if (context->name_count >= AUDIT_NAMES) {
1368 if (inode)
1369 printk(KERN_DEBUG "name_count maxed, losing inode data: "
1370 "dev=%02x:%02x, inode=%lu",
1371 MAJOR(inode->i_sb->s_dev),
1372 MINOR(inode->i_sb->s_dev),
1373 inode->i_ino);
1374
1375 else
1376 printk(KERN_DEBUG "name_count maxed, losing inode data");
1377 return 1;
1378 }
1379 context->name_count++;
1380#if AUDIT_DEBUG
1381 context->ino_count++;
1382#endif
1383 return 0;
1384}
1385
Amy Griffis3e2efce2006-07-13 13:16:02 -04001386/* Copy inode data into an audit_names. */
1387static void audit_copy_inode(struct audit_names *name, const struct inode *inode)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001388{
Amy Griffis3e2efce2006-07-13 13:16:02 -04001389 name->ino = inode->i_ino;
1390 name->dev = inode->i_sb->s_dev;
1391 name->mode = inode->i_mode;
1392 name->uid = inode->i_uid;
1393 name->gid = inode->i_gid;
1394 name->rdev = inode->i_rdev;
1395 selinux_get_inode_sid(inode, &name->osid);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001396}
1397
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001398/**
1399 * audit_inode - store the inode and device from a lookup
1400 * @name: name being audited
1401 * @inode: inode being audited
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001402 *
1403 * Called from fs/namei.c:path_lookup().
1404 */
Amy Griffis9c937dc2006-06-08 23:19:31 -04001405void __audit_inode(const char *name, const struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 int idx;
1408 struct audit_context *context = current->audit_context;
1409
1410 if (!context->in_syscall)
1411 return;
1412 if (context->name_count
1413 && context->names[context->name_count-1].name
1414 && context->names[context->name_count-1].name == name)
1415 idx = context->name_count - 1;
1416 else if (context->name_count > 1
1417 && context->names[context->name_count-2].name
1418 && context->names[context->name_count-2].name == name)
1419 idx = context->name_count - 2;
1420 else {
1421 /* FIXME: how much do we care about inodes that have no
1422 * associated name? */
Amy Griffis5712e882007-02-13 14:15:22 -05001423 if (audit_inc_name_count(context, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return;
Amy Griffis5712e882007-02-13 14:15:22 -05001425 idx = context->name_count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 context->names[idx].name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001428 audit_copy_inode(&context->names[idx], inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Amy Griffis73241cc2005-11-03 16:00:25 +00001431/**
1432 * audit_inode_child - collect inode info for created/removed objects
1433 * @dname: inode's dentry name
1434 * @inode: inode being audited
Amy Griffis73d3ec52006-07-13 13:16:39 -04001435 * @parent: inode of dentry parent
Amy Griffis73241cc2005-11-03 16:00:25 +00001436 *
1437 * For syscalls that create or remove filesystem objects, audit_inode
1438 * can only collect information for the filesystem object's parent.
1439 * This call updates the audit context with the child's information.
1440 * Syscalls that create a new filesystem object must be hooked after
1441 * the object is created. Syscalls that remove a filesystem object
1442 * must be hooked prior, in order to capture the target inode during
1443 * unsuccessful attempts.
1444 */
1445void __audit_inode_child(const char *dname, const struct inode *inode,
Amy Griffis73d3ec52006-07-13 13:16:39 -04001446 const struct inode *parent)
Amy Griffis73241cc2005-11-03 16:00:25 +00001447{
1448 int idx;
1449 struct audit_context *context = current->audit_context;
Amy Griffis5712e882007-02-13 14:15:22 -05001450 const char *found_parent = NULL, *found_child = NULL;
Amy Griffis9c937dc2006-06-08 23:19:31 -04001451 int dirlen = 0;
Amy Griffis73241cc2005-11-03 16:00:25 +00001452
1453 if (!context->in_syscall)
1454 return;
1455
1456 /* determine matching parent */
Amy Griffisf368c07d2006-04-07 16:55:56 -04001457 if (!dname)
Amy Griffis5712e882007-02-13 14:15:22 -05001458 goto add_names;
Amy Griffis73241cc2005-11-03 16:00:25 +00001459
Amy Griffis5712e882007-02-13 14:15:22 -05001460 /* parent is more likely, look for it first */
1461 for (idx = 0; idx < context->name_count; idx++) {
1462 struct audit_names *n = &context->names[idx];
Amy Griffis73241cc2005-11-03 16:00:25 +00001463
Amy Griffis5712e882007-02-13 14:15:22 -05001464 if (!n->name)
1465 continue;
1466
1467 if (n->ino == parent->i_ino &&
1468 !audit_compare_dname_path(dname, n->name, &dirlen)) {
1469 n->name_len = dirlen; /* update parent data in place */
1470 found_parent = n->name;
1471 goto add_names;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001472 }
Steve Grubbac9910c2006-09-28 14:31:32 -04001473 }
Amy Griffis73241cc2005-11-03 16:00:25 +00001474
Amy Griffis5712e882007-02-13 14:15:22 -05001475 /* no matching parent, look for matching child */
1476 for (idx = 0; idx < context->name_count; idx++) {
1477 struct audit_names *n = &context->names[idx];
Amy Griffis73d3ec52006-07-13 13:16:39 -04001478
Amy Griffis5712e882007-02-13 14:15:22 -05001479 if (!n->name)
1480 continue;
1481
1482 /* strcmp() is the more likely scenario */
1483 if (!strcmp(dname, n->name) ||
1484 !audit_compare_dname_path(dname, n->name, &dirlen)) {
1485 if (inode)
1486 audit_copy_inode(n, inode);
1487 else
1488 n->ino = (unsigned long)-1;
1489 found_child = n->name;
1490 goto add_names;
Steve Grubbac9910c2006-09-28 14:31:32 -04001491 }
Amy Griffis5712e882007-02-13 14:15:22 -05001492 }
1493
1494add_names:
1495 if (!found_parent) {
1496 if (audit_inc_name_count(context, parent))
1497 return;
1498 idx = context->name_count - 1;
1499 context->names[idx].name = NULL;
Amy Griffis73d3ec52006-07-13 13:16:39 -04001500 audit_copy_inode(&context->names[idx], parent);
1501 }
Amy Griffis5712e882007-02-13 14:15:22 -05001502
1503 if (!found_child) {
1504 if (audit_inc_name_count(context, inode))
1505 return;
1506 idx = context->name_count - 1;
1507
1508 /* Re-use the name belonging to the slot for a matching parent
1509 * directory. All names for this context are relinquished in
1510 * audit_free_names() */
1511 if (found_parent) {
1512 context->names[idx].name = found_parent;
1513 context->names[idx].name_len = AUDIT_NAME_FULL;
1514 /* don't call __putname() */
1515 context->names[idx].name_put = 0;
1516 } else {
1517 context->names[idx].name = NULL;
1518 }
1519
1520 if (inode)
1521 audit_copy_inode(&context->names[idx], inode);
1522 else
1523 context->names[idx].ino = (unsigned long)-1;
1524 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001525}
1526
1527/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001528 * auditsc_get_stamp - get local copies of audit_context values
1529 * @ctx: audit_context for the task
1530 * @t: timespec to store time recorded in the audit_context
1531 * @serial: serial value that is recorded in the audit_context
1532 *
1533 * Also sets the context as auditable.
1534 */
David Woodhousebfb44962005-05-21 21:08:09 +01001535void auditsc_get_stamp(struct audit_context *ctx,
1536 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
David Woodhousece625a82005-07-18 14:24:46 -04001538 if (!ctx->serial)
1539 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01001540 t->tv_sec = ctx->ctime.tv_sec;
1541 t->tv_nsec = ctx->ctime.tv_nsec;
1542 *serial = ctx->serial;
1543 ctx->auditable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001546/**
1547 * audit_set_loginuid - set a task's audit_context loginuid
1548 * @task: task whose audit context is being modified
1549 * @loginuid: loginuid value
1550 *
1551 * Returns 0.
1552 *
1553 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1554 */
Steve Grubb456be6c2005-04-29 17:30:07 +01001555int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Steve Grubb41757102006-06-12 07:48:28 -04001557 struct audit_context *context = task->audit_context;
Steve Grubbc0404992005-05-13 18:17:42 +01001558
Steve Grubb41757102006-06-12 07:48:28 -04001559 if (context) {
1560 /* Only log if audit is enabled */
1561 if (context->in_syscall) {
1562 struct audit_buffer *ab;
1563
1564 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
1565 if (ab) {
1566 audit_log_format(ab, "login pid=%d uid=%u "
1567 "old auid=%u new auid=%u",
1568 task->pid, task->uid,
1569 context->loginuid, loginuid);
1570 audit_log_end(ab);
1571 }
Steve Grubbc0404992005-05-13 18:17:42 +01001572 }
Steve Grubb41757102006-06-12 07:48:28 -04001573 context->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575 return 0;
1576}
1577
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001578/**
1579 * audit_get_loginuid - get the loginuid for an audit_context
1580 * @ctx: the audit_context
1581 *
1582 * Returns the context's loginuid or -1 if @ctx is NULL.
1583 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584uid_t audit_get_loginuid(struct audit_context *ctx)
1585{
1586 return ctx ? ctx->loginuid : -1;
1587}
1588
Joy Latten161a09e2006-11-27 13:11:54 -06001589EXPORT_SYMBOL(audit_get_loginuid);
1590
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001591/**
George C. Wilson20ca73b2006-05-24 16:09:55 -05001592 * __audit_mq_open - record audit data for a POSIX MQ open
1593 * @oflag: open flag
1594 * @mode: mode bits
1595 * @u_attr: queue attributes
1596 *
1597 * Returns 0 for success or NULL context or < 0 on error.
1598 */
1599int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
1600{
1601 struct audit_aux_data_mq_open *ax;
1602 struct audit_context *context = current->audit_context;
1603
1604 if (!audit_enabled)
1605 return 0;
1606
1607 if (likely(!context))
1608 return 0;
1609
1610 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1611 if (!ax)
1612 return -ENOMEM;
1613
1614 if (u_attr != NULL) {
1615 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
1616 kfree(ax);
1617 return -EFAULT;
1618 }
1619 } else
1620 memset(&ax->attr, 0, sizeof(ax->attr));
1621
1622 ax->oflag = oflag;
1623 ax->mode = mode;
1624
1625 ax->d.type = AUDIT_MQ_OPEN;
1626 ax->d.next = context->aux;
1627 context->aux = (void *)ax;
1628 return 0;
1629}
1630
1631/**
1632 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1633 * @mqdes: MQ descriptor
1634 * @msg_len: Message length
1635 * @msg_prio: Message priority
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001636 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001637 *
1638 * Returns 0 for success or NULL context or < 0 on error.
1639 */
1640int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
1641 const struct timespec __user *u_abs_timeout)
1642{
1643 struct audit_aux_data_mq_sendrecv *ax;
1644 struct audit_context *context = current->audit_context;
1645
1646 if (!audit_enabled)
1647 return 0;
1648
1649 if (likely(!context))
1650 return 0;
1651
1652 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1653 if (!ax)
1654 return -ENOMEM;
1655
1656 if (u_abs_timeout != NULL) {
1657 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1658 kfree(ax);
1659 return -EFAULT;
1660 }
1661 } else
1662 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1663
1664 ax->mqdes = mqdes;
1665 ax->msg_len = msg_len;
1666 ax->msg_prio = msg_prio;
1667
1668 ax->d.type = AUDIT_MQ_SENDRECV;
1669 ax->d.next = context->aux;
1670 context->aux = (void *)ax;
1671 return 0;
1672}
1673
1674/**
1675 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1676 * @mqdes: MQ descriptor
1677 * @msg_len: Message length
Randy Dunlap1dbe83c2006-06-27 02:54:01 -07001678 * @u_msg_prio: Message priority
1679 * @u_abs_timeout: Message timeout in absolute time
George C. Wilson20ca73b2006-05-24 16:09:55 -05001680 *
1681 * Returns 0 for success or NULL context or < 0 on error.
1682 */
1683int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
1684 unsigned int __user *u_msg_prio,
1685 const struct timespec __user *u_abs_timeout)
1686{
1687 struct audit_aux_data_mq_sendrecv *ax;
1688 struct audit_context *context = current->audit_context;
1689
1690 if (!audit_enabled)
1691 return 0;
1692
1693 if (likely(!context))
1694 return 0;
1695
1696 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1697 if (!ax)
1698 return -ENOMEM;
1699
1700 if (u_msg_prio != NULL) {
1701 if (get_user(ax->msg_prio, u_msg_prio)) {
1702 kfree(ax);
1703 return -EFAULT;
1704 }
1705 } else
1706 ax->msg_prio = 0;
1707
1708 if (u_abs_timeout != NULL) {
1709 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1710 kfree(ax);
1711 return -EFAULT;
1712 }
1713 } else
1714 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1715
1716 ax->mqdes = mqdes;
1717 ax->msg_len = msg_len;
1718
1719 ax->d.type = AUDIT_MQ_SENDRECV;
1720 ax->d.next = context->aux;
1721 context->aux = (void *)ax;
1722 return 0;
1723}
1724
1725/**
1726 * __audit_mq_notify - record audit data for a POSIX MQ notify
1727 * @mqdes: MQ descriptor
1728 * @u_notification: Notification event
1729 *
1730 * Returns 0 for success or NULL context or < 0 on error.
1731 */
1732
1733int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
1734{
1735 struct audit_aux_data_mq_notify *ax;
1736 struct audit_context *context = current->audit_context;
1737
1738 if (!audit_enabled)
1739 return 0;
1740
1741 if (likely(!context))
1742 return 0;
1743
1744 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1745 if (!ax)
1746 return -ENOMEM;
1747
1748 if (u_notification != NULL) {
1749 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
1750 kfree(ax);
1751 return -EFAULT;
1752 }
1753 } else
1754 memset(&ax->notification, 0, sizeof(ax->notification));
1755
1756 ax->mqdes = mqdes;
1757
1758 ax->d.type = AUDIT_MQ_NOTIFY;
1759 ax->d.next = context->aux;
1760 context->aux = (void *)ax;
1761 return 0;
1762}
1763
1764/**
1765 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1766 * @mqdes: MQ descriptor
1767 * @mqstat: MQ flags
1768 *
1769 * Returns 0 for success or NULL context or < 0 on error.
1770 */
1771int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
1772{
1773 struct audit_aux_data_mq_getsetattr *ax;
1774 struct audit_context *context = current->audit_context;
1775
1776 if (!audit_enabled)
1777 return 0;
1778
1779 if (likely(!context))
1780 return 0;
1781
1782 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1783 if (!ax)
1784 return -ENOMEM;
1785
1786 ax->mqdes = mqdes;
1787 ax->mqstat = *mqstat;
1788
1789 ax->d.type = AUDIT_MQ_GETSETATTR;
1790 ax->d.next = context->aux;
1791 context->aux = (void *)ax;
1792 return 0;
1793}
1794
1795/**
Steve Grubb073115d2006-04-02 17:07:33 -04001796 * audit_ipc_obj - record audit data for ipc object
1797 * @ipcp: ipc permissions
1798 *
1799 * Returns 0 for success or NULL context or < 0 on error.
1800 */
Al Virod8945bb52006-05-18 16:01:30 -04001801int __audit_ipc_obj(struct kern_ipc_perm *ipcp)
Steve Grubb073115d2006-04-02 17:07:33 -04001802{
1803 struct audit_aux_data_ipcctl *ax;
1804 struct audit_context *context = current->audit_context;
1805
Steve Grubb073115d2006-04-02 17:07:33 -04001806 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1807 if (!ax)
1808 return -ENOMEM;
1809
1810 ax->uid = ipcp->uid;
1811 ax->gid = ipcp->gid;
1812 ax->mode = ipcp->mode;
1813 selinux_get_ipc_sid(ipcp, &ax->osid);
1814
1815 ax->d.type = AUDIT_IPC;
1816 ax->d.next = context->aux;
1817 context->aux = (void *)ax;
1818 return 0;
1819}
1820
1821/**
1822 * audit_ipc_set_perm - record audit data for new ipc permissions
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001823 * @qbytes: msgq bytes
1824 * @uid: msgq user id
1825 * @gid: msgq group id
1826 * @mode: msgq mode (permissions)
1827 *
1828 * Returns 0 for success or NULL context or < 0 on error.
1829 */
Al Virod8945bb52006-05-18 16:01:30 -04001830int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 struct audit_aux_data_ipcctl *ax;
1833 struct audit_context *context = current->audit_context;
1834
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001835 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (!ax)
1837 return -ENOMEM;
1838
1839 ax->qbytes = qbytes;
1840 ax->uid = uid;
1841 ax->gid = gid;
1842 ax->mode = mode;
1843
Steve Grubb073115d2006-04-02 17:07:33 -04001844 ax->d.type = AUDIT_IPC_SET_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 ax->d.next = context->aux;
1846 context->aux = (void *)ax;
1847 return 0;
1848}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001849
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001850int audit_argv_kb = 32;
1851
Al Viro473ae302006-04-26 14:04:08 -04001852int audit_bprm(struct linux_binprm *bprm)
1853{
1854 struct audit_aux_data_execve *ax;
1855 struct audit_context *context = current->audit_context;
Al Viro473ae302006-04-26 14:04:08 -04001856
Al Viro5ac3a9c2006-07-16 06:38:45 -04001857 if (likely(!audit_enabled || !context || context->dummy))
Al Viro473ae302006-04-26 14:04:08 -04001858 return 0;
1859
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001860 /*
1861 * Even though the stack code doesn't limit the arg+env size any more,
1862 * the audit code requires that _all_ arguments be logged in a single
1863 * netlink skb. Hence cap it :-(
1864 */
1865 if (bprm->argv_len > (audit_argv_kb << 10))
1866 return -E2BIG;
1867
1868 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
Al Viro473ae302006-04-26 14:04:08 -04001869 if (!ax)
1870 return -ENOMEM;
1871
1872 ax->argc = bprm->argc;
1873 ax->envc = bprm->envc;
Peter Zijlstrabdf4c482007-07-19 01:48:15 -07001874 ax->mm = bprm->mm;
Al Viro473ae302006-04-26 14:04:08 -04001875 ax->d.type = AUDIT_EXECVE;
1876 ax->d.next = context->aux;
1877 context->aux = (void *)ax;
1878 return 0;
1879}
1880
1881
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001882/**
1883 * audit_socketcall - record audit data for sys_socketcall
1884 * @nargs: number of args
1885 * @args: args array
1886 *
1887 * Returns 0 for success or NULL context or < 0 on error.
1888 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001889int audit_socketcall(int nargs, unsigned long *args)
1890{
1891 struct audit_aux_data_socketcall *ax;
1892 struct audit_context *context = current->audit_context;
1893
Al Viro5ac3a9c2006-07-16 06:38:45 -04001894 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001895 return 0;
1896
1897 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1898 if (!ax)
1899 return -ENOMEM;
1900
1901 ax->nargs = nargs;
1902 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1903
1904 ax->d.type = AUDIT_SOCKETCALL;
1905 ax->d.next = context->aux;
1906 context->aux = (void *)ax;
1907 return 0;
1908}
1909
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001910/**
Al Virodb349502007-02-07 01:48:00 -05001911 * __audit_fd_pair - record audit data for pipe and socketpair
1912 * @fd1: the first file descriptor
1913 * @fd2: the second file descriptor
1914 *
1915 * Returns 0 for success or NULL context or < 0 on error.
1916 */
1917int __audit_fd_pair(int fd1, int fd2)
1918{
1919 struct audit_context *context = current->audit_context;
1920 struct audit_aux_data_fd_pair *ax;
1921
1922 if (likely(!context)) {
1923 return 0;
1924 }
1925
1926 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
1927 if (!ax) {
1928 return -ENOMEM;
1929 }
1930
1931 ax->fd[0] = fd1;
1932 ax->fd[1] = fd2;
1933
1934 ax->d.type = AUDIT_FD_PAIR;
1935 ax->d.next = context->aux;
1936 context->aux = (void *)ax;
1937 return 0;
1938}
1939
1940/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001941 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1942 * @len: data length in user space
1943 * @a: data address in kernel space
1944 *
1945 * Returns 0 for success or NULL context or < 0 on error.
1946 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001947int audit_sockaddr(int len, void *a)
1948{
1949 struct audit_aux_data_sockaddr *ax;
1950 struct audit_context *context = current->audit_context;
1951
Al Viro5ac3a9c2006-07-16 06:38:45 -04001952 if (likely(!context || context->dummy))
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001953 return 0;
1954
1955 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1956 if (!ax)
1957 return -ENOMEM;
1958
1959 ax->len = len;
1960 memcpy(ax->a, a, len);
1961
1962 ax->d.type = AUDIT_SOCKADDR;
1963 ax->d.next = context->aux;
1964 context->aux = (void *)ax;
1965 return 0;
1966}
1967
Al Viroa5cb0132007-03-20 13:58:35 -04001968void __audit_ptrace(struct task_struct *t)
1969{
1970 struct audit_context *context = current->audit_context;
1971
1972 context->target_pid = t->pid;
1973 selinux_get_task_sid(t, &context->target_sid);
1974}
1975
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001976/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001977 * audit_signal_info - record signal info for shutting down audit subsystem
1978 * @sig: signal value
1979 * @t: task being signaled
1980 *
1981 * If the audit subsystem is being terminated, record the task (pid)
1982 * and uid that is doing that.
1983 */
Amy Griffise54dc242007-03-29 18:01:04 -04001984int __audit_signal_info(int sig, struct task_struct *t)
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001985{
Amy Griffise54dc242007-03-29 18:01:04 -04001986 struct audit_aux_data_pids *axp;
1987 struct task_struct *tsk = current;
1988 struct audit_context *ctx = tsk->audit_context;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001989 extern pid_t audit_sig_pid;
1990 extern uid_t audit_sig_uid;
Al Viroe1396062006-05-25 10:19:47 -04001991 extern u32 audit_sig_sid;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001992
Amy Griffise54dc242007-03-29 18:01:04 -04001993 if (audit_pid && t->tgid == audit_pid &&
1994 (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1)) {
Al Viroe1396062006-05-25 10:19:47 -04001995 audit_sig_pid = tsk->pid;
1996 if (ctx)
1997 audit_sig_uid = ctx->loginuid;
1998 else
1999 audit_sig_uid = tsk->uid;
2000 selinux_get_task_sid(tsk, &audit_sig_sid);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002001 }
Amy Griffise54dc242007-03-29 18:01:04 -04002002
2003 if (!audit_signals) /* audit_context checked in wrapper */
2004 return 0;
2005
2006 /* optimize the common case by putting first signal recipient directly
2007 * in audit_context */
2008 if (!ctx->target_pid) {
2009 ctx->target_pid = t->tgid;
2010 selinux_get_task_sid(t, &ctx->target_sid);
2011 return 0;
2012 }
2013
2014 axp = (void *)ctx->aux_pids;
2015 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2016 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2017 if (!axp)
2018 return -ENOMEM;
2019
2020 axp->d.type = AUDIT_OBJ_PID;
2021 axp->d.next = ctx->aux_pids;
2022 ctx->aux_pids = (void *)axp;
2023 }
2024 BUG_ON(axp->pid_count > AUDIT_AUX_PIDS);
2025
2026 axp->target_pid[axp->pid_count] = t->tgid;
2027 selinux_get_task_sid(t, &axp->target_sid[axp->pid_count]);
2028 axp->pid_count++;
2029
2030 return 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01002031}
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002032
2033/**
2034 * audit_core_dumps - record information about processes that end abnormally
Henrik Kretzschmar6d9525b2007-07-15 23:41:10 -07002035 * @signr: signal value
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002036 *
2037 * If a process ends with a core dump, something fishy is going on and we
2038 * should record the event for investigation.
2039 */
2040void audit_core_dumps(long signr)
2041{
2042 struct audit_buffer *ab;
2043 u32 sid;
2044
2045 if (!audit_enabled)
2046 return;
2047
2048 if (signr == SIGQUIT) /* don't care for those */
2049 return;
2050
2051 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
2052 audit_log_format(ab, "auid=%u uid=%u gid=%u",
2053 audit_get_loginuid(current->audit_context),
2054 current->uid, current->gid);
2055 selinux_get_task_sid(current, &sid);
2056 if (sid) {
2057 char *ctx = NULL;
2058 u32 len;
2059
2060 if (selinux_sid_to_string(sid, &ctx, &len))
2061 audit_log_format(ab, " ssid=%u", sid);
2062 else
2063 audit_log_format(ab, " subj=%s", ctx);
2064 kfree(ctx);
2065 }
2066 audit_log_format(ab, " pid=%d comm=", current->pid);
2067 audit_log_untrustedstring(ab, current->comm);
2068 audit_log_format(ab, " sig=%ld", signr);
2069 audit_log_end(ab);
2070}