]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/auditsc.c
[PATCH] Fix IA64 success/failure indication in syscall auditing.
[net-next-2.6.git] / kernel / auditsc.c
CommitLineData
85c8721f 1/* auditsc.c -- System-call auditing support
1da177e4
LT
2 * Handles all system-call specific auditing features.
3 *
4 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
73241ccc 5 * Copyright 2005 Hewlett-Packard Development Company, L.P.
b63862f4 6 * Copyright (C) 2005 IBM Corporation
1da177e4
LT
7 * 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 *
b63862f4
DK
32 * The support of additional filter rules compares (>, <, >=, <=) was
33 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
34 *
73241ccc
AG
35 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
36 * filesystem information.
8c8570fb
DK
37 *
38 * Subject and object context labeling support added by <danjones@us.ibm.com>
39 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
1da177e4
LT
40 */
41
42#include <linux/init.h>
1da177e4 43#include <asm/types.h>
715b49ef 44#include <asm/atomic.h>
73241ccc
AG
45#include <asm/types.h>
46#include <linux/fs.h>
47#include <linux/namei.h>
1da177e4
LT
48#include <linux/mm.h>
49#include <linux/module.h>
01116105 50#include <linux/mount.h>
3ec3b2fb 51#include <linux/socket.h>
1da177e4
LT
52#include <linux/audit.h>
53#include <linux/personality.h>
54#include <linux/time.h>
f6a789d1 55#include <linux/kthread.h>
5bb289b5 56#include <linux/netlink.h>
f5561964 57#include <linux/compiler.h>
1da177e4 58#include <asm/unistd.h>
8c8570fb 59#include <linux/security.h>
1da177e4
LT
60
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;
73241ccc 110 unsigned long pino;
1da177e4
LT
111 dev_t dev;
112 umode_t mode;
113 uid_t uid;
114 gid_t gid;
115 dev_t rdev;
8c8570fb 116 char *ctx;
1da177e4
LT
117};
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;
8c8570fb 133 char *ctx;
1da177e4
LT
134};
135
3ec3b2fb
DW
136struct 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
01116105
SS
148struct audit_aux_data_path {
149 struct audit_aux_data d;
150 struct dentry *dentry;
151 struct vfsmount *mnt;
152};
1da177e4
LT
153
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 */
2fd6f58b 164 long return_code;/* syscall return code */
1da177e4
LT
165 int auditable; /* 1 if record should be written */
166 int name_count;
167 struct audit_names names[AUDIT_NAMES];
8f37d47c
DW
168 struct dentry * pwd;
169 struct vfsmount * pwdmnt;
1da177e4
LT
170 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;
2fd6f58b 178 int arch;
1da177e4
LT
179
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. */
0f45aa18
DW
190static 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]),
c8edc80c
DK
196 LIST_HEAD_INIT(audit_filter_list[5]),
197#if AUDIT_NR_FILTERS != 6
0f45aa18
DW
198#error Fix audit_filter_list initialiser
199#endif
200};
1da177e4
LT
201
202struct audit_entry {
203 struct list_head list;
204 struct rcu_head rcu;
205 struct audit_rule rule;
206};
207
7ca00264
DW
208extern int audit_pid;
209
3c789a19
AG
210/* 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
1da177e4 236/* Check to see if two rules are identical. It is called from
3c789a19 237 * audit_add_rule during AUDIT_ADD and
1da177e4 238 * audit_del_rule during AUDIT_DEL. */
3c789a19 239static inline int audit_compare_rule(struct audit_rule *a, struct audit_rule *b)
1da177e4
LT
240{
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. */
3c789a19 268static inline int audit_add_rule(struct audit_rule *rule,
0f45aa18 269 struct list_head *list)
1da177e4 270{
3c789a19 271 struct audit_entry *entry;
b63862f4 272 int i;
3c789a19
AG
273
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
b63862f4
DK
282 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
3c789a19
AG
292 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
0f45aa18
DW
299 if (entry->rule.flags & AUDIT_FILTER_PREPEND) {
300 entry->rule.flags &= ~AUDIT_FILTER_PREPEND;
1da177e4
LT
301 list_add_rcu(&entry->list, list);
302 } else {
303 list_add_tail_rcu(&entry->list, list);
304 }
3c789a19
AG
305
306 return 0;
1da177e4
LT
307}
308
3c789a19 309static inline void audit_free_rule(struct rcu_head *head)
1da177e4
LT
310{
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 }
0f45aa18 332 return -ENOENT; /* No matching rule */
1da177e4
LT
333}
334
f6a789d1
DW
335static 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
b0dd25a8
RD
361/**
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 */
c94c257c
SH
370int audit_receive_filter(int type, int pid, int uid, int seq, void *data,
371 uid_t loginuid)
1da177e4 372{
f6a789d1
DW
373 struct task_struct *tsk;
374 int *dest;
1da177e4 375 int err = 0;
0f45aa18 376 unsigned listnr;
1da177e4
LT
377
378 switch (type) {
379 case AUDIT_LIST:
f6a789d1
DW
380 /* 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);
0f45aa18 396 }
1da177e4
LT
397 break;
398 case AUDIT_ADD:
3c789a19
AG
399 listnr =((struct audit_rule *)data)->flags & ~AUDIT_FILTER_PREPEND;
400 if (listnr >= AUDIT_NR_FILTERS)
1da177e4 401 return -EINVAL;
3c789a19
AG
402
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);
1da177e4
LT
407 break;
408 case AUDIT_DEL:
0f45aa18
DW
409 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)
9ad9ad38 415 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
0f45aa18 416 "auid=%u removed an audit rule\n", loginuid);
1da177e4
LT
417 break;
418 default:
419 return -EINVAL;
420 }
421
422 return err;
423}
1da177e4 424
b63862f4
DK
425static 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
1da177e4
LT
445/* 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++) {
b63862f4
DK
455 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
456 u32 op = rule->fields[i] & AUDIT_OPERATORS;
1da177e4
LT
457 u32 value = rule->values[i];
458 int result = 0;
459
460 switch (field) {
461 case AUDIT_PID:
b63862f4 462 result = audit_comparator(tsk->pid, op, value);
1da177e4
LT
463 break;
464 case AUDIT_UID:
b63862f4 465 result = audit_comparator(tsk->uid, op, value);
1da177e4
LT
466 break;
467 case AUDIT_EUID:
b63862f4 468 result = audit_comparator(tsk->euid, op, value);
1da177e4
LT
469 break;
470 case AUDIT_SUID:
b63862f4 471 result = audit_comparator(tsk->suid, op, value);
1da177e4
LT
472 break;
473 case AUDIT_FSUID:
b63862f4 474 result = audit_comparator(tsk->fsuid, op, value);
1da177e4
LT
475 break;
476 case AUDIT_GID:
b63862f4 477 result = audit_comparator(tsk->gid, op, value);
1da177e4
LT
478 break;
479 case AUDIT_EGID:
b63862f4 480 result = audit_comparator(tsk->egid, op, value);
1da177e4
LT
481 break;
482 case AUDIT_SGID:
b63862f4 483 result = audit_comparator(tsk->sgid, op, value);
1da177e4
LT
484 break;
485 case AUDIT_FSGID:
b63862f4 486 result = audit_comparator(tsk->fsgid, op, value);
1da177e4
LT
487 break;
488 case AUDIT_PERS:
b63862f4 489 result = audit_comparator(tsk->personality, op, value);
1da177e4 490 break;
2fd6f58b 491 case AUDIT_ARCH:
b63862f4
DK
492 if (ctx)
493 result = audit_comparator(ctx->arch, op, value);
2fd6f58b 494 break;
1da177e4
LT
495
496 case AUDIT_EXIT:
497 if (ctx && ctx->return_valid)
b63862f4 498 result = audit_comparator(ctx->return_code, op, value);
1da177e4
LT
499 break;
500 case AUDIT_SUCCESS:
b01f2cc1
DW
501 if (ctx && ctx->return_valid) {
502 if (value)
b63862f4 503 result = audit_comparator(ctx->return_valid, op, AUDITSC_SUCCESS);
b01f2cc1 504 else
b63862f4 505 result = audit_comparator(ctx->return_valid, op, AUDITSC_FAILURE);
b01f2cc1 506 }
1da177e4
LT
507 break;
508 case AUDIT_DEVMAJOR:
509 if (ctx) {
510 for (j = 0; j < ctx->name_count; j++) {
b63862f4 511 if (audit_comparator(MAJOR(ctx->names[j].dev), op, value)) {
1da177e4
LT
512 ++result;
513 break;
514 }
515 }
516 }
517 break;
518 case AUDIT_DEVMINOR:
519 if (ctx) {
520 for (j = 0; j < ctx->name_count; j++) {
b63862f4 521 if (audit_comparator(MINOR(ctx->names[j].dev), op, value)) {
1da177e4
LT
522 ++result;
523 break;
524 }
525 }
526 }
527 break;
528 case AUDIT_INODE:
529 if (ctx) {
530 for (j = 0; j < ctx->name_count; j++) {
73241ccc
AG
531 if (audit_comparator(ctx->names[j].ino, op, value) ||
532 audit_comparator(ctx->names[j].pino, op, value)) {
1da177e4
LT
533 ++result;
534 break;
535 }
536 }
537 }
538 break;
539 case AUDIT_LOGINUID:
540 result = 0;
541 if (ctx)
b63862f4 542 result = audit_comparator(ctx->loginuid, op, value);
1da177e4
LT
543 break;
544 case AUDIT_ARG0:
545 case AUDIT_ARG1:
546 case AUDIT_ARG2:
547 case AUDIT_ARG3:
548 if (ctx)
b63862f4 549 result = audit_comparator(ctx->argv[field-AUDIT_ARG0], op, value);
1da177e4
LT
550 break;
551 }
552
1da177e4
LT
553 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();
0f45aa18 574 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
1da177e4
LT
575 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
23f32d18 586 * also not high enough that we already know we have to write an audit
b0dd25a8 587 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
1da177e4
LT
588 */
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;
c3896495 594 enum audit_state state;
1da177e4 595
351bb722 596 if (audit_pid && tsk->tgid == audit_pid)
f7056d64
DW
597 return AUDIT_DISABLED;
598
1da177e4 599 rcu_read_lock();
c3896495 600 if (!list_empty(list)) {
b63862f4
DK
601 int word = AUDIT_WORD(ctx->major);
602 int bit = AUDIT_BIT(ctx->major);
603
604 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 }
1da177e4
LT
611 }
612 rcu_read_unlock();
613 return AUDIT_BUILD_CONTEXT;
614}
615
5bb289b5 616static int audit_filter_user_rules(struct netlink_skb_parms *cb,
b63862f4
DK
617 struct audit_rule *rule,
618 enum audit_state *state)
5bb289b5
DW
619{
620 int i;
621
622 for (i = 0; i < rule->field_count; i++) {
b63862f4
DK
623 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
624 u32 op = rule->fields[i] & AUDIT_OPERATORS;
5bb289b5
DW
625 u32 value = rule->values[i];
626 int result = 0;
627
628 switch (field) {
629 case AUDIT_PID:
b63862f4 630 result = audit_comparator(cb->creds.pid, op, value);
5bb289b5
DW
631 break;
632 case AUDIT_UID:
b63862f4 633 result = audit_comparator(cb->creds.uid, op, value);
5bb289b5
DW
634 break;
635 case AUDIT_GID:
b63862f4 636 result = audit_comparator(cb->creds.gid, op, value);
5bb289b5
DW
637 break;
638 case AUDIT_LOGINUID:
b63862f4 639 result = audit_comparator(cb->loginuid, op, value);
5bb289b5
DW
640 break;
641 }
642
5bb289b5
DW
643 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)
0f45aa18
DW
655{
656 struct audit_entry *e;
657 enum audit_state state;
4a4cd633 658 int ret = 1;
0f45aa18
DW
659
660 rcu_read_lock();
661 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_USER], list) {
5bb289b5 662 if (audit_filter_user_rules(cb, &e->rule, &state)) {
4a4cd633
DW
663 if (state == AUDIT_DISABLED)
664 ret = 0;
665 break;
0f45aa18
DW
666 }
667 }
668 rcu_read_unlock();
4a4cd633 669
993e2d41 670 return ret; /* Audit by default */
0f45aa18
DW
671}
672
c8edc80c
DK
673int 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
1da177e4
LT
705/* 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
21af6c4f 717 if (context->in_syscall && !context->auditable) {
1da177e4 718 enum audit_state state;
0f45aa18 719 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
1da177e4
LT
720 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) {
73241ccc 745 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
1da177e4
LT
746 " name_count=%d put_count=%d"
747 " ino_count=%d [NOT freeing]\n",
73241ccc 748 __FILE__, __LINE__,
1da177e4
LT
749 context->serial, context->major, context->in_syscall,
750 context->name_count, context->put_count,
751 context->ino_count);
8c8570fb 752 for (i = 0; i < context->name_count; i++) {
1da177e4
LT
753 printk(KERN_ERR "names[%d] = %p = %s\n", i,
754 context->names[i].name,
73241ccc 755 context->names[i].name ?: "(null)");
8c8570fb 756 }
1da177e4
LT
757 dump_stack();
758 return;
759 }
760#endif
761#if AUDIT_DEBUG
762 context->put_count = 0;
763 context->ino_count = 0;
764#endif
765
8c8570fb
DK
766 for (i = 0; i < context->name_count; i++) {
767 char *p = context->names[i].ctx;
768 context->names[i].ctx = NULL;
769 kfree(p);
1da177e4
LT
770 if (context->names[i].name)
771 __putname(context->names[i].name);
8c8570fb 772 }
1da177e4 773 context->name_count = 0;
8f37d47c
DW
774 if (context->pwd)
775 dput(context->pwd);
776 if (context->pwdmnt)
777 mntput(context->pwdmnt);
778 context->pwd = NULL;
779 context->pwdmnt = NULL;
1da177e4
LT
780}
781
782static inline void audit_free_aux(struct audit_context *context)
783{
784 struct audit_aux_data *aux;
785
786 while ((aux = context->aux)) {
01116105
SS
787 if (aux->type == AUDIT_AVC_PATH) {
788 struct audit_aux_data_path *axi = (void *)aux;
789 dput(axi->dentry);
790 mntput(axi->mnt);
791 }
8c8570fb
DK
792 if ( aux->type == AUDIT_IPC ) {
793 struct audit_aux_data_ipcctl *axi = (void *)aux;
794 if (axi->ctx)
795 kfree(axi->ctx);
796 }
797
1da177e4
LT
798 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
b0dd25a8
RD
823/**
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
1da177e4
LT
828 * if necessary. Doing so turns on system call auditing for the
829 * specified task. This is called from copy_process, so no lock is
b0dd25a8
RD
830 * needed.
831 */
1da177e4
LT
832int 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
8c8570fb
DK
882static 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);
7306a0b9 895 if (!ctx)
8c8570fb 896 goto error_path;
8c8570fb
DK
897
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);
7306a0b9 903 return;
8c8570fb
DK
904
905error_path:
906 if (ctx)
907 kfree(ctx);
7306a0b9 908 audit_panic("error in audit_log_task_context");
8c8570fb
DK
909 return;
910}
911
912static void audit_log_task_info(struct audit_buffer *ab, gfp_t gfp_mask)
219f0817
SS
913{
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);
99e45eea
DW
919 audit_log_format(ab, " comm=");
920 audit_log_untrustedstring(ab, name);
219f0817
SS
921
922 if (!mm)
923 return;
924
8c8570fb
DK
925 /*
926 * this is brittle; all callers that pass GFP_ATOMIC will have
927 * NULL current->mm and we won't get here.
928 */
219f0817
SS
929 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);
8c8570fb 942 audit_log_task_context(ab, gfp_mask);
219f0817
SS
943}
944
9796fdd8 945static void audit_log_exit(struct audit_context *context, gfp_t gfp_mask)
1da177e4
LT
946{
947 int i;
948 struct audit_buffer *ab;
7551ced3 949 struct audit_aux_data *aux;
1da177e4 950
f5561964 951 ab = audit_log_start(context, gfp_mask, AUDIT_SYSCALL);
1da177e4
LT
952 if (!ab)
953 return; /* audit_panic has been called */
bccf6ae0
DW
954 audit_log_format(ab, "arch=%x syscall=%d",
955 context->arch, context->major);
1da177e4
LT
956 if (context->personality != PER_LINUX)
957 audit_log_format(ab, " per=%lx", context->personality);
958 if (context->return_valid)
2fd6f58b
DW
959 audit_log_format(ab, " success=%s exit=%ld",
960 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
961 context->return_code);
1da177e4
LT
962 audit_log_format(ab,
963 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
326e9c8b
SG
964 " pid=%d auid=%u uid=%u gid=%u"
965 " euid=%u suid=%u fsuid=%u"
966 " egid=%u sgid=%u fsgid=%u",
1da177e4
LT
967 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);
8c8570fb 978 audit_log_task_info(ab, gfp_mask);
1da177e4 979 audit_log_end(ab);
1da177e4 980
7551ced3 981 for (aux = context->aux; aux; aux = aux->next) {
c0404993 982
ef20c8c1 983 ab = audit_log_start(context, gfp_mask, aux->type);
1da177e4
LT
984 if (!ab)
985 continue; /* audit_panic has been called */
986
1da177e4 987 switch (aux->type) {
c0404993 988 case AUDIT_IPC: {
1da177e4
LT
989 struct audit_aux_data_ipcctl *axi = (void *)aux;
990 audit_log_format(ab,
8c8570fb
DK
991 " qbytes=%lx iuid=%u igid=%u mode=%x obj=%s",
992 axi->qbytes, axi->uid, axi->gid, axi->mode, axi->ctx);
3ec3b2fb
DW
993 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; }
01116105
SS
1009
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);
01116105
SS
1013 break; }
1014
1da177e4
LT
1015 }
1016 audit_log_end(ab);
1da177e4
LT
1017 }
1018
8f37d47c 1019 if (context->pwd && context->pwdmnt) {
ef20c8c1 1020 ab = audit_log_start(context, gfp_mask, AUDIT_CWD);
8f37d47c
DW
1021 if (ab) {
1022 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
1023 audit_log_end(ab);
1024 }
1025 }
1da177e4 1026 for (i = 0; i < context->name_count; i++) {
73241ccc
AG
1027 unsigned long ino = context->names[i].ino;
1028 unsigned long pino = context->names[i].pino;
1029
ef20c8c1 1030 ab = audit_log_start(context, gfp_mask, AUDIT_PATH);
1da177e4
LT
1031 if (!ab)
1032 continue; /* audit_panic has been called */
8f37d47c 1033
1da177e4 1034 audit_log_format(ab, "item=%d", i);
73241ccc
AG
1035
1036 audit_log_format(ab, " name=");
1037 if (context->names[i].name)
83c7d091 1038 audit_log_untrustedstring(ab, context->names[i].name);
73241ccc
AG
1039 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),
1da177e4 1055 MINOR(context->names[i].rdev));
8c8570fb
DK
1056 if (context->names[i].ctx) {
1057 audit_log_format(ab, " obj=%s",
1058 context->names[i].ctx);
1059 }
1060
1da177e4
LT
1061 audit_log_end(ab);
1062 }
1063}
1064
b0dd25a8
RD
1065/**
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 */
1da177e4
LT
1071void 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
f5561964
DW
1083 * 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 */
f7056d64 1086 if (context->in_syscall && context->auditable)
f5561964 1087 audit_log_exit(context, GFP_ATOMIC);
1da177e4
LT
1088
1089 audit_free_context(context);
1090}
1091
b0dd25a8
RD
1092/**
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
1da177e4
LT
1103 * 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
b0dd25a8
RD
1108 * be written).
1109 */
2fd6f58b 1110void audit_syscall_entry(struct task_struct *tsk, int arch, int major,
1da177e4
LT
1111 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
b0dd25a8
RD
1119 /*
1120 * This happens only on certain architectures that make system
1da177e4
LT
1121 * 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
1da177e4
LT
1136#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
2fd6f58b 1160 context->arch = arch;
1da177e4
LT
1161 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)
0f45aa18 1169 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
1da177e4
LT
1170 if (likely(state == AUDIT_DISABLED))
1171 return;
1172
ce625a80 1173 context->serial = 0;
1da177e4
LT
1174 context->ctime = CURRENT_TIME;
1175 context->in_syscall = 1;
1176 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
1177}
1178
b0dd25a8
RD
1179/**
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
1da177e4
LT
1186 * 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,
b0dd25a8
RD
1189 * free the names stored from getname().
1190 */
2fd6f58b 1191void audit_syscall_exit(struct task_struct *tsk, int valid, long return_code)
1da177e4
LT
1192{
1193 struct audit_context *context;
1194
1195 get_task_struct(tsk);
1196 task_lock(tsk);
2fd6f58b 1197 context = audit_get_context(tsk, valid, return_code);
1da177e4
LT
1198 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))
413a1c75 1203 goto out;
1da177e4 1204
f7056d64 1205 if (context->in_syscall && context->auditable)
f5561964 1206 audit_log_exit(context, GFP_KERNEL);
1da177e4
LT
1207
1208 context->in_syscall = 0;
1209 context->auditable = 0;
2fd6f58b 1210
1da177e4
LT
1211 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);
1da177e4
LT
1219 tsk->audit_context = context;
1220 }
413a1c75 1221 out:
1da177e4
LT
1222 put_task_struct(tsk);
1223}
1224
b0dd25a8
RD
1225/**
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 */
1da177e4
LT
1232void 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;
8f37d47c
DW
1251 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
1da177e4
LT
1258}
1259
b0dd25a8
RD
1260/* 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 */
1da177e4
LT
1267void 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,
73241ccc 1281 context->names[i].name ?: "(null)");
1da177e4
LT
1282 }
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
8c8570fb
DK
1303void audit_inode_context(int idx, const struct inode *inode)
1304{
1305 struct audit_context *context = current->audit_context;
7306a0b9 1306 const char *suffix = security_inode_xattr_getsuffix();
8c8570fb
DK
1307 char *ctx = NULL;
1308 int len = 0;
1309
7306a0b9
DK
1310 if (!suffix)
1311 goto ret;
8c8570fb 1312
7306a0b9
DK
1313 len = security_inode_getsecurity(inode, suffix, NULL, 0, 0);
1314 if (len == -EOPNOTSUPP)
1315 goto ret;
8c8570fb
DK
1316 if (len < 0)
1317 goto error_path;
1318
1319 ctx = kmalloc(len, GFP_KERNEL);
1320 if (!ctx)
1321 goto error_path;
1322
7306a0b9 1323 len = security_inode_getsecurity(inode, suffix, ctx, len, 0);
8c8570fb
DK
1324 if (len < 0)
1325 goto error_path;
1326
1327 kfree(context->names[idx].ctx);
1328 context->names[idx].ctx = ctx;
7306a0b9 1329 goto ret;
8c8570fb
DK
1330
1331error_path:
1332 if (ctx)
1333 kfree(ctx);
1334 audit_panic("error in audit_inode_context");
7306a0b9 1335ret:
8c8570fb
DK
1336 return;
1337}
1338
1339
b0dd25a8
RD
1340/**
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 */
73241ccc 1348void __audit_inode(const char *name, const struct inode *inode, unsigned flags)
1da177e4
LT
1349{
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 }
ae7b961b
DW
1374 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;
8c8570fb 1379 audit_inode_context(idx, inode);
73241ccc
AG
1380 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;
8c8570fb 1461 audit_inode_context(idx, inode);
73241ccc 1462 }
1da177e4
LT
1463}
1464
b0dd25a8
RD
1465/**
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 */
bfb4496e
DW
1473void auditsc_get_stamp(struct audit_context *ctx,
1474 struct timespec *t, unsigned int *serial)
1da177e4 1475{
ce625a80
DW
1476 if (!ctx->serial)
1477 ctx->serial = audit_serial();
bfb4496e
DW
1478 t->tv_sec = ctx->ctime.tv_sec;
1479 t->tv_nsec = ctx->ctime.tv_nsec;
1480 *serial = ctx->serial;
1481 ctx->auditable = 1;
1da177e4
LT
1482}
1483
b0dd25a8
RD
1484/**
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 */
456be6cd 1493int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
1da177e4 1494{
456be6cd 1495 if (task->audit_context) {
c0404993
SG
1496 struct audit_buffer *ab;
1497
9ad9ad38 1498 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
c0404993
SG
1499 if (ab) {
1500 audit_log_format(ab, "login pid=%d uid=%u "
326e9c8b 1501 "old auid=%u new auid=%u",
c0404993
SG
1502 task->pid, task->uid,
1503 task->audit_context->loginuid, loginuid);
1504 audit_log_end(ab);
1505 }
456be6cd 1506 task->audit_context->loginuid = loginuid;
1da177e4
LT
1507 }
1508 return 0;
1509}
1510
b0dd25a8
RD
1511/**
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 */
1da177e4
LT
1517uid_t audit_get_loginuid(struct audit_context *ctx)
1518{
1519 return ctx ? ctx->loginuid : -1;
1520}
1521
8c8570fb
DK
1522static 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
b0dd25a8
RD
1554/**
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 */
8c8570fb 1563int audit_ipc_perms(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode, struct kern_ipc_perm *ipcp)
1da177e4
LT
1564{
1565 struct audit_aux_data_ipcctl *ax;
1566 struct audit_context *context = current->audit_context;
1567
1568 if (likely(!context))
1569 return 0;
1570
8c8570fb 1571 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1da177e4
LT
1572 if (!ax)
1573 return -ENOMEM;
1574
1575 ax->qbytes = qbytes;
1576 ax->uid = uid;
1577 ax->gid = gid;
1578 ax->mode = mode;
8c8570fb 1579 ax->ctx = audit_ipc_context(ipcp);
1da177e4 1580
c0404993 1581 ax->d.type = AUDIT_IPC;
1da177e4
LT
1582 ax->d.next = context->aux;
1583 context->aux = (void *)ax;
1584 return 0;
1585}
c2f0c7c3 1586
b0dd25a8
RD
1587/**
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 */
3ec3b2fb
DW
1594int 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
b0dd25a8
RD
1615/**
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 */
3ec3b2fb
DW
1622int 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
b0dd25a8
RD
1643/**
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 */
01116105
SS
1652int 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
b0dd25a8
RD
1673/**
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 */
c2f0c7c3
SG
1681void audit_signal_info(int sig, struct task_struct *t)
1682{
1683 extern pid_t audit_sig_pid;
1684 extern uid_t audit_sig_uid;
c2f0c7c3 1685
582edda5 1686 if (unlikely(audit_pid && t->tgid == audit_pid)) {
c2f0c7c3
SG
1687 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}