]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/auditsc.c
[PATCH] Reworked patch for labels on user space messages
[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>
5bb289b5 55#include <linux/netlink.h>
f5561964 56#include <linux/compiler.h>
1da177e4 57#include <asm/unistd.h>
8c8570fb 58#include <linux/security.h>
fe7752ba 59#include <linux/list.h>
a6c043a8 60#include <linux/tty.h>
3dc7e315 61#include <linux/selinux.h>
1da177e4 62
fe7752ba 63#include "audit.h"
1da177e4 64
fe7752ba 65extern struct list_head audit_filter_list[];
1da177e4
LT
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
1da177e4
LT
79/* When fs/namei.c:getname() is called, we store the pointer in name and
80 * we don't let putname() free it (instead we free all of the saved
81 * pointers at syscall exit time).
82 *
83 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
84struct audit_names {
85 const char *name;
86 unsigned long ino;
73241ccc 87 unsigned long pino;
1da177e4
LT
88 dev_t dev;
89 umode_t mode;
90 uid_t uid;
91 gid_t gid;
92 dev_t rdev;
1b50eed9 93 u32 osid;
1da177e4
LT
94};
95
96struct audit_aux_data {
97 struct audit_aux_data *next;
98 int type;
99};
100
101#define AUDIT_AUX_IPCPERM 0
102
103struct audit_aux_data_ipcctl {
104 struct audit_aux_data d;
105 struct ipc_perm p;
106 unsigned long qbytes;
107 uid_t uid;
108 gid_t gid;
109 mode_t mode;
9c7aa6aa 110 u32 osid;
1da177e4
LT
111};
112
3ec3b2fb
DW
113struct audit_aux_data_socketcall {
114 struct audit_aux_data d;
115 int nargs;
116 unsigned long args[0];
117};
118
119struct audit_aux_data_sockaddr {
120 struct audit_aux_data d;
121 int len;
122 char a[0];
123};
124
01116105
SS
125struct audit_aux_data_path {
126 struct audit_aux_data d;
127 struct dentry *dentry;
128 struct vfsmount *mnt;
129};
1da177e4
LT
130
131/* The per-task audit context. */
132struct audit_context {
133 int in_syscall; /* 1 if task is in a syscall */
134 enum audit_state state;
135 unsigned int serial; /* serial number for record */
136 struct timespec ctime; /* time of syscall entry */
137 uid_t loginuid; /* login uid (identity) */
138 int major; /* syscall number */
139 unsigned long argv[4]; /* syscall arguments */
140 int return_valid; /* return code is valid */
2fd6f58b 141 long return_code;/* syscall return code */
1da177e4
LT
142 int auditable; /* 1 if record should be written */
143 int name_count;
144 struct audit_names names[AUDIT_NAMES];
8f37d47c
DW
145 struct dentry * pwd;
146 struct vfsmount * pwdmnt;
1da177e4
LT
147 struct audit_context *previous; /* For nested syscalls */
148 struct audit_aux_data *aux;
149
150 /* Save things to print about task_struct */
151 pid_t pid;
152 uid_t uid, euid, suid, fsuid;
153 gid_t gid, egid, sgid, fsgid;
154 unsigned long personality;
2fd6f58b 155 int arch;
1da177e4
LT
156
157#if AUDIT_DEBUG
158 int put_count;
159 int ino_count;
160#endif
161};
162
1da177e4
LT
163
164/* Compare a task_struct with an audit_rule. Return 1 on match, 0
165 * otherwise. */
166static int audit_filter_rules(struct task_struct *tsk,
93315ed6 167 struct audit_krule *rule,
1da177e4
LT
168 struct audit_context *ctx,
169 enum audit_state *state)
170{
171 int i, j;
3dc7e315
DG
172 u32 sid;
173
174 selinux_task_ctxid(tsk, &sid);
1da177e4
LT
175
176 for (i = 0; i < rule->field_count; i++) {
93315ed6 177 struct audit_field *f = &rule->fields[i];
1da177e4
LT
178 int result = 0;
179
93315ed6 180 switch (f->type) {
1da177e4 181 case AUDIT_PID:
93315ed6 182 result = audit_comparator(tsk->pid, f->op, f->val);
1da177e4
LT
183 break;
184 case AUDIT_UID:
93315ed6 185 result = audit_comparator(tsk->uid, f->op, f->val);
1da177e4
LT
186 break;
187 case AUDIT_EUID:
93315ed6 188 result = audit_comparator(tsk->euid, f->op, f->val);
1da177e4
LT
189 break;
190 case AUDIT_SUID:
93315ed6 191 result = audit_comparator(tsk->suid, f->op, f->val);
1da177e4
LT
192 break;
193 case AUDIT_FSUID:
93315ed6 194 result = audit_comparator(tsk->fsuid, f->op, f->val);
1da177e4
LT
195 break;
196 case AUDIT_GID:
93315ed6 197 result = audit_comparator(tsk->gid, f->op, f->val);
1da177e4
LT
198 break;
199 case AUDIT_EGID:
93315ed6 200 result = audit_comparator(tsk->egid, f->op, f->val);
1da177e4
LT
201 break;
202 case AUDIT_SGID:
93315ed6 203 result = audit_comparator(tsk->sgid, f->op, f->val);
1da177e4
LT
204 break;
205 case AUDIT_FSGID:
93315ed6 206 result = audit_comparator(tsk->fsgid, f->op, f->val);
1da177e4
LT
207 break;
208 case AUDIT_PERS:
93315ed6 209 result = audit_comparator(tsk->personality, f->op, f->val);
1da177e4 210 break;
2fd6f58b 211 case AUDIT_ARCH:
b63862f4 212 if (ctx)
93315ed6 213 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f58b 214 break;
1da177e4
LT
215
216 case AUDIT_EXIT:
217 if (ctx && ctx->return_valid)
93315ed6 218 result = audit_comparator(ctx->return_code, f->op, f->val);
1da177e4
LT
219 break;
220 case AUDIT_SUCCESS:
b01f2cc1 221 if (ctx && ctx->return_valid) {
93315ed6
AG
222 if (f->val)
223 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
b01f2cc1 224 else
93315ed6 225 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
b01f2cc1 226 }
1da177e4
LT
227 break;
228 case AUDIT_DEVMAJOR:
229 if (ctx) {
230 for (j = 0; j < ctx->name_count; j++) {
93315ed6 231 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
1da177e4
LT
232 ++result;
233 break;
234 }
235 }
236 }
237 break;
238 case AUDIT_DEVMINOR:
239 if (ctx) {
240 for (j = 0; j < ctx->name_count; j++) {
93315ed6 241 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
1da177e4
LT
242 ++result;
243 break;
244 }
245 }
246 }
247 break;
248 case AUDIT_INODE:
249 if (ctx) {
250 for (j = 0; j < ctx->name_count; j++) {
93315ed6
AG
251 if (audit_comparator(ctx->names[j].ino, f->op, f->val) ||
252 audit_comparator(ctx->names[j].pino, f->op, f->val)) {
1da177e4
LT
253 ++result;
254 break;
255 }
256 }
257 }
258 break;
259 case AUDIT_LOGINUID:
260 result = 0;
261 if (ctx)
93315ed6 262 result = audit_comparator(ctx->loginuid, f->op, f->val);
1da177e4 263 break;
3dc7e315
DG
264 case AUDIT_SE_USER:
265 case AUDIT_SE_ROLE:
266 case AUDIT_SE_TYPE:
267 case AUDIT_SE_SEN:
268 case AUDIT_SE_CLR:
269 /* NOTE: this may return negative values indicating
270 a temporary error. We simply treat this as a
271 match for now to avoid losing information that
272 may be wanted. An error message will also be
273 logged upon error */
274 if (f->se_rule)
275 result = selinux_audit_rule_match(sid, f->type,
276 f->op,
277 f->se_rule,
278 ctx);
279 break;
1da177e4
LT
280 case AUDIT_ARG0:
281 case AUDIT_ARG1:
282 case AUDIT_ARG2:
283 case AUDIT_ARG3:
284 if (ctx)
93315ed6 285 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
1da177e4
LT
286 break;
287 }
288
1da177e4
LT
289 if (!result)
290 return 0;
291 }
292 switch (rule->action) {
293 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
294 case AUDIT_POSSIBLE: *state = AUDIT_BUILD_CONTEXT; break;
295 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
296 }
297 return 1;
298}
299
300/* At process creation time, we can determine if system-call auditing is
301 * completely disabled for this task. Since we only have the task
302 * structure at this point, we can only check uid and gid.
303 */
304static enum audit_state audit_filter_task(struct task_struct *tsk)
305{
306 struct audit_entry *e;
307 enum audit_state state;
308
309 rcu_read_lock();
0f45aa18 310 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
1da177e4
LT
311 if (audit_filter_rules(tsk, &e->rule, NULL, &state)) {
312 rcu_read_unlock();
313 return state;
314 }
315 }
316 rcu_read_unlock();
317 return AUDIT_BUILD_CONTEXT;
318}
319
320/* At syscall entry and exit time, this filter is called if the
321 * audit_state is not low enough that auditing cannot take place, but is
23f32d18 322 * also not high enough that we already know we have to write an audit
b0dd25a8 323 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
1da177e4
LT
324 */
325static enum audit_state audit_filter_syscall(struct task_struct *tsk,
326 struct audit_context *ctx,
327 struct list_head *list)
328{
329 struct audit_entry *e;
c3896495 330 enum audit_state state;
1da177e4 331
351bb722 332 if (audit_pid && tsk->tgid == audit_pid)
f7056d64
DW
333 return AUDIT_DISABLED;
334
1da177e4 335 rcu_read_lock();
c3896495 336 if (!list_empty(list)) {
b63862f4
DK
337 int word = AUDIT_WORD(ctx->major);
338 int bit = AUDIT_BIT(ctx->major);
339
340 list_for_each_entry_rcu(e, list, list) {
341 if ((e->rule.mask[word] & bit) == bit
342 && audit_filter_rules(tsk, &e->rule, ctx, &state)) {
343 rcu_read_unlock();
344 return state;
345 }
0f45aa18
DW
346 }
347 }
348 rcu_read_unlock();
1da177e4 349 return AUDIT_BUILD_CONTEXT;
0f45aa18
DW
350}
351
1da177e4
LT
352static inline struct audit_context *audit_get_context(struct task_struct *tsk,
353 int return_valid,
354 int return_code)
355{
356 struct audit_context *context = tsk->audit_context;
357
358 if (likely(!context))
359 return NULL;
360 context->return_valid = return_valid;
361 context->return_code = return_code;
362
21af6c4f 363 if (context->in_syscall && !context->auditable) {
1da177e4 364 enum audit_state state;
0f45aa18 365 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
1da177e4
LT
366 if (state == AUDIT_RECORD_CONTEXT)
367 context->auditable = 1;
368 }
369
370 context->pid = tsk->pid;
371 context->uid = tsk->uid;
372 context->gid = tsk->gid;
373 context->euid = tsk->euid;
374 context->suid = tsk->suid;
375 context->fsuid = tsk->fsuid;
376 context->egid = tsk->egid;
377 context->sgid = tsk->sgid;
378 context->fsgid = tsk->fsgid;
379 context->personality = tsk->personality;
380 tsk->audit_context = NULL;
381 return context;
382}
383
384static inline void audit_free_names(struct audit_context *context)
385{
386 int i;
387
388#if AUDIT_DEBUG == 2
389 if (context->auditable
390 ||context->put_count + context->ino_count != context->name_count) {
73241ccc 391 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
1da177e4
LT
392 " name_count=%d put_count=%d"
393 " ino_count=%d [NOT freeing]\n",
73241ccc 394 __FILE__, __LINE__,
1da177e4
LT
395 context->serial, context->major, context->in_syscall,
396 context->name_count, context->put_count,
397 context->ino_count);
8c8570fb 398 for (i = 0; i < context->name_count; i++) {
1da177e4
LT
399 printk(KERN_ERR "names[%d] = %p = %s\n", i,
400 context->names[i].name,
73241ccc 401 context->names[i].name ?: "(null)");
8c8570fb 402 }
1da177e4
LT
403 dump_stack();
404 return;
405 }
406#endif
407#if AUDIT_DEBUG
408 context->put_count = 0;
409 context->ino_count = 0;
410#endif
411
8c8570fb 412 for (i = 0; i < context->name_count; i++) {
1da177e4
LT
413 if (context->names[i].name)
414 __putname(context->names[i].name);
8c8570fb 415 }
1da177e4 416 context->name_count = 0;
8f37d47c
DW
417 if (context->pwd)
418 dput(context->pwd);
419 if (context->pwdmnt)
420 mntput(context->pwdmnt);
421 context->pwd = NULL;
422 context->pwdmnt = NULL;
1da177e4
LT
423}
424
425static inline void audit_free_aux(struct audit_context *context)
426{
427 struct audit_aux_data *aux;
428
429 while ((aux = context->aux)) {
01116105
SS
430 if (aux->type == AUDIT_AVC_PATH) {
431 struct audit_aux_data_path *axi = (void *)aux;
432 dput(axi->dentry);
433 mntput(axi->mnt);
434 }
8c8570fb 435
1da177e4
LT
436 context->aux = aux->next;
437 kfree(aux);
438 }
439}
440
441static inline void audit_zero_context(struct audit_context *context,
442 enum audit_state state)
443{
444 uid_t loginuid = context->loginuid;
445
446 memset(context, 0, sizeof(*context));
447 context->state = state;
448 context->loginuid = loginuid;
449}
450
451static inline struct audit_context *audit_alloc_context(enum audit_state state)
452{
453 struct audit_context *context;
454
455 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
456 return NULL;
457 audit_zero_context(context, state);
458 return context;
459}
460
b0dd25a8
RD
461/**
462 * audit_alloc - allocate an audit context block for a task
463 * @tsk: task
464 *
465 * Filter on the task information and allocate a per-task audit context
1da177e4
LT
466 * if necessary. Doing so turns on system call auditing for the
467 * specified task. This is called from copy_process, so no lock is
b0dd25a8
RD
468 * needed.
469 */
1da177e4
LT
470int audit_alloc(struct task_struct *tsk)
471{
472 struct audit_context *context;
473 enum audit_state state;
474
475 if (likely(!audit_enabled))
476 return 0; /* Return if not auditing. */
477
478 state = audit_filter_task(tsk);
479 if (likely(state == AUDIT_DISABLED))
480 return 0;
481
482 if (!(context = audit_alloc_context(state))) {
483 audit_log_lost("out of memory in audit_alloc");
484 return -ENOMEM;
485 }
486
487 /* Preserve login uid */
488 context->loginuid = -1;
489 if (current->audit_context)
490 context->loginuid = current->audit_context->loginuid;
491
492 tsk->audit_context = context;
493 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
494 return 0;
495}
496
497static inline void audit_free_context(struct audit_context *context)
498{
499 struct audit_context *previous;
500 int count = 0;
501
502 do {
503 previous = context->previous;
504 if (previous || (count && count < 10)) {
505 ++count;
506 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
507 " freeing multiple contexts (%d)\n",
508 context->serial, context->major,
509 context->name_count, count);
510 }
511 audit_free_names(context);
512 audit_free_aux(context);
513 kfree(context);
514 context = previous;
515 } while (context);
516 if (count >= 10)
517 printk(KERN_ERR "audit: freed %d contexts\n", count);
518}
519
e495149b 520static void audit_log_task_context(struct audit_buffer *ab)
8c8570fb
DK
521{
522 char *ctx = NULL;
523 ssize_t len = 0;
524
525 len = security_getprocattr(current, "current", NULL, 0);
526 if (len < 0) {
527 if (len != -EINVAL)
528 goto error_path;
529 return;
530 }
531
e495149b 532 ctx = kmalloc(len, GFP_KERNEL);
7306a0b9 533 if (!ctx)
8c8570fb 534 goto error_path;
8c8570fb
DK
535
536 len = security_getprocattr(current, "current", ctx, len);
537 if (len < 0 )
538 goto error_path;
539
540 audit_log_format(ab, " subj=%s", ctx);
7306a0b9 541 return;
8c8570fb
DK
542
543error_path:
544 if (ctx)
545 kfree(ctx);
7306a0b9 546 audit_panic("error in audit_log_task_context");
8c8570fb
DK
547 return;
548}
549
e495149b 550static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
219f0817 551{
45d9bb0e
AV
552 char name[sizeof(tsk->comm)];
553 struct mm_struct *mm = tsk->mm;
219f0817
SS
554 struct vm_area_struct *vma;
555
e495149b
AV
556 /* tsk == current */
557
45d9bb0e 558 get_task_comm(name, tsk);
99e45eea
DW
559 audit_log_format(ab, " comm=");
560 audit_log_untrustedstring(ab, name);
219f0817 561
e495149b
AV
562 if (mm) {
563 down_read(&mm->mmap_sem);
564 vma = mm->mmap;
565 while (vma) {
566 if ((vma->vm_flags & VM_EXECUTABLE) &&
567 vma->vm_file) {
568 audit_log_d_path(ab, "exe=",
569 vma->vm_file->f_dentry,
570 vma->vm_file->f_vfsmnt);
571 break;
572 }
573 vma = vma->vm_next;
219f0817 574 }
e495149b 575 up_read(&mm->mmap_sem);
219f0817 576 }
e495149b 577 audit_log_task_context(ab);
219f0817
SS
578}
579
e495149b 580static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
1da177e4 581{
9c7aa6aa 582 int i, call_panic = 0;
1da177e4 583 struct audit_buffer *ab;
7551ced3 584 struct audit_aux_data *aux;
a6c043a8 585 const char *tty;
1da177e4 586
e495149b
AV
587 /* tsk == current */
588
589 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
1da177e4
LT
590 if (!ab)
591 return; /* audit_panic has been called */
bccf6ae0
DW
592 audit_log_format(ab, "arch=%x syscall=%d",
593 context->arch, context->major);
1da177e4
LT
594 if (context->personality != PER_LINUX)
595 audit_log_format(ab, " per=%lx", context->personality);
596 if (context->return_valid)
2fd6f58b
DW
597 audit_log_format(ab, " success=%s exit=%ld",
598 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
599 context->return_code);
45d9bb0e
AV
600 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
601 tty = tsk->signal->tty->name;
a6c043a8
SG
602 else
603 tty = "(none)";
1da177e4
LT
604 audit_log_format(ab,
605 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
326e9c8b
SG
606 " pid=%d auid=%u uid=%u gid=%u"
607 " euid=%u suid=%u fsuid=%u"
a6c043a8 608 " egid=%u sgid=%u fsgid=%u tty=%s",
1da177e4
LT
609 context->argv[0],
610 context->argv[1],
611 context->argv[2],
612 context->argv[3],
613 context->name_count,
614 context->pid,
615 context->loginuid,
616 context->uid,
617 context->gid,
618 context->euid, context->suid, context->fsuid,
a6c043a8 619 context->egid, context->sgid, context->fsgid, tty);
e495149b 620 audit_log_task_info(ab, tsk);
1da177e4 621 audit_log_end(ab);
1da177e4 622
7551ced3 623 for (aux = context->aux; aux; aux = aux->next) {
c0404993 624
e495149b 625 ab = audit_log_start(context, GFP_KERNEL, aux->type);
1da177e4
LT
626 if (!ab)
627 continue; /* audit_panic has been called */
628
1da177e4 629 switch (aux->type) {
c0404993 630 case AUDIT_IPC: {
1da177e4
LT
631 struct audit_aux_data_ipcctl *axi = (void *)aux;
632 audit_log_format(ab,
9c7aa6aa
SG
633 " qbytes=%lx iuid=%u igid=%u mode=%x",
634 axi->qbytes, axi->uid, axi->gid, axi->mode);
635 if (axi->osid != 0) {
636 char *ctx = NULL;
637 u32 len;
638 if (selinux_ctxid_to_string(
639 axi->osid, &ctx, &len)) {
640 audit_log_format(ab, " obj=%u",
641 axi->osid);
642 call_panic = 1;
643 } else
644 audit_log_format(ab, " obj=%s", ctx);
645 kfree(ctx);
646 }
3ec3b2fb
DW
647 break; }
648
649 case AUDIT_SOCKETCALL: {
650 int i;
651 struct audit_aux_data_socketcall *axs = (void *)aux;
652 audit_log_format(ab, "nargs=%d", axs->nargs);
653 for (i=0; i<axs->nargs; i++)
654 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
655 break; }
656
657 case AUDIT_SOCKADDR: {
658 struct audit_aux_data_sockaddr *axs = (void *)aux;
659
660 audit_log_format(ab, "saddr=");
661 audit_log_hex(ab, axs->a, axs->len);
662 break; }
01116105
SS
663
664 case AUDIT_AVC_PATH: {
665 struct audit_aux_data_path *axi = (void *)aux;
666 audit_log_d_path(ab, "path=", axi->dentry, axi->mnt);
01116105
SS
667 break; }
668
1da177e4
LT
669 }
670 audit_log_end(ab);
1da177e4
LT
671 }
672
8f37d47c 673 if (context->pwd && context->pwdmnt) {
e495149b 674 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
8f37d47c
DW
675 if (ab) {
676 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
677 audit_log_end(ab);
678 }
679 }
1da177e4 680 for (i = 0; i < context->name_count; i++) {
73241ccc
AG
681 unsigned long ino = context->names[i].ino;
682 unsigned long pino = context->names[i].pino;
683
e495149b 684 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
1da177e4
LT
685 if (!ab)
686 continue; /* audit_panic has been called */
8f37d47c 687
1da177e4 688 audit_log_format(ab, "item=%d", i);
73241ccc
AG
689
690 audit_log_format(ab, " name=");
691 if (context->names[i].name)
83c7d091 692 audit_log_untrustedstring(ab, context->names[i].name);
73241ccc
AG
693 else
694 audit_log_format(ab, "(null)");
695
696 if (pino != (unsigned long)-1)
697 audit_log_format(ab, " parent=%lu", pino);
698 if (ino != (unsigned long)-1)
699 audit_log_format(ab, " inode=%lu", ino);
700 if ((pino != (unsigned long)-1) || (ino != (unsigned long)-1))
701 audit_log_format(ab, " dev=%02x:%02x mode=%#o"
702 " ouid=%u ogid=%u rdev=%02x:%02x",
703 MAJOR(context->names[i].dev),
704 MINOR(context->names[i].dev),
705 context->names[i].mode,
706 context->names[i].uid,
707 context->names[i].gid,
708 MAJOR(context->names[i].rdev),
1da177e4 709 MINOR(context->names[i].rdev));
1b50eed9
SG
710 if (context->names[i].osid != 0) {
711 char *ctx = NULL;
712 u32 len;
713 if (selinux_ctxid_to_string(
714 context->names[i].osid, &ctx, &len)) {
715 audit_log_format(ab, " obj=%u",
716 context->names[i].osid);
9c7aa6aa 717 call_panic = 2;
1b50eed9
SG
718 } else
719 audit_log_format(ab, " obj=%s", ctx);
720 kfree(ctx);
8c8570fb
DK
721 }
722
1da177e4
LT
723 audit_log_end(ab);
724 }
9c7aa6aa
SG
725 if (call_panic)
726 audit_panic("error converting sid to string");
1da177e4
LT
727}
728
b0dd25a8
RD
729/**
730 * audit_free - free a per-task audit context
731 * @tsk: task whose audit context block to free
732 *
fa84cb93 733 * Called from copy_process and do_exit
b0dd25a8 734 */
1da177e4
LT
735void audit_free(struct task_struct *tsk)
736{
737 struct audit_context *context;
738
1da177e4 739 context = audit_get_context(tsk, 0, 0);
1da177e4
LT
740 if (likely(!context))
741 return;
742
743 /* Check for system calls that do not go through the exit
f5561964
DW
744 * function (e.g., exit_group), then free context block.
745 * We use GFP_ATOMIC here because we might be doing this
746 * in the context of the idle thread */
e495149b 747 /* that can happen only if we are called from do_exit() */
f7056d64 748 if (context->in_syscall && context->auditable)
e495149b 749 audit_log_exit(context, tsk);
1da177e4
LT
750
751 audit_free_context(context);
752}
753
b0dd25a8
RD
754/**
755 * audit_syscall_entry - fill in an audit record at syscall entry
756 * @tsk: task being audited
757 * @arch: architecture type
758 * @major: major syscall type (function)
759 * @a1: additional syscall register 1
760 * @a2: additional syscall register 2
761 * @a3: additional syscall register 3
762 * @a4: additional syscall register 4
763 *
764 * Fill in audit context at syscall entry. This only happens if the
1da177e4
LT
765 * audit context was created when the task was created and the state or
766 * filters demand the audit context be built. If the state from the
767 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
768 * then the record will be written at syscall exit time (otherwise, it
769 * will only be written if another part of the kernel requests that it
b0dd25a8
RD
770 * be written).
771 */
5411be59 772void audit_syscall_entry(int arch, int major,
1da177e4
LT
773 unsigned long a1, unsigned long a2,
774 unsigned long a3, unsigned long a4)
775{
5411be59 776 struct task_struct *tsk = current;
1da177e4
LT
777 struct audit_context *context = tsk->audit_context;
778 enum audit_state state;
779
780 BUG_ON(!context);
781
b0dd25a8
RD
782 /*
783 * This happens only on certain architectures that make system
1da177e4
LT
784 * calls in kernel_thread via the entry.S interface, instead of
785 * with direct calls. (If you are porting to a new
786 * architecture, hitting this condition can indicate that you
787 * got the _exit/_leave calls backward in entry.S.)
788 *
789 * i386 no
790 * x86_64 no
2ef9481e 791 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
1da177e4
LT
792 *
793 * This also happens with vm86 emulation in a non-nested manner
794 * (entries without exits), so this case must be caught.
795 */
796 if (context->in_syscall) {
797 struct audit_context *newctx;
798
1da177e4
LT
799#if AUDIT_DEBUG
800 printk(KERN_ERR
801 "audit(:%d) pid=%d in syscall=%d;"
802 " entering syscall=%d\n",
803 context->serial, tsk->pid, context->major, major);
804#endif
805 newctx = audit_alloc_context(context->state);
806 if (newctx) {
807 newctx->previous = context;
808 context = newctx;
809 tsk->audit_context = newctx;
810 } else {
811 /* If we can't alloc a new context, the best we
812 * can do is to leak memory (any pending putname
813 * will be lost). The only other alternative is
814 * to abandon auditing. */
815 audit_zero_context(context, context->state);
816 }
817 }
818 BUG_ON(context->in_syscall || context->name_count);
819
820 if (!audit_enabled)
821 return;
822
2fd6f58b 823 context->arch = arch;
1da177e4
LT
824 context->major = major;
825 context->argv[0] = a1;
826 context->argv[1] = a2;
827 context->argv[2] = a3;
828 context->argv[3] = a4;
829
830 state = context->state;
831 if (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT)
0f45aa18 832 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
1da177e4
LT
833 if (likely(state == AUDIT_DISABLED))
834 return;
835
ce625a80 836 context->serial = 0;
1da177e4
LT
837 context->ctime = CURRENT_TIME;
838 context->in_syscall = 1;
839 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
840}
841
b0dd25a8
RD
842/**
843 * audit_syscall_exit - deallocate audit context after a system call
844 * @tsk: task being audited
845 * @valid: success/failure flag
846 * @return_code: syscall return value
847 *
848 * Tear down after system call. If the audit context has been marked as
1da177e4
LT
849 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
850 * filtering, or because some other part of the kernel write an audit
851 * message), then write out the syscall information. In call cases,
b0dd25a8
RD
852 * free the names stored from getname().
853 */
5411be59 854void audit_syscall_exit(int valid, long return_code)
1da177e4 855{
5411be59 856 struct task_struct *tsk = current;
1da177e4
LT
857 struct audit_context *context;
858
2fd6f58b 859 context = audit_get_context(tsk, valid, return_code);
1da177e4 860
1da177e4 861 if (likely(!context))
97e94c45 862 return;
1da177e4 863
f7056d64 864 if (context->in_syscall && context->auditable)
e495149b 865 audit_log_exit(context, tsk);
1da177e4
LT
866
867 context->in_syscall = 0;
868 context->auditable = 0;
2fd6f58b 869
1da177e4
LT
870 if (context->previous) {
871 struct audit_context *new_context = context->previous;
872 context->previous = NULL;
873 audit_free_context(context);
874 tsk->audit_context = new_context;
875 } else {
876 audit_free_names(context);
877 audit_free_aux(context);
1da177e4
LT
878 tsk->audit_context = context;
879 }
1da177e4
LT
880}
881
b0dd25a8
RD
882/**
883 * audit_getname - add a name to the list
884 * @name: name to add
885 *
886 * Add a name to the list of audit names for this context.
887 * Called from fs/namei.c:getname().
888 */
1da177e4
LT
889void audit_getname(const char *name)
890{
891 struct audit_context *context = current->audit_context;
892
893 if (!context || IS_ERR(name) || !name)
894 return;
895
896 if (!context->in_syscall) {
897#if AUDIT_DEBUG == 2
898 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
899 __FILE__, __LINE__, context->serial, name);
900 dump_stack();
901#endif
902 return;
903 }
904 BUG_ON(context->name_count >= AUDIT_NAMES);
905 context->names[context->name_count].name = name;
906 context->names[context->name_count].ino = (unsigned long)-1;
907 ++context->name_count;
8f37d47c
DW
908 if (!context->pwd) {
909 read_lock(&current->fs->lock);
910 context->pwd = dget(current->fs->pwd);
911 context->pwdmnt = mntget(current->fs->pwdmnt);
912 read_unlock(&current->fs->lock);
913 }
914
1da177e4
LT
915}
916
b0dd25a8
RD
917/* audit_putname - intercept a putname request
918 * @name: name to intercept and delay for putname
919 *
920 * If we have stored the name from getname in the audit context,
921 * then we delay the putname until syscall exit.
922 * Called from include/linux/fs.h:putname().
923 */
1da177e4
LT
924void audit_putname(const char *name)
925{
926 struct audit_context *context = current->audit_context;
927
928 BUG_ON(!context);
929 if (!context->in_syscall) {
930#if AUDIT_DEBUG == 2
931 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
932 __FILE__, __LINE__, context->serial, name);
933 if (context->name_count) {
934 int i;
935 for (i = 0; i < context->name_count; i++)
936 printk(KERN_ERR "name[%d] = %p = %s\n", i,
937 context->names[i].name,
73241ccc 938 context->names[i].name ?: "(null)");
1da177e4
LT
939 }
940#endif
941 __putname(name);
942 }
943#if AUDIT_DEBUG
944 else {
945 ++context->put_count;
946 if (context->put_count > context->name_count) {
947 printk(KERN_ERR "%s:%d(:%d): major=%d"
948 " in_syscall=%d putname(%p) name_count=%d"
949 " put_count=%d\n",
950 __FILE__, __LINE__,
951 context->serial, context->major,
952 context->in_syscall, name, context->name_count,
953 context->put_count);
954 dump_stack();
955 }
956 }
957#endif
958}
959
9c7aa6aa 960static void audit_inode_context(int idx, const struct inode *inode)
8c8570fb
DK
961{
962 struct audit_context *context = current->audit_context;
8c8570fb 963
1b50eed9 964 selinux_get_inode_sid(inode, &context->names[idx].osid);
8c8570fb
DK
965}
966
967
b0dd25a8
RD
968/**
969 * audit_inode - store the inode and device from a lookup
970 * @name: name being audited
971 * @inode: inode being audited
972 * @flags: lookup flags (as used in path_lookup())
973 *
974 * Called from fs/namei.c:path_lookup().
975 */
73241ccc 976void __audit_inode(const char *name, const struct inode *inode, unsigned flags)
1da177e4
LT
977{
978 int idx;
979 struct audit_context *context = current->audit_context;
980
981 if (!context->in_syscall)
982 return;
983 if (context->name_count
984 && context->names[context->name_count-1].name
985 && context->names[context->name_count-1].name == name)
986 idx = context->name_count - 1;
987 else if (context->name_count > 1
988 && context->names[context->name_count-2].name
989 && context->names[context->name_count-2].name == name)
990 idx = context->name_count - 2;
991 else {
992 /* FIXME: how much do we care about inodes that have no
993 * associated name? */
994 if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED)
995 return;
996 idx = context->name_count++;
997 context->names[idx].name = NULL;
998#if AUDIT_DEBUG
999 ++context->ino_count;
1000#endif
1001 }
ae7b961b
DW
1002 context->names[idx].dev = inode->i_sb->s_dev;
1003 context->names[idx].mode = inode->i_mode;
1004 context->names[idx].uid = inode->i_uid;
1005 context->names[idx].gid = inode->i_gid;
1006 context->names[idx].rdev = inode->i_rdev;
8c8570fb 1007 audit_inode_context(idx, inode);
73241ccc
AG
1008 if ((flags & LOOKUP_PARENT) && (strcmp(name, "/") != 0) &&
1009 (strcmp(name, ".") != 0)) {
1010 context->names[idx].ino = (unsigned long)-1;
1011 context->names[idx].pino = inode->i_ino;
1012 } else {
1013 context->names[idx].ino = inode->i_ino;
1014 context->names[idx].pino = (unsigned long)-1;
1015 }
1016}
1017
1018/**
1019 * audit_inode_child - collect inode info for created/removed objects
1020 * @dname: inode's dentry name
1021 * @inode: inode being audited
1022 * @pino: inode number of dentry parent
1023 *
1024 * For syscalls that create or remove filesystem objects, audit_inode
1025 * can only collect information for the filesystem object's parent.
1026 * This call updates the audit context with the child's information.
1027 * Syscalls that create a new filesystem object must be hooked after
1028 * the object is created. Syscalls that remove a filesystem object
1029 * must be hooked prior, in order to capture the target inode during
1030 * unsuccessful attempts.
1031 */
1032void __audit_inode_child(const char *dname, const struct inode *inode,
1033 unsigned long pino)
1034{
1035 int idx;
1036 struct audit_context *context = current->audit_context;
1037
1038 if (!context->in_syscall)
1039 return;
1040
1041 /* determine matching parent */
1042 if (dname)
1043 for (idx = 0; idx < context->name_count; idx++)
1044 if (context->names[idx].pino == pino) {
1045 const char *n;
1046 const char *name = context->names[idx].name;
1047 int dlen = strlen(dname);
1048 int nlen = name ? strlen(name) : 0;
1049
1050 if (nlen < dlen)
1051 continue;
1052
1053 /* disregard trailing slashes */
1054 n = name + nlen - 1;
1055 while ((*n == '/') && (n > name))
1056 n--;
1057
1058 /* find last path component */
1059 n = n - dlen + 1;
1060 if (n < name)
1061 continue;
1062 else if (n > name) {
1063 if (*--n != '/')
1064 continue;
1065 else
1066 n++;
1067 }
1068
1069 if (strncmp(n, dname, dlen) == 0)
1070 goto update_context;
1071 }
1072
1073 /* catch-all in case match not found */
1074 idx = context->name_count++;
1075 context->names[idx].name = NULL;
1076 context->names[idx].pino = pino;
1077#if AUDIT_DEBUG
1078 context->ino_count++;
1079#endif
1080
1081update_context:
1082 if (inode) {
1083 context->names[idx].ino = inode->i_ino;
1084 context->names[idx].dev = inode->i_sb->s_dev;
1085 context->names[idx].mode = inode->i_mode;
1086 context->names[idx].uid = inode->i_uid;
1087 context->names[idx].gid = inode->i_gid;
1088 context->names[idx].rdev = inode->i_rdev;
8c8570fb 1089 audit_inode_context(idx, inode);
73241ccc 1090 }
1da177e4
LT
1091}
1092
b0dd25a8
RD
1093/**
1094 * auditsc_get_stamp - get local copies of audit_context values
1095 * @ctx: audit_context for the task
1096 * @t: timespec to store time recorded in the audit_context
1097 * @serial: serial value that is recorded in the audit_context
1098 *
1099 * Also sets the context as auditable.
1100 */
bfb4496e
DW
1101void auditsc_get_stamp(struct audit_context *ctx,
1102 struct timespec *t, unsigned int *serial)
1da177e4 1103{
ce625a80
DW
1104 if (!ctx->serial)
1105 ctx->serial = audit_serial();
bfb4496e
DW
1106 t->tv_sec = ctx->ctime.tv_sec;
1107 t->tv_nsec = ctx->ctime.tv_nsec;
1108 *serial = ctx->serial;
1109 ctx->auditable = 1;
1da177e4
LT
1110}
1111
b0dd25a8
RD
1112/**
1113 * audit_set_loginuid - set a task's audit_context loginuid
1114 * @task: task whose audit context is being modified
1115 * @loginuid: loginuid value
1116 *
1117 * Returns 0.
1118 *
1119 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1120 */
456be6cd 1121int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
1da177e4 1122{
456be6cd 1123 if (task->audit_context) {
c0404993
SG
1124 struct audit_buffer *ab;
1125
9ad9ad38 1126 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
c0404993
SG
1127 if (ab) {
1128 audit_log_format(ab, "login pid=%d uid=%u "
326e9c8b 1129 "old auid=%u new auid=%u",
c0404993
SG
1130 task->pid, task->uid,
1131 task->audit_context->loginuid, loginuid);
1132 audit_log_end(ab);
1133 }
456be6cd 1134 task->audit_context->loginuid = loginuid;
1da177e4
LT
1135 }
1136 return 0;
1137}
1138
b0dd25a8
RD
1139/**
1140 * audit_get_loginuid - get the loginuid for an audit_context
1141 * @ctx: the audit_context
1142 *
1143 * Returns the context's loginuid or -1 if @ctx is NULL.
1144 */
1da177e4
LT
1145uid_t audit_get_loginuid(struct audit_context *ctx)
1146{
1147 return ctx ? ctx->loginuid : -1;
1148}
1149
b0dd25a8
RD
1150/**
1151 * audit_ipc_perms - record audit data for ipc
1152 * @qbytes: msgq bytes
1153 * @uid: msgq user id
1154 * @gid: msgq group id
1155 * @mode: msgq mode (permissions)
1156 *
1157 * Returns 0 for success or NULL context or < 0 on error.
1158 */
8c8570fb 1159int audit_ipc_perms(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode, struct kern_ipc_perm *ipcp)
1da177e4
LT
1160{
1161 struct audit_aux_data_ipcctl *ax;
1162 struct audit_context *context = current->audit_context;
1163
1164 if (likely(!context))
1165 return 0;
1166
8c8570fb 1167 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1da177e4
LT
1168 if (!ax)
1169 return -ENOMEM;
1170
1171 ax->qbytes = qbytes;
1172 ax->uid = uid;
1173 ax->gid = gid;
1174 ax->mode = mode;
9c7aa6aa 1175 selinux_get_ipc_sid(ipcp, &ax->osid);
1da177e4 1176
c0404993 1177 ax->d.type = AUDIT_IPC;
1da177e4
LT
1178 ax->d.next = context->aux;
1179 context->aux = (void *)ax;
1180 return 0;
1181}
c2f0c7c3 1182
b0dd25a8
RD
1183/**
1184 * audit_socketcall - record audit data for sys_socketcall
1185 * @nargs: number of args
1186 * @args: args array
1187 *
1188 * Returns 0 for success or NULL context or < 0 on error.
1189 */
3ec3b2fb
DW
1190int audit_socketcall(int nargs, unsigned long *args)
1191{
1192 struct audit_aux_data_socketcall *ax;
1193 struct audit_context *context = current->audit_context;
1194
1195 if (likely(!context))
1196 return 0;
1197
1198 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1199 if (!ax)
1200 return -ENOMEM;
1201
1202 ax->nargs = nargs;
1203 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1204
1205 ax->d.type = AUDIT_SOCKETCALL;
1206 ax->d.next = context->aux;
1207 context->aux = (void *)ax;
1208 return 0;
1209}
1210
b0dd25a8
RD
1211/**
1212 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1213 * @len: data length in user space
1214 * @a: data address in kernel space
1215 *
1216 * Returns 0 for success or NULL context or < 0 on error.
1217 */
3ec3b2fb
DW
1218int audit_sockaddr(int len, void *a)
1219{
1220 struct audit_aux_data_sockaddr *ax;
1221 struct audit_context *context = current->audit_context;
1222
1223 if (likely(!context))
1224 return 0;
1225
1226 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1227 if (!ax)
1228 return -ENOMEM;
1229
1230 ax->len = len;
1231 memcpy(ax->a, a, len);
1232
1233 ax->d.type = AUDIT_SOCKADDR;
1234 ax->d.next = context->aux;
1235 context->aux = (void *)ax;
1236 return 0;
1237}
1238
b0dd25a8
RD
1239/**
1240 * audit_avc_path - record the granting or denial of permissions
1241 * @dentry: dentry to record
1242 * @mnt: mnt to record
1243 *
1244 * Returns 0 for success or NULL context or < 0 on error.
1245 *
1246 * Called from security/selinux/avc.c::avc_audit()
1247 */
01116105
SS
1248int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt)
1249{
1250 struct audit_aux_data_path *ax;
1251 struct audit_context *context = current->audit_context;
1252
1253 if (likely(!context))
1254 return 0;
1255
1256 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1257 if (!ax)
1258 return -ENOMEM;
1259
1260 ax->dentry = dget(dentry);
1261 ax->mnt = mntget(mnt);
1262
1263 ax->d.type = AUDIT_AVC_PATH;
1264 ax->d.next = context->aux;
1265 context->aux = (void *)ax;
1266 return 0;
1267}
1268
b0dd25a8
RD
1269/**
1270 * audit_signal_info - record signal info for shutting down audit subsystem
1271 * @sig: signal value
1272 * @t: task being signaled
1273 *
1274 * If the audit subsystem is being terminated, record the task (pid)
1275 * and uid that is doing that.
1276 */
c2f0c7c3
SG
1277void audit_signal_info(int sig, struct task_struct *t)
1278{
1279 extern pid_t audit_sig_pid;
1280 extern uid_t audit_sig_uid;
c2f0c7c3 1281
582edda5 1282 if (unlikely(audit_pid && t->tgid == audit_pid)) {
c2f0c7c3
SG
1283 if (sig == SIGTERM || sig == SIGHUP) {
1284 struct audit_context *ctx = current->audit_context;
1285 audit_sig_pid = current->pid;
1286 if (ctx)
1287 audit_sig_uid = ctx->loginuid;
1288 else
1289 audit_sig_uid = current->uid;
1290 }
1291 }
1292}