[PATCH] mark context of syscall entered with no rules as dummy
[linux-2.6-block.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.
20ca73bc 6 * Copyright (C) 2005, 2006 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 *
20ca73bc
GW
32 * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>,
33 * 2006.
34 *
b63862f4
DK
35 * The support of additional filter rules compares (>, <, >=, <=) was
36 * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
37 *
73241ccc
AG
38 * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
39 * filesystem information.
8c8570fb
DK
40 *
41 * Subject and object context labeling support added by <danjones@us.ibm.com>
42 * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
1da177e4
LT
43 */
44
45#include <linux/init.h>
1da177e4 46#include <asm/types.h>
715b49ef 47#include <asm/atomic.h>
73241ccc
AG
48#include <asm/types.h>
49#include <linux/fs.h>
50#include <linux/namei.h>
1da177e4
LT
51#include <linux/mm.h>
52#include <linux/module.h>
01116105 53#include <linux/mount.h>
3ec3b2fb 54#include <linux/socket.h>
20ca73bc 55#include <linux/mqueue.h>
1da177e4
LT
56#include <linux/audit.h>
57#include <linux/personality.h>
58#include <linux/time.h>
5bb289b5 59#include <linux/netlink.h>
f5561964 60#include <linux/compiler.h>
1da177e4 61#include <asm/unistd.h>
8c8570fb 62#include <linux/security.h>
fe7752ba 63#include <linux/list.h>
a6c043a8 64#include <linux/tty.h>
3dc7e315 65#include <linux/selinux.h>
473ae30b 66#include <linux/binfmts.h>
f46038ff 67#include <linux/syscalls.h>
1da177e4 68
fe7752ba 69#include "audit.h"
1da177e4 70
fe7752ba 71extern struct list_head audit_filter_list[];
1da177e4
LT
72
73/* No syscall auditing will take place unless audit_enabled != 0. */
74extern int audit_enabled;
75
76/* AUDIT_NAMES is the number of slots we reserve in the audit_context
77 * for saving names from getname(). */
78#define AUDIT_NAMES 20
79
80/* AUDIT_NAMES_RESERVED is the number of slots we reserve in the
81 * audit_context from being used for nameless inodes from
82 * path_lookup. */
83#define AUDIT_NAMES_RESERVED 7
84
9c937dcc
AG
85/* Indicates that audit should log the full pathname. */
86#define AUDIT_NAME_FULL -1
87
471a5c7c
AV
88/* number of audit rules */
89int audit_n_rules;
90
1da177e4
LT
91/* When fs/namei.c:getname() is called, we store the pointer in name and
92 * we don't let putname() free it (instead we free all of the saved
93 * pointers at syscall exit time).
94 *
95 * Further, in fs/namei.c:path_lookup() we store the inode and device. */
96struct audit_names {
97 const char *name;
9c937dcc
AG
98 int name_len; /* number of name's characters to log */
99 unsigned name_put; /* call __putname() for this name */
1da177e4
LT
100 unsigned long ino;
101 dev_t dev;
102 umode_t mode;
103 uid_t uid;
104 gid_t gid;
105 dev_t rdev;
1b50eed9 106 u32 osid;
1da177e4
LT
107};
108
109struct audit_aux_data {
110 struct audit_aux_data *next;
111 int type;
112};
113
114#define AUDIT_AUX_IPCPERM 0
115
20ca73bc
GW
116struct audit_aux_data_mq_open {
117 struct audit_aux_data d;
118 int oflag;
119 mode_t mode;
120 struct mq_attr attr;
121};
122
123struct audit_aux_data_mq_sendrecv {
124 struct audit_aux_data d;
125 mqd_t mqdes;
126 size_t msg_len;
127 unsigned int msg_prio;
128 struct timespec abs_timeout;
129};
130
131struct audit_aux_data_mq_notify {
132 struct audit_aux_data d;
133 mqd_t mqdes;
134 struct sigevent notification;
135};
136
137struct audit_aux_data_mq_getsetattr {
138 struct audit_aux_data d;
139 mqd_t mqdes;
140 struct mq_attr mqstat;
141};
142
1da177e4
LT
143struct audit_aux_data_ipcctl {
144 struct audit_aux_data d;
145 struct ipc_perm p;
146 unsigned long qbytes;
147 uid_t uid;
148 gid_t gid;
149 mode_t mode;
9c7aa6aa 150 u32 osid;
1da177e4
LT
151};
152
473ae30b
AV
153struct audit_aux_data_execve {
154 struct audit_aux_data d;
155 int argc;
156 int envc;
157 char mem[0];
158};
159
3ec3b2fb
DW
160struct audit_aux_data_socketcall {
161 struct audit_aux_data d;
162 int nargs;
163 unsigned long args[0];
164};
165
166struct audit_aux_data_sockaddr {
167 struct audit_aux_data d;
168 int len;
169 char a[0];
170};
171
01116105
SS
172struct audit_aux_data_path {
173 struct audit_aux_data d;
174 struct dentry *dentry;
175 struct vfsmount *mnt;
176};
1da177e4
LT
177
178/* The per-task audit context. */
179struct audit_context {
d51374ad 180 int dummy; /* must be the first element */
1da177e4
LT
181 int in_syscall; /* 1 if task is in a syscall */
182 enum audit_state state;
183 unsigned int serial; /* serial number for record */
184 struct timespec ctime; /* time of syscall entry */
185 uid_t loginuid; /* login uid (identity) */
186 int major; /* syscall number */
187 unsigned long argv[4]; /* syscall arguments */
188 int return_valid; /* return code is valid */
2fd6f58b 189 long return_code;/* syscall return code */
1da177e4
LT
190 int auditable; /* 1 if record should be written */
191 int name_count;
192 struct audit_names names[AUDIT_NAMES];
5adc8a6a 193 char * filterkey; /* key for rule that triggered record */
8f37d47c
DW
194 struct dentry * pwd;
195 struct vfsmount * pwdmnt;
1da177e4
LT
196 struct audit_context *previous; /* For nested syscalls */
197 struct audit_aux_data *aux;
198
199 /* Save things to print about task_struct */
f46038ff 200 pid_t pid, ppid;
1da177e4
LT
201 uid_t uid, euid, suid, fsuid;
202 gid_t gid, egid, sgid, fsgid;
203 unsigned long personality;
2fd6f58b 204 int arch;
1da177e4
LT
205
206#if AUDIT_DEBUG
207 int put_count;
208 int ino_count;
209#endif
210};
211
f368c07d 212/* Determine if any context name data matches a rule's watch data */
1da177e4
LT
213/* Compare a task_struct with an audit_rule. Return 1 on match, 0
214 * otherwise. */
215static int audit_filter_rules(struct task_struct *tsk,
93315ed6 216 struct audit_krule *rule,
1da177e4 217 struct audit_context *ctx,
f368c07d 218 struct audit_names *name,
1da177e4
LT
219 enum audit_state *state)
220{
2ad312d2 221 int i, j, need_sid = 1;
3dc7e315
DG
222 u32 sid;
223
1da177e4 224 for (i = 0; i < rule->field_count; i++) {
93315ed6 225 struct audit_field *f = &rule->fields[i];
1da177e4
LT
226 int result = 0;
227
93315ed6 228 switch (f->type) {
1da177e4 229 case AUDIT_PID:
93315ed6 230 result = audit_comparator(tsk->pid, f->op, f->val);
1da177e4 231 break;
3c66251e
AV
232 case AUDIT_PPID:
233 if (ctx)
234 result = audit_comparator(ctx->ppid, f->op, f->val);
235 break;
1da177e4 236 case AUDIT_UID:
93315ed6 237 result = audit_comparator(tsk->uid, f->op, f->val);
1da177e4
LT
238 break;
239 case AUDIT_EUID:
93315ed6 240 result = audit_comparator(tsk->euid, f->op, f->val);
1da177e4
LT
241 break;
242 case AUDIT_SUID:
93315ed6 243 result = audit_comparator(tsk->suid, f->op, f->val);
1da177e4
LT
244 break;
245 case AUDIT_FSUID:
93315ed6 246 result = audit_comparator(tsk->fsuid, f->op, f->val);
1da177e4
LT
247 break;
248 case AUDIT_GID:
93315ed6 249 result = audit_comparator(tsk->gid, f->op, f->val);
1da177e4
LT
250 break;
251 case AUDIT_EGID:
93315ed6 252 result = audit_comparator(tsk->egid, f->op, f->val);
1da177e4
LT
253 break;
254 case AUDIT_SGID:
93315ed6 255 result = audit_comparator(tsk->sgid, f->op, f->val);
1da177e4
LT
256 break;
257 case AUDIT_FSGID:
93315ed6 258 result = audit_comparator(tsk->fsgid, f->op, f->val);
1da177e4
LT
259 break;
260 case AUDIT_PERS:
93315ed6 261 result = audit_comparator(tsk->personality, f->op, f->val);
1da177e4 262 break;
2fd6f58b 263 case AUDIT_ARCH:
b63862f4 264 if (ctx)
93315ed6 265 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f58b 266 break;
1da177e4
LT
267
268 case AUDIT_EXIT:
269 if (ctx && ctx->return_valid)
93315ed6 270 result = audit_comparator(ctx->return_code, f->op, f->val);
1da177e4
LT
271 break;
272 case AUDIT_SUCCESS:
b01f2cc1 273 if (ctx && ctx->return_valid) {
93315ed6
AG
274 if (f->val)
275 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
b01f2cc1 276 else
93315ed6 277 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
b01f2cc1 278 }
1da177e4
LT
279 break;
280 case AUDIT_DEVMAJOR:
f368c07d
AG
281 if (name)
282 result = audit_comparator(MAJOR(name->dev),
283 f->op, f->val);
284 else if (ctx) {
1da177e4 285 for (j = 0; j < ctx->name_count; j++) {
93315ed6 286 if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) {
1da177e4
LT
287 ++result;
288 break;
289 }
290 }
291 }
292 break;
293 case AUDIT_DEVMINOR:
f368c07d
AG
294 if (name)
295 result = audit_comparator(MINOR(name->dev),
296 f->op, f->val);
297 else if (ctx) {
1da177e4 298 for (j = 0; j < ctx->name_count; j++) {
93315ed6 299 if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) {
1da177e4
LT
300 ++result;
301 break;
302 }
303 }
304 }
305 break;
306 case AUDIT_INODE:
f368c07d 307 if (name)
9c937dcc 308 result = (name->ino == f->val);
f368c07d 309 else if (ctx) {
1da177e4 310 for (j = 0; j < ctx->name_count; j++) {
9c937dcc 311 if (audit_comparator(ctx->names[j].ino, f->op, f->val)) {
1da177e4
LT
312 ++result;
313 break;
314 }
315 }
316 }
317 break;
f368c07d
AG
318 case AUDIT_WATCH:
319 if (name && rule->watch->ino != (unsigned long)-1)
320 result = (name->dev == rule->watch->dev &&
9c937dcc 321 name->ino == rule->watch->ino);
f368c07d 322 break;
1da177e4
LT
323 case AUDIT_LOGINUID:
324 result = 0;
325 if (ctx)
93315ed6 326 result = audit_comparator(ctx->loginuid, f->op, f->val);
1da177e4 327 break;
3a6b9f85
DG
328 case AUDIT_SUBJ_USER:
329 case AUDIT_SUBJ_ROLE:
330 case AUDIT_SUBJ_TYPE:
331 case AUDIT_SUBJ_SEN:
332 case AUDIT_SUBJ_CLR:
3dc7e315
DG
333 /* NOTE: this may return negative values indicating
334 a temporary error. We simply treat this as a
335 match for now to avoid losing information that
336 may be wanted. An error message will also be
337 logged upon error */
2ad312d2
SG
338 if (f->se_rule) {
339 if (need_sid) {
340 selinux_task_ctxid(tsk, &sid);
341 need_sid = 0;
342 }
3dc7e315
DG
343 result = selinux_audit_rule_match(sid, f->type,
344 f->op,
345 f->se_rule,
346 ctx);
2ad312d2 347 }
3dc7e315 348 break;
6e5a2d1d
DG
349 case AUDIT_OBJ_USER:
350 case AUDIT_OBJ_ROLE:
351 case AUDIT_OBJ_TYPE:
352 case AUDIT_OBJ_LEV_LOW:
353 case AUDIT_OBJ_LEV_HIGH:
354 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
355 also applies here */
356 if (f->se_rule) {
357 /* Find files that match */
358 if (name) {
359 result = selinux_audit_rule_match(
360 name->osid, f->type, f->op,
361 f->se_rule, ctx);
362 } else if (ctx) {
363 for (j = 0; j < ctx->name_count; j++) {
364 if (selinux_audit_rule_match(
365 ctx->names[j].osid,
366 f->type, f->op,
367 f->se_rule, ctx)) {
368 ++result;
369 break;
370 }
371 }
372 }
373 /* Find ipc objects that match */
374 if (ctx) {
375 struct audit_aux_data *aux;
376 for (aux = ctx->aux; aux;
377 aux = aux->next) {
378 if (aux->type == AUDIT_IPC) {
379 struct audit_aux_data_ipcctl *axi = (void *)aux;
380 if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) {
381 ++result;
382 break;
383 }
384 }
385 }
386 }
387 }
388 break;
1da177e4
LT
389 case AUDIT_ARG0:
390 case AUDIT_ARG1:
391 case AUDIT_ARG2:
392 case AUDIT_ARG3:
393 if (ctx)
93315ed6 394 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
1da177e4 395 break;
5adc8a6a
AG
396 case AUDIT_FILTERKEY:
397 /* ignore this field for filtering */
398 result = 1;
399 break;
1da177e4
LT
400 }
401
1da177e4
LT
402 if (!result)
403 return 0;
404 }
5adc8a6a
AG
405 if (rule->filterkey)
406 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
1da177e4
LT
407 switch (rule->action) {
408 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
1da177e4
LT
409 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
410 }
411 return 1;
412}
413
414/* At process creation time, we can determine if system-call auditing is
415 * completely disabled for this task. Since we only have the task
416 * structure at this point, we can only check uid and gid.
417 */
418static enum audit_state audit_filter_task(struct task_struct *tsk)
419{
420 struct audit_entry *e;
421 enum audit_state state;
422
423 rcu_read_lock();
0f45aa18 424 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
f368c07d 425 if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) {
1da177e4
LT
426 rcu_read_unlock();
427 return state;
428 }
429 }
430 rcu_read_unlock();
431 return AUDIT_BUILD_CONTEXT;
432}
433
434/* At syscall entry and exit time, this filter is called if the
435 * audit_state is not low enough that auditing cannot take place, but is
23f32d18 436 * also not high enough that we already know we have to write an audit
b0dd25a8 437 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
1da177e4
LT
438 */
439static enum audit_state audit_filter_syscall(struct task_struct *tsk,
440 struct audit_context *ctx,
441 struct list_head *list)
442{
443 struct audit_entry *e;
c3896495 444 enum audit_state state;
1da177e4 445
351bb722 446 if (audit_pid && tsk->tgid == audit_pid)
f7056d64
DW
447 return AUDIT_DISABLED;
448
1da177e4 449 rcu_read_lock();
c3896495 450 if (!list_empty(list)) {
b63862f4
DK
451 int word = AUDIT_WORD(ctx->major);
452 int bit = AUDIT_BIT(ctx->major);
453
454 list_for_each_entry_rcu(e, list, list) {
f368c07d
AG
455 if ((e->rule.mask[word] & bit) == bit &&
456 audit_filter_rules(tsk, &e->rule, ctx, NULL,
457 &state)) {
458 rcu_read_unlock();
459 return state;
460 }
461 }
462 }
463 rcu_read_unlock();
464 return AUDIT_BUILD_CONTEXT;
465}
466
467/* At syscall exit time, this filter is called if any audit_names[] have been
468 * collected during syscall processing. We only check rules in sublists at hash
469 * buckets applicable to the inode numbers in audit_names[].
470 * Regarding audit_state, same rules apply as for audit_filter_syscall().
471 */
472enum audit_state audit_filter_inodes(struct task_struct *tsk,
473 struct audit_context *ctx)
474{
475 int i;
476 struct audit_entry *e;
477 enum audit_state state;
478
479 if (audit_pid && tsk->tgid == audit_pid)
480 return AUDIT_DISABLED;
481
482 rcu_read_lock();
483 for (i = 0; i < ctx->name_count; i++) {
484 int word = AUDIT_WORD(ctx->major);
485 int bit = AUDIT_BIT(ctx->major);
486 struct audit_names *n = &ctx->names[i];
487 int h = audit_hash_ino((u32)n->ino);
488 struct list_head *list = &audit_inode_hash[h];
489
490 if (list_empty(list))
491 continue;
492
493 list_for_each_entry_rcu(e, list, list) {
494 if ((e->rule.mask[word] & bit) == bit &&
495 audit_filter_rules(tsk, &e->rule, ctx, n, &state)) {
b63862f4
DK
496 rcu_read_unlock();
497 return state;
498 }
0f45aa18
DW
499 }
500 }
501 rcu_read_unlock();
1da177e4 502 return AUDIT_BUILD_CONTEXT;
0f45aa18
DW
503}
504
f368c07d
AG
505void audit_set_auditable(struct audit_context *ctx)
506{
507 ctx->auditable = 1;
508}
509
1da177e4
LT
510static inline struct audit_context *audit_get_context(struct task_struct *tsk,
511 int return_valid,
512 int return_code)
513{
514 struct audit_context *context = tsk->audit_context;
515
516 if (likely(!context))
517 return NULL;
518 context->return_valid = return_valid;
519 context->return_code = return_code;
520
d51374ad 521 if (context->in_syscall && !context->dummy && !context->auditable) {
1da177e4 522 enum audit_state state;
f368c07d 523
0f45aa18 524 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
f368c07d
AG
525 if (state == AUDIT_RECORD_CONTEXT) {
526 context->auditable = 1;
527 goto get_context;
528 }
529
530 state = audit_filter_inodes(tsk, context);
1da177e4
LT
531 if (state == AUDIT_RECORD_CONTEXT)
532 context->auditable = 1;
f368c07d 533
1da177e4
LT
534 }
535
f368c07d 536get_context:
1da177e4 537 context->pid = tsk->pid;
f46038ff 538 context->ppid = sys_getppid(); /* sic. tsk == current in all cases */
1da177e4
LT
539 context->uid = tsk->uid;
540 context->gid = tsk->gid;
541 context->euid = tsk->euid;
542 context->suid = tsk->suid;
543 context->fsuid = tsk->fsuid;
544 context->egid = tsk->egid;
545 context->sgid = tsk->sgid;
546 context->fsgid = tsk->fsgid;
547 context->personality = tsk->personality;
548 tsk->audit_context = NULL;
549 return context;
550}
551
552static inline void audit_free_names(struct audit_context *context)
553{
554 int i;
555
556#if AUDIT_DEBUG == 2
557 if (context->auditable
558 ||context->put_count + context->ino_count != context->name_count) {
73241ccc 559 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
1da177e4
LT
560 " name_count=%d put_count=%d"
561 " ino_count=%d [NOT freeing]\n",
73241ccc 562 __FILE__, __LINE__,
1da177e4
LT
563 context->serial, context->major, context->in_syscall,
564 context->name_count, context->put_count,
565 context->ino_count);
8c8570fb 566 for (i = 0; i < context->name_count; i++) {
1da177e4
LT
567 printk(KERN_ERR "names[%d] = %p = %s\n", i,
568 context->names[i].name,
73241ccc 569 context->names[i].name ?: "(null)");
8c8570fb 570 }
1da177e4
LT
571 dump_stack();
572 return;
573 }
574#endif
575#if AUDIT_DEBUG
576 context->put_count = 0;
577 context->ino_count = 0;
578#endif
579
8c8570fb 580 for (i = 0; i < context->name_count; i++) {
9c937dcc 581 if (context->names[i].name && context->names[i].name_put)
1da177e4 582 __putname(context->names[i].name);
8c8570fb 583 }
1da177e4 584 context->name_count = 0;
8f37d47c
DW
585 if (context->pwd)
586 dput(context->pwd);
587 if (context->pwdmnt)
588 mntput(context->pwdmnt);
589 context->pwd = NULL;
590 context->pwdmnt = NULL;
1da177e4
LT
591}
592
593static inline void audit_free_aux(struct audit_context *context)
594{
595 struct audit_aux_data *aux;
596
597 while ((aux = context->aux)) {
01116105
SS
598 if (aux->type == AUDIT_AVC_PATH) {
599 struct audit_aux_data_path *axi = (void *)aux;
600 dput(axi->dentry);
601 mntput(axi->mnt);
602 }
8c8570fb 603
1da177e4
LT
604 context->aux = aux->next;
605 kfree(aux);
606 }
607}
608
609static inline void audit_zero_context(struct audit_context *context,
610 enum audit_state state)
611{
612 uid_t loginuid = context->loginuid;
613
614 memset(context, 0, sizeof(*context));
615 context->state = state;
616 context->loginuid = loginuid;
617}
618
619static inline struct audit_context *audit_alloc_context(enum audit_state state)
620{
621 struct audit_context *context;
622
623 if (!(context = kmalloc(sizeof(*context), GFP_KERNEL)))
624 return NULL;
625 audit_zero_context(context, state);
626 return context;
627}
628
b0dd25a8
RD
629/**
630 * audit_alloc - allocate an audit context block for a task
631 * @tsk: task
632 *
633 * Filter on the task information and allocate a per-task audit context
1da177e4
LT
634 * if necessary. Doing so turns on system call auditing for the
635 * specified task. This is called from copy_process, so no lock is
b0dd25a8
RD
636 * needed.
637 */
1da177e4
LT
638int audit_alloc(struct task_struct *tsk)
639{
640 struct audit_context *context;
641 enum audit_state state;
642
643 if (likely(!audit_enabled))
644 return 0; /* Return if not auditing. */
645
646 state = audit_filter_task(tsk);
647 if (likely(state == AUDIT_DISABLED))
648 return 0;
649
650 if (!(context = audit_alloc_context(state))) {
651 audit_log_lost("out of memory in audit_alloc");
652 return -ENOMEM;
653 }
654
655 /* Preserve login uid */
656 context->loginuid = -1;
657 if (current->audit_context)
658 context->loginuid = current->audit_context->loginuid;
659
660 tsk->audit_context = context;
661 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
662 return 0;
663}
664
665static inline void audit_free_context(struct audit_context *context)
666{
667 struct audit_context *previous;
668 int count = 0;
669
670 do {
671 previous = context->previous;
672 if (previous || (count && count < 10)) {
673 ++count;
674 printk(KERN_ERR "audit(:%d): major=%d name_count=%d:"
675 " freeing multiple contexts (%d)\n",
676 context->serial, context->major,
677 context->name_count, count);
678 }
679 audit_free_names(context);
680 audit_free_aux(context);
5adc8a6a 681 kfree(context->filterkey);
1da177e4
LT
682 kfree(context);
683 context = previous;
684 } while (context);
685 if (count >= 10)
686 printk(KERN_ERR "audit: freed %d contexts\n", count);
687}
688
e495149b 689static void audit_log_task_context(struct audit_buffer *ab)
8c8570fb
DK
690{
691 char *ctx = NULL;
692 ssize_t len = 0;
693
694 len = security_getprocattr(current, "current", NULL, 0);
695 if (len < 0) {
696 if (len != -EINVAL)
697 goto error_path;
698 return;
699 }
700
e495149b 701 ctx = kmalloc(len, GFP_KERNEL);
7306a0b9 702 if (!ctx)
8c8570fb 703 goto error_path;
8c8570fb
DK
704
705 len = security_getprocattr(current, "current", ctx, len);
706 if (len < 0 )
707 goto error_path;
708
709 audit_log_format(ab, " subj=%s", ctx);
7306a0b9 710 return;
8c8570fb
DK
711
712error_path:
9a66a53f 713 kfree(ctx);
7306a0b9 714 audit_panic("error in audit_log_task_context");
8c8570fb
DK
715 return;
716}
717
e495149b 718static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
219f0817 719{
45d9bb0e
AV
720 char name[sizeof(tsk->comm)];
721 struct mm_struct *mm = tsk->mm;
219f0817
SS
722 struct vm_area_struct *vma;
723
e495149b
AV
724 /* tsk == current */
725
45d9bb0e 726 get_task_comm(name, tsk);
99e45eea
DW
727 audit_log_format(ab, " comm=");
728 audit_log_untrustedstring(ab, name);
219f0817 729
e495149b
AV
730 if (mm) {
731 down_read(&mm->mmap_sem);
732 vma = mm->mmap;
733 while (vma) {
734 if ((vma->vm_flags & VM_EXECUTABLE) &&
735 vma->vm_file) {
736 audit_log_d_path(ab, "exe=",
737 vma->vm_file->f_dentry,
738 vma->vm_file->f_vfsmnt);
739 break;
740 }
741 vma = vma->vm_next;
219f0817 742 }
e495149b 743 up_read(&mm->mmap_sem);
219f0817 744 }
e495149b 745 audit_log_task_context(ab);
219f0817
SS
746}
747
e495149b 748static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
1da177e4 749{
9c7aa6aa 750 int i, call_panic = 0;
1da177e4 751 struct audit_buffer *ab;
7551ced3 752 struct audit_aux_data *aux;
a6c043a8 753 const char *tty;
1da177e4 754
e495149b
AV
755 /* tsk == current */
756
757 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
1da177e4
LT
758 if (!ab)
759 return; /* audit_panic has been called */
bccf6ae0
DW
760 audit_log_format(ab, "arch=%x syscall=%d",
761 context->arch, context->major);
1da177e4
LT
762 if (context->personality != PER_LINUX)
763 audit_log_format(ab, " per=%lx", context->personality);
764 if (context->return_valid)
2fd6f58b 765 audit_log_format(ab, " success=%s exit=%ld",
766 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
767 context->return_code);
45d9bb0e
AV
768 if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name)
769 tty = tsk->signal->tty->name;
a6c043a8
SG
770 else
771 tty = "(none)";
1da177e4
LT
772 audit_log_format(ab,
773 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d"
f46038ff 774 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
326e9c8b 775 " euid=%u suid=%u fsuid=%u"
a6c043a8 776 " egid=%u sgid=%u fsgid=%u tty=%s",
1da177e4
LT
777 context->argv[0],
778 context->argv[1],
779 context->argv[2],
780 context->argv[3],
781 context->name_count,
f46038ff 782 context->ppid,
1da177e4
LT
783 context->pid,
784 context->loginuid,
785 context->uid,
786 context->gid,
787 context->euid, context->suid, context->fsuid,
a6c043a8 788 context->egid, context->sgid, context->fsgid, tty);
e495149b 789 audit_log_task_info(ab, tsk);
5adc8a6a
AG
790 if (context->filterkey) {
791 audit_log_format(ab, " key=");
792 audit_log_untrustedstring(ab, context->filterkey);
793 } else
794 audit_log_format(ab, " key=(null)");
1da177e4 795 audit_log_end(ab);
1da177e4 796
7551ced3 797 for (aux = context->aux; aux; aux = aux->next) {
c0404993 798
e495149b 799 ab = audit_log_start(context, GFP_KERNEL, aux->type);
1da177e4
LT
800 if (!ab)
801 continue; /* audit_panic has been called */
802
1da177e4 803 switch (aux->type) {
20ca73bc
GW
804 case AUDIT_MQ_OPEN: {
805 struct audit_aux_data_mq_open *axi = (void *)aux;
806 audit_log_format(ab,
807 "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld "
808 "mq_msgsize=%ld mq_curmsgs=%ld",
809 axi->oflag, axi->mode, axi->attr.mq_flags,
810 axi->attr.mq_maxmsg, axi->attr.mq_msgsize,
811 axi->attr.mq_curmsgs);
812 break; }
813
814 case AUDIT_MQ_SENDRECV: {
815 struct audit_aux_data_mq_sendrecv *axi = (void *)aux;
816 audit_log_format(ab,
817 "mqdes=%d msg_len=%zd msg_prio=%u "
818 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
819 axi->mqdes, axi->msg_len, axi->msg_prio,
820 axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec);
821 break; }
822
823 case AUDIT_MQ_NOTIFY: {
824 struct audit_aux_data_mq_notify *axi = (void *)aux;
825 audit_log_format(ab,
826 "mqdes=%d sigev_signo=%d",
827 axi->mqdes,
828 axi->notification.sigev_signo);
829 break; }
830
831 case AUDIT_MQ_GETSETATTR: {
832 struct audit_aux_data_mq_getsetattr *axi = (void *)aux;
833 audit_log_format(ab,
834 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
835 "mq_curmsgs=%ld ",
836 axi->mqdes,
837 axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg,
838 axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs);
839 break; }
840
c0404993 841 case AUDIT_IPC: {
1da177e4
LT
842 struct audit_aux_data_ipcctl *axi = (void *)aux;
843 audit_log_format(ab,
ac03221a
LK
844 "ouid=%u ogid=%u mode=%x",
845 axi->uid, axi->gid, axi->mode);
9c7aa6aa
SG
846 if (axi->osid != 0) {
847 char *ctx = NULL;
848 u32 len;
849 if (selinux_ctxid_to_string(
850 axi->osid, &ctx, &len)) {
ce29b682 851 audit_log_format(ab, " osid=%u",
9c7aa6aa
SG
852 axi->osid);
853 call_panic = 1;
854 } else
855 audit_log_format(ab, " obj=%s", ctx);
856 kfree(ctx);
857 }
3ec3b2fb
DW
858 break; }
859
073115d6
SG
860 case AUDIT_IPC_SET_PERM: {
861 struct audit_aux_data_ipcctl *axi = (void *)aux;
862 audit_log_format(ab,
ac03221a 863 "qbytes=%lx ouid=%u ogid=%u mode=%x",
073115d6 864 axi->qbytes, axi->uid, axi->gid, axi->mode);
073115d6 865 break; }
ac03221a 866
473ae30b
AV
867 case AUDIT_EXECVE: {
868 struct audit_aux_data_execve *axi = (void *)aux;
869 int i;
870 const char *p;
871 for (i = 0, p = axi->mem; i < axi->argc; i++) {
872 audit_log_format(ab, "a%d=", i);
873 p = audit_log_untrustedstring(ab, p);
874 audit_log_format(ab, "\n");
875 }
876 break; }
073115d6 877
3ec3b2fb
DW
878 case AUDIT_SOCKETCALL: {
879 int i;
880 struct audit_aux_data_socketcall *axs = (void *)aux;
881 audit_log_format(ab, "nargs=%d", axs->nargs);
882 for (i=0; i<axs->nargs; i++)
883 audit_log_format(ab, " a%d=%lx", i, axs->args[i]);
884 break; }
885
886 case AUDIT_SOCKADDR: {
887 struct audit_aux_data_sockaddr *axs = (void *)aux;
888
889 audit_log_format(ab, "saddr=");
890 audit_log_hex(ab, axs->a, axs->len);
891 break; }
01116105
SS
892
893 case AUDIT_AVC_PATH: {
894 struct audit_aux_data_path *axi = (void *)aux;
895 audit_log_d_path(ab, "path=", axi->dentry, axi->mnt);
01116105
SS
896 break; }
897
1da177e4
LT
898 }
899 audit_log_end(ab);
1da177e4
LT
900 }
901
8f37d47c 902 if (context->pwd && context->pwdmnt) {
e495149b 903 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
8f37d47c
DW
904 if (ab) {
905 audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt);
906 audit_log_end(ab);
907 }
908 }
1da177e4 909 for (i = 0; i < context->name_count; i++) {
9c937dcc 910 struct audit_names *n = &context->names[i];
73241ccc 911
e495149b 912 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
1da177e4
LT
913 if (!ab)
914 continue; /* audit_panic has been called */
8f37d47c 915
1da177e4 916 audit_log_format(ab, "item=%d", i);
73241ccc 917
9c937dcc
AG
918 if (n->name) {
919 switch(n->name_len) {
920 case AUDIT_NAME_FULL:
921 /* log the full path */
922 audit_log_format(ab, " name=");
923 audit_log_untrustedstring(ab, n->name);
924 break;
925 case 0:
926 /* name was specified as a relative path and the
927 * directory component is the cwd */
928 audit_log_d_path(ab, " name=", context->pwd,
929 context->pwdmnt);
930 break;
931 default:
932 /* log the name's directory component */
933 audit_log_format(ab, " name=");
934 audit_log_n_untrustedstring(ab, n->name_len,
935 n->name);
936 }
937 } else
938 audit_log_format(ab, " name=(null)");
939
940 if (n->ino != (unsigned long)-1) {
941 audit_log_format(ab, " inode=%lu"
942 " dev=%02x:%02x mode=%#o"
943 " ouid=%u ogid=%u rdev=%02x:%02x",
944 n->ino,
945 MAJOR(n->dev),
946 MINOR(n->dev),
947 n->mode,
948 n->uid,
949 n->gid,
950 MAJOR(n->rdev),
951 MINOR(n->rdev));
952 }
953 if (n->osid != 0) {
1b50eed9
SG
954 char *ctx = NULL;
955 u32 len;
956 if (selinux_ctxid_to_string(
9c937dcc
AG
957 n->osid, &ctx, &len)) {
958 audit_log_format(ab, " osid=%u", n->osid);
9c7aa6aa 959 call_panic = 2;
1b50eed9
SG
960 } else
961 audit_log_format(ab, " obj=%s", ctx);
962 kfree(ctx);
8c8570fb
DK
963 }
964
1da177e4
LT
965 audit_log_end(ab);
966 }
9c7aa6aa
SG
967 if (call_panic)
968 audit_panic("error converting sid to string");
1da177e4
LT
969}
970
b0dd25a8
RD
971/**
972 * audit_free - free a per-task audit context
973 * @tsk: task whose audit context block to free
974 *
fa84cb93 975 * Called from copy_process and do_exit
b0dd25a8 976 */
1da177e4
LT
977void audit_free(struct task_struct *tsk)
978{
979 struct audit_context *context;
980
1da177e4 981 context = audit_get_context(tsk, 0, 0);
1da177e4
LT
982 if (likely(!context))
983 return;
984
985 /* Check for system calls that do not go through the exit
f5561964
DW
986 * function (e.g., exit_group), then free context block.
987 * We use GFP_ATOMIC here because we might be doing this
988 * in the context of the idle thread */
e495149b 989 /* that can happen only if we are called from do_exit() */
f7056d64 990 if (context->in_syscall && context->auditable)
e495149b 991 audit_log_exit(context, tsk);
1da177e4
LT
992
993 audit_free_context(context);
994}
995
b0dd25a8
RD
996/**
997 * audit_syscall_entry - fill in an audit record at syscall entry
998 * @tsk: task being audited
999 * @arch: architecture type
1000 * @major: major syscall type (function)
1001 * @a1: additional syscall register 1
1002 * @a2: additional syscall register 2
1003 * @a3: additional syscall register 3
1004 * @a4: additional syscall register 4
1005 *
1006 * Fill in audit context at syscall entry. This only happens if the
1da177e4
LT
1007 * audit context was created when the task was created and the state or
1008 * filters demand the audit context be built. If the state from the
1009 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1010 * then the record will be written at syscall exit time (otherwise, it
1011 * will only be written if another part of the kernel requests that it
b0dd25a8
RD
1012 * be written).
1013 */
5411be59 1014void audit_syscall_entry(int arch, int major,
1da177e4
LT
1015 unsigned long a1, unsigned long a2,
1016 unsigned long a3, unsigned long a4)
1017{
5411be59 1018 struct task_struct *tsk = current;
1da177e4
LT
1019 struct audit_context *context = tsk->audit_context;
1020 enum audit_state state;
1021
1022 BUG_ON(!context);
1023
b0dd25a8
RD
1024 /*
1025 * This happens only on certain architectures that make system
1da177e4
LT
1026 * calls in kernel_thread via the entry.S interface, instead of
1027 * with direct calls. (If you are porting to a new
1028 * architecture, hitting this condition can indicate that you
1029 * got the _exit/_leave calls backward in entry.S.)
1030 *
1031 * i386 no
1032 * x86_64 no
2ef9481e 1033 * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S)
1da177e4
LT
1034 *
1035 * This also happens with vm86 emulation in a non-nested manner
1036 * (entries without exits), so this case must be caught.
1037 */
1038 if (context->in_syscall) {
1039 struct audit_context *newctx;
1040
1da177e4
LT
1041#if AUDIT_DEBUG
1042 printk(KERN_ERR
1043 "audit(:%d) pid=%d in syscall=%d;"
1044 " entering syscall=%d\n",
1045 context->serial, tsk->pid, context->major, major);
1046#endif
1047 newctx = audit_alloc_context(context->state);
1048 if (newctx) {
1049 newctx->previous = context;
1050 context = newctx;
1051 tsk->audit_context = newctx;
1052 } else {
1053 /* If we can't alloc a new context, the best we
1054 * can do is to leak memory (any pending putname
1055 * will be lost). The only other alternative is
1056 * to abandon auditing. */
1057 audit_zero_context(context, context->state);
1058 }
1059 }
1060 BUG_ON(context->in_syscall || context->name_count);
1061
1062 if (!audit_enabled)
1063 return;
1064
2fd6f58b 1065 context->arch = arch;
1da177e4
LT
1066 context->major = major;
1067 context->argv[0] = a1;
1068 context->argv[1] = a2;
1069 context->argv[2] = a3;
1070 context->argv[3] = a4;
1071
1072 state = context->state;
d51374ad
AV
1073 context->dummy = !audit_n_rules;
1074 if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT))
0f45aa18 1075 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
1da177e4
LT
1076 if (likely(state == AUDIT_DISABLED))
1077 return;
1078
ce625a80 1079 context->serial = 0;
1da177e4
LT
1080 context->ctime = CURRENT_TIME;
1081 context->in_syscall = 1;
1082 context->auditable = !!(state == AUDIT_RECORD_CONTEXT);
1083}
1084
b0dd25a8
RD
1085/**
1086 * audit_syscall_exit - deallocate audit context after a system call
1087 * @tsk: task being audited
1088 * @valid: success/failure flag
1089 * @return_code: syscall return value
1090 *
1091 * Tear down after system call. If the audit context has been marked as
1da177e4
LT
1092 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
1093 * filtering, or because some other part of the kernel write an audit
1094 * message), then write out the syscall information. In call cases,
b0dd25a8
RD
1095 * free the names stored from getname().
1096 */
5411be59 1097void audit_syscall_exit(int valid, long return_code)
1da177e4 1098{
5411be59 1099 struct task_struct *tsk = current;
1da177e4
LT
1100 struct audit_context *context;
1101
2fd6f58b 1102 context = audit_get_context(tsk, valid, return_code);
1da177e4 1103
1da177e4 1104 if (likely(!context))
97e94c45 1105 return;
1da177e4 1106
f7056d64 1107 if (context->in_syscall && context->auditable)
e495149b 1108 audit_log_exit(context, tsk);
1da177e4
LT
1109
1110 context->in_syscall = 0;
1111 context->auditable = 0;
2fd6f58b 1112
1da177e4
LT
1113 if (context->previous) {
1114 struct audit_context *new_context = context->previous;
1115 context->previous = NULL;
1116 audit_free_context(context);
1117 tsk->audit_context = new_context;
1118 } else {
1119 audit_free_names(context);
1120 audit_free_aux(context);
5adc8a6a
AG
1121 kfree(context->filterkey);
1122 context->filterkey = NULL;
1da177e4
LT
1123 tsk->audit_context = context;
1124 }
1da177e4
LT
1125}
1126
b0dd25a8
RD
1127/**
1128 * audit_getname - add a name to the list
1129 * @name: name to add
1130 *
1131 * Add a name to the list of audit names for this context.
1132 * Called from fs/namei.c:getname().
1133 */
d8945bb5 1134void __audit_getname(const char *name)
1da177e4
LT
1135{
1136 struct audit_context *context = current->audit_context;
1137
d8945bb5 1138 if (IS_ERR(name) || !name)
1da177e4
LT
1139 return;
1140
1141 if (!context->in_syscall) {
1142#if AUDIT_DEBUG == 2
1143 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
1144 __FILE__, __LINE__, context->serial, name);
1145 dump_stack();
1146#endif
1147 return;
1148 }
1149 BUG_ON(context->name_count >= AUDIT_NAMES);
1150 context->names[context->name_count].name = name;
9c937dcc
AG
1151 context->names[context->name_count].name_len = AUDIT_NAME_FULL;
1152 context->names[context->name_count].name_put = 1;
1da177e4
LT
1153 context->names[context->name_count].ino = (unsigned long)-1;
1154 ++context->name_count;
8f37d47c
DW
1155 if (!context->pwd) {
1156 read_lock(&current->fs->lock);
1157 context->pwd = dget(current->fs->pwd);
1158 context->pwdmnt = mntget(current->fs->pwdmnt);
1159 read_unlock(&current->fs->lock);
1160 }
1161
1da177e4
LT
1162}
1163
b0dd25a8
RD
1164/* audit_putname - intercept a putname request
1165 * @name: name to intercept and delay for putname
1166 *
1167 * If we have stored the name from getname in the audit context,
1168 * then we delay the putname until syscall exit.
1169 * Called from include/linux/fs.h:putname().
1170 */
1da177e4
LT
1171void audit_putname(const char *name)
1172{
1173 struct audit_context *context = current->audit_context;
1174
1175 BUG_ON(!context);
1176 if (!context->in_syscall) {
1177#if AUDIT_DEBUG == 2
1178 printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n",
1179 __FILE__, __LINE__, context->serial, name);
1180 if (context->name_count) {
1181 int i;
1182 for (i = 0; i < context->name_count; i++)
1183 printk(KERN_ERR "name[%d] = %p = %s\n", i,
1184 context->names[i].name,
73241ccc 1185 context->names[i].name ?: "(null)");
1da177e4
LT
1186 }
1187#endif
1188 __putname(name);
1189 }
1190#if AUDIT_DEBUG
1191 else {
1192 ++context->put_count;
1193 if (context->put_count > context->name_count) {
1194 printk(KERN_ERR "%s:%d(:%d): major=%d"
1195 " in_syscall=%d putname(%p) name_count=%d"
1196 " put_count=%d\n",
1197 __FILE__, __LINE__,
1198 context->serial, context->major,
1199 context->in_syscall, name, context->name_count,
1200 context->put_count);
1201 dump_stack();
1202 }
1203 }
1204#endif
1205}
1206
3e2efce0
AG
1207/* Copy inode data into an audit_names. */
1208static void audit_copy_inode(struct audit_names *name, const struct inode *inode)
8c8570fb 1209{
3e2efce0
AG
1210 name->ino = inode->i_ino;
1211 name->dev = inode->i_sb->s_dev;
1212 name->mode = inode->i_mode;
1213 name->uid = inode->i_uid;
1214 name->gid = inode->i_gid;
1215 name->rdev = inode->i_rdev;
1216 selinux_get_inode_sid(inode, &name->osid);
8c8570fb
DK
1217}
1218
b0dd25a8
RD
1219/**
1220 * audit_inode - store the inode and device from a lookup
1221 * @name: name being audited
1222 * @inode: inode being audited
b0dd25a8
RD
1223 *
1224 * Called from fs/namei.c:path_lookup().
1225 */
9c937dcc 1226void __audit_inode(const char *name, const struct inode *inode)
1da177e4
LT
1227{
1228 int idx;
1229 struct audit_context *context = current->audit_context;
1230
1231 if (!context->in_syscall)
1232 return;
1233 if (context->name_count
1234 && context->names[context->name_count-1].name
1235 && context->names[context->name_count-1].name == name)
1236 idx = context->name_count - 1;
1237 else if (context->name_count > 1
1238 && context->names[context->name_count-2].name
1239 && context->names[context->name_count-2].name == name)
1240 idx = context->name_count - 2;
1241 else {
1242 /* FIXME: how much do we care about inodes that have no
1243 * associated name? */
1244 if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED)
1245 return;
1246 idx = context->name_count++;
1247 context->names[idx].name = NULL;
1248#if AUDIT_DEBUG
1249 ++context->ino_count;
1250#endif
1251 }
3e2efce0 1252 audit_copy_inode(&context->names[idx], inode);
73241ccc
AG
1253}
1254
1255/**
1256 * audit_inode_child - collect inode info for created/removed objects
1257 * @dname: inode's dentry name
1258 * @inode: inode being audited
73d3ec5a 1259 * @parent: inode of dentry parent
73241ccc
AG
1260 *
1261 * For syscalls that create or remove filesystem objects, audit_inode
1262 * can only collect information for the filesystem object's parent.
1263 * This call updates the audit context with the child's information.
1264 * Syscalls that create a new filesystem object must be hooked after
1265 * the object is created. Syscalls that remove a filesystem object
1266 * must be hooked prior, in order to capture the target inode during
1267 * unsuccessful attempts.
1268 */
1269void __audit_inode_child(const char *dname, const struct inode *inode,
73d3ec5a 1270 const struct inode *parent)
73241ccc
AG
1271{
1272 int idx;
1273 struct audit_context *context = current->audit_context;
9c937dcc
AG
1274 const char *found_name = NULL;
1275 int dirlen = 0;
73241ccc
AG
1276
1277 if (!context->in_syscall)
1278 return;
1279
1280 /* determine matching parent */
f368c07d 1281 if (!dname)
9c937dcc 1282 goto update_context;
f368c07d 1283 for (idx = 0; idx < context->name_count; idx++)
73d3ec5a 1284 if (context->names[idx].ino == parent->i_ino) {
f368c07d 1285 const char *name = context->names[idx].name;
73241ccc 1286
f368c07d
AG
1287 if (!name)
1288 continue;
1289
9c937dcc
AG
1290 if (audit_compare_dname_path(dname, name, &dirlen) == 0) {
1291 context->names[idx].name_len = dirlen;
1292 found_name = name;
1293 break;
1294 }
f368c07d 1295 }
73241ccc 1296
9c937dcc 1297update_context:
73241ccc 1298 idx = context->name_count++;
73241ccc
AG
1299#if AUDIT_DEBUG
1300 context->ino_count++;
1301#endif
9c937dcc
AG
1302 /* Re-use the name belonging to the slot for a matching parent directory.
1303 * All names for this context are relinquished in audit_free_names() */
1304 context->names[idx].name = found_name;
1305 context->names[idx].name_len = AUDIT_NAME_FULL;
1306 context->names[idx].name_put = 0; /* don't call __putname() */
73241ccc 1307
3e2efce0
AG
1308 if (!inode)
1309 context->names[idx].ino = (unsigned long)-1;
1310 else
1311 audit_copy_inode(&context->names[idx], inode);
73d3ec5a
AG
1312
1313 /* A parent was not found in audit_names, so copy the inode data for the
1314 * provided parent. */
1315 if (!found_name) {
1316 idx = context->name_count++;
1317#if AUDIT_DEBUG
1318 context->ino_count++;
1319#endif
1320 audit_copy_inode(&context->names[idx], parent);
1321 }
3e2efce0
AG
1322}
1323
1324/**
1325 * audit_inode_update - update inode info for last collected name
1326 * @inode: inode being audited
1327 *
1328 * When open() is called on an existing object with the O_CREAT flag, the inode
1329 * data audit initially collects is incorrect. This additional hook ensures
1330 * audit has the inode data for the actual object to be opened.
1331 */
1332void __audit_inode_update(const struct inode *inode)
1333{
1334 struct audit_context *context = current->audit_context;
1335 int idx;
1336
1337 if (!context->in_syscall || !inode)
1338 return;
1339
1340 if (context->name_count == 0) {
1341 context->name_count++;
1342#if AUDIT_DEBUG
1343 context->ino_count++;
1344#endif
1345 }
1346 idx = context->name_count - 1;
1347
1348 audit_copy_inode(&context->names[idx], inode);
1da177e4
LT
1349}
1350
b0dd25a8
RD
1351/**
1352 * auditsc_get_stamp - get local copies of audit_context values
1353 * @ctx: audit_context for the task
1354 * @t: timespec to store time recorded in the audit_context
1355 * @serial: serial value that is recorded in the audit_context
1356 *
1357 * Also sets the context as auditable.
1358 */
bfb4496e
DW
1359void auditsc_get_stamp(struct audit_context *ctx,
1360 struct timespec *t, unsigned int *serial)
1da177e4 1361{
ce625a80
DW
1362 if (!ctx->serial)
1363 ctx->serial = audit_serial();
bfb4496e
DW
1364 t->tv_sec = ctx->ctime.tv_sec;
1365 t->tv_nsec = ctx->ctime.tv_nsec;
1366 *serial = ctx->serial;
1367 ctx->auditable = 1;
1da177e4
LT
1368}
1369
b0dd25a8
RD
1370/**
1371 * audit_set_loginuid - set a task's audit_context loginuid
1372 * @task: task whose audit context is being modified
1373 * @loginuid: loginuid value
1374 *
1375 * Returns 0.
1376 *
1377 * Called (set) from fs/proc/base.c::proc_loginuid_write().
1378 */
456be6cd 1379int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
1da177e4 1380{
41757106
SG
1381 struct audit_context *context = task->audit_context;
1382
1383 if (context) {
1384 /* Only log if audit is enabled */
1385 if (context->in_syscall) {
1386 struct audit_buffer *ab;
1387
1388 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
1389 if (ab) {
1390 audit_log_format(ab, "login pid=%d uid=%u "
1391 "old auid=%u new auid=%u",
1392 task->pid, task->uid,
1393 context->loginuid, loginuid);
1394 audit_log_end(ab);
1395 }
c0404993 1396 }
41757106 1397 context->loginuid = loginuid;
1da177e4
LT
1398 }
1399 return 0;
1400}
1401
b0dd25a8
RD
1402/**
1403 * audit_get_loginuid - get the loginuid for an audit_context
1404 * @ctx: the audit_context
1405 *
1406 * Returns the context's loginuid or -1 if @ctx is NULL.
1407 */
1da177e4
LT
1408uid_t audit_get_loginuid(struct audit_context *ctx)
1409{
1410 return ctx ? ctx->loginuid : -1;
1411}
1412
20ca73bc
GW
1413/**
1414 * __audit_mq_open - record audit data for a POSIX MQ open
1415 * @oflag: open flag
1416 * @mode: mode bits
1417 * @u_attr: queue attributes
1418 *
1419 * Returns 0 for success or NULL context or < 0 on error.
1420 */
1421int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr)
1422{
1423 struct audit_aux_data_mq_open *ax;
1424 struct audit_context *context = current->audit_context;
1425
1426 if (!audit_enabled)
1427 return 0;
1428
1429 if (likely(!context))
1430 return 0;
1431
1432 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1433 if (!ax)
1434 return -ENOMEM;
1435
1436 if (u_attr != NULL) {
1437 if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) {
1438 kfree(ax);
1439 return -EFAULT;
1440 }
1441 } else
1442 memset(&ax->attr, 0, sizeof(ax->attr));
1443
1444 ax->oflag = oflag;
1445 ax->mode = mode;
1446
1447 ax->d.type = AUDIT_MQ_OPEN;
1448 ax->d.next = context->aux;
1449 context->aux = (void *)ax;
1450 return 0;
1451}
1452
1453/**
1454 * __audit_mq_timedsend - record audit data for a POSIX MQ timed send
1455 * @mqdes: MQ descriptor
1456 * @msg_len: Message length
1457 * @msg_prio: Message priority
1dbe83c3 1458 * @u_abs_timeout: Message timeout in absolute time
20ca73bc
GW
1459 *
1460 * Returns 0 for success or NULL context or < 0 on error.
1461 */
1462int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
1463 const struct timespec __user *u_abs_timeout)
1464{
1465 struct audit_aux_data_mq_sendrecv *ax;
1466 struct audit_context *context = current->audit_context;
1467
1468 if (!audit_enabled)
1469 return 0;
1470
1471 if (likely(!context))
1472 return 0;
1473
1474 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1475 if (!ax)
1476 return -ENOMEM;
1477
1478 if (u_abs_timeout != NULL) {
1479 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1480 kfree(ax);
1481 return -EFAULT;
1482 }
1483 } else
1484 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1485
1486 ax->mqdes = mqdes;
1487 ax->msg_len = msg_len;
1488 ax->msg_prio = msg_prio;
1489
1490 ax->d.type = AUDIT_MQ_SENDRECV;
1491 ax->d.next = context->aux;
1492 context->aux = (void *)ax;
1493 return 0;
1494}
1495
1496/**
1497 * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive
1498 * @mqdes: MQ descriptor
1499 * @msg_len: Message length
1dbe83c3
RD
1500 * @u_msg_prio: Message priority
1501 * @u_abs_timeout: Message timeout in absolute time
20ca73bc
GW
1502 *
1503 * Returns 0 for success or NULL context or < 0 on error.
1504 */
1505int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len,
1506 unsigned int __user *u_msg_prio,
1507 const struct timespec __user *u_abs_timeout)
1508{
1509 struct audit_aux_data_mq_sendrecv *ax;
1510 struct audit_context *context = current->audit_context;
1511
1512 if (!audit_enabled)
1513 return 0;
1514
1515 if (likely(!context))
1516 return 0;
1517
1518 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1519 if (!ax)
1520 return -ENOMEM;
1521
1522 if (u_msg_prio != NULL) {
1523 if (get_user(ax->msg_prio, u_msg_prio)) {
1524 kfree(ax);
1525 return -EFAULT;
1526 }
1527 } else
1528 ax->msg_prio = 0;
1529
1530 if (u_abs_timeout != NULL) {
1531 if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) {
1532 kfree(ax);
1533 return -EFAULT;
1534 }
1535 } else
1536 memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout));
1537
1538 ax->mqdes = mqdes;
1539 ax->msg_len = msg_len;
1540
1541 ax->d.type = AUDIT_MQ_SENDRECV;
1542 ax->d.next = context->aux;
1543 context->aux = (void *)ax;
1544 return 0;
1545}
1546
1547/**
1548 * __audit_mq_notify - record audit data for a POSIX MQ notify
1549 * @mqdes: MQ descriptor
1550 * @u_notification: Notification event
1551 *
1552 * Returns 0 for success or NULL context or < 0 on error.
1553 */
1554
1555int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification)
1556{
1557 struct audit_aux_data_mq_notify *ax;
1558 struct audit_context *context = current->audit_context;
1559
1560 if (!audit_enabled)
1561 return 0;
1562
1563 if (likely(!context))
1564 return 0;
1565
1566 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1567 if (!ax)
1568 return -ENOMEM;
1569
1570 if (u_notification != NULL) {
1571 if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) {
1572 kfree(ax);
1573 return -EFAULT;
1574 }
1575 } else
1576 memset(&ax->notification, 0, sizeof(ax->notification));
1577
1578 ax->mqdes = mqdes;
1579
1580 ax->d.type = AUDIT_MQ_NOTIFY;
1581 ax->d.next = context->aux;
1582 context->aux = (void *)ax;
1583 return 0;
1584}
1585
1586/**
1587 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
1588 * @mqdes: MQ descriptor
1589 * @mqstat: MQ flags
1590 *
1591 * Returns 0 for success or NULL context or < 0 on error.
1592 */
1593int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
1594{
1595 struct audit_aux_data_mq_getsetattr *ax;
1596 struct audit_context *context = current->audit_context;
1597
1598 if (!audit_enabled)
1599 return 0;
1600
1601 if (likely(!context))
1602 return 0;
1603
1604 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1605 if (!ax)
1606 return -ENOMEM;
1607
1608 ax->mqdes = mqdes;
1609 ax->mqstat = *mqstat;
1610
1611 ax->d.type = AUDIT_MQ_GETSETATTR;
1612 ax->d.next = context->aux;
1613 context->aux = (void *)ax;
1614 return 0;
1615}
1616
b0dd25a8 1617/**
073115d6
SG
1618 * audit_ipc_obj - record audit data for ipc object
1619 * @ipcp: ipc permissions
1620 *
1621 * Returns 0 for success or NULL context or < 0 on error.
1622 */
d8945bb5 1623int __audit_ipc_obj(struct kern_ipc_perm *ipcp)
073115d6
SG
1624{
1625 struct audit_aux_data_ipcctl *ax;
1626 struct audit_context *context = current->audit_context;
1627
073115d6
SG
1628 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1629 if (!ax)
1630 return -ENOMEM;
1631
1632 ax->uid = ipcp->uid;
1633 ax->gid = ipcp->gid;
1634 ax->mode = ipcp->mode;
1635 selinux_get_ipc_sid(ipcp, &ax->osid);
1636
1637 ax->d.type = AUDIT_IPC;
1638 ax->d.next = context->aux;
1639 context->aux = (void *)ax;
1640 return 0;
1641}
1642
1643/**
1644 * audit_ipc_set_perm - record audit data for new ipc permissions
b0dd25a8
RD
1645 * @qbytes: msgq bytes
1646 * @uid: msgq user id
1647 * @gid: msgq group id
1648 * @mode: msgq mode (permissions)
1649 *
1650 * Returns 0 for success or NULL context or < 0 on error.
1651 */
d8945bb5 1652int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode)
1da177e4
LT
1653{
1654 struct audit_aux_data_ipcctl *ax;
1655 struct audit_context *context = current->audit_context;
1656
8c8570fb 1657 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1da177e4
LT
1658 if (!ax)
1659 return -ENOMEM;
1660
1661 ax->qbytes = qbytes;
1662 ax->uid = uid;
1663 ax->gid = gid;
1664 ax->mode = mode;
1665
073115d6 1666 ax->d.type = AUDIT_IPC_SET_PERM;
1da177e4
LT
1667 ax->d.next = context->aux;
1668 context->aux = (void *)ax;
1669 return 0;
1670}
c2f0c7c3 1671
473ae30b
AV
1672int audit_bprm(struct linux_binprm *bprm)
1673{
1674 struct audit_aux_data_execve *ax;
1675 struct audit_context *context = current->audit_context;
1676 unsigned long p, next;
1677 void *to;
1678
1679 if (likely(!audit_enabled || !context))
1680 return 0;
1681
1682 ax = kmalloc(sizeof(*ax) + PAGE_SIZE * MAX_ARG_PAGES - bprm->p,
1683 GFP_KERNEL);
1684 if (!ax)
1685 return -ENOMEM;
1686
1687 ax->argc = bprm->argc;
1688 ax->envc = bprm->envc;
1689 for (p = bprm->p, to = ax->mem; p < MAX_ARG_PAGES*PAGE_SIZE; p = next) {
1690 struct page *page = bprm->page[p / PAGE_SIZE];
1691 void *kaddr = kmap(page);
1692 next = (p + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1693 memcpy(to, kaddr + (p & (PAGE_SIZE - 1)), next - p);
1694 to += next - p;
1695 kunmap(page);
1696 }
1697
1698 ax->d.type = AUDIT_EXECVE;
1699 ax->d.next = context->aux;
1700 context->aux = (void *)ax;
1701 return 0;
1702}
1703
1704
b0dd25a8
RD
1705/**
1706 * audit_socketcall - record audit data for sys_socketcall
1707 * @nargs: number of args
1708 * @args: args array
1709 *
1710 * Returns 0 for success or NULL context or < 0 on error.
1711 */
3ec3b2fb
DW
1712int audit_socketcall(int nargs, unsigned long *args)
1713{
1714 struct audit_aux_data_socketcall *ax;
1715 struct audit_context *context = current->audit_context;
1716
1717 if (likely(!context))
1718 return 0;
1719
1720 ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL);
1721 if (!ax)
1722 return -ENOMEM;
1723
1724 ax->nargs = nargs;
1725 memcpy(ax->args, args, nargs * sizeof(unsigned long));
1726
1727 ax->d.type = AUDIT_SOCKETCALL;
1728 ax->d.next = context->aux;
1729 context->aux = (void *)ax;
1730 return 0;
1731}
1732
b0dd25a8
RD
1733/**
1734 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
1735 * @len: data length in user space
1736 * @a: data address in kernel space
1737 *
1738 * Returns 0 for success or NULL context or < 0 on error.
1739 */
3ec3b2fb
DW
1740int audit_sockaddr(int len, void *a)
1741{
1742 struct audit_aux_data_sockaddr *ax;
1743 struct audit_context *context = current->audit_context;
1744
1745 if (likely(!context))
1746 return 0;
1747
1748 ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL);
1749 if (!ax)
1750 return -ENOMEM;
1751
1752 ax->len = len;
1753 memcpy(ax->a, a, len);
1754
1755 ax->d.type = AUDIT_SOCKADDR;
1756 ax->d.next = context->aux;
1757 context->aux = (void *)ax;
1758 return 0;
1759}
1760
b0dd25a8
RD
1761/**
1762 * audit_avc_path - record the granting or denial of permissions
1763 * @dentry: dentry to record
1764 * @mnt: mnt to record
1765 *
1766 * Returns 0 for success or NULL context or < 0 on error.
1767 *
1768 * Called from security/selinux/avc.c::avc_audit()
1769 */
01116105
SS
1770int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt)
1771{
1772 struct audit_aux_data_path *ax;
1773 struct audit_context *context = current->audit_context;
1774
1775 if (likely(!context))
1776 return 0;
1777
1778 ax = kmalloc(sizeof(*ax), GFP_ATOMIC);
1779 if (!ax)
1780 return -ENOMEM;
1781
1782 ax->dentry = dget(dentry);
1783 ax->mnt = mntget(mnt);
1784
1785 ax->d.type = AUDIT_AVC_PATH;
1786 ax->d.next = context->aux;
1787 context->aux = (void *)ax;
1788 return 0;
1789}
1790
b0dd25a8
RD
1791/**
1792 * audit_signal_info - record signal info for shutting down audit subsystem
1793 * @sig: signal value
1794 * @t: task being signaled
1795 *
1796 * If the audit subsystem is being terminated, record the task (pid)
1797 * and uid that is doing that.
1798 */
e1396065 1799void __audit_signal_info(int sig, struct task_struct *t)
c2f0c7c3
SG
1800{
1801 extern pid_t audit_sig_pid;
1802 extern uid_t audit_sig_uid;
e1396065
AV
1803 extern u32 audit_sig_sid;
1804
1805 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) {
1806 struct task_struct *tsk = current;
1807 struct audit_context *ctx = tsk->audit_context;
1808 audit_sig_pid = tsk->pid;
1809 if (ctx)
1810 audit_sig_uid = ctx->loginuid;
1811 else
1812 audit_sig_uid = tsk->uid;
1813 selinux_get_task_sid(tsk, &audit_sig_sid);
c2f0c7c3
SG
1814 }
1815}