blob: 4ef14515da35a2df5bfe26935c32bdf623e3f0ad [file] [log] [blame]
85c87212005-04-29 16:23:29 +01001/* auditsc.c -- System-call auditing support
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Handles all system-call specific auditing features.
3 *
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
Amy Griffis73241cc2005-11-03 16:00:25 +00005 * Copyright 2005 Hewlett-Packard Development Company, L.P.
Dustin Kirklandb63862f2005-11-03 15:41:46 +00006 * Copyright (C) 2005 IBM Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * All Rights Reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
24 *
25 * Many of the ideas implemented here are from Stephen C. Tweedie,
26 * especially the idea of avoiding a copy by using getname.
27 *
28 * The method for actual interception of syscall entry and exit (not in
29 * this file -- see entry.S) is based on a GPL'd patch written by
30 * okir@suse.de and Copyright 2003 SuSE Linux AG.
31 *
Dustin Kirklandb63862f2005-11-03 15:41:46 +000032 * The support of additional filter rules compares (>, <, >=, <=) was
33 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
34 *
Amy Griffis73241cc2005-11-03 16:00:25 +000035 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
36 * filesystem information.
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000037 *
38 * Subject and object context labeling support added by <danjones@us.ibm.com>
39 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
42#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/types.h>
Alan Cox715b49e2006-01-18 17:44:07 -080044#include <asm/atomic.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000045#include <asm/types.h>
46#include <linux/fs.h>
47#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mm.h>
49#include <linux/module.h>
Stephen Smalley01116102005-05-21 00:15:52 +010050#include <linux/mount.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010051#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/audit.h>
53#include <linux/personality.h>
54#include <linux/time.h>
David Woodhousef6a789d2005-06-21 16:22:01 +010055#include <linux/kthread.h>
David Woodhouse5bb289b2005-06-24 14:14:05 +010056#include <linux/netlink.h>
David Woodhousef5561962005-07-13 22:47:07 +010057#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/unistd.h>
Dustin Kirkland8c8570f2005-11-03 17:15:16 +000059#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* 0 = no checking
62 1 = put_count checking
63 2 = verbose put_count checking
64*/
65#define AUDIT_DEBUG 0
66
67/* No syscall auditing will take place unless audit_enabled != 0. */
68extern int audit_enabled;
69
70/* AUDIT_NAMES is the number of slots we reserve in the audit_context
71 * for saving names from getname(). */
72#define AUDIT_NAMES 20
73
74/* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
75 * audit_context from being used for nameless inodes from
76 * path_lookup. */
77#define AUDIT_NAMES_RESERVED 7
78
79/* At task start time, the audit_state is set in the audit_context using
80 a per-task filter. At syscall entry, the audit_state is augmented by
81 the syscall filter. */
82enum audit_state {
83 AUDIT_DISABLED, /* Do not create per-task audit_context.
84 * No syscall-specific audit records can
85 * be generated. */
86 AUDIT_SETUP_CONTEXT, /* Create the per-task audit_context,
87 * but don't necessarily fill it in at
88 * syscall entry time (i.e., filter
89 * instead). */
90 AUDIT_BUILD_CONTEXT, /* Create the per-task audit_context,
91 * and always fill it in at syscall
92 * entry time. This makes a full
93 * syscall record available if some
94 * other part of the kernel decides it
95 * should be recorded. */
96 AUDIT_RECORD_CONTEXT /* Create the per-task audit_context,
97 * always fill it in at syscall entry
98 * time, and always write out the audit
99 * record at syscall exit time. */
100};
101
102/* When fs/namei.c:getname() is called, we store the pointer in name and
103 * we don't let putname() free it (instead we free all of the saved
104 * pointers at syscall exit time).
105 *
106 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
107struct audit_names {
108 const char *name;
109 unsigned long ino;
Amy Griffis73241cc2005-11-03 16:00:25 +0000110 unsigned long pino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 dev_t dev;
112 umode_t mode;
113 uid_t uid;
114 gid_t gid;
115 dev_t rdev;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000116 char *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
119struct audit_aux_data {
120 struct audit_aux_data *next;
121 int type;
122};
123
124#define AUDIT_AUX_IPCPERM 0
125
126struct audit_aux_data_ipcctl {
127 struct audit_aux_data d;
128 struct ipc_perm p;
129 unsigned long qbytes;
130 uid_t uid;
131 gid_t gid;
132 mode_t mode;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000133 char *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100136struct audit_aux_data_socketcall {
137 struct audit_aux_data d;
138 int nargs;
139 unsigned long args[0];
140};
141
142struct audit_aux_data_sockaddr {
143 struct audit_aux_data d;
144 int len;
145 char a[0];
146};
147
Stephen Smalley01116102005-05-21 00:15:52 +0100148struct audit_aux_data_path {
149 struct audit_aux_data d;
150 struct dentry *dentry;
151 struct vfsmount *mnt;
152};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/* The per-task audit context. */
155struct audit_context {
156 int in_syscall; /* 1 if task is in a syscall */
157 enum audit_state state;
158 unsigned int serial; /* serial number for record */
159 struct timespec ctime; /* time of syscall entry */
160 uid_t loginuid; /* login uid (identity) */
161 int major; /* syscall number */
162 unsigned long argv[4]; /* syscall arguments */
163 int return_valid; /* return code is valid */
2fd6f582005-04-29 16:08:28 +0100164 long return_code;/* syscall return code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int auditable; /* 1 if record should be written */
166 int name_count;
167 struct audit_names names[AUDIT_NAMES];
David Woodhouse8f37d472005-05-27 12:17:28 +0100168 struct dentry * pwd;
169 struct vfsmount * pwdmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct audit_context *previous; /* For nested syscalls */
171 struct audit_aux_data *aux;
172
173 /* Save things to print about task_struct */
174 pid_t pid;
175 uid_t uid, euid, suid, fsuid;
176 gid_t gid, egid, sgid, fsgid;
177 unsigned long personality;
2fd6f582005-04-29 16:08:28 +0100178 int arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180#if AUDIT_DEBUG
181 int put_count;
182 int ino_count;
183#endif
184};
185
186 /* Public API */
187/* There are three lists of rules -- one to search at task creation
188 * time, one to search at syscall entry time, and another to search at
189 * syscall exit time. */
David Woodhouse0f45aa12005-06-19 19:35:50 +0100190static struct list_head audit_filter_list[AUDIT_NR_FILTERS] = {
191 LIST_HEAD_INIT(audit_filter_list[0]),
192 LIST_HEAD_INIT(audit_filter_list[1]),
193 LIST_HEAD_INIT(audit_filter_list[2]),
194 LIST_HEAD_INIT(audit_filter_list[3]),
195 LIST_HEAD_INIT(audit_filter_list[4]),
Dustin Kirklandc8edc802005-11-03 16:12:36 +0000196 LIST_HEAD_INIT(audit_filter_list[5]),
197#if AUDIT_NR_FILTERS != 6
David Woodhouse0f45aa12005-06-19 19:35:50 +0100198#error Fix audit_filter_list initialiser
199#endif
200};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202struct audit_entry {
203 struct list_head list;
204 struct rcu_head rcu;
205 struct audit_rule rule;
206};
207
David Woodhouse7ca00262005-05-19 11:23:13 +0100208extern int audit_pid;
209
Amy Griffis3c789a12005-08-17 16:05:35 +0100210/* Copy rule from user-space to kernel-space. Called from
211 * audit_add_rule during AUDIT_ADD. */
212static inline int audit_copy_rule(struct audit_rule *d, struct audit_rule *s)
213{
214 int i;
215
216 if (s->action != AUDIT_NEVER
217 && s->action != AUDIT_POSSIBLE
218 && s->action != AUDIT_ALWAYS)
219 return -1;
220 if (s->field_count < 0 || s->field_count > AUDIT_MAX_FIELDS)
221 return -1;
222 if ((s->flags & ~AUDIT_FILTER_PREPEND) >= AUDIT_NR_FILTERS)
223 return -1;
224
225 d->flags = s->flags;
226 d->action = s->action;
227 d->field_count = s->field_count;
228 for (i = 0; i < d->field_count; i++) {
229 d->fields[i] = s->fields[i];
230 d->values[i] = s->values[i];
231 }
232 for (i = 0; i < AUDIT_BITMASK_SIZE; i++) d->mask[i] = s->mask[i];
233 return 0;
234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/* Check to see if two rules are identical. It is called from
Amy Griffis3c789a12005-08-17 16:05:35 +0100237 * audit_add_rule during AUDIT_ADD and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * audit_del_rule during AUDIT_DEL. */
Amy Griffis3c789a12005-08-17 16:05:35 +0100239static inline int audit_compare_rule(struct audit_rule *a, struct audit_rule *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 int i;
242
243 if (a->flags != b->flags)
244 return 1;
245
246 if (a->action != b->action)
247 return 1;
248
249 if (a->field_count != b->field_count)
250 return 1;
251
252 for (i = 0; i < a->field_count; i++) {
253 if (a->fields[i] != b->fields[i]
254 || a->values[i] != b->values[i])
255 return 1;
256 }
257
258 for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
259 if (a->mask[i] != b->mask[i])
260 return 1;
261
262 return 0;
263}
264
265/* Note that audit_add_rule and audit_del_rule are called via
266 * audit_receive() in audit.c, and are protected by
267 * audit_netlink_sem. */
Amy Griffis3c789a12005-08-17 16:05:35 +0100268static inline int audit_add_rule(struct audit_rule *rule,
David Woodhouse0f45aa12005-06-19 19:35:50 +0100269 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Amy Griffis3c789a12005-08-17 16:05:35 +0100271 struct audit_entry *entry;
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000272 int i;
Amy Griffis3c789a12005-08-17 16:05:35 +0100273
274 /* Do not use the _rcu iterator here, since this is the only
275 * addition routine. */
276 list_for_each_entry(entry, list, list) {
277 if (!audit_compare_rule(rule, &entry->rule)) {
278 return -EEXIST;
279 }
280 }
281
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000282 for (i = 0; i < rule->field_count; i++) {
283 if (rule->fields[i] & AUDIT_UNUSED_BITS)
284 return -EINVAL;
285 if ( rule->fields[i] & AUDIT_NEGATE )
286 rule->fields[i] |= AUDIT_NOT_EQUAL;
287 else if ( (rule->fields[i] & AUDIT_OPERATORS) == 0 )
288 rule->fields[i] |= AUDIT_EQUAL;
289 rule->fields[i] &= (~AUDIT_NEGATE);
290 }
291
Amy Griffis3c789a12005-08-17 16:05:35 +0100292 if (!(entry = kmalloc(sizeof(*entry), GFP_KERNEL)))
293 return -ENOMEM;
294 if (audit_copy_rule(&entry->rule, rule)) {
295 kfree(entry);
296 return -EINVAL;
297 }
298
David Woodhouse0f45aa12005-06-19 19:35:50 +0100299 if (entry->rule.flags & AUDIT_FILTER_PREPEND) {
300 entry->rule.flags &= ~AUDIT_FILTER_PREPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 list_add_rcu(&entry->list, list);
302 } else {
303 list_add_tail_rcu(&entry->list, list);
304 }
Amy Griffis3c789a12005-08-17 16:05:35 +0100305
306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Amy Griffis3c789a12005-08-17 16:05:35 +0100309static inline void audit_free_rule(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 struct audit_entry *e = container_of(head, struct audit_entry, rcu);
312 kfree(e);
313}
314
315/* Note that audit_add_rule and audit_del_rule are called via
316 * audit_receive() in audit.c, and are protected by
317 * audit_netlink_sem. */
318static inline int audit_del_rule(struct audit_rule *rule,
319 struct list_head *list)
320{
321 struct audit_entry *e;
322
323 /* Do not use the _rcu iterator here, since this is the only
324 * deletion routine. */
325 list_for_each_entry(e, list, list) {
326 if (!audit_compare_rule(rule, &e->rule)) {
327 list_del_rcu(&e->list);
328 call_rcu(&e->rcu, audit_free_rule);
329 return 0;
330 }
331 }
David Woodhouse0f45aa12005-06-19 19:35:50 +0100332 return -ENOENT; /* No matching rule */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
David Woodhousef6a789d2005-06-21 16:22:01 +0100335static int audit_list_rules(void *_dest)
336{
337 int pid, seq;
338 int *dest = _dest;
339 struct audit_entry *entry;
340 int i;
341
342 pid = dest[0];
343 seq = dest[1];
344 kfree(dest);
345
346 down(&audit_netlink_sem);
347
348 /* The *_rcu iterators not needed here because we are
349 always called with audit_netlink_sem held. */
350 for (i=0; i<AUDIT_NR_FILTERS; i++) {
351 list_for_each_entry(entry, &audit_filter_list[i], list)
352 audit_send_reply(pid, seq, AUDIT_LIST, 0, 1,
353 &entry->rule, sizeof(entry->rule));
354 }
355 audit_send_reply(pid, seq, AUDIT_LIST, 1, 1, NULL, 0);
356
357 up(&audit_netlink_sem);
358 return 0;
359}
360
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700361/**
362 * audit_receive_filter - apply all rules to the specified message type
363 * @type: audit message type
364 * @pid: target pid for netlink audit messages
365 * @uid: target uid for netlink audit messages
366 * @seq: netlink audit message sequence (serial) number
367 * @data: payload data
368 * @loginuid: loginuid of sender
369 */
Serge Hallync94c2572005-04-29 16:27:17 +0100370int audit_receive_filter(int type, int pid, int uid, int seq, void *data,
371 uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
David Woodhousef6a789d2005-06-21 16:22:01 +0100373 struct task_struct *tsk;
374 int *dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 int err = 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100376 unsigned listnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 switch (type) {
379 case AUDIT_LIST:
David Woodhousef6a789d2005-06-21 16:22:01 +0100380 /* We can't just spew out the rules here because we might fill
381 * the available socket buffer space and deadlock waiting for
382 * auditctl to read from it... which isn't ever going to
383 * happen if we're actually running in the context of auditctl
384 * trying to _send_ the stuff */
385
386 dest = kmalloc(2 * sizeof(int), GFP_KERNEL);
387 if (!dest)
388 return -ENOMEM;
389 dest[0] = pid;
390 dest[1] = seq;
391
392 tsk = kthread_run(audit_list_rules, dest, "audit_list_rules");
393 if (IS_ERR(tsk)) {
394 kfree(dest);
395 err = PTR_ERR(tsk);
David Woodhouse0f45aa12005-06-19 19:35:50 +0100396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
398 case AUDIT_ADD:
Amy Griffis3c789a12005-08-17 16:05:35 +0100399 listnr =((struct audit_rule *)data)->flags & ~AUDIT_FILTER_PREPEND;
400 if (listnr >= AUDIT_NR_FILTERS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return -EINVAL;
Amy Griffis3c789a12005-08-17 16:05:35 +0100402
403 err = audit_add_rule(data, &audit_filter_list[listnr]);
404 if (!err)
405 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
406 "auid=%u added an audit rule\n", loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
408 case AUDIT_DEL:
David Woodhouse0f45aa12005-06-19 19:35:50 +0100409 listnr =((struct audit_rule *)data)->flags & ~AUDIT_FILTER_PREPEND;
410 if (listnr >= AUDIT_NR_FILTERS)
411 return -EINVAL;
412
413 err = audit_del_rule(data, &audit_filter_list[listnr]);
414 if (!err)
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100415 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
David Woodhouse0f45aa12005-06-19 19:35:50 +0100416 "auid=%u removed an audit rule\n", loginuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 default:
419 return -EINVAL;
420 }
421
422 return err;
423}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000425static int audit_comparator(const u32 left, const u32 op, const u32 right)
426{
427 switch (op) {
428 case AUDIT_EQUAL:
429 return (left == right);
430 case AUDIT_NOT_EQUAL:
431 return (left != right);
432 case AUDIT_LESS_THAN:
433 return (left < right);
434 case AUDIT_LESS_THAN_OR_EQUAL:
435 return (left <= right);
436 case AUDIT_GREATER_THAN:
437 return (left > right);
438 case AUDIT_GREATER_THAN_OR_EQUAL:
439 return (left >= right);
440 default:
441 return -EINVAL;
442 }
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445/* Compare a task_struct with an audit_rule. Return 1 on match, 0
446 * otherwise. */
447static int audit_filter_rules(struct task_struct *tsk,
448 struct audit_rule *rule,
449 struct audit_context *ctx,
450 enum audit_state *state)
451{
452 int i, j;
453
454 for (i = 0; i < rule->field_count; i++) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000455 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
456 u32 op = rule->fields[i] & AUDIT_OPERATORS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 u32 value = rule->values[i];
458 int result = 0;
459
460 switch (field) {
461 case AUDIT_PID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000462 result = audit_comparator(tsk->pid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 case AUDIT_UID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000465 result = audit_comparator(tsk->uid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 case AUDIT_EUID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000468 result = audit_comparator(tsk->euid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case AUDIT_SUID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000471 result = audit_comparator(tsk->suid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 case AUDIT_FSUID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000474 result = audit_comparator(tsk->fsuid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476 case AUDIT_GID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000477 result = audit_comparator(tsk->gid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 case AUDIT_EGID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000480 result = audit_comparator(tsk->egid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 break;
482 case AUDIT_SGID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000483 result = audit_comparator(tsk->sgid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485 case AUDIT_FSGID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000486 result = audit_comparator(tsk->fsgid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
488 case AUDIT_PERS:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000489 result = audit_comparator(tsk->personality, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
2fd6f582005-04-29 16:08:28 +0100491 case AUDIT_ARCH:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000492 if (ctx)
493 result = audit_comparator(ctx->arch, op, value);
2fd6f582005-04-29 16:08:28 +0100494 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 case AUDIT_EXIT:
497 if (ctx && ctx->return_valid)
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000498 result = audit_comparator(ctx->return_code, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
500 case AUDIT_SUCCESS:
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100501 if (ctx && ctx->return_valid) {
502 if (value)
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000503 result = audit_comparator(ctx->return_valid, op, AUDITSC_SUCCESS);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100504 else
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000505 result = audit_comparator(ctx->return_valid, op, AUDITSC_FAILURE);
David Woodhouseb01f2cc2005-08-27 10:25:43 +0100506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 break;
508 case AUDIT_DEVMAJOR:
509 if (ctx) {
510 for (j = 0; j < ctx->name_count; j++) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000511 if (audit_comparator(MAJOR(ctx->names[j].dev), op, value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 ++result;
513 break;
514 }
515 }
516 }
517 break;
518 case AUDIT_DEVMINOR:
519 if (ctx) {
520 for (j = 0; j < ctx->name_count; j++) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000521 if (audit_comparator(MINOR(ctx->names[j].dev), op, value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 ++result;
523 break;
524 }
525 }
526 }
527 break;
528 case AUDIT_INODE:
529 if (ctx) {
530 for (j = 0; j < ctx->name_count; j++) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000531 if (audit_comparator(ctx->names[j].ino, op, value) ||
532 audit_comparator(ctx->names[j].pino, op, value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 ++result;
534 break;
535 }
536 }
537 }
538 break;
539 case AUDIT_LOGINUID:
540 result = 0;
541 if (ctx)
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000542 result = audit_comparator(ctx->loginuid, op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 break;
544 case AUDIT_ARG0:
545 case AUDIT_ARG1:
546 case AUDIT_ARG2:
547 case AUDIT_ARG3:
548 if (ctx)
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000549 result = audit_comparator(ctx->argv[field-AUDIT_ARG0], op, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (!result)
554 return 0;
555 }
556 switch (rule->action) {
557 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
558 case AUDIT_POSSIBLE: *state = AUDIT_BUILD_CONTEXT; break;
559 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
560 }
561 return 1;
562}
563
564/* At process creation time, we can determine if system-call auditing is
565 * completely disabled for this task. Since we only have the task
566 * structure at this point, we can only check uid and gid.
567 */
568static enum audit_state audit_filter_task(struct task_struct *tsk)
569{
570 struct audit_entry *e;
571 enum audit_state state;
572
573 rcu_read_lock();
David Woodhouse0f45aa12005-06-19 19:35:50 +0100574 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (audit_filter_rules(tsk, &e->rule, NULL, &state)) {
576 rcu_read_unlock();
577 return state;
578 }
579 }
580 rcu_read_unlock();
581 return AUDIT_BUILD_CONTEXT;
582}
583
584/* At syscall entry and exit time, this filter is called if the
585 * audit_state is not low enough that auditing cannot take place, but is
Steve Grubb23f32d12005-05-13 18:35:15 +0100586 * also not high enough that we already know we have to write an audit
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700587 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589static enum audit_state audit_filter_syscall(struct task_struct *tsk,
590 struct audit_context *ctx,
591 struct list_head *list)
592{
593 struct audit_entry *e;
David Woodhousec3896492005-08-17 14:49:57 +0100594 enum audit_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
David Woodhouse351bb722005-07-14 14:40:06 +0100596 if (audit_pid && tsk->tgid == audit_pid)
David Woodhousef7056d62005-06-20 16:07:33 +0100597 return AUDIT_DISABLED;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 rcu_read_lock();
David Woodhousec3896492005-08-17 14:49:57 +0100600 if (!list_empty(list)) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000601 int word = AUDIT_WORD(ctx->major);
602 int bit = AUDIT_BIT(ctx->major);
David Woodhousec3896492005-08-17 14:49:57 +0100603
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000604 list_for_each_entry_rcu(e, list, list) {
605 if ((e->rule.mask[word] & bit) == bit
606 && audit_filter_rules(tsk, &e->rule, ctx, &state)) {
607 rcu_read_unlock();
608 return state;
609 }
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612 rcu_read_unlock();
613 return AUDIT_BUILD_CONTEXT;
614}
615
David Woodhouse5bb289b2005-06-24 14:14:05 +0100616static int audit_filter_user_rules(struct netlink_skb_parms *cb,
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000617 struct audit_rule *rule,
618 enum audit_state *state)
David Woodhouse0f45aa12005-06-19 19:35:50 +0100619{
David Woodhouse5bb289b2005-06-24 14:14:05 +0100620 int i;
621
622 for (i = 0; i < rule->field_count; i++) {
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000623 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
624 u32 op = rule->fields[i] & AUDIT_OPERATORS;
David Woodhouse5bb289b2005-06-24 14:14:05 +0100625 u32 value = rule->values[i];
626 int result = 0;
627
628 switch (field) {
629 case AUDIT_PID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000630 result = audit_comparator(cb->creds.pid, op, value);
David Woodhouse5bb289b2005-06-24 14:14:05 +0100631 break;
632 case AUDIT_UID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000633 result = audit_comparator(cb->creds.uid, op, value);
David Woodhouse5bb289b2005-06-24 14:14:05 +0100634 break;
635 case AUDIT_GID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000636 result = audit_comparator(cb->creds.gid, op, value);
David Woodhouse5bb289b2005-06-24 14:14:05 +0100637 break;
638 case AUDIT_LOGINUID:
Dustin Kirklandb63862f2005-11-03 15:41:46 +0000639 result = audit_comparator(cb->loginuid, op, value);
David Woodhouse5bb289b2005-06-24 14:14:05 +0100640 break;
641 }
642
David Woodhouse5bb289b2005-06-24 14:14:05 +0100643 if (!result)
644 return 0;
645 }
646 switch (rule->action) {
647 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
648 case AUDIT_POSSIBLE: *state = AUDIT_BUILD_CONTEXT; break;
649 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
650 }
651 return 1;
652}
653
654int audit_filter_user(struct netlink_skb_parms *cb, int type)
655{
David Woodhouse0f45aa12005-06-19 19:35:50 +0100656 struct audit_entry *e;
657 enum audit_state state;
David Woodhouse4a4cd632005-06-22 14:56:47 +0100658 int ret = 1;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100659
660 rcu_read_lock();
661 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_USER], list) {
David Woodhouse5bb289b2005-06-24 14:14:05 +0100662 if (audit_filter_user_rules(cb, &e->rule, &state)) {
David Woodhouse4a4cd632005-06-22 14:56:47 +0100663 if (state == AUDIT_DISABLED)
664 ret = 0;
665 break;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100666 }
667 }
668 rcu_read_unlock();
David Woodhouse4a4cd632005-06-22 14:56:47 +0100669
David Woodhouse993e2d42005-06-24 08:21:49 +0100670 return ret; /* Audit by default */
David Woodhouse0f45aa12005-06-19 19:35:50 +0100671}
672
Dustin Kirklandc8edc802005-11-03 16:12:36 +0000673int audit_filter_type(int type)
674{
675 struct audit_entry *e;
676 int result = 0;
677
678 rcu_read_lock();
679 if (list_empty(&audit_filter_list[AUDIT_FILTER_TYPE]))
680 goto unlock_and_return;
681
682 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TYPE],
683 list) {
684 struct audit_rule *rule = &e->rule;
685 int i;
686 for (i = 0; i < rule->field_count; i++) {
687 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
688 u32 op = rule->fields[i] & AUDIT_OPERATORS;
689 u32 value = rule->values[i];
690 if ( field == AUDIT_MSGTYPE ) {
691 result = audit_comparator(type, op, value);
692 if (!result)
693 break;
694 }
695 }
696 if (result)
697 goto unlock_and_return;
698 }
699unlock_and_return:
700 rcu_read_unlock();
701 return result;
702}
703
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/* This should be called with task_lock() held. */
706static inline struct audit_context *audit_get_context(struct task_struct *tsk,
707 int return_valid,
708 int return_code)
709{
710 struct audit_context *context = tsk->audit_context;
711
712 if (likely(!context))
713 return NULL;
714 context->return_valid = return_valid;
715 context->return_code = return_code;
716
David Woodhouse21af6c42005-07-02 14:10:46 +0100717 if (context->in_syscall && !context->auditable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 enum audit_state state;
David Woodhouse0f45aa12005-06-19 19:35:50 +0100719 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (state == AUDIT_RECORD_CONTEXT)
721 context->auditable = 1;
722 }
723
724 context->pid = tsk->pid;
725 context->uid = tsk->uid;
726 context->gid = tsk->gid;
727 context->euid = tsk->euid;
728 context->suid = tsk->suid;
729 context->fsuid = tsk->fsuid;
730 context->egid = tsk->egid;
731 context->sgid = tsk->sgid;
732 context->fsgid = tsk->fsgid;
733 context->personality = tsk->personality;
734 tsk->audit_context = NULL;
735 return context;
736}
737
738static inline void audit_free_names(struct audit_context *context)
739{
740 int i;
741
742#if AUDIT_DEBUG == 2
743 if (context->auditable
744 ||context->put_count + context->ino_count != context->name_count) {
Amy Griffis73241cc2005-11-03 16:00:25 +0000745 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 " name_count=%d put_count=%d"
747 " ino_count=%d [NOT freeing]\n",
Amy Griffis73241cc2005-11-03 16:00:25 +0000748 __FILE__, __LINE__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 context->serial, context->major, context->in_syscall,
750 context->name_count, context->put_count,
751 context->ino_count);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000752 for (i = 0; i < context->name_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 printk(KERN_ERR "names[%d] = %p = %s\n", i,
754 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +0000755 context->names[i].name ?: "(null)");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 dump_stack();
758 return;
759 }
760#endif
761#if AUDIT_DEBUG
762 context->put_count = 0;
763 context->ino_count = 0;
764#endif
765
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000766 for (i = 0; i < context->name_count; i++) {
767 char *p = context->names[i].ctx;
768 context->names[i].ctx = NULL;
769 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (context->names[i].name)
771 __putname(context->names[i].name);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 context->name_count = 0;
David Woodhouse8f37d472005-05-27 12:17:28 +0100774 if (context->pwd)
775 dput(context->pwd);
776 if (context->pwdmnt)
777 mntput(context->pwdmnt);
778 context->pwd = NULL;
779 context->pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782static inline void audit_free_aux(struct audit_context *context)
783{
784 struct audit_aux_data *aux;
785
786 while ((aux = context->aux)) {
Stephen Smalley01116102005-05-21 00:15:52 +0100787 if (aux->type == AUDIT_AVC_PATH) {
788 struct audit_aux_data_path *axi = (void *)aux;
789 dput(axi->dentry);
790 mntput(axi->mnt);
791 }
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000792 if ( aux->type == AUDIT_IPC ) {
793 struct audit_aux_data_ipcctl *axi = (void *)aux;
794 if (axi->ctx)
795 kfree(axi->ctx);
796 }
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 context->aux = aux->next;
799 kfree(aux);
800 }
801}
802
803static inline void audit_zero_context(struct audit_context *context,
804 enum audit_state state)
805{
806 uid_t loginuid = context->loginuid;
807
808 memset(context, 0, sizeof(*context));
809 context->state = state;
810 context->loginuid = loginuid;
811}
812
813static inline struct audit_context *audit_alloc_context(enum audit_state state)
814{
815 struct audit_context *context;
816
817 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
818 return NULL;
819 audit_zero_context(context, state);
820 return context;
821}
822
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700823/**
824 * audit_alloc - allocate an audit context block for a task
825 * @tsk: task
826 *
827 * Filter on the task information and allocate a per-task audit context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * if necessary. Doing so turns on system call auditing for the
829 * specified task. This is called from copy_process, so no lock is
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700830 * needed.
831 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832int audit_alloc(struct task_struct *tsk)
833{
834 struct audit_context *context;
835 enum audit_state state;
836
837 if (likely(!audit_enabled))
838 return 0; /* Return if not auditing. */
839
840 state = audit_filter_task(tsk);
841 if (likely(state == AUDIT_DISABLED))
842 return 0;
843
844 if (!(context = audit_alloc_context(state))) {
845 audit_log_lost("out of memory in audit_alloc");
846 return -ENOMEM;
847 }
848
849 /* Preserve login uid */
850 context->loginuid = -1;
851 if (current->audit_context)
852 context->loginuid = current->audit_context->loginuid;
853
854 tsk->audit_context = context;
855 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
856 return 0;
857}
858
859static inline void audit_free_context(struct audit_context *context)
860{
861 struct audit_context *previous;
862 int count = 0;
863
864 do {
865 previous = context->previous;
866 if (previous || (count && count < 10)) {
867 ++count;
868 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
869 " freeing multiple contexts (%d)\n",
870 context->serial, context->major,
871 context->name_count, count);
872 }
873 audit_free_names(context);
874 audit_free_aux(context);
875 kfree(context);
876 context = previous;
877 } while (context);
878 if (count >= 10)
879 printk(KERN_ERR "audit: freed %d contexts\n", count);
880}
881
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000882static void audit_log_task_context(struct audit_buffer *ab, gfp_t gfp_mask)
883{
884 char *ctx = NULL;
885 ssize_t len = 0;
886
887 len = security_getprocattr(current, "current", NULL, 0);
888 if (len < 0) {
889 if (len != -EINVAL)
890 goto error_path;
891 return;
892 }
893
894 ctx = kmalloc(len, gfp_mask);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000895 if (!ctx)
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000896 goto error_path;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000897
898 len = security_getprocattr(current, "current", ctx, len);
899 if (len < 0 )
900 goto error_path;
901
902 audit_log_format(ab, " subj=%s", ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000903 return;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000904
905error_path:
906 if (ctx)
907 kfree(ctx);
Dustin Kirkland7306a0b2005-11-16 15:53:13 +0000908 audit_panic("error in audit_log_task_context");
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000909 return;
910}
911
912static void audit_log_task_info(struct audit_buffer *ab, gfp_t gfp_mask)
Stephen Smalley219f0812005-04-18 10:47:35 -0700913{
914 char name[sizeof(current->comm)];
915 struct mm_struct *mm = current->mm;
916 struct vm_area_struct *vma;
917
918 get_task_comm(name, current);
David Woodhouse99e45ee2005-05-23 21:57:41 +0100919 audit_log_format(ab, " comm=");
920 audit_log_untrustedstring(ab, name);
Stephen Smalley219f0812005-04-18 10:47:35 -0700921
922 if (!mm)
923 return;
924
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000925 /*
926 * this is brittle; all callers that pass GFP_ATOMIC will have
927 * NULL current->mm and we won't get here.
928 */
Stephen Smalley219f0812005-04-18 10:47:35 -0700929 down_read(&mm->mmap_sem);
930 vma = mm->mmap;
931 while (vma) {
932 if ((vma->vm_flags & VM_EXECUTABLE) &&
933 vma->vm_file) {
934 audit_log_d_path(ab, "exe=",
935 vma->vm_file->f_dentry,
936 vma->vm_file->f_vfsmnt);
937 break;
938 }
939 vma = vma->vm_next;
940 }
941 up_read(&mm->mmap_sem);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000942 audit_log_task_context(ab, gfp_mask);
Stephen Smalley219f0812005-04-18 10:47:35 -0700943}
944
Al Viro9796fdd2005-10-21 03:22:03 -0400945static void audit_log_exit(struct audit_context *context, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 int i;
948 struct audit_buffer *ab;
David Woodhouse7551ced2005-05-26 12:04:57 +0100949 struct audit_aux_data *aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
David Woodhousef5561962005-07-13 22:47:07 +0100951 ab = audit_log_start(context, gfp_mask, AUDIT_SYSCALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (!ab)
953 return; /* audit_panic has been called */
David Woodhousebccf6ae2005-05-23 21:35:28 +0100954 audit_log_format(ab, "arch=%x syscall=%d",
955 context->arch, context->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (context->personality != PER_LINUX)
957 audit_log_format(ab, " per=%lx", context->personality);
958 if (context->return_valid)
2fd6f582005-04-29 16:08:28 +0100959 audit_log_format(ab, " success=%s exit=%ld",
960 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
961 context->return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 audit_log_format(ab,
963 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
Steve Grubb326e9c82005-05-21 00:22:31 +0100964 " pid=%d auid=%u uid=%u gid=%u"
965 " euid=%u suid=%u fsuid=%u"
966 " egid=%u sgid=%u fsgid=%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 context->argv[0],
968 context->argv[1],
969 context->argv[2],
970 context->argv[3],
971 context->name_count,
972 context->pid,
973 context->loginuid,
974 context->uid,
975 context->gid,
976 context->euid, context->suid, context->fsuid,
977 context->egid, context->sgid, context->fsgid);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000978 audit_log_task_info(ab, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
David Woodhouse7551ced2005-05-26 12:04:57 +0100981 for (aux = context->aux; aux; aux = aux->next) {
Steve Grubbc0404992005-05-13 18:17:42 +0100982
Al Viroef20c8c2006-02-18 15:41:50 -0500983 ab = audit_log_start(context, gfp_mask, aux->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!ab)
985 continue; /* audit_panic has been called */
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 switch (aux->type) {
Steve Grubbc0404992005-05-13 18:17:42 +0100988 case AUDIT_IPC: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 struct audit_aux_data_ipcctl *axi = (void *)aux;
990 audit_log_format(ab,
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000991 " qbytes=%lx iuid=%u igid=%u mode=%x obj=%s",
992 axi->qbytes, axi->uid, axi->gid, axi->mode, axi->ctx);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100993 break; }
994
995 case AUDIT_SOCKETCALL: {
996 int i;
997 struct audit_aux_data_socketcall *axs = (void *)aux;
998 audit_log_format(ab, "nargs=%d", axs->nargs);
999 for (i=0; i<axs->nargs; i++)
1000 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
1001 break; }
1002
1003 case AUDIT_SOCKADDR: {
1004 struct audit_aux_data_sockaddr *axs = (void *)aux;
1005
1006 audit_log_format(ab, "saddr=");
1007 audit_log_hex(ab, axs->a, axs->len);
1008 break; }
Stephen Smalley01116102005-05-21 00:15:52 +01001009
1010 case AUDIT_AVC_PATH: {
1011 struct audit_aux_data_path *axi = (void *)aux;
1012 audit_log_d_path(ab, "path=", axi->dentry, axi->mnt);
Stephen Smalley01116102005-05-21 00:15:52 +01001013 break; }
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 audit_log_end(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
David Woodhouse8f37d472005-05-27 12:17:28 +01001019 if (context->pwd && context->pwdmnt) {
Al Viroef20c8c2006-02-18 15:41:50 -05001020 ab = audit_log_start(context, gfp_mask, AUDIT_CWD);
David Woodhouse8f37d472005-05-27 12:17:28 +01001021 if (ab) {
1022 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
1023 audit_log_end(ab);
1024 }
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 for (i = 0; i < context->name_count; i++) {
Amy Griffis73241cc2005-11-03 16:00:25 +00001027 unsigned long ino = context->names[i].ino;
1028 unsigned long pino = context->names[i].pino;
1029
Al Viroef20c8c2006-02-18 15:41:50 -05001030 ab = audit_log_start(context, gfp_mask, AUDIT_PATH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (!ab)
1032 continue; /* audit_panic has been called */
David Woodhouse8f37d472005-05-27 12:17:28 +01001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 audit_log_format(ab, "item=%d", i);
Amy Griffis73241cc2005-11-03 16:00:25 +00001035
1036 audit_log_format(ab, " name=");
1037 if (context->names[i].name)
83c7d092005-04-29 15:54:44 +01001038 audit_log_untrustedstring(ab, context->names[i].name);
Amy Griffis73241cc2005-11-03 16:00:25 +00001039 else
1040 audit_log_format(ab, "(null)");
1041
1042 if (pino != (unsigned long)-1)
1043 audit_log_format(ab, " parent=%lu", pino);
1044 if (ino != (unsigned long)-1)
1045 audit_log_format(ab, " inode=%lu", ino);
1046 if ((pino != (unsigned long)-1) || (ino != (unsigned long)-1))
1047 audit_log_format(ab, " dev=%02x:%02x mode=%#o"
1048 " ouid=%u ogid=%u rdev=%02x:%02x",
1049 MAJOR(context->names[i].dev),
1050 MINOR(context->names[i].dev),
1051 context->names[i].mode,
1052 context->names[i].uid,
1053 context->names[i].gid,
1054 MAJOR(context->names[i].rdev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 MINOR(context->names[i].rdev));
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001056 if (context->names[i].ctx) {
1057 audit_log_format(ab, " obj=%s",
1058 context->names[i].ctx);
1059 }
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 audit_log_end(ab);
1062 }
1063}
1064
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001065/**
1066 * audit_free - free a per-task audit context
1067 * @tsk: task whose audit context block to free
1068 *
1069 * Called from copy_process and __put_task_struct.
1070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071void audit_free(struct task_struct *tsk)
1072{
1073 struct audit_context *context;
1074
1075 task_lock(tsk);
1076 context = audit_get_context(tsk, 0, 0);
1077 task_unlock(tsk);
1078
1079 if (likely(!context))
1080 return;
1081
1082 /* Check for system calls that do not go through the exit
David Woodhousef5561962005-07-13 22:47:07 +01001083 * function (e.g., exit_group), then free context block.
1084 * We use GFP_ATOMIC here because we might be doing this
1085 * in the context of the idle thread */
David Woodhousef7056d62005-06-20 16:07:33 +01001086 if (context->in_syscall && context->auditable)
David Woodhousef5561962005-07-13 22:47:07 +01001087 audit_log_exit(context, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 audit_free_context(context);
1090}
1091
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001092/**
1093 * audit_syscall_entry - fill in an audit record at syscall entry
1094 * @tsk: task being audited
1095 * @arch: architecture type
1096 * @major: major syscall type (function)
1097 * @a1: additional syscall register 1
1098 * @a2: additional syscall register 2
1099 * @a3: additional syscall register 3
1100 * @a4: additional syscall register 4
1101 *
1102 * Fill in audit context at syscall entry. This only happens if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * audit context was created when the task was created and the state or
1104 * filters demand the audit context be built. If the state from the
1105 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1106 * then the record will be written at syscall exit time (otherwise, it
1107 * will only be written if another part of the kernel requests that it
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001108 * be written).
1109 */
2fd6f582005-04-29 16:08:28 +01001110void audit_syscall_entry(struct task_struct *tsk, int arch, int major,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 unsigned long a1, unsigned long a2,
1112 unsigned long a3, unsigned long a4)
1113{
1114 struct audit_context *context = tsk->audit_context;
1115 enum audit_state state;
1116
1117 BUG_ON(!context);
1118
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001119 /*
1120 * This happens only on certain architectures that make system
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 * calls in kernel_thread via the entry.S interface, instead of
1122 * with direct calls. (If you are porting to a new
1123 * architecture, hitting this condition can indicate that you
1124 * got the _exit/_leave calls backward in entry.S.)
1125 *
1126 * i386 no
1127 * x86_64 no
1128 * ppc64 yes (see arch/ppc64/kernel/misc.S)
1129 *
1130 * This also happens with vm86 emulation in a non-nested manner
1131 * (entries without exits), so this case must be caught.
1132 */
1133 if (context->in_syscall) {
1134 struct audit_context *newctx;
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136#if AUDIT_DEBUG
1137 printk(KERN_ERR
1138 "audit(:%d) pid=%d in syscall=%d;"
1139 " entering syscall=%d\n",
1140 context->serial, tsk->pid, context->major, major);
1141#endif
1142 newctx = audit_alloc_context(context->state);
1143 if (newctx) {
1144 newctx->previous = context;
1145 context = newctx;
1146 tsk->audit_context = newctx;
1147 } else {
1148 /* If we can't alloc a new context, the best we
1149 * can do is to leak memory (any pending putname
1150 * will be lost). The only other alternative is
1151 * to abandon auditing. */
1152 audit_zero_context(context, context->state);
1153 }
1154 }
1155 BUG_ON(context->in_syscall || context->name_count);
1156
1157 if (!audit_enabled)
1158 return;
1159
2fd6f582005-04-29 16:08:28 +01001160 context->arch = arch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 context->major = major;
1162 context->argv[0] = a1;
1163 context->argv[1] = a2;
1164 context->argv[2] = a3;
1165 context->argv[3] = a4;
1166
1167 state = context->state;
1168 if (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT)
David Woodhouse0f45aa12005-06-19 19:35:50 +01001169 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (likely(state == AUDIT_DISABLED))
1171 return;
1172
David Woodhousece625a82005-07-18 14:24:46 -04001173 context->serial = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 context->ctime = CURRENT_TIME;
1175 context->in_syscall = 1;
1176 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
1177}
1178
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001179/**
1180 * audit_syscall_exit - deallocate audit context after a system call
1181 * @tsk: task being audited
1182 * @valid: success/failure flag
1183 * @return_code: syscall return value
1184 *
1185 * Tear down after system call. If the audit context has been marked as
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1187 * filtering, or because some other part of the kernel write an audit
1188 * message), then write out the syscall information. In call cases,
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001189 * free the names stored from getname().
1190 */
2fd6f582005-04-29 16:08:28 +01001191void audit_syscall_exit(struct task_struct *tsk, int valid, long return_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 struct audit_context *context;
1194
1195 get_task_struct(tsk);
1196 task_lock(tsk);
2fd6f582005-04-29 16:08:28 +01001197 context = audit_get_context(tsk, valid, return_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 task_unlock(tsk);
1199
1200 /* Not having a context here is ok, since the parent may have
1201 * called __put_task_struct. */
1202 if (likely(!context))
David Woodhouse413a1c72005-08-17 14:45:55 +01001203 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
David Woodhousef7056d62005-06-20 16:07:33 +01001205 if (context->in_syscall && context->auditable)
David Woodhousef5561962005-07-13 22:47:07 +01001206 audit_log_exit(context, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 context->in_syscall = 0;
1209 context->auditable = 0;
2fd6f582005-04-29 16:08:28 +01001210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (context->previous) {
1212 struct audit_context *new_context = context->previous;
1213 context->previous = NULL;
1214 audit_free_context(context);
1215 tsk->audit_context = new_context;
1216 } else {
1217 audit_free_names(context);
1218 audit_free_aux(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 tsk->audit_context = context;
1220 }
David Woodhouse413a1c72005-08-17 14:45:55 +01001221 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 put_task_struct(tsk);
1223}
1224
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001225/**
1226 * audit_getname - add a name to the list
1227 * @name: name to add
1228 *
1229 * Add a name to the list of audit names for this context.
1230 * Called from fs/namei.c:getname().
1231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232void audit_getname(const char *name)
1233{
1234 struct audit_context *context = current->audit_context;
1235
1236 if (!context || IS_ERR(name) || !name)
1237 return;
1238
1239 if (!context->in_syscall) {
1240#if AUDIT_DEBUG == 2
1241 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1242 __FILE__, __LINE__, context->serial, name);
1243 dump_stack();
1244#endif
1245 return;
1246 }
1247 BUG_ON(context->name_count >= AUDIT_NAMES);
1248 context->names[context->name_count].name = name;
1249 context->names[context->name_count].ino = (unsigned long)-1;
1250 ++context->name_count;
David Woodhouse8f37d472005-05-27 12:17:28 +01001251 if (!context->pwd) {
1252 read_lock(&current->fs->lock);
1253 context->pwd = dget(current->fs->pwd);
1254 context->pwdmnt = mntget(current->fs->pwdmnt);
1255 read_unlock(&current->fs->lock);
1256 }
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001260/* audit_putname - intercept a putname request
1261 * @name: name to intercept and delay for putname
1262 *
1263 * If we have stored the name from getname in the audit context,
1264 * then we delay the putname until syscall exit.
1265 * Called from include/linux/fs.h:putname().
1266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267void audit_putname(const char *name)
1268{
1269 struct audit_context *context = current->audit_context;
1270
1271 BUG_ON(!context);
1272 if (!context->in_syscall) {
1273#if AUDIT_DEBUG == 2
1274 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1275 __FILE__, __LINE__, context->serial, name);
1276 if (context->name_count) {
1277 int i;
1278 for (i = 0; i < context->name_count; i++)
1279 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1280 context->names[i].name,
Amy Griffis73241cc2005-11-03 16:00:25 +00001281 context->names[i].name ?: "(null)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283#endif
1284 __putname(name);
1285 }
1286#if AUDIT_DEBUG
1287 else {
1288 ++context->put_count;
1289 if (context->put_count > context->name_count) {
1290 printk(KERN_ERR "%s:%d(:%d): major=%d"
1291 " in_syscall=%d putname(%p) name_count=%d"
1292 " put_count=%d\n",
1293 __FILE__, __LINE__,
1294 context->serial, context->major,
1295 context->in_syscall, name, context->name_count,
1296 context->put_count);
1297 dump_stack();
1298 }
1299 }
1300#endif
1301}
1302
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001303void audit_inode_context(int idx, const struct inode *inode)
1304{
1305 struct audit_context *context = current->audit_context;
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001306 const char *suffix = security_inode_xattr_getsuffix();
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001307 char *ctx = NULL;
1308 int len = 0;
1309
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001310 if (!suffix)
1311 goto ret;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001312
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001313 len = security_inode_getsecurity(inode, suffix, NULL, 0, 0);
1314 if (len == -EOPNOTSUPP)
1315 goto ret;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001316 if (len < 0)
1317 goto error_path;
1318
1319 ctx = kmalloc(len, GFP_KERNEL);
1320 if (!ctx)
1321 goto error_path;
1322
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001323 len = security_inode_getsecurity(inode, suffix, ctx, len, 0);
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001324 if (len < 0)
1325 goto error_path;
1326
1327 kfree(context->names[idx].ctx);
1328 context->names[idx].ctx = ctx;
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001329 goto ret;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001330
1331error_path:
1332 if (ctx)
1333 kfree(ctx);
1334 audit_panic("error in audit_inode_context");
Dustin Kirkland7306a0b2005-11-16 15:53:13 +00001335ret:
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001336 return;
1337}
1338
1339
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001340/**
1341 * audit_inode - store the inode and device from a lookup
1342 * @name: name being audited
1343 * @inode: inode being audited
1344 * @flags: lookup flags (as used in path_lookup())
1345 *
1346 * Called from fs/namei.c:path_lookup().
1347 */
Amy Griffis73241cc2005-11-03 16:00:25 +00001348void __audit_inode(const char *name, const struct inode *inode, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 int idx;
1351 struct audit_context *context = current->audit_context;
1352
1353 if (!context->in_syscall)
1354 return;
1355 if (context->name_count
1356 && context->names[context->name_count-1].name
1357 && context->names[context->name_count-1].name == name)
1358 idx = context->name_count - 1;
1359 else if (context->name_count > 1
1360 && context->names[context->name_count-2].name
1361 && context->names[context->name_count-2].name == name)
1362 idx = context->name_count - 2;
1363 else {
1364 /* FIXME: how much do we care about inodes that have no
1365 * associated name? */
1366 if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED)
1367 return;
1368 idx = context->name_count++;
1369 context->names[idx].name = NULL;
1370#if AUDIT_DEBUG
1371 ++context->ino_count;
1372#endif
1373 }
David Woodhouseae7b9612005-06-20 16:11:05 +01001374 context->names[idx].dev = inode->i_sb->s_dev;
1375 context->names[idx].mode = inode->i_mode;
1376 context->names[idx].uid = inode->i_uid;
1377 context->names[idx].gid = inode->i_gid;
1378 context->names[idx].rdev = inode->i_rdev;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001379 audit_inode_context(idx, inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00001380 if ((flags & LOOKUP_PARENT) && (strcmp(name, "/") != 0) &&
1381 (strcmp(name, ".") != 0)) {
1382 context->names[idx].ino = (unsigned long)-1;
1383 context->names[idx].pino = inode->i_ino;
1384 } else {
1385 context->names[idx].ino = inode->i_ino;
1386 context->names[idx].pino = (unsigned long)-1;
1387 }
1388}
1389
1390/**
1391 * audit_inode_child - collect inode info for created/removed objects
1392 * @dname: inode's dentry name
1393 * @inode: inode being audited
1394 * @pino: inode number of dentry parent
1395 *
1396 * For syscalls that create or remove filesystem objects, audit_inode
1397 * can only collect information for the filesystem object's parent.
1398 * This call updates the audit context with the child's information.
1399 * Syscalls that create a new filesystem object must be hooked after
1400 * the object is created. Syscalls that remove a filesystem object
1401 * must be hooked prior, in order to capture the target inode during
1402 * unsuccessful attempts.
1403 */
1404void __audit_inode_child(const char *dname, const struct inode *inode,
1405 unsigned long pino)
1406{
1407 int idx;
1408 struct audit_context *context = current->audit_context;
1409
1410 if (!context->in_syscall)
1411 return;
1412
1413 /* determine matching parent */
1414 if (dname)
1415 for (idx = 0; idx < context->name_count; idx++)
1416 if (context->names[idx].pino == pino) {
1417 const char *n;
1418 const char *name = context->names[idx].name;
1419 int dlen = strlen(dname);
1420 int nlen = name ? strlen(name) : 0;
1421
1422 if (nlen < dlen)
1423 continue;
1424
1425 /* disregard trailing slashes */
1426 n = name + nlen - 1;
1427 while ((*n == '/') && (n > name))
1428 n--;
1429
1430 /* find last path component */
1431 n = n - dlen + 1;
1432 if (n < name)
1433 continue;
1434 else if (n > name) {
1435 if (*--n != '/')
1436 continue;
1437 else
1438 n++;
1439 }
1440
1441 if (strncmp(n, dname, dlen) == 0)
1442 goto update_context;
1443 }
1444
1445 /* catch-all in case match not found */
1446 idx = context->name_count++;
1447 context->names[idx].name = NULL;
1448 context->names[idx].pino = pino;
1449#if AUDIT_DEBUG
1450 context->ino_count++;
1451#endif
1452
1453update_context:
1454 if (inode) {
1455 context->names[idx].ino = inode->i_ino;
1456 context->names[idx].dev = inode->i_sb->s_dev;
1457 context->names[idx].mode = inode->i_mode;
1458 context->names[idx].uid = inode->i_uid;
1459 context->names[idx].gid = inode->i_gid;
1460 context->names[idx].rdev = inode->i_rdev;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001461 audit_inode_context(idx, inode);
Amy Griffis73241cc2005-11-03 16:00:25 +00001462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001465/**
1466 * auditsc_get_stamp - get local copies of audit_context values
1467 * @ctx: audit_context for the task
1468 * @t: timespec to store time recorded in the audit_context
1469 * @serial: serial value that is recorded in the audit_context
1470 *
1471 * Also sets the context as auditable.
1472 */
David Woodhousebfb44962005-05-21 21:08:09 +01001473void auditsc_get_stamp(struct audit_context *ctx,
1474 struct timespec *t, unsigned int *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
David Woodhousece625a82005-07-18 14:24:46 -04001476 if (!ctx->serial)
1477 ctx->serial = audit_serial();
David Woodhousebfb44962005-05-21 21:08:09 +01001478 t->tv_sec = ctx->ctime.tv_sec;
1479 t->tv_nsec = ctx->ctime.tv_nsec;
1480 *serial = ctx->serial;
1481 ctx->auditable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001484/**
1485 * audit_set_loginuid - set a task's audit_context loginuid
1486 * @task: task whose audit context is being modified
1487 * @loginuid: loginuid value
1488 *
1489 * Returns 0.
1490 *
1491 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1492 */
Steve Grubb456be6c2005-04-29 17:30:07 +01001493int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Steve Grubb456be6c2005-04-29 17:30:07 +01001495 if (task->audit_context) {
Steve Grubbc0404992005-05-13 18:17:42 +01001496 struct audit_buffer *ab;
1497
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001498 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
Steve Grubbc0404992005-05-13 18:17:42 +01001499 if (ab) {
1500 audit_log_format(ab, "login pid=%d uid=%u "
Steve Grubb326e9c82005-05-21 00:22:31 +01001501 "old auid=%u new auid=%u",
Steve Grubbc0404992005-05-13 18:17:42 +01001502 task->pid, task->uid,
1503 task->audit_context->loginuid, loginuid);
1504 audit_log_end(ab);
1505 }
Steve Grubb456be6c2005-04-29 17:30:07 +01001506 task->audit_context->loginuid = loginuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
1508 return 0;
1509}
1510
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001511/**
1512 * audit_get_loginuid - get the loginuid for an audit_context
1513 * @ctx: the audit_context
1514 *
1515 * Returns the context's loginuid or -1 if @ctx is NULL.
1516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517uid_t audit_get_loginuid(struct audit_context *ctx)
1518{
1519 return ctx ? ctx->loginuid : -1;
1520}
1521
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001522static char *audit_ipc_context(struct kern_ipc_perm *ipcp)
1523{
1524 struct audit_context *context = current->audit_context;
1525 char *ctx = NULL;
1526 int len = 0;
1527
1528 if (likely(!context))
1529 return NULL;
1530
1531 len = security_ipc_getsecurity(ipcp, NULL, 0);
1532 if (len == -EOPNOTSUPP)
1533 goto ret;
1534 if (len < 0)
1535 goto error_path;
1536
1537 ctx = kmalloc(len, GFP_ATOMIC);
1538 if (!ctx)
1539 goto error_path;
1540
1541 len = security_ipc_getsecurity(ipcp, ctx, len);
1542 if (len < 0)
1543 goto error_path;
1544
1545 return ctx;
1546
1547error_path:
1548 kfree(ctx);
1549 audit_panic("error in audit_ipc_context");
1550ret:
1551 return NULL;
1552}
1553
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001554/**
1555 * audit_ipc_perms - record audit data for ipc
1556 * @qbytes: msgq bytes
1557 * @uid: msgq user id
1558 * @gid: msgq group id
1559 * @mode: msgq mode (permissions)
1560 *
1561 * Returns 0 for success or NULL context or < 0 on error.
1562 */
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001563int audit_ipc_perms(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
1565 struct audit_aux_data_ipcctl *ax;
1566 struct audit_context *context = current->audit_context;
1567
1568 if (likely(!context))
1569 return 0;
1570
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001571 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (!ax)
1573 return -ENOMEM;
1574
1575 ax->qbytes = qbytes;
1576 ax->uid = uid;
1577 ax->gid = gid;
1578 ax->mode = mode;
Dustin Kirkland8c8570f2005-11-03 17:15:16 +00001579 ax->ctx = audit_ipc_context(ipcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Steve Grubbc0404992005-05-13 18:17:42 +01001581 ax->d.type = AUDIT_IPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 ax->d.next = context->aux;
1583 context->aux = (void *)ax;
1584 return 0;
1585}
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001586
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001587/**
1588 * audit_socketcall - record audit data for sys_socketcall
1589 * @nargs: number of args
1590 * @args: args array
1591 *
1592 * Returns 0 for success or NULL context or < 0 on error.
1593 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001594int audit_socketcall(int nargs, unsigned long *args)
1595{
1596 struct audit_aux_data_socketcall *ax;
1597 struct audit_context *context = current->audit_context;
1598
1599 if (likely(!context))
1600 return 0;
1601
1602 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1603 if (!ax)
1604 return -ENOMEM;
1605
1606 ax->nargs = nargs;
1607 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1608
1609 ax->d.type = AUDIT_SOCKETCALL;
1610 ax->d.next = context->aux;
1611 context->aux = (void *)ax;
1612 return 0;
1613}
1614
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001615/**
1616 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1617 * @len: data length in user space
1618 * @a: data address in kernel space
1619 *
1620 * Returns 0 for success or NULL context or < 0 on error.
1621 */
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01001622int audit_sockaddr(int len, void *a)
1623{
1624 struct audit_aux_data_sockaddr *ax;
1625 struct audit_context *context = current->audit_context;
1626
1627 if (likely(!context))
1628 return 0;
1629
1630 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1631 if (!ax)
1632 return -ENOMEM;
1633
1634 ax->len = len;
1635 memcpy(ax->a, a, len);
1636
1637 ax->d.type = AUDIT_SOCKADDR;
1638 ax->d.next = context->aux;
1639 context->aux = (void *)ax;
1640 return 0;
1641}
1642
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001643/**
1644 * audit_avc_path - record the granting or denial of permissions
1645 * @dentry: dentry to record
1646 * @mnt: mnt to record
1647 *
1648 * Returns 0 for success or NULL context or < 0 on error.
1649 *
1650 * Called from security/selinux/avc.c::avc_audit()
1651 */
Stephen Smalley01116102005-05-21 00:15:52 +01001652int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt)
1653{
1654 struct audit_aux_data_path *ax;
1655 struct audit_context *context = current->audit_context;
1656
1657 if (likely(!context))
1658 return 0;
1659
1660 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1661 if (!ax)
1662 return -ENOMEM;
1663
1664 ax->dentry = dget(dentry);
1665 ax->mnt = mntget(mnt);
1666
1667 ax->d.type = AUDIT_AVC_PATH;
1668 ax->d.next = context->aux;
1669 context->aux = (void *)ax;
1670 return 0;
1671}
1672
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001673/**
1674 * audit_signal_info - record signal info for shutting down audit subsystem
1675 * @sig: signal value
1676 * @t: task being signaled
1677 *
1678 * If the audit subsystem is being terminated, record the task (pid)
1679 * and uid that is doing that.
1680 */
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001681void audit_signal_info(int sig, struct task_struct *t)
1682{
1683 extern pid_t audit_sig_pid;
1684 extern uid_t audit_sig_uid;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001685
David Woodhouse582edda2005-07-13 22:39:34 +01001686 if (unlikely(audit_pid && t->tgid == audit_pid)) {
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001687 if (sig == SIGTERM || sig == SIGHUP) {
1688 struct audit_context *ctx = current->audit_context;
1689 audit_sig_pid = current->pid;
1690 if (ctx)
1691 audit_sig_uid = ctx->loginuid;
1692 else
1693 audit_sig_uid = current->uid;
1694 }
1695 }
1696}