audit: use data= not msg= for AUDIT_USER_TTY messages
[GitHub/MotorolaMobilityLLC/kernel-slsi.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>
60063497 47#include <linux/atomic.h>
73241ccc
AG
48#include <linux/fs.h>
49#include <linux/namei.h>
1da177e4 50#include <linux/mm.h>
9984de1a 51#include <linux/export.h>
5a0e3ad6 52#include <linux/slab.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>
473ae30b 65#include <linux/binfmts.h>
a1f8e7f7 66#include <linux/highmem.h>
f46038ff 67#include <linux/syscalls.h>
851f7ff5 68#include <linux/capability.h>
5ad4e53b 69#include <linux/fs_struct.h>
3dc1c1b2 70#include <linux/compat.h>
1da177e4 71
fe7752ba 72#include "audit.h"
1da177e4 73
d7e7528b
EP
74/* flags stating the success for a syscall */
75#define AUDITSC_INVALID 0
76#define AUDITSC_SUCCESS 1
77#define AUDITSC_FAILURE 2
78
1da177e4 79/* AUDIT_NAMES is the number of slots we reserve in the audit_context
5195d8e2
EP
80 * for saving names from getname(). If we get more names we will allocate
81 * a name dynamically and also add those to the list anchored by names_list. */
82#define AUDIT_NAMES 5
1da177e4 83
de6bbd1d
EP
84/* no execve audit message should be longer than this (userspace limits) */
85#define MAX_EXECVE_AUDIT_LEN 7500
86
471a5c7c
AV
87/* number of audit rules */
88int audit_n_rules;
89
e54dc243
AG
90/* determines whether we collect data for signals sent */
91int audit_signals;
92
851f7ff5
EP
93struct audit_cap_data {
94 kernel_cap_t permitted;
95 kernel_cap_t inheritable;
96 union {
97 unsigned int fE; /* effective bit of a file capability */
98 kernel_cap_t effective; /* effective set of a process */
99 };
100};
101
1da177e4
LT
102/* When fs/namei.c:getname() is called, we store the pointer in name and
103 * we don't let putname() free it (instead we free all of the saved
104 * pointers at syscall exit time).
105 *
91a27b2a
JL
106 * Further, in fs/namei.c:path_lookup() we store the inode and device.
107 */
1da177e4 108struct audit_names {
91a27b2a
JL
109 struct list_head list; /* audit_context->names_list */
110 struct filename *name;
111 unsigned long ino;
112 dev_t dev;
113 umode_t mode;
114 kuid_t uid;
115 kgid_t gid;
116 dev_t rdev;
117 u32 osid;
118 struct audit_cap_data fcap;
119 unsigned int fcap_ver;
120 int name_len; /* number of name's characters to log */
121 unsigned char type; /* record type */
122 bool name_put; /* call __putname() for this name */
5195d8e2
EP
123 /*
124 * This was an allocated audit_names and not from the array of
125 * names allocated in the task audit context. Thus this name
126 * should be freed on syscall exit
127 */
91a27b2a 128 bool should_free;
1da177e4
LT
129};
130
131struct audit_aux_data {
132 struct audit_aux_data *next;
133 int type;
134};
135
136#define AUDIT_AUX_IPCPERM 0
137
e54dc243
AG
138/* Number of target pids per aux struct. */
139#define AUDIT_AUX_PIDS 16
140
473ae30b
AV
141struct audit_aux_data_execve {
142 struct audit_aux_data d;
143 int argc;
144 int envc;
bdf4c48a 145 struct mm_struct *mm;
473ae30b
AV
146};
147
e54dc243
AG
148struct audit_aux_data_pids {
149 struct audit_aux_data d;
150 pid_t target_pid[AUDIT_AUX_PIDS];
e1760bd5 151 kuid_t target_auid[AUDIT_AUX_PIDS];
cca080d9 152 kuid_t target_uid[AUDIT_AUX_PIDS];
4746ec5b 153 unsigned int target_sessionid[AUDIT_AUX_PIDS];
e54dc243 154 u32 target_sid[AUDIT_AUX_PIDS];
c2a7780e 155 char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
e54dc243
AG
156 int pid_count;
157};
158
3fc689e9
EP
159struct audit_aux_data_bprm_fcaps {
160 struct audit_aux_data d;
161 struct audit_cap_data fcap;
162 unsigned int fcap_ver;
163 struct audit_cap_data old_pcap;
164 struct audit_cap_data new_pcap;
165};
166
e68b75a0
EP
167struct audit_aux_data_capset {
168 struct audit_aux_data d;
169 pid_t pid;
170 struct audit_cap_data cap;
171};
172
74c3cbe3
AV
173struct audit_tree_refs {
174 struct audit_tree_refs *next;
175 struct audit_chunk *c[31];
176};
177
1da177e4
LT
178/* The per-task audit context. */
179struct audit_context {
d51374ad 180 int dummy; /* must be the first element */
1da177e4 181 int in_syscall; /* 1 if task is in a syscall */
0590b933 182 enum audit_state state, current_state;
1da177e4 183 unsigned int serial; /* serial number for record */
1da177e4 184 int major; /* syscall number */
44e51a1b 185 struct timespec ctime; /* time of syscall entry */
1da177e4 186 unsigned long argv[4]; /* syscall arguments */
2fd6f58b 187 long return_code;/* syscall return code */
0590b933 188 u64 prio;
44e51a1b 189 int return_valid; /* return code is valid */
5195d8e2
EP
190 /*
191 * The names_list is the list of all audit_names collected during this
192 * syscall. The first AUDIT_NAMES entries in the names_list will
193 * actually be from the preallocated_names array for performance
194 * reasons. Except during allocation they should never be referenced
195 * through the preallocated_names array and should only be found/used
196 * by running the names_list.
197 */
198 struct audit_names preallocated_names[AUDIT_NAMES];
199 int name_count; /* total records in names_list */
200 struct list_head names_list; /* anchor for struct audit_names->list */
5adc8a6a 201 char * filterkey; /* key for rule that triggered record */
44707fdf 202 struct path pwd;
1da177e4 203 struct audit_aux_data *aux;
e54dc243 204 struct audit_aux_data *aux_pids;
4f6b434f
AV
205 struct sockaddr_storage *sockaddr;
206 size_t sockaddr_len;
1da177e4 207 /* Save things to print about task_struct */
f46038ff 208 pid_t pid, ppid;
cca080d9
EB
209 kuid_t uid, euid, suid, fsuid;
210 kgid_t gid, egid, sgid, fsgid;
1da177e4 211 unsigned long personality;
2fd6f58b 212 int arch;
1da177e4 213
a5cb013d 214 pid_t target_pid;
e1760bd5 215 kuid_t target_auid;
cca080d9 216 kuid_t target_uid;
4746ec5b 217 unsigned int target_sessionid;
a5cb013d 218 u32 target_sid;
c2a7780e 219 char target_comm[TASK_COMM_LEN];
a5cb013d 220
74c3cbe3 221 struct audit_tree_refs *trees, *first_trees;
916d7576 222 struct list_head killed_trees;
44e51a1b 223 int tree_count;
74c3cbe3 224
f3298dc4
AV
225 int type;
226 union {
227 struct {
228 int nargs;
2950fa9d 229 long args[AUDITSC_ARGS];
f3298dc4 230 } socketcall;
a33e6751 231 struct {
cca080d9
EB
232 kuid_t uid;
233 kgid_t gid;
2570ebbd 234 umode_t mode;
a33e6751 235 u32 osid;
e816f370
AV
236 int has_perm;
237 uid_t perm_uid;
238 gid_t perm_gid;
2570ebbd 239 umode_t perm_mode;
e816f370 240 unsigned long qbytes;
a33e6751 241 } ipc;
7392906e
AV
242 struct {
243 mqd_t mqdes;
244 struct mq_attr mqstat;
245 } mq_getsetattr;
20114f71
AV
246 struct {
247 mqd_t mqdes;
248 int sigev_signo;
249 } mq_notify;
c32c8af4
AV
250 struct {
251 mqd_t mqdes;
252 size_t msg_len;
253 unsigned int msg_prio;
254 struct timespec abs_timeout;
255 } mq_sendrecv;
564f6993
AV
256 struct {
257 int oflag;
df0a4283 258 umode_t mode;
564f6993
AV
259 struct mq_attr attr;
260 } mq_open;
57f71a0a
AV
261 struct {
262 pid_t pid;
263 struct audit_cap_data cap;
264 } capset;
120a795d
AV
265 struct {
266 int fd;
267 int flags;
268 } mmap;
f3298dc4 269 };
157cf649 270 int fds[2];
f3298dc4 271
1da177e4
LT
272#if AUDIT_DEBUG
273 int put_count;
274 int ino_count;
275#endif
276};
277
55669bfa
AV
278static inline int open_arg(int flags, int mask)
279{
280 int n = ACC_MODE(flags);
281 if (flags & (O_TRUNC | O_CREAT))
282 n |= AUDIT_PERM_WRITE;
283 return n & mask;
284}
285
286static int audit_match_perm(struct audit_context *ctx, int mask)
287{
c4bacefb 288 unsigned n;
1a61c88d 289 if (unlikely(!ctx))
290 return 0;
c4bacefb 291 n = ctx->major;
dbda4c0b 292
55669bfa
AV
293 switch (audit_classify_syscall(ctx->arch, n)) {
294 case 0: /* native */
295 if ((mask & AUDIT_PERM_WRITE) &&
296 audit_match_class(AUDIT_CLASS_WRITE, n))
297 return 1;
298 if ((mask & AUDIT_PERM_READ) &&
299 audit_match_class(AUDIT_CLASS_READ, n))
300 return 1;
301 if ((mask & AUDIT_PERM_ATTR) &&
302 audit_match_class(AUDIT_CLASS_CHATTR, n))
303 return 1;
304 return 0;
305 case 1: /* 32bit on biarch */
306 if ((mask & AUDIT_PERM_WRITE) &&
307 audit_match_class(AUDIT_CLASS_WRITE_32, n))
308 return 1;
309 if ((mask & AUDIT_PERM_READ) &&
310 audit_match_class(AUDIT_CLASS_READ_32, n))
311 return 1;
312 if ((mask & AUDIT_PERM_ATTR) &&
313 audit_match_class(AUDIT_CLASS_CHATTR_32, n))
314 return 1;
315 return 0;
316 case 2: /* open */
317 return mask & ACC_MODE(ctx->argv[1]);
318 case 3: /* openat */
319 return mask & ACC_MODE(ctx->argv[2]);
320 case 4: /* socketcall */
321 return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
322 case 5: /* execve */
323 return mask & AUDIT_PERM_EXEC;
324 default:
325 return 0;
326 }
327}
328
5ef30ee5 329static int audit_match_filetype(struct audit_context *ctx, int val)
8b67dca9 330{
5195d8e2 331 struct audit_names *n;
5ef30ee5 332 umode_t mode = (umode_t)val;
1a61c88d 333
334 if (unlikely(!ctx))
335 return 0;
336
5195d8e2
EP
337 list_for_each_entry(n, &ctx->names_list, list) {
338 if ((n->ino != -1) &&
339 ((n->mode & S_IFMT) == mode))
5ef30ee5
EP
340 return 1;
341 }
5195d8e2 342
5ef30ee5 343 return 0;
8b67dca9
AV
344}
345
74c3cbe3
AV
346/*
347 * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
348 * ->first_trees points to its beginning, ->trees - to the current end of data.
349 * ->tree_count is the number of free entries in array pointed to by ->trees.
350 * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
351 * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
352 * it's going to remain 1-element for almost any setup) until we free context itself.
353 * References in it _are_ dropped - at the same time we free/drop aux stuff.
354 */
355
356#ifdef CONFIG_AUDIT_TREE
679173b7
EP
357static void audit_set_auditable(struct audit_context *ctx)
358{
359 if (!ctx->prio) {
360 ctx->prio = 1;
361 ctx->current_state = AUDIT_RECORD_CONTEXT;
362 }
363}
364
74c3cbe3
AV
365static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
366{
367 struct audit_tree_refs *p = ctx->trees;
368 int left = ctx->tree_count;
369 if (likely(left)) {
370 p->c[--left] = chunk;
371 ctx->tree_count = left;
372 return 1;
373 }
374 if (!p)
375 return 0;
376 p = p->next;
377 if (p) {
378 p->c[30] = chunk;
379 ctx->trees = p;
380 ctx->tree_count = 30;
381 return 1;
382 }
383 return 0;
384}
385
386static int grow_tree_refs(struct audit_context *ctx)
387{
388 struct audit_tree_refs *p = ctx->trees;
389 ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
390 if (!ctx->trees) {
391 ctx->trees = p;
392 return 0;
393 }
394 if (p)
395 p->next = ctx->trees;
396 else
397 ctx->first_trees = ctx->trees;
398 ctx->tree_count = 31;
399 return 1;
400}
401#endif
402
403static void unroll_tree_refs(struct audit_context *ctx,
404 struct audit_tree_refs *p, int count)
405{
406#ifdef CONFIG_AUDIT_TREE
407 struct audit_tree_refs *q;
408 int n;
409 if (!p) {
410 /* we started with empty chain */
411 p = ctx->first_trees;
412 count = 31;
413 /* if the very first allocation has failed, nothing to do */
414 if (!p)
415 return;
416 }
417 n = count;
418 for (q = p; q != ctx->trees; q = q->next, n = 31) {
419 while (n--) {
420 audit_put_chunk(q->c[n]);
421 q->c[n] = NULL;
422 }
423 }
424 while (n-- > ctx->tree_count) {
425 audit_put_chunk(q->c[n]);
426 q->c[n] = NULL;
427 }
428 ctx->trees = p;
429 ctx->tree_count = count;
430#endif
431}
432
433static void free_tree_refs(struct audit_context *ctx)
434{
435 struct audit_tree_refs *p, *q;
436 for (p = ctx->first_trees; p; p = q) {
437 q = p->next;
438 kfree(p);
439 }
440}
441
442static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
443{
444#ifdef CONFIG_AUDIT_TREE
445 struct audit_tree_refs *p;
446 int n;
447 if (!tree)
448 return 0;
449 /* full ones */
450 for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
451 for (n = 0; n < 31; n++)
452 if (audit_tree_match(p->c[n], tree))
453 return 1;
454 }
455 /* partial */
456 if (p) {
457 for (n = ctx->tree_count; n < 31; n++)
458 if (audit_tree_match(p->c[n], tree))
459 return 1;
460 }
461#endif
462 return 0;
463}
464
ca57ec0f
EB
465static int audit_compare_uid(kuid_t uid,
466 struct audit_names *name,
467 struct audit_field *f,
468 struct audit_context *ctx)
b34b0393
EP
469{
470 struct audit_names *n;
b34b0393 471 int rc;
ca57ec0f 472
b34b0393 473 if (name) {
ca57ec0f 474 rc = audit_uid_comparator(uid, f->op, name->uid);
b34b0393
EP
475 if (rc)
476 return rc;
477 }
ca57ec0f 478
b34b0393
EP
479 if (ctx) {
480 list_for_each_entry(n, &ctx->names_list, list) {
ca57ec0f
EB
481 rc = audit_uid_comparator(uid, f->op, n->uid);
482 if (rc)
483 return rc;
484 }
485 }
486 return 0;
487}
b34b0393 488
ca57ec0f
EB
489static int audit_compare_gid(kgid_t gid,
490 struct audit_names *name,
491 struct audit_field *f,
492 struct audit_context *ctx)
493{
494 struct audit_names *n;
495 int rc;
496
497 if (name) {
498 rc = audit_gid_comparator(gid, f->op, name->gid);
499 if (rc)
500 return rc;
501 }
502
503 if (ctx) {
504 list_for_each_entry(n, &ctx->names_list, list) {
505 rc = audit_gid_comparator(gid, f->op, n->gid);
b34b0393
EP
506 if (rc)
507 return rc;
508 }
509 }
510 return 0;
511}
512
02d86a56
EP
513static int audit_field_compare(struct task_struct *tsk,
514 const struct cred *cred,
515 struct audit_field *f,
516 struct audit_context *ctx,
517 struct audit_names *name)
518{
02d86a56 519 switch (f->val) {
4a6633ed 520 /* process to file object comparisons */
02d86a56 521 case AUDIT_COMPARE_UID_TO_OBJ_UID:
ca57ec0f 522 return audit_compare_uid(cred->uid, name, f, ctx);
c9fe685f 523 case AUDIT_COMPARE_GID_TO_OBJ_GID:
ca57ec0f 524 return audit_compare_gid(cred->gid, name, f, ctx);
4a6633ed 525 case AUDIT_COMPARE_EUID_TO_OBJ_UID:
ca57ec0f 526 return audit_compare_uid(cred->euid, name, f, ctx);
4a6633ed 527 case AUDIT_COMPARE_EGID_TO_OBJ_GID:
ca57ec0f 528 return audit_compare_gid(cred->egid, name, f, ctx);
4a6633ed 529 case AUDIT_COMPARE_AUID_TO_OBJ_UID:
ca57ec0f 530 return audit_compare_uid(tsk->loginuid, name, f, ctx);
4a6633ed 531 case AUDIT_COMPARE_SUID_TO_OBJ_UID:
ca57ec0f 532 return audit_compare_uid(cred->suid, name, f, ctx);
4a6633ed 533 case AUDIT_COMPARE_SGID_TO_OBJ_GID:
ca57ec0f 534 return audit_compare_gid(cred->sgid, name, f, ctx);
4a6633ed 535 case AUDIT_COMPARE_FSUID_TO_OBJ_UID:
ca57ec0f 536 return audit_compare_uid(cred->fsuid, name, f, ctx);
4a6633ed 537 case AUDIT_COMPARE_FSGID_TO_OBJ_GID:
ca57ec0f 538 return audit_compare_gid(cred->fsgid, name, f, ctx);
10d68360
PM
539 /* uid comparisons */
540 case AUDIT_COMPARE_UID_TO_AUID:
ca57ec0f 541 return audit_uid_comparator(cred->uid, f->op, tsk->loginuid);
10d68360 542 case AUDIT_COMPARE_UID_TO_EUID:
ca57ec0f 543 return audit_uid_comparator(cred->uid, f->op, cred->euid);
10d68360 544 case AUDIT_COMPARE_UID_TO_SUID:
ca57ec0f 545 return audit_uid_comparator(cred->uid, f->op, cred->suid);
10d68360 546 case AUDIT_COMPARE_UID_TO_FSUID:
ca57ec0f 547 return audit_uid_comparator(cred->uid, f->op, cred->fsuid);
10d68360
PM
548 /* auid comparisons */
549 case AUDIT_COMPARE_AUID_TO_EUID:
ca57ec0f 550 return audit_uid_comparator(tsk->loginuid, f->op, cred->euid);
10d68360 551 case AUDIT_COMPARE_AUID_TO_SUID:
ca57ec0f 552 return audit_uid_comparator(tsk->loginuid, f->op, cred->suid);
10d68360 553 case AUDIT_COMPARE_AUID_TO_FSUID:
ca57ec0f 554 return audit_uid_comparator(tsk->loginuid, f->op, cred->fsuid);
10d68360
PM
555 /* euid comparisons */
556 case AUDIT_COMPARE_EUID_TO_SUID:
ca57ec0f 557 return audit_uid_comparator(cred->euid, f->op, cred->suid);
10d68360 558 case AUDIT_COMPARE_EUID_TO_FSUID:
ca57ec0f 559 return audit_uid_comparator(cred->euid, f->op, cred->fsuid);
10d68360
PM
560 /* suid comparisons */
561 case AUDIT_COMPARE_SUID_TO_FSUID:
ca57ec0f 562 return audit_uid_comparator(cred->suid, f->op, cred->fsuid);
10d68360
PM
563 /* gid comparisons */
564 case AUDIT_COMPARE_GID_TO_EGID:
ca57ec0f 565 return audit_gid_comparator(cred->gid, f->op, cred->egid);
10d68360 566 case AUDIT_COMPARE_GID_TO_SGID:
ca57ec0f 567 return audit_gid_comparator(cred->gid, f->op, cred->sgid);
10d68360 568 case AUDIT_COMPARE_GID_TO_FSGID:
ca57ec0f 569 return audit_gid_comparator(cred->gid, f->op, cred->fsgid);
10d68360
PM
570 /* egid comparisons */
571 case AUDIT_COMPARE_EGID_TO_SGID:
ca57ec0f 572 return audit_gid_comparator(cred->egid, f->op, cred->sgid);
10d68360 573 case AUDIT_COMPARE_EGID_TO_FSGID:
ca57ec0f 574 return audit_gid_comparator(cred->egid, f->op, cred->fsgid);
10d68360
PM
575 /* sgid comparison */
576 case AUDIT_COMPARE_SGID_TO_FSGID:
ca57ec0f 577 return audit_gid_comparator(cred->sgid, f->op, cred->fsgid);
02d86a56
EP
578 default:
579 WARN(1, "Missing AUDIT_COMPARE define. Report as a bug\n");
580 return 0;
581 }
582 return 0;
583}
584
f368c07d 585/* Determine if any context name data matches a rule's watch data */
1da177e4 586/* Compare a task_struct with an audit_rule. Return 1 on match, 0
f5629883
TJ
587 * otherwise.
588 *
589 * If task_creation is true, this is an explicit indication that we are
590 * filtering a task rule at task creation time. This and tsk == current are
591 * the only situations where tsk->cred may be accessed without an rcu read lock.
592 */
1da177e4 593static int audit_filter_rules(struct task_struct *tsk,
93315ed6 594 struct audit_krule *rule,
1da177e4 595 struct audit_context *ctx,
f368c07d 596 struct audit_names *name,
f5629883
TJ
597 enum audit_state *state,
598 bool task_creation)
1da177e4 599{
f5629883 600 const struct cred *cred;
5195d8e2 601 int i, need_sid = 1;
3dc7e315
DG
602 u32 sid;
603
f5629883
TJ
604 cred = rcu_dereference_check(tsk->cred, tsk == current || task_creation);
605
1da177e4 606 for (i = 0; i < rule->field_count; i++) {
93315ed6 607 struct audit_field *f = &rule->fields[i];
5195d8e2 608 struct audit_names *n;
1da177e4
LT
609 int result = 0;
610
93315ed6 611 switch (f->type) {
1da177e4 612 case AUDIT_PID:
93315ed6 613 result = audit_comparator(tsk->pid, f->op, f->val);
1da177e4 614 break;
3c66251e 615 case AUDIT_PPID:
419c58f1
AV
616 if (ctx) {
617 if (!ctx->ppid)
618 ctx->ppid = sys_getppid();
3c66251e 619 result = audit_comparator(ctx->ppid, f->op, f->val);
419c58f1 620 }
3c66251e 621 break;
1da177e4 622 case AUDIT_UID:
ca57ec0f 623 result = audit_uid_comparator(cred->uid, f->op, f->uid);
1da177e4
LT
624 break;
625 case AUDIT_EUID:
ca57ec0f 626 result = audit_uid_comparator(cred->euid, f->op, f->uid);
1da177e4
LT
627 break;
628 case AUDIT_SUID:
ca57ec0f 629 result = audit_uid_comparator(cred->suid, f->op, f->uid);
1da177e4
LT
630 break;
631 case AUDIT_FSUID:
ca57ec0f 632 result = audit_uid_comparator(cred->fsuid, f->op, f->uid);
1da177e4
LT
633 break;
634 case AUDIT_GID:
ca57ec0f 635 result = audit_gid_comparator(cred->gid, f->op, f->gid);
37eebe39
MI
636 if (f->op == Audit_equal) {
637 if (!result)
638 result = in_group_p(f->gid);
639 } else if (f->op == Audit_not_equal) {
640 if (result)
641 result = !in_group_p(f->gid);
642 }
1da177e4
LT
643 break;
644 case AUDIT_EGID:
ca57ec0f 645 result = audit_gid_comparator(cred->egid, f->op, f->gid);
37eebe39
MI
646 if (f->op == Audit_equal) {
647 if (!result)
648 result = in_egroup_p(f->gid);
649 } else if (f->op == Audit_not_equal) {
650 if (result)
651 result = !in_egroup_p(f->gid);
652 }
1da177e4
LT
653 break;
654 case AUDIT_SGID:
ca57ec0f 655 result = audit_gid_comparator(cred->sgid, f->op, f->gid);
1da177e4
LT
656 break;
657 case AUDIT_FSGID:
ca57ec0f 658 result = audit_gid_comparator(cred->fsgid, f->op, f->gid);
1da177e4
LT
659 break;
660 case AUDIT_PERS:
93315ed6 661 result = audit_comparator(tsk->personality, f->op, f->val);
1da177e4 662 break;
2fd6f58b 663 case AUDIT_ARCH:
9f8dbe9c 664 if (ctx)
93315ed6 665 result = audit_comparator(ctx->arch, f->op, f->val);
2fd6f58b 666 break;
1da177e4
LT
667
668 case AUDIT_EXIT:
669 if (ctx && ctx->return_valid)
93315ed6 670 result = audit_comparator(ctx->return_code, f->op, f->val);
1da177e4
LT
671 break;
672 case AUDIT_SUCCESS:
b01f2cc1 673 if (ctx && ctx->return_valid) {
93315ed6
AG
674 if (f->val)
675 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
b01f2cc1 676 else
93315ed6 677 result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
b01f2cc1 678 }
1da177e4
LT
679 break;
680 case AUDIT_DEVMAJOR:
16c174bd
EP
681 if (name) {
682 if (audit_comparator(MAJOR(name->dev), f->op, f->val) ||
683 audit_comparator(MAJOR(name->rdev), f->op, f->val))
684 ++result;
685 } else if (ctx) {
5195d8e2 686 list_for_each_entry(n, &ctx->names_list, list) {
16c174bd
EP
687 if (audit_comparator(MAJOR(n->dev), f->op, f->val) ||
688 audit_comparator(MAJOR(n->rdev), f->op, f->val)) {
1da177e4
LT
689 ++result;
690 break;
691 }
692 }
693 }
694 break;
695 case AUDIT_DEVMINOR:
16c174bd
EP
696 if (name) {
697 if (audit_comparator(MINOR(name->dev), f->op, f->val) ||
698 audit_comparator(MINOR(name->rdev), f->op, f->val))
699 ++result;
700 } else if (ctx) {
5195d8e2 701 list_for_each_entry(n, &ctx->names_list, list) {
16c174bd
EP
702 if (audit_comparator(MINOR(n->dev), f->op, f->val) ||
703 audit_comparator(MINOR(n->rdev), f->op, f->val)) {
1da177e4
LT
704 ++result;
705 break;
706 }
707 }
708 }
709 break;
710 case AUDIT_INODE:
f368c07d 711 if (name)
9c937dcc 712 result = (name->ino == f->val);
f368c07d 713 else if (ctx) {
5195d8e2
EP
714 list_for_each_entry(n, &ctx->names_list, list) {
715 if (audit_comparator(n->ino, f->op, f->val)) {
1da177e4
LT
716 ++result;
717 break;
718 }
719 }
720 }
721 break;
efaffd6e
EP
722 case AUDIT_OBJ_UID:
723 if (name) {
ca57ec0f 724 result = audit_uid_comparator(name->uid, f->op, f->uid);
efaffd6e
EP
725 } else if (ctx) {
726 list_for_each_entry(n, &ctx->names_list, list) {
ca57ec0f 727 if (audit_uid_comparator(n->uid, f->op, f->uid)) {
efaffd6e
EP
728 ++result;
729 break;
730 }
731 }
732 }
733 break;
54d3218b
EP
734 case AUDIT_OBJ_GID:
735 if (name) {
ca57ec0f 736 result = audit_gid_comparator(name->gid, f->op, f->gid);
54d3218b
EP
737 } else if (ctx) {
738 list_for_each_entry(n, &ctx->names_list, list) {
ca57ec0f 739 if (audit_gid_comparator(n->gid, f->op, f->gid)) {
54d3218b
EP
740 ++result;
741 break;
742 }
743 }
744 }
745 break;
f368c07d 746 case AUDIT_WATCH:
ae7b8f41
EP
747 if (name)
748 result = audit_watch_compare(rule->watch, name->ino, name->dev);
f368c07d 749 break;
74c3cbe3
AV
750 case AUDIT_DIR:
751 if (ctx)
752 result = match_tree_refs(ctx, rule->tree);
753 break;
1da177e4
LT
754 case AUDIT_LOGINUID:
755 result = 0;
756 if (ctx)
ca57ec0f 757 result = audit_uid_comparator(tsk->loginuid, f->op, f->uid);
1da177e4 758 break;
3a6b9f85
DG
759 case AUDIT_SUBJ_USER:
760 case AUDIT_SUBJ_ROLE:
761 case AUDIT_SUBJ_TYPE:
762 case AUDIT_SUBJ_SEN:
763 case AUDIT_SUBJ_CLR:
3dc7e315
DG
764 /* NOTE: this may return negative values indicating
765 a temporary error. We simply treat this as a
766 match for now to avoid losing information that
767 may be wanted. An error message will also be
768 logged upon error */
04305e4a 769 if (f->lsm_rule) {
2ad312d2 770 if (need_sid) {
2a862b32 771 security_task_getsecid(tsk, &sid);
2ad312d2
SG
772 need_sid = 0;
773 }
d7a96f3a 774 result = security_audit_rule_match(sid, f->type,
3dc7e315 775 f->op,
04305e4a 776 f->lsm_rule,
3dc7e315 777 ctx);
2ad312d2 778 }
3dc7e315 779 break;
6e5a2d1d
DG
780 case AUDIT_OBJ_USER:
781 case AUDIT_OBJ_ROLE:
782 case AUDIT_OBJ_TYPE:
783 case AUDIT_OBJ_LEV_LOW:
784 case AUDIT_OBJ_LEV_HIGH:
785 /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
786 also applies here */
04305e4a 787 if (f->lsm_rule) {
6e5a2d1d
DG
788 /* Find files that match */
789 if (name) {
d7a96f3a 790 result = security_audit_rule_match(
6e5a2d1d 791 name->osid, f->type, f->op,
04305e4a 792 f->lsm_rule, ctx);
6e5a2d1d 793 } else if (ctx) {
5195d8e2
EP
794 list_for_each_entry(n, &ctx->names_list, list) {
795 if (security_audit_rule_match(n->osid, f->type,
796 f->op, f->lsm_rule,
797 ctx)) {
6e5a2d1d
DG
798 ++result;
799 break;
800 }
801 }
802 }
803 /* Find ipc objects that match */
a33e6751
AV
804 if (!ctx || ctx->type != AUDIT_IPC)
805 break;
806 if (security_audit_rule_match(ctx->ipc.osid,
807 f->type, f->op,
808 f->lsm_rule, ctx))
809 ++result;
6e5a2d1d
DG
810 }
811 break;
1da177e4
LT
812 case AUDIT_ARG0:
813 case AUDIT_ARG1:
814 case AUDIT_ARG2:
815 case AUDIT_ARG3:
816 if (ctx)
93315ed6 817 result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
1da177e4 818 break;
5adc8a6a
AG
819 case AUDIT_FILTERKEY:
820 /* ignore this field for filtering */
821 result = 1;
822 break;
55669bfa
AV
823 case AUDIT_PERM:
824 result = audit_match_perm(ctx, f->val);
825 break;
8b67dca9
AV
826 case AUDIT_FILETYPE:
827 result = audit_match_filetype(ctx, f->val);
828 break;
02d86a56
EP
829 case AUDIT_FIELD_COMPARE:
830 result = audit_field_compare(tsk, cred, f, ctx, name);
831 break;
1da177e4 832 }
f5629883 833 if (!result)
1da177e4
LT
834 return 0;
835 }
0590b933
AV
836
837 if (ctx) {
838 if (rule->prio <= ctx->prio)
839 return 0;
840 if (rule->filterkey) {
841 kfree(ctx->filterkey);
842 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
843 }
844 ctx->prio = rule->prio;
845 }
1da177e4
LT
846 switch (rule->action) {
847 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
1da177e4
LT
848 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
849 }
850 return 1;
851}
852
853/* At process creation time, we can determine if system-call auditing is
854 * completely disabled for this task. Since we only have the task
855 * structure at this point, we can only check uid and gid.
856 */
e048e02c 857static enum audit_state audit_filter_task(struct task_struct *tsk, char **key)
1da177e4
LT
858{
859 struct audit_entry *e;
860 enum audit_state state;
861
862 rcu_read_lock();
0f45aa18 863 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
f5629883
TJ
864 if (audit_filter_rules(tsk, &e->rule, NULL, NULL,
865 &state, true)) {
e048e02c
AV
866 if (state == AUDIT_RECORD_CONTEXT)
867 *key = kstrdup(e->rule.filterkey, GFP_ATOMIC);
1da177e4
LT
868 rcu_read_unlock();
869 return state;
870 }
871 }
872 rcu_read_unlock();
873 return AUDIT_BUILD_CONTEXT;
874}
875
876/* At syscall entry and exit time, this filter is called if the
877 * audit_state is not low enough that auditing cannot take place, but is
23f32d18 878 * also not high enough that we already know we have to write an audit
b0dd25a8 879 * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
1da177e4
LT
880 */
881static enum audit_state audit_filter_syscall(struct task_struct *tsk,
882 struct audit_context *ctx,
883 struct list_head *list)
884{
885 struct audit_entry *e;
c3896495 886 enum audit_state state;
1da177e4 887
351bb722 888 if (audit_pid && tsk->tgid == audit_pid)
f7056d64
DW
889 return AUDIT_DISABLED;
890
1da177e4 891 rcu_read_lock();
c3896495 892 if (!list_empty(list)) {
b63862f4
DK
893 int word = AUDIT_WORD(ctx->major);
894 int bit = AUDIT_BIT(ctx->major);
895
896 list_for_each_entry_rcu(e, list, list) {
f368c07d
AG
897 if ((e->rule.mask[word] & bit) == bit &&
898 audit_filter_rules(tsk, &e->rule, ctx, NULL,
f5629883 899 &state, false)) {
f368c07d 900 rcu_read_unlock();
0590b933 901 ctx->current_state = state;
f368c07d
AG
902 return state;
903 }
904 }
905 }
906 rcu_read_unlock();
907 return AUDIT_BUILD_CONTEXT;
908}
909
5195d8e2
EP
910/*
911 * Given an audit_name check the inode hash table to see if they match.
912 * Called holding the rcu read lock to protect the use of audit_inode_hash
913 */
914static int audit_filter_inode_name(struct task_struct *tsk,
915 struct audit_names *n,
916 struct audit_context *ctx) {
917 int word, bit;
918 int h = audit_hash_ino((u32)n->ino);
919 struct list_head *list = &audit_inode_hash[h];
920 struct audit_entry *e;
921 enum audit_state state;
922
923 word = AUDIT_WORD(ctx->major);
924 bit = AUDIT_BIT(ctx->major);
925
926 if (list_empty(list))
927 return 0;
928
929 list_for_each_entry_rcu(e, list, list) {
930 if ((e->rule.mask[word] & bit) == bit &&
931 audit_filter_rules(tsk, &e->rule, ctx, n, &state, false)) {
932 ctx->current_state = state;
933 return 1;
934 }
935 }
936
937 return 0;
938}
939
940/* At syscall exit time, this filter is called if any audit_names have been
f368c07d 941 * collected during syscall processing. We only check rules in sublists at hash
5195d8e2 942 * buckets applicable to the inode numbers in audit_names.
f368c07d
AG
943 * Regarding audit_state, same rules apply as for audit_filter_syscall().
944 */
0590b933 945void audit_filter_inodes(struct task_struct *tsk, struct audit_context *ctx)
f368c07d 946{
5195d8e2 947 struct audit_names *n;
f368c07d
AG
948
949 if (audit_pid && tsk->tgid == audit_pid)
0590b933 950 return;
f368c07d
AG
951
952 rcu_read_lock();
f368c07d 953
5195d8e2
EP
954 list_for_each_entry(n, &ctx->names_list, list) {
955 if (audit_filter_inode_name(tsk, n, ctx))
956 break;
0f45aa18
DW
957 }
958 rcu_read_unlock();
0f45aa18
DW
959}
960
1da177e4
LT
961static inline struct audit_context *audit_get_context(struct task_struct *tsk,
962 int return_valid,
6d208da8 963 long return_code)
1da177e4
LT
964{
965 struct audit_context *context = tsk->audit_context;
966
56179a6e 967 if (!context)
1da177e4
LT
968 return NULL;
969 context->return_valid = return_valid;
f701b75e
EP
970
971 /*
972 * we need to fix up the return code in the audit logs if the actual
973 * return codes are later going to be fixed up by the arch specific
974 * signal handlers
975 *
976 * This is actually a test for:
977 * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
978 * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
979 *
980 * but is faster than a bunch of ||
981 */
982 if (unlikely(return_code <= -ERESTARTSYS) &&
983 (return_code >= -ERESTART_RESTARTBLOCK) &&
984 (return_code != -ENOIOCTLCMD))
985 context->return_code = -EINTR;
986 else
987 context->return_code = return_code;
1da177e4 988
0590b933
AV
989 if (context->in_syscall && !context->dummy) {
990 audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
991 audit_filter_inodes(tsk, context);
1da177e4
LT
992 }
993
1da177e4
LT
994 tsk->audit_context = NULL;
995 return context;
996}
997
998static inline void audit_free_names(struct audit_context *context)
999{
5195d8e2 1000 struct audit_names *n, *next;
1da177e4
LT
1001
1002#if AUDIT_DEBUG == 2
0590b933 1003 if (context->put_count + context->ino_count != context->name_count) {
73241ccc 1004 printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d"
1da177e4
LT
1005 " name_count=%d put_count=%d"
1006 " ino_count=%d [NOT freeing]\n",
73241ccc 1007 __FILE__, __LINE__,
1da177e4
LT
1008 context->serial, context->major, context->in_syscall,
1009 context->name_count, context->put_count,
1010 context->ino_count);
5195d8e2 1011 list_for_each_entry(n, &context->names_list, list) {
1da177e4 1012 printk(KERN_ERR "names[%d] = %p = %s\n", i,
91a27b2a 1013 n->name, n->name->name ?: "(null)");
8c8570fb 1014 }
1da177e4
LT
1015 dump_stack();
1016 return;
1017 }
1018#endif
1019#if AUDIT_DEBUG
1020 context->put_count = 0;
1021 context->ino_count = 0;
1022#endif
1023
5195d8e2
EP
1024 list_for_each_entry_safe(n, next, &context->names_list, list) {
1025 list_del(&n->list);
1026 if (n->name && n->name_put)
65ada7bc 1027 final_putname(n->name);
5195d8e2
EP
1028 if (n->should_free)
1029 kfree(n);
8c8570fb 1030 }
1da177e4 1031 context->name_count = 0;
44707fdf
JB
1032 path_put(&context->pwd);
1033 context->pwd.dentry = NULL;
1034 context->pwd.mnt = NULL;
1da177e4
LT
1035}
1036
1037static inline void audit_free_aux(struct audit_context *context)
1038{
1039 struct audit_aux_data *aux;
1040
1041 while ((aux = context->aux)) {
1042 context->aux = aux->next;
1043 kfree(aux);
1044 }
e54dc243
AG
1045 while ((aux = context->aux_pids)) {
1046 context->aux_pids = aux->next;
1047 kfree(aux);
1048 }
1da177e4
LT
1049}
1050
1da177e4
LT
1051static inline struct audit_context *audit_alloc_context(enum audit_state state)
1052{
1053 struct audit_context *context;
1054
17c6ee70
RM
1055 context = kzalloc(sizeof(*context), GFP_KERNEL);
1056 if (!context)
1da177e4 1057 return NULL;
e2c5adc8
AM
1058 context->state = state;
1059 context->prio = state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
916d7576 1060 INIT_LIST_HEAD(&context->killed_trees);
5195d8e2 1061 INIT_LIST_HEAD(&context->names_list);
1da177e4
LT
1062 return context;
1063}
1064
b0dd25a8
RD
1065/**
1066 * audit_alloc - allocate an audit context block for a task
1067 * @tsk: task
1068 *
1069 * Filter on the task information and allocate a per-task audit context
1da177e4
LT
1070 * if necessary. Doing so turns on system call auditing for the
1071 * specified task. This is called from copy_process, so no lock is
b0dd25a8
RD
1072 * needed.
1073 */
1da177e4
LT
1074int audit_alloc(struct task_struct *tsk)
1075{
1076 struct audit_context *context;
1077 enum audit_state state;
e048e02c 1078 char *key = NULL;
1da177e4 1079
b593d384 1080 if (likely(!audit_ever_enabled))
1da177e4
LT
1081 return 0; /* Return if not auditing. */
1082
e048e02c 1083 state = audit_filter_task(tsk, &key);
56179a6e 1084 if (state == AUDIT_DISABLED)
1da177e4
LT
1085 return 0;
1086
1087 if (!(context = audit_alloc_context(state))) {
e048e02c 1088 kfree(key);
1da177e4
LT
1089 audit_log_lost("out of memory in audit_alloc");
1090 return -ENOMEM;
1091 }
e048e02c 1092 context->filterkey = key;
1da177e4 1093
1da177e4
LT
1094 tsk->audit_context = context;
1095 set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
1096 return 0;
1097}
1098
1099static inline void audit_free_context(struct audit_context *context)
1100{
c62d773a
AV
1101 audit_free_names(context);
1102 unroll_tree_refs(context, NULL, 0);
1103 free_tree_refs(context);
1104 audit_free_aux(context);
1105 kfree(context->filterkey);
1106 kfree(context->sockaddr);
1107 kfree(context);
1da177e4
LT
1108}
1109
161a09e7 1110void audit_log_task_context(struct audit_buffer *ab)
8c8570fb
DK
1111{
1112 char *ctx = NULL;
c4823bce
AV
1113 unsigned len;
1114 int error;
1115 u32 sid;
1116
2a862b32 1117 security_task_getsecid(current, &sid);
c4823bce
AV
1118 if (!sid)
1119 return;
8c8570fb 1120
2a862b32 1121 error = security_secid_to_secctx(sid, &ctx, &len);
c4823bce
AV
1122 if (error) {
1123 if (error != -EINVAL)
8c8570fb
DK
1124 goto error_path;
1125 return;
1126 }
1127
8c8570fb 1128 audit_log_format(ab, " subj=%s", ctx);
2a862b32 1129 security_release_secctx(ctx, len);
7306a0b9 1130 return;
8c8570fb
DK
1131
1132error_path:
7306a0b9 1133 audit_panic("error in audit_log_task_context");
8c8570fb
DK
1134 return;
1135}
1136
161a09e7
JL
1137EXPORT_SYMBOL(audit_log_task_context);
1138
e23eb920 1139void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
219f0817 1140{
e23eb920 1141 const struct cred *cred;
45d9bb0e
AV
1142 char name[sizeof(tsk->comm)];
1143 struct mm_struct *mm = tsk->mm;
e23eb920
PM
1144 char *tty;
1145
1146 if (!ab)
1147 return;
219f0817 1148
e495149b 1149 /* tsk == current */
e23eb920
PM
1150 cred = current_cred();
1151
1152 spin_lock_irq(&tsk->sighand->siglock);
8ae763cd 1153 if (tsk->signal && tsk->signal->tty)
e23eb920
PM
1154 tty = tsk->signal->tty->name;
1155 else
1156 tty = "(none)";
1157 spin_unlock_irq(&tsk->sighand->siglock);
1158
1159
1160 audit_log_format(ab,
1161 " ppid=%ld pid=%d auid=%u uid=%u gid=%u"
1162 " euid=%u suid=%u fsuid=%u"
1163 " egid=%u sgid=%u fsgid=%u ses=%u tty=%s",
1164 sys_getppid(),
1165 tsk->pid,
88265322
LT
1166 from_kuid(&init_user_ns, tsk->loginuid),
1167 from_kuid(&init_user_ns, cred->uid),
1168 from_kgid(&init_user_ns, cred->gid),
1169 from_kuid(&init_user_ns, cred->euid),
1170 from_kuid(&init_user_ns, cred->suid),
1171 from_kuid(&init_user_ns, cred->fsuid),
1172 from_kgid(&init_user_ns, cred->egid),
1173 from_kgid(&init_user_ns, cred->sgid),
1174 from_kgid(&init_user_ns, cred->fsgid),
e23eb920 1175 tsk->sessionid, tty);
e495149b 1176
45d9bb0e 1177 get_task_comm(name, tsk);
99e45eea
DW
1178 audit_log_format(ab, " comm=");
1179 audit_log_untrustedstring(ab, name);
219f0817 1180
e495149b
AV
1181 if (mm) {
1182 down_read(&mm->mmap_sem);
2dd8ad81
KK
1183 if (mm->exe_file)
1184 audit_log_d_path(ab, " exe=", &mm->exe_file->f_path);
e495149b 1185 up_read(&mm->mmap_sem);
219f0817 1186 }
e495149b 1187 audit_log_task_context(ab);
219f0817
SS
1188}
1189
e23eb920
PM
1190EXPORT_SYMBOL(audit_log_task_info);
1191
e54dc243 1192static int audit_log_pid_context(struct audit_context *context, pid_t pid,
cca080d9 1193 kuid_t auid, kuid_t uid, unsigned int sessionid,
4746ec5b 1194 u32 sid, char *comm)
e54dc243
AG
1195{
1196 struct audit_buffer *ab;
2a862b32 1197 char *ctx = NULL;
e54dc243
AG
1198 u32 len;
1199 int rc = 0;
1200
1201 ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
1202 if (!ab)
6246ccab 1203 return rc;
e54dc243 1204
e1760bd5
EB
1205 audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid,
1206 from_kuid(&init_user_ns, auid),
cca080d9 1207 from_kuid(&init_user_ns, uid), sessionid);
2a862b32 1208 if (security_secid_to_secctx(sid, &ctx, &len)) {
c2a7780e 1209 audit_log_format(ab, " obj=(none)");
e54dc243 1210 rc = 1;
2a862b32
AD
1211 } else {
1212 audit_log_format(ab, " obj=%s", ctx);
1213 security_release_secctx(ctx, len);
1214 }
c2a7780e
EP
1215 audit_log_format(ab, " ocomm=");
1216 audit_log_untrustedstring(ab, comm);
e54dc243 1217 audit_log_end(ab);
e54dc243
AG
1218
1219 return rc;
1220}
1221
de6bbd1d
EP
1222/*
1223 * to_send and len_sent accounting are very loose estimates. We aren't
1224 * really worried about a hard cap to MAX_EXECVE_AUDIT_LEN so much as being
25985edc 1225 * within about 500 bytes (next page boundary)
de6bbd1d
EP
1226 *
1227 * why snprintf? an int is up to 12 digits long. if we just assumed when
1228 * logging that a[%d]= was going to be 16 characters long we would be wasting
1229 * space in every audit message. In one 7500 byte message we can log up to
1230 * about 1000 min size arguments. That comes down to about 50% waste of space
1231 * if we didn't do the snprintf to find out how long arg_num_len was.
1232 */
1233static int audit_log_single_execve_arg(struct audit_context *context,
1234 struct audit_buffer **ab,
1235 int arg_num,
1236 size_t *len_sent,
1237 const char __user *p,
1238 char *buf)
bdf4c48a 1239{
de6bbd1d
EP
1240 char arg_num_len_buf[12];
1241 const char __user *tmp_p = p;
b87ce6e4
EP
1242 /* how many digits are in arg_num? 5 is the length of ' a=""' */
1243 size_t arg_num_len = snprintf(arg_num_len_buf, 12, "%d", arg_num) + 5;
de6bbd1d
EP
1244 size_t len, len_left, to_send;
1245 size_t max_execve_audit_len = MAX_EXECVE_AUDIT_LEN;
1246 unsigned int i, has_cntl = 0, too_long = 0;
1247 int ret;
1248
1249 /* strnlen_user includes the null we don't want to send */
1250 len_left = len = strnlen_user(p, MAX_ARG_STRLEN) - 1;
bdf4c48a 1251
de6bbd1d
EP
1252 /*
1253 * We just created this mm, if we can't find the strings
1254 * we just copied into it something is _very_ wrong. Similar
1255 * for strings that are too long, we should not have created
1256 * any.
1257 */
b0abcfc1 1258 if (unlikely((len == -1) || len > MAX_ARG_STRLEN - 1)) {
de6bbd1d
EP
1259 WARN_ON(1);
1260 send_sig(SIGKILL, current, 0);
b0abcfc1 1261 return -1;
de6bbd1d 1262 }
040b3a2d 1263
de6bbd1d
EP
1264 /* walk the whole argument looking for non-ascii chars */
1265 do {
1266 if (len_left > MAX_EXECVE_AUDIT_LEN)
1267 to_send = MAX_EXECVE_AUDIT_LEN;
1268 else
1269 to_send = len_left;
1270 ret = copy_from_user(buf, tmp_p, to_send);
bdf4c48a 1271 /*
de6bbd1d
EP
1272 * There is no reason for this copy to be short. We just
1273 * copied them here, and the mm hasn't been exposed to user-
1274 * space yet.
bdf4c48a 1275 */
de6bbd1d 1276 if (ret) {
bdf4c48a
PZ
1277 WARN_ON(1);
1278 send_sig(SIGKILL, current, 0);
b0abcfc1 1279 return -1;
bdf4c48a 1280 }
de6bbd1d
EP
1281 buf[to_send] = '\0';
1282 has_cntl = audit_string_contains_control(buf, to_send);
1283 if (has_cntl) {
1284 /*
1285 * hex messages get logged as 2 bytes, so we can only
1286 * send half as much in each message
1287 */
1288 max_execve_audit_len = MAX_EXECVE_AUDIT_LEN / 2;
bdf4c48a
PZ
1289 break;
1290 }
de6bbd1d
EP
1291 len_left -= to_send;
1292 tmp_p += to_send;
1293 } while (len_left > 0);
1294
1295 len_left = len;
1296
1297 if (len > max_execve_audit_len)
1298 too_long = 1;
1299
1300 /* rewalk the argument actually logging the message */
1301 for (i = 0; len_left > 0; i++) {
1302 int room_left;
1303
1304 if (len_left > max_execve_audit_len)
1305 to_send = max_execve_audit_len;
1306 else
1307 to_send = len_left;
1308
1309 /* do we have space left to send this argument in this ab? */
1310 room_left = MAX_EXECVE_AUDIT_LEN - arg_num_len - *len_sent;
1311 if (has_cntl)
1312 room_left -= (to_send * 2);
1313 else
1314 room_left -= to_send;
1315 if (room_left < 0) {
1316 *len_sent = 0;
1317 audit_log_end(*ab);
1318 *ab = audit_log_start(context, GFP_KERNEL, AUDIT_EXECVE);
1319 if (!*ab)
1320 return 0;
1321 }
bdf4c48a 1322
bdf4c48a 1323 /*
de6bbd1d
EP
1324 * first record needs to say how long the original string was
1325 * so we can be sure nothing was lost.
1326 */
1327 if ((i == 0) && (too_long))
ca96a895 1328 audit_log_format(*ab, " a%d_len=%zu", arg_num,
de6bbd1d
EP
1329 has_cntl ? 2*len : len);
1330
1331 /*
1332 * normally arguments are small enough to fit and we already
1333 * filled buf above when we checked for control characters
1334 * so don't bother with another copy_from_user
bdf4c48a 1335 */
de6bbd1d
EP
1336 if (len >= max_execve_audit_len)
1337 ret = copy_from_user(buf, p, to_send);
1338 else
1339 ret = 0;
040b3a2d 1340 if (ret) {
bdf4c48a
PZ
1341 WARN_ON(1);
1342 send_sig(SIGKILL, current, 0);
b0abcfc1 1343 return -1;
bdf4c48a 1344 }
de6bbd1d
EP
1345 buf[to_send] = '\0';
1346
1347 /* actually log it */
ca96a895 1348 audit_log_format(*ab, " a%d", arg_num);
de6bbd1d
EP
1349 if (too_long)
1350 audit_log_format(*ab, "[%d]", i);
1351 audit_log_format(*ab, "=");
1352 if (has_cntl)
b556f8ad 1353 audit_log_n_hex(*ab, buf, to_send);
de6bbd1d 1354 else
9d960985 1355 audit_log_string(*ab, buf);
de6bbd1d
EP
1356
1357 p += to_send;
1358 len_left -= to_send;
1359 *len_sent += arg_num_len;
1360 if (has_cntl)
1361 *len_sent += to_send * 2;
1362 else
1363 *len_sent += to_send;
1364 }
1365 /* include the null we didn't log */
1366 return len + 1;
1367}
1368
1369static void audit_log_execve_info(struct audit_context *context,
1370 struct audit_buffer **ab,
1371 struct audit_aux_data_execve *axi)
1372{
5afb8a3f
XW
1373 int i, len;
1374 size_t len_sent = 0;
de6bbd1d
EP
1375 const char __user *p;
1376 char *buf;
bdf4c48a 1377
de6bbd1d
EP
1378 if (axi->mm != current->mm)
1379 return; /* execve failed, no additional info */
1380
1381 p = (const char __user *)axi->mm->arg_start;
bdf4c48a 1382
ca96a895 1383 audit_log_format(*ab, "argc=%d", axi->argc);
de6bbd1d
EP
1384
1385 /*
1386 * we need some kernel buffer to hold the userspace args. Just
1387 * allocate one big one rather than allocating one of the right size
1388 * for every single argument inside audit_log_single_execve_arg()
1389 * should be <8k allocation so should be pretty safe.
1390 */
1391 buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
1392 if (!buf) {
1393 audit_panic("out of memory for argv string\n");
1394 return;
bdf4c48a 1395 }
de6bbd1d
EP
1396
1397 for (i = 0; i < axi->argc; i++) {
1398 len = audit_log_single_execve_arg(context, ab, i,
1399 &len_sent, p, buf);
1400 if (len <= 0)
1401 break;
1402 p += len;
1403 }
1404 kfree(buf);
bdf4c48a
PZ
1405}
1406
851f7ff5
EP
1407static void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1408{
1409 int i;
1410
1411 audit_log_format(ab, " %s=", prefix);
1412 CAP_FOR_EACH_U32(i) {
1413 audit_log_format(ab, "%08x", cap->cap[(_KERNEL_CAPABILITY_U32S-1) - i]);
1414 }
1415}
1416
1417static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
1418{
1419 kernel_cap_t *perm = &name->fcap.permitted;
1420 kernel_cap_t *inh = &name->fcap.inheritable;
1421 int log = 0;
1422
1423 if (!cap_isclear(*perm)) {
1424 audit_log_cap(ab, "cap_fp", perm);
1425 log = 1;
1426 }
1427 if (!cap_isclear(*inh)) {
1428 audit_log_cap(ab, "cap_fi", inh);
1429 log = 1;
1430 }
1431
1432 if (log)
1433 audit_log_format(ab, " cap_fe=%d cap_fver=%x", name->fcap.fE, name->fcap_ver);
1434}
1435
a33e6751 1436static void show_special(struct audit_context *context, int *call_panic)
f3298dc4
AV
1437{
1438 struct audit_buffer *ab;
1439 int i;
1440
1441 ab = audit_log_start(context, GFP_KERNEL, context->type);
1442 if (!ab)
1443 return;
1444
1445 switch (context->type) {
1446 case AUDIT_SOCKETCALL: {
1447 int nargs = context->socketcall.nargs;
1448 audit_log_format(ab, "nargs=%d", nargs);
1449 for (i = 0; i < nargs; i++)
1450 audit_log_format(ab, " a%d=%lx", i,
1451 context->socketcall.args[i]);
1452 break; }
a33e6751
AV
1453 case AUDIT_IPC: {
1454 u32 osid = context->ipc.osid;
1455
2570ebbd 1456 audit_log_format(ab, "ouid=%u ogid=%u mode=%#ho",
cca080d9
EB
1457 from_kuid(&init_user_ns, context->ipc.uid),
1458 from_kgid(&init_user_ns, context->ipc.gid),
1459 context->ipc.mode);
a33e6751
AV
1460 if (osid) {
1461 char *ctx = NULL;
1462 u32 len;
1463 if (security_secid_to_secctx(osid, &ctx, &len)) {
1464 audit_log_format(ab, " osid=%u", osid);
1465 *call_panic = 1;
1466 } else {
1467 audit_log_format(ab, " obj=%s", ctx);
1468 security_release_secctx(ctx, len);
1469 }
1470 }
e816f370
AV
1471 if (context->ipc.has_perm) {
1472 audit_log_end(ab);
1473 ab = audit_log_start(context, GFP_KERNEL,
1474 AUDIT_IPC_SET_PERM);
0644ec0c
KC
1475 if (unlikely(!ab))
1476 return;
e816f370 1477 audit_log_format(ab,
2570ebbd 1478 "qbytes=%lx ouid=%u ogid=%u mode=%#ho",
e816f370
AV
1479 context->ipc.qbytes,
1480 context->ipc.perm_uid,
1481 context->ipc.perm_gid,
1482 context->ipc.perm_mode);
e816f370 1483 }
a33e6751 1484 break; }
564f6993
AV
1485 case AUDIT_MQ_OPEN: {
1486 audit_log_format(ab,
df0a4283 1487 "oflag=0x%x mode=%#ho mq_flags=0x%lx mq_maxmsg=%ld "
564f6993
AV
1488 "mq_msgsize=%ld mq_curmsgs=%ld",
1489 context->mq_open.oflag, context->mq_open.mode,
1490 context->mq_open.attr.mq_flags,
1491 context->mq_open.attr.mq_maxmsg,
1492 context->mq_open.attr.mq_msgsize,
1493 context->mq_open.attr.mq_curmsgs);
1494 break; }
c32c8af4
AV
1495 case AUDIT_MQ_SENDRECV: {
1496 audit_log_format(ab,
1497 "mqdes=%d msg_len=%zd msg_prio=%u "
1498 "abs_timeout_sec=%ld abs_timeout_nsec=%ld",
1499 context->mq_sendrecv.mqdes,
1500 context->mq_sendrecv.msg_len,
1501 context->mq_sendrecv.msg_prio,
1502 context->mq_sendrecv.abs_timeout.tv_sec,
1503 context->mq_sendrecv.abs_timeout.tv_nsec);
1504 break; }
20114f71
AV
1505 case AUDIT_MQ_NOTIFY: {
1506 audit_log_format(ab, "mqdes=%d sigev_signo=%d",
1507 context->mq_notify.mqdes,
1508 context->mq_notify.sigev_signo);
1509 break; }
7392906e
AV
1510 case AUDIT_MQ_GETSETATTR: {
1511 struct mq_attr *attr = &context->mq_getsetattr.mqstat;
1512 audit_log_format(ab,
1513 "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
1514 "mq_curmsgs=%ld ",
1515 context->mq_getsetattr.mqdes,
1516 attr->mq_flags, attr->mq_maxmsg,
1517 attr->mq_msgsize, attr->mq_curmsgs);
1518 break; }
57f71a0a
AV
1519 case AUDIT_CAPSET: {
1520 audit_log_format(ab, "pid=%d", context->capset.pid);
1521 audit_log_cap(ab, "cap_pi", &context->capset.cap.inheritable);
1522 audit_log_cap(ab, "cap_pp", &context->capset.cap.permitted);
1523 audit_log_cap(ab, "cap_pe", &context->capset.cap.effective);
1524 break; }
120a795d
AV
1525 case AUDIT_MMAP: {
1526 audit_log_format(ab, "fd=%d flags=0x%x", context->mmap.fd,
1527 context->mmap.flags);
1528 break; }
f3298dc4
AV
1529 }
1530 audit_log_end(ab);
1531}
1532
5195d8e2
EP
1533static void audit_log_name(struct audit_context *context, struct audit_names *n,
1534 int record_num, int *call_panic)
1535{
1536 struct audit_buffer *ab;
1537 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
1538 if (!ab)
1539 return; /* audit_panic has been called */
1540
1541 audit_log_format(ab, "item=%d", record_num);
1542
1543 if (n->name) {
1544 switch (n->name_len) {
1545 case AUDIT_NAME_FULL:
1546 /* log the full path */
1547 audit_log_format(ab, " name=");
91a27b2a 1548 audit_log_untrustedstring(ab, n->name->name);
5195d8e2
EP
1549 break;
1550 case 0:
1551 /* name was specified as a relative path and the
1552 * directory component is the cwd */
c158a35c 1553 audit_log_d_path(ab, " name=", &context->pwd);
5195d8e2
EP
1554 break;
1555 default:
1556 /* log the name's directory component */
1557 audit_log_format(ab, " name=");
91a27b2a 1558 audit_log_n_untrustedstring(ab, n->name->name,
5195d8e2
EP
1559 n->name_len);
1560 }
1561 } else
1562 audit_log_format(ab, " name=(null)");
1563
1564 if (n->ino != (unsigned long)-1) {
1565 audit_log_format(ab, " inode=%lu"
1566 " dev=%02x:%02x mode=%#ho"
1567 " ouid=%u ogid=%u rdev=%02x:%02x",
1568 n->ino,
1569 MAJOR(n->dev),
1570 MINOR(n->dev),
1571 n->mode,
cca080d9
EB
1572 from_kuid(&init_user_ns, n->uid),
1573 from_kgid(&init_user_ns, n->gid),
5195d8e2
EP
1574 MAJOR(n->rdev),
1575 MINOR(n->rdev));
1576 }
1577 if (n->osid != 0) {
1578 char *ctx = NULL;
1579 u32 len;
1580 if (security_secid_to_secctx(
1581 n->osid, &ctx, &len)) {
1582 audit_log_format(ab, " osid=%u", n->osid);
1583 *call_panic = 2;
1584 } else {
1585 audit_log_format(ab, " obj=%s", ctx);
1586 security_release_secctx(ctx, len);
1587 }
1588 }
1589
1590 audit_log_fcaps(ab, n);
1591
1592 audit_log_end(ab);
1593}
1594
e495149b 1595static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
1da177e4 1596{
9c7aa6aa 1597 int i, call_panic = 0;
1da177e4 1598 struct audit_buffer *ab;
7551ced3 1599 struct audit_aux_data *aux;
5195d8e2 1600 struct audit_names *n;
1da177e4 1601
e495149b 1602 /* tsk == current */
3f2792ff 1603 context->personality = tsk->personality;
e495149b
AV
1604
1605 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
1da177e4
LT
1606 if (!ab)
1607 return; /* audit_panic has been called */
bccf6ae0
DW
1608 audit_log_format(ab, "arch=%x syscall=%d",
1609 context->arch, context->major);
1da177e4
LT
1610 if (context->personality != PER_LINUX)
1611 audit_log_format(ab, " per=%lx", context->personality);
1612 if (context->return_valid)
9f8dbe9c 1613 audit_log_format(ab, " success=%s exit=%ld",
2fd6f58b 1614 (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
1615 context->return_code);
eb84a20e 1616
1da177e4 1617 audit_log_format(ab,
e23eb920
PM
1618 " a0=%lx a1=%lx a2=%lx a3=%lx items=%d",
1619 context->argv[0],
1620 context->argv[1],
1621 context->argv[2],
1622 context->argv[3],
1623 context->name_count);
eb84a20e 1624
e495149b 1625 audit_log_task_info(ab, tsk);
9d960985 1626 audit_log_key(ab, context->filterkey);
1da177e4 1627 audit_log_end(ab);
1da177e4 1628
7551ced3 1629 for (aux = context->aux; aux; aux = aux->next) {
c0404993 1630
e495149b 1631 ab = audit_log_start(context, GFP_KERNEL, aux->type);
1da177e4
LT
1632 if (!ab)
1633 continue; /* audit_panic has been called */
1634
1da177e4 1635 switch (aux->type) {
20ca73bc 1636
473ae30b
AV
1637 case AUDIT_EXECVE: {
1638 struct audit_aux_data_execve *axi = (void *)aux;
de6bbd1d 1639 audit_log_execve_info(context, &ab, axi);
473ae30b 1640 break; }
073115d6 1641
3fc689e9
EP
1642 case AUDIT_BPRM_FCAPS: {
1643 struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
1644 audit_log_format(ab, "fver=%x", axs->fcap_ver);
1645 audit_log_cap(ab, "fp", &axs->fcap.permitted);
1646 audit_log_cap(ab, "fi", &axs->fcap.inheritable);
1647 audit_log_format(ab, " fe=%d", axs->fcap.fE);
1648 audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
1649 audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
1650 audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
1651 audit_log_cap(ab, "new_pp", &axs->new_pcap.permitted);
1652 audit_log_cap(ab, "new_pi", &axs->new_pcap.inheritable);
1653 audit_log_cap(ab, "new_pe", &axs->new_pcap.effective);
1654 break; }
1655
1da177e4
LT
1656 }
1657 audit_log_end(ab);
1da177e4
LT
1658 }
1659
f3298dc4 1660 if (context->type)
a33e6751 1661 show_special(context, &call_panic);
f3298dc4 1662
157cf649
AV
1663 if (context->fds[0] >= 0) {
1664 ab = audit_log_start(context, GFP_KERNEL, AUDIT_FD_PAIR);
1665 if (ab) {
1666 audit_log_format(ab, "fd0=%d fd1=%d",
1667 context->fds[0], context->fds[1]);
1668 audit_log_end(ab);
1669 }
1670 }
1671
4f6b434f
AV
1672 if (context->sockaddr_len) {
1673 ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
1674 if (ab) {
1675 audit_log_format(ab, "saddr=");
1676 audit_log_n_hex(ab, (void *)context->sockaddr,
1677 context->sockaddr_len);
1678 audit_log_end(ab);
1679 }
1680 }
1681
e54dc243
AG
1682 for (aux = context->aux_pids; aux; aux = aux->next) {
1683 struct audit_aux_data_pids *axs = (void *)aux;
e54dc243
AG
1684
1685 for (i = 0; i < axs->pid_count; i++)
1686 if (audit_log_pid_context(context, axs->target_pid[i],
c2a7780e
EP
1687 axs->target_auid[i],
1688 axs->target_uid[i],
4746ec5b 1689 axs->target_sessionid[i],
c2a7780e
EP
1690 axs->target_sid[i],
1691 axs->target_comm[i]))
e54dc243 1692 call_panic = 1;
a5cb013d
AV
1693 }
1694
e54dc243
AG
1695 if (context->target_pid &&
1696 audit_log_pid_context(context, context->target_pid,
c2a7780e 1697 context->target_auid, context->target_uid,
4746ec5b 1698 context->target_sessionid,
c2a7780e 1699 context->target_sid, context->target_comm))
e54dc243
AG
1700 call_panic = 1;
1701
44707fdf 1702 if (context->pwd.dentry && context->pwd.mnt) {
e495149b 1703 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
8f37d47c 1704 if (ab) {
c158a35c 1705 audit_log_d_path(ab, " cwd=", &context->pwd);
8f37d47c
DW
1706 audit_log_end(ab);
1707 }
1708 }
73241ccc 1709
5195d8e2
EP
1710 i = 0;
1711 list_for_each_entry(n, &context->names_list, list)
1712 audit_log_name(context, n, i++, &call_panic);
c0641f28
EP
1713
1714 /* Send end of event record to help user space know we are finished */
1715 ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
1716 if (ab)
1717 audit_log_end(ab);
9c7aa6aa
SG
1718 if (call_panic)
1719 audit_panic("error converting sid to string");
1da177e4
LT
1720}
1721
b0dd25a8
RD
1722/**
1723 * audit_free - free a per-task audit context
1724 * @tsk: task whose audit context block to free
1725 *
fa84cb93 1726 * Called from copy_process and do_exit
b0dd25a8 1727 */
a4ff8dba 1728void __audit_free(struct task_struct *tsk)
1da177e4
LT
1729{
1730 struct audit_context *context;
1731
1da177e4 1732 context = audit_get_context(tsk, 0, 0);
56179a6e 1733 if (!context)
1da177e4
LT
1734 return;
1735
1736 /* Check for system calls that do not go through the exit
9f8dbe9c
DW
1737 * function (e.g., exit_group), then free context block.
1738 * We use GFP_ATOMIC here because we might be doing this
f5561964 1739 * in the context of the idle thread */
e495149b 1740 /* that can happen only if we are called from do_exit() */
0590b933 1741 if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
e495149b 1742 audit_log_exit(context, tsk);
916d7576
AV
1743 if (!list_empty(&context->killed_trees))
1744 audit_kill_trees(&context->killed_trees);
1da177e4
LT
1745
1746 audit_free_context(context);
1747}
1748
b0dd25a8
RD
1749/**
1750 * audit_syscall_entry - fill in an audit record at syscall entry
b0dd25a8
RD
1751 * @arch: architecture type
1752 * @major: major syscall type (function)
1753 * @a1: additional syscall register 1
1754 * @a2: additional syscall register 2
1755 * @a3: additional syscall register 3
1756 * @a4: additional syscall register 4
1757 *
1758 * Fill in audit context at syscall entry. This only happens if the
1da177e4
LT
1759 * audit context was created when the task was created and the state or
1760 * filters demand the audit context be built. If the state from the
1761 * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
1762 * then the record will be written at syscall exit time (otherwise, it
1763 * will only be written if another part of the kernel requests that it
b0dd25a8
RD
1764 * be written).
1765 */
b05d8447 1766void __audit_syscall_entry(int arch, int major,
1da177e4
LT
1767 unsigned long a1, unsigned long a2,
1768 unsigned long a3, unsigned long a4)
1769{
5411be59 1770 struct task_struct *tsk = current;
1da177e4
LT
1771 struct audit_context *context = tsk->audit_context;
1772 enum audit_state state;
1773
56179a6e 1774 if (!context)
86a1c34a 1775 return;
1da177e4 1776
1da177e4
LT
1777 BUG_ON(context->in_syscall || context->name_count);
1778
1779 if (!audit_enabled)
1780 return;
1781
2fd6f58b 1782 context->arch = arch;
1da177e4
LT
1783 context->major = major;
1784 context->argv[0] = a1;
1785 context->argv[1] = a2;
1786 context->argv[2] = a3;
1787 context->argv[3] = a4;
1788
1789 state = context->state;
d51374ad 1790 context->dummy = !audit_n_rules;
0590b933
AV
1791 if (!context->dummy && state == AUDIT_BUILD_CONTEXT) {
1792 context->prio = 0;
0f45aa18 1793 state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]);
0590b933 1794 }
56179a6e 1795 if (state == AUDIT_DISABLED)
1da177e4
LT
1796 return;
1797
ce625a80 1798 context->serial = 0;
1da177e4
LT
1799 context->ctime = CURRENT_TIME;
1800 context->in_syscall = 1;
0590b933 1801 context->current_state = state;
419c58f1 1802 context->ppid = 0;
1da177e4
LT
1803}
1804
b0dd25a8
RD
1805/**
1806 * audit_syscall_exit - deallocate audit context after a system call
42ae610c
RD
1807 * @success: success value of the syscall
1808 * @return_code: return value of the syscall
b0dd25a8
RD
1809 *
1810 * Tear down after system call. If the audit context has been marked as
1da177e4 1811 * auditable (either because of the AUDIT_RECORD_CONTEXT state from
42ae610c 1812 * filtering, or because some other part of the kernel wrote an audit
1da177e4 1813 * message), then write out the syscall information. In call cases,
b0dd25a8
RD
1814 * free the names stored from getname().
1815 */
d7e7528b 1816void __audit_syscall_exit(int success, long return_code)
1da177e4 1817{
5411be59 1818 struct task_struct *tsk = current;
1da177e4
LT
1819 struct audit_context *context;
1820
d7e7528b
EP
1821 if (success)
1822 success = AUDITSC_SUCCESS;
1823 else
1824 success = AUDITSC_FAILURE;
1da177e4 1825
d7e7528b 1826 context = audit_get_context(tsk, success, return_code);
56179a6e 1827 if (!context)
97e94c45 1828 return;
1da177e4 1829
0590b933 1830 if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
e495149b 1831 audit_log_exit(context, tsk);
1da177e4
LT
1832
1833 context->in_syscall = 0;
0590b933 1834 context->prio = context->state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
2fd6f58b 1835
916d7576
AV
1836 if (!list_empty(&context->killed_trees))
1837 audit_kill_trees(&context->killed_trees);
1838
c62d773a
AV
1839 audit_free_names(context);
1840 unroll_tree_refs(context, NULL, 0);
1841 audit_free_aux(context);
1842 context->aux = NULL;
1843 context->aux_pids = NULL;
1844 context->target_pid = 0;
1845 context->target_sid = 0;
1846 context->sockaddr_len = 0;
1847 context->type = 0;
1848 context->fds[0] = -1;
1849 if (context->state != AUDIT_RECORD_CONTEXT) {
1850 kfree(context->filterkey);
1851 context->filterkey = NULL;
1da177e4 1852 }
c62d773a 1853 tsk->audit_context = context;
1da177e4
LT
1854}
1855
74c3cbe3
AV
1856static inline void handle_one(const struct inode *inode)
1857{
1858#ifdef CONFIG_AUDIT_TREE
1859 struct audit_context *context;
1860 struct audit_tree_refs *p;
1861 struct audit_chunk *chunk;
1862 int count;
e61ce867 1863 if (likely(hlist_empty(&inode->i_fsnotify_marks)))
74c3cbe3
AV
1864 return;
1865 context = current->audit_context;
1866 p = context->trees;
1867 count = context->tree_count;
1868 rcu_read_lock();
1869 chunk = audit_tree_lookup(inode);
1870 rcu_read_unlock();
1871 if (!chunk)
1872 return;
1873 if (likely(put_tree_ref(context, chunk)))
1874 return;
1875 if (unlikely(!grow_tree_refs(context))) {
436c405c 1876 printk(KERN_WARNING "out of memory, audit has lost a tree reference\n");
74c3cbe3
AV
1877 audit_set_auditable(context);
1878 audit_put_chunk(chunk);
1879 unroll_tree_refs(context, p, count);
1880 return;
1881 }
1882 put_tree_ref(context, chunk);
1883#endif
1884}
1885
1886static void handle_path(const struct dentry *dentry)
1887{
1888#ifdef CONFIG_AUDIT_TREE
1889 struct audit_context *context;
1890 struct audit_tree_refs *p;
1891 const struct dentry *d, *parent;
1892 struct audit_chunk *drop;
1893 unsigned long seq;
1894 int count;
1895
1896 context = current->audit_context;
1897 p = context->trees;
1898 count = context->tree_count;
1899retry:
1900 drop = NULL;
1901 d = dentry;
1902 rcu_read_lock();
1903 seq = read_seqbegin(&rename_lock);
1904 for(;;) {
1905 struct inode *inode = d->d_inode;
e61ce867 1906 if (inode && unlikely(!hlist_empty(&inode->i_fsnotify_marks))) {
74c3cbe3
AV
1907 struct audit_chunk *chunk;
1908 chunk = audit_tree_lookup(inode);
1909 if (chunk) {
1910 if (unlikely(!put_tree_ref(context, chunk))) {
1911 drop = chunk;
1912 break;
1913 }
1914 }
1915 }
1916 parent = d->d_parent;
1917 if (parent == d)
1918 break;
1919 d = parent;
1920 }
1921 if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
1922 rcu_read_unlock();
1923 if (!drop) {
1924 /* just a race with rename */
1925 unroll_tree_refs(context, p, count);
1926 goto retry;
1927 }
1928 audit_put_chunk(drop);
1929 if (grow_tree_refs(context)) {
1930 /* OK, got more space */
1931 unroll_tree_refs(context, p, count);
1932 goto retry;
1933 }
1934 /* too bad */
1935 printk(KERN_WARNING
436c405c 1936 "out of memory, audit has lost a tree reference\n");
74c3cbe3
AV
1937 unroll_tree_refs(context, p, count);
1938 audit_set_auditable(context);
1939 return;
1940 }
1941 rcu_read_unlock();
1942#endif
1943}
1944
78e2e802
JL
1945static struct audit_names *audit_alloc_name(struct audit_context *context,
1946 unsigned char type)
5195d8e2
EP
1947{
1948 struct audit_names *aname;
1949
1950 if (context->name_count < AUDIT_NAMES) {
1951 aname = &context->preallocated_names[context->name_count];
1952 memset(aname, 0, sizeof(*aname));
1953 } else {
1954 aname = kzalloc(sizeof(*aname), GFP_NOFS);
1955 if (!aname)
1956 return NULL;
1957 aname->should_free = true;
1958 }
1959
1960 aname->ino = (unsigned long)-1;
78e2e802 1961 aname->type = type;
5195d8e2
EP
1962 list_add_tail(&aname->list, &context->names_list);
1963
1964 context->name_count++;
1965#if AUDIT_DEBUG
1966 context->ino_count++;
1967#endif
1968 return aname;
1969}
1970
7ac86265
JL
1971/**
1972 * audit_reusename - fill out filename with info from existing entry
1973 * @uptr: userland ptr to pathname
1974 *
1975 * Search the audit_names list for the current audit context. If there is an
1976 * existing entry with a matching "uptr" then return the filename
1977 * associated with that audit_name. If not, return NULL.
1978 */
1979struct filename *
1980__audit_reusename(const __user char *uptr)
1981{
1982 struct audit_context *context = current->audit_context;
1983 struct audit_names *n;
1984
1985 list_for_each_entry(n, &context->names_list, list) {
1986 if (!n->name)
1987 continue;
1988 if (n->name->uptr == uptr)
1989 return n->name;
1990 }
1991 return NULL;
1992}
1993
b0dd25a8
RD
1994/**
1995 * audit_getname - add a name to the list
1996 * @name: name to add
1997 *
1998 * Add a name to the list of audit names for this context.
1999 * Called from fs/namei.c:getname().
2000 */
91a27b2a 2001void __audit_getname(struct filename *name)
1da177e4
LT
2002{
2003 struct audit_context *context = current->audit_context;
5195d8e2 2004 struct audit_names *n;
1da177e4 2005
1da177e4
LT
2006 if (!context->in_syscall) {
2007#if AUDIT_DEBUG == 2
2008 printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n",
2009 __FILE__, __LINE__, context->serial, name);
2010 dump_stack();
2011#endif
2012 return;
2013 }
5195d8e2 2014
91a27b2a
JL
2015#if AUDIT_DEBUG
2016 /* The filename _must_ have a populated ->name */
2017 BUG_ON(!name->name);
2018#endif
2019
78e2e802 2020 n = audit_alloc_name(context, AUDIT_TYPE_UNKNOWN);
5195d8e2
EP
2021 if (!n)
2022 return;
2023
2024 n->name = name;
2025 n->name_len = AUDIT_NAME_FULL;
2026 n->name_put = true;
adb5c247 2027 name->aname = n;
5195d8e2 2028
f7ad3c6b
MS
2029 if (!context->pwd.dentry)
2030 get_fs_pwd(current->fs, &context->pwd);
1da177e4
LT
2031}
2032
b0dd25a8
RD
2033/* audit_putname - intercept a putname request
2034 * @name: name to intercept and delay for putname
2035 *
2036 * If we have stored the name from getname in the audit context,
2037 * then we delay the putname until syscall exit.
2038 * Called from include/linux/fs.h:putname().
2039 */
91a27b2a 2040void audit_putname(struct filename *name)
1da177e4
LT
2041{
2042 struct audit_context *context = current->audit_context;
2043
2044 BUG_ON(!context);
2045 if (!context->in_syscall) {
2046#if AUDIT_DEBUG == 2
65ada7bc 2047 printk(KERN_ERR "%s:%d(:%d): final_putname(%p)\n",
1da177e4
LT
2048 __FILE__, __LINE__, context->serial, name);
2049 if (context->name_count) {
5195d8e2 2050 struct audit_names *n;
1da177e4 2051 int i;
5195d8e2
EP
2052
2053 list_for_each_entry(n, &context->names_list, list)
1da177e4 2054 printk(KERN_ERR "name[%d] = %p = %s\n", i,
91a27b2a 2055 n->name, n->name->name ?: "(null)");
5195d8e2 2056 }
1da177e4 2057#endif
65ada7bc 2058 final_putname(name);
1da177e4
LT
2059 }
2060#if AUDIT_DEBUG
2061 else {
2062 ++context->put_count;
2063 if (context->put_count > context->name_count) {
2064 printk(KERN_ERR "%s:%d(:%d): major=%d"
2065 " in_syscall=%d putname(%p) name_count=%d"
2066 " put_count=%d\n",
2067 __FILE__, __LINE__,
2068 context->serial, context->major,
91a27b2a
JL
2069 context->in_syscall, name->name,
2070 context->name_count, context->put_count);
1da177e4
LT
2071 dump_stack();
2072 }
2073 }
2074#endif
2075}
2076
851f7ff5
EP
2077static inline int audit_copy_fcaps(struct audit_names *name, const struct dentry *dentry)
2078{
2079 struct cpu_vfs_cap_data caps;
2080 int rc;
2081
851f7ff5
EP
2082 if (!dentry)
2083 return 0;
2084
2085 rc = get_vfs_caps_from_disk(dentry, &caps);
2086 if (rc)
2087 return rc;
2088
2089 name->fcap.permitted = caps.permitted;
2090 name->fcap.inheritable = caps.inheritable;
2091 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2092 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2093
2094 return 0;
2095}
2096
2097
3e2efce0 2098/* Copy inode data into an audit_names. */
851f7ff5
EP
2099static void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
2100 const struct inode *inode)
8c8570fb 2101{
3e2efce0
AG
2102 name->ino = inode->i_ino;
2103 name->dev = inode->i_sb->s_dev;
2104 name->mode = inode->i_mode;
2105 name->uid = inode->i_uid;
2106 name->gid = inode->i_gid;
2107 name->rdev = inode->i_rdev;
2a862b32 2108 security_inode_getsecid(inode, &name->osid);
851f7ff5 2109 audit_copy_fcaps(name, dentry);
8c8570fb
DK
2110}
2111
b0dd25a8 2112/**
bfcec708 2113 * __audit_inode - store the inode and device from a lookup
b0dd25a8 2114 * @name: name being audited
481968f4 2115 * @dentry: dentry being audited
bfcec708 2116 * @parent: does this dentry represent the parent?
b0dd25a8 2117 */
adb5c247 2118void __audit_inode(struct filename *name, const struct dentry *dentry,
bfcec708 2119 unsigned int parent)
1da177e4 2120{
1da177e4 2121 struct audit_context *context = current->audit_context;
74c3cbe3 2122 const struct inode *inode = dentry->d_inode;
5195d8e2 2123 struct audit_names *n;
1da177e4
LT
2124
2125 if (!context->in_syscall)
2126 return;
5195d8e2 2127
9cec9d68
JL
2128 if (!name)
2129 goto out_alloc;
2130
adb5c247
JL
2131#if AUDIT_DEBUG
2132 /* The struct filename _must_ have a populated ->name */
2133 BUG_ON(!name->name);
2134#endif
2135 /*
2136 * If we have a pointer to an audit_names entry already, then we can
2137 * just use it directly if the type is correct.
2138 */
2139 n = name->aname;
2140 if (n) {
2141 if (parent) {
2142 if (n->type == AUDIT_TYPE_PARENT ||
2143 n->type == AUDIT_TYPE_UNKNOWN)
2144 goto out;
2145 } else {
2146 if (n->type != AUDIT_TYPE_PARENT)
2147 goto out;
2148 }
2149 }
2150
5195d8e2 2151 list_for_each_entry_reverse(n, &context->names_list, list) {
bfcec708 2152 /* does the name pointer match? */
adb5c247 2153 if (!n->name || n->name->name != name->name)
bfcec708
JL
2154 continue;
2155
2156 /* match the correct record type */
2157 if (parent) {
2158 if (n->type == AUDIT_TYPE_PARENT ||
2159 n->type == AUDIT_TYPE_UNKNOWN)
2160 goto out;
2161 } else {
2162 if (n->type != AUDIT_TYPE_PARENT)
2163 goto out;
2164 }
1da177e4 2165 }
5195d8e2 2166
9cec9d68 2167out_alloc:
bfcec708
JL
2168 /* unable to find the name from a previous getname(). Allocate a new
2169 * anonymous entry.
2170 */
78e2e802 2171 n = audit_alloc_name(context, AUDIT_TYPE_NORMAL);
5195d8e2
EP
2172 if (!n)
2173 return;
2174out:
bfcec708 2175 if (parent) {
91a27b2a 2176 n->name_len = n->name ? parent_len(n->name->name) : AUDIT_NAME_FULL;
bfcec708
JL
2177 n->type = AUDIT_TYPE_PARENT;
2178 } else {
2179 n->name_len = AUDIT_NAME_FULL;
2180 n->type = AUDIT_TYPE_NORMAL;
2181 }
74c3cbe3 2182 handle_path(dentry);
5195d8e2 2183 audit_copy_inode(n, dentry, inode);
73241ccc
AG
2184}
2185
2186/**
c43a25ab 2187 * __audit_inode_child - collect inode info for created/removed objects
73d3ec5a 2188 * @parent: inode of dentry parent
c43a25ab 2189 * @dentry: dentry being audited
4fa6b5ec 2190 * @type: AUDIT_TYPE_* value that we're looking for
73241ccc
AG
2191 *
2192 * For syscalls that create or remove filesystem objects, audit_inode
2193 * can only collect information for the filesystem object's parent.
2194 * This call updates the audit context with the child's information.
2195 * Syscalls that create a new filesystem object must be hooked after
2196 * the object is created. Syscalls that remove a filesystem object
2197 * must be hooked prior, in order to capture the target inode during
2198 * unsuccessful attempts.
2199 */
c43a25ab 2200void __audit_inode_child(const struct inode *parent,
4fa6b5ec
JL
2201 const struct dentry *dentry,
2202 const unsigned char type)
73241ccc 2203{
73241ccc 2204 struct audit_context *context = current->audit_context;
5a190ae6 2205 const struct inode *inode = dentry->d_inode;
cccc6bba 2206 const char *dname = dentry->d_name.name;
4fa6b5ec 2207 struct audit_names *n, *found_parent = NULL, *found_child = NULL;
73241ccc
AG
2208
2209 if (!context->in_syscall)
2210 return;
2211
74c3cbe3
AV
2212 if (inode)
2213 handle_one(inode);
73241ccc 2214
4fa6b5ec 2215 /* look for a parent entry first */
5195d8e2 2216 list_for_each_entry(n, &context->names_list, list) {
4fa6b5ec 2217 if (!n->name || n->type != AUDIT_TYPE_PARENT)
5712e88f
AG
2218 continue;
2219
2220 if (n->ino == parent->i_ino &&
91a27b2a 2221 !audit_compare_dname_path(dname, n->name->name, n->name_len)) {
4fa6b5ec
JL
2222 found_parent = n;
2223 break;
f368c07d 2224 }
5712e88f 2225 }
73241ccc 2226
4fa6b5ec 2227 /* is there a matching child entry? */
5195d8e2 2228 list_for_each_entry(n, &context->names_list, list) {
4fa6b5ec
JL
2229 /* can only match entries that have a name */
2230 if (!n->name || n->type != type)
2231 continue;
2232
2233 /* if we found a parent, make sure this one is a child of it */
2234 if (found_parent && (n->name != found_parent->name))
5712e88f
AG
2235 continue;
2236
91a27b2a
JL
2237 if (!strcmp(dname, n->name->name) ||
2238 !audit_compare_dname_path(dname, n->name->name,
4fa6b5ec
JL
2239 found_parent ?
2240 found_parent->name_len :
e3d6b07b 2241 AUDIT_NAME_FULL)) {
4fa6b5ec
JL
2242 found_child = n;
2243 break;
5712e88f 2244 }
ac9910ce 2245 }
5712e88f 2246
5712e88f 2247 if (!found_parent) {
4fa6b5ec
JL
2248 /* create a new, "anonymous" parent record */
2249 n = audit_alloc_name(context, AUDIT_TYPE_PARENT);
5195d8e2 2250 if (!n)
ac9910ce 2251 return;
5195d8e2 2252 audit_copy_inode(n, NULL, parent);
73d3ec5a 2253 }
5712e88f
AG
2254
2255 if (!found_child) {
4fa6b5ec
JL
2256 found_child = audit_alloc_name(context, type);
2257 if (!found_child)
5712e88f 2258 return;
5712e88f
AG
2259
2260 /* Re-use the name belonging to the slot for a matching parent
2261 * directory. All names for this context are relinquished in
2262 * audit_free_names() */
2263 if (found_parent) {
4fa6b5ec
JL
2264 found_child->name = found_parent->name;
2265 found_child->name_len = AUDIT_NAME_FULL;
5712e88f 2266 /* don't call __putname() */
4fa6b5ec 2267 found_child->name_put = false;
5712e88f 2268 }
5712e88f 2269 }
4fa6b5ec
JL
2270 if (inode)
2271 audit_copy_inode(found_child, dentry, inode);
2272 else
2273 found_child->ino = (unsigned long)-1;
3e2efce0 2274}
50e437d5 2275EXPORT_SYMBOL_GPL(__audit_inode_child);
3e2efce0 2276
b0dd25a8
RD
2277/**
2278 * auditsc_get_stamp - get local copies of audit_context values
2279 * @ctx: audit_context for the task
2280 * @t: timespec to store time recorded in the audit_context
2281 * @serial: serial value that is recorded in the audit_context
2282 *
2283 * Also sets the context as auditable.
2284 */
48887e63 2285int auditsc_get_stamp(struct audit_context *ctx,
bfb4496e 2286 struct timespec *t, unsigned int *serial)
1da177e4 2287{
48887e63
AV
2288 if (!ctx->in_syscall)
2289 return 0;
ce625a80
DW
2290 if (!ctx->serial)
2291 ctx->serial = audit_serial();
bfb4496e
DW
2292 t->tv_sec = ctx->ctime.tv_sec;
2293 t->tv_nsec = ctx->ctime.tv_nsec;
2294 *serial = ctx->serial;
0590b933
AV
2295 if (!ctx->prio) {
2296 ctx->prio = 1;
2297 ctx->current_state = AUDIT_RECORD_CONTEXT;
2298 }
48887e63 2299 return 1;
1da177e4
LT
2300}
2301
4746ec5b
EP
2302/* global counter which is incremented every time something logs in */
2303static atomic_t session_id = ATOMIC_INIT(0);
2304
b0dd25a8 2305/**
0a300be6 2306 * audit_set_loginuid - set current task's audit_context loginuid
b0dd25a8
RD
2307 * @loginuid: loginuid value
2308 *
2309 * Returns 0.
2310 *
2311 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2312 */
e1760bd5 2313int audit_set_loginuid(kuid_t loginuid)
1da177e4 2314{
0a300be6 2315 struct task_struct *task = current;
41757106 2316 struct audit_context *context = task->audit_context;
633b4545 2317 unsigned int sessionid;
41757106 2318
633b4545 2319#ifdef CONFIG_AUDIT_LOGINUID_IMMUTABLE
e1760bd5 2320 if (uid_valid(task->loginuid))
633b4545
EP
2321 return -EPERM;
2322#else /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
2323 if (!capable(CAP_AUDIT_CONTROL))
2324 return -EPERM;
2325#endif /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
2326
2327 sessionid = atomic_inc_return(&session_id);
bfef93a5
AV
2328 if (context && context->in_syscall) {
2329 struct audit_buffer *ab;
2330
2331 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
2332 if (ab) {
2333 audit_log_format(ab, "login pid=%d uid=%u "
4746ec5b
EP
2334 "old auid=%u new auid=%u"
2335 " old ses=%u new ses=%u",
cca080d9
EB
2336 task->pid,
2337 from_kuid(&init_user_ns, task_uid(task)),
e1760bd5
EB
2338 from_kuid(&init_user_ns, task->loginuid),
2339 from_kuid(&init_user_ns, loginuid),
4746ec5b 2340 task->sessionid, sessionid);
bfef93a5 2341 audit_log_end(ab);
c0404993 2342 }
1da177e4 2343 }
4746ec5b 2344 task->sessionid = sessionid;
bfef93a5 2345 task->loginuid = loginuid;
1da177e4
LT
2346 return 0;
2347}
2348
20ca73bc
GW
2349/**
2350 * __audit_mq_open - record audit data for a POSIX MQ open
2351 * @oflag: open flag
2352 * @mode: mode bits
6b962559 2353 * @attr: queue attributes
20ca73bc 2354 *
20ca73bc 2355 */
df0a4283 2356void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
20ca73bc 2357{
20ca73bc
GW
2358 struct audit_context *context = current->audit_context;
2359
564f6993
AV
2360 if (attr)
2361 memcpy(&context->mq_open.attr, attr, sizeof(struct mq_attr));
2362 else
2363 memset(&context->mq_open.attr, 0, sizeof(struct mq_attr));
20ca73bc 2364
564f6993
AV
2365 context->mq_open.oflag = oflag;
2366 context->mq_open.mode = mode;
20ca73bc 2367
564f6993 2368 context->type = AUDIT_MQ_OPEN;
20ca73bc
GW
2369}
2370
2371/**
c32c8af4 2372 * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
20ca73bc
GW
2373 * @mqdes: MQ descriptor
2374 * @msg_len: Message length
2375 * @msg_prio: Message priority
c32c8af4 2376 * @abs_timeout: Message timeout in absolute time
20ca73bc 2377 *
20ca73bc 2378 */
c32c8af4
AV
2379void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
2380 const struct timespec *abs_timeout)
20ca73bc 2381{
20ca73bc 2382 struct audit_context *context = current->audit_context;
c32c8af4 2383 struct timespec *p = &context->mq_sendrecv.abs_timeout;
20ca73bc 2384
c32c8af4
AV
2385 if (abs_timeout)
2386 memcpy(p, abs_timeout, sizeof(struct timespec));
2387 else
2388 memset(p, 0, sizeof(struct timespec));
20ca73bc 2389
c32c8af4
AV
2390 context->mq_sendrecv.mqdes = mqdes;
2391 context->mq_sendrecv.msg_len = msg_len;
2392 context->mq_sendrecv.msg_prio = msg_prio;
20ca73bc 2393
c32c8af4 2394 context->type = AUDIT_MQ_SENDRECV;
20ca73bc
GW
2395}
2396
2397/**
2398 * __audit_mq_notify - record audit data for a POSIX MQ notify
2399 * @mqdes: MQ descriptor
6b962559 2400 * @notification: Notification event
20ca73bc 2401 *
20ca73bc
GW
2402 */
2403
20114f71 2404void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
20ca73bc 2405{
20ca73bc
GW
2406 struct audit_context *context = current->audit_context;
2407
20114f71
AV
2408 if (notification)
2409 context->mq_notify.sigev_signo = notification->sigev_signo;
2410 else
2411 context->mq_notify.sigev_signo = 0;
20ca73bc 2412
20114f71
AV
2413 context->mq_notify.mqdes = mqdes;
2414 context->type = AUDIT_MQ_NOTIFY;
20ca73bc
GW
2415}
2416
2417/**
2418 * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
2419 * @mqdes: MQ descriptor
2420 * @mqstat: MQ flags
2421 *
20ca73bc 2422 */
7392906e 2423void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
20ca73bc 2424{
20ca73bc 2425 struct audit_context *context = current->audit_context;
7392906e
AV
2426 context->mq_getsetattr.mqdes = mqdes;
2427 context->mq_getsetattr.mqstat = *mqstat;
2428 context->type = AUDIT_MQ_GETSETATTR;
20ca73bc
GW
2429}
2430
b0dd25a8 2431/**
073115d6
SG
2432 * audit_ipc_obj - record audit data for ipc object
2433 * @ipcp: ipc permissions
2434 *
073115d6 2435 */
a33e6751 2436void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
073115d6 2437{
073115d6 2438 struct audit_context *context = current->audit_context;
a33e6751
AV
2439 context->ipc.uid = ipcp->uid;
2440 context->ipc.gid = ipcp->gid;
2441 context->ipc.mode = ipcp->mode;
e816f370 2442 context->ipc.has_perm = 0;
a33e6751
AV
2443 security_ipc_getsecid(ipcp, &context->ipc.osid);
2444 context->type = AUDIT_IPC;
073115d6
SG
2445}
2446
2447/**
2448 * audit_ipc_set_perm - record audit data for new ipc permissions
b0dd25a8
RD
2449 * @qbytes: msgq bytes
2450 * @uid: msgq user id
2451 * @gid: msgq group id
2452 * @mode: msgq mode (permissions)
2453 *
e816f370 2454 * Called only after audit_ipc_obj().
b0dd25a8 2455 */
2570ebbd 2456void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, umode_t mode)
1da177e4 2457{
1da177e4
LT
2458 struct audit_context *context = current->audit_context;
2459
e816f370
AV
2460 context->ipc.qbytes = qbytes;
2461 context->ipc.perm_uid = uid;
2462 context->ipc.perm_gid = gid;
2463 context->ipc.perm_mode = mode;
2464 context->ipc.has_perm = 1;
1da177e4 2465}
c2f0c7c3 2466
07c49417 2467int __audit_bprm(struct linux_binprm *bprm)
473ae30b
AV
2468{
2469 struct audit_aux_data_execve *ax;
2470 struct audit_context *context = current->audit_context;
473ae30b 2471
bdf4c48a 2472 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
473ae30b
AV
2473 if (!ax)
2474 return -ENOMEM;
2475
2476 ax->argc = bprm->argc;
2477 ax->envc = bprm->envc;
bdf4c48a 2478 ax->mm = bprm->mm;
473ae30b
AV
2479 ax->d.type = AUDIT_EXECVE;
2480 ax->d.next = context->aux;
2481 context->aux = (void *)ax;
2482 return 0;
2483}
2484
2485
b0dd25a8
RD
2486/**
2487 * audit_socketcall - record audit data for sys_socketcall
2950fa9d 2488 * @nargs: number of args, which should not be more than AUDITSC_ARGS.
b0dd25a8
RD
2489 * @args: args array
2490 *
b0dd25a8 2491 */
2950fa9d 2492int __audit_socketcall(int nargs, unsigned long *args)
3ec3b2fb 2493{
3ec3b2fb
DW
2494 struct audit_context *context = current->audit_context;
2495
2950fa9d
CG
2496 if (nargs <= 0 || nargs > AUDITSC_ARGS || !args)
2497 return -EINVAL;
f3298dc4
AV
2498 context->type = AUDIT_SOCKETCALL;
2499 context->socketcall.nargs = nargs;
2500 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
2950fa9d 2501 return 0;
3ec3b2fb
DW
2502}
2503
db349509
AV
2504/**
2505 * __audit_fd_pair - record audit data for pipe and socketpair
2506 * @fd1: the first file descriptor
2507 * @fd2: the second file descriptor
2508 *
db349509 2509 */
157cf649 2510void __audit_fd_pair(int fd1, int fd2)
db349509
AV
2511{
2512 struct audit_context *context = current->audit_context;
157cf649
AV
2513 context->fds[0] = fd1;
2514 context->fds[1] = fd2;
db349509
AV
2515}
2516
b0dd25a8
RD
2517/**
2518 * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
2519 * @len: data length in user space
2520 * @a: data address in kernel space
2521 *
2522 * Returns 0 for success or NULL context or < 0 on error.
2523 */
07c49417 2524int __audit_sockaddr(int len, void *a)
3ec3b2fb 2525{
3ec3b2fb
DW
2526 struct audit_context *context = current->audit_context;
2527
4f6b434f
AV
2528 if (!context->sockaddr) {
2529 void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
2530 if (!p)
2531 return -ENOMEM;
2532 context->sockaddr = p;
2533 }
3ec3b2fb 2534
4f6b434f
AV
2535 context->sockaddr_len = len;
2536 memcpy(context->sockaddr, a, len);
3ec3b2fb
DW
2537 return 0;
2538}
2539
a5cb013d
AV
2540void __audit_ptrace(struct task_struct *t)
2541{
2542 struct audit_context *context = current->audit_context;
2543
2544 context->target_pid = t->pid;
c2a7780e 2545 context->target_auid = audit_get_loginuid(t);
c69e8d9c 2546 context->target_uid = task_uid(t);
4746ec5b 2547 context->target_sessionid = audit_get_sessionid(t);
2a862b32 2548 security_task_getsecid(t, &context->target_sid);
c2a7780e 2549 memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
a5cb013d
AV
2550}
2551
b0dd25a8
RD
2552/**
2553 * audit_signal_info - record signal info for shutting down audit subsystem
2554 * @sig: signal value
2555 * @t: task being signaled
2556 *
2557 * If the audit subsystem is being terminated, record the task (pid)
2558 * and uid that is doing that.
2559 */
e54dc243 2560int __audit_signal_info(int sig, struct task_struct *t)
c2f0c7c3 2561{
e54dc243
AG
2562 struct audit_aux_data_pids *axp;
2563 struct task_struct *tsk = current;
2564 struct audit_context *ctx = tsk->audit_context;
cca080d9 2565 kuid_t uid = current_uid(), t_uid = task_uid(t);
e1396065 2566
175fc484 2567 if (audit_pid && t->tgid == audit_pid) {
ee1d3156 2568 if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1 || sig == SIGUSR2) {
175fc484 2569 audit_sig_pid = tsk->pid;
e1760bd5 2570 if (uid_valid(tsk->loginuid))
bfef93a5 2571 audit_sig_uid = tsk->loginuid;
175fc484 2572 else
c69e8d9c 2573 audit_sig_uid = uid;
2a862b32 2574 security_task_getsecid(tsk, &audit_sig_sid);
175fc484
AV
2575 }
2576 if (!audit_signals || audit_dummy_context())
2577 return 0;
c2f0c7c3 2578 }
e54dc243 2579
e54dc243
AG
2580 /* optimize the common case by putting first signal recipient directly
2581 * in audit_context */
2582 if (!ctx->target_pid) {
2583 ctx->target_pid = t->tgid;
c2a7780e 2584 ctx->target_auid = audit_get_loginuid(t);
c69e8d9c 2585 ctx->target_uid = t_uid;
4746ec5b 2586 ctx->target_sessionid = audit_get_sessionid(t);
2a862b32 2587 security_task_getsecid(t, &ctx->target_sid);
c2a7780e 2588 memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
e54dc243
AG
2589 return 0;
2590 }
2591
2592 axp = (void *)ctx->aux_pids;
2593 if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
2594 axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
2595 if (!axp)
2596 return -ENOMEM;
2597
2598 axp->d.type = AUDIT_OBJ_PID;
2599 axp->d.next = ctx->aux_pids;
2600 ctx->aux_pids = (void *)axp;
2601 }
88ae704c 2602 BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
e54dc243
AG
2603
2604 axp->target_pid[axp->pid_count] = t->tgid;
c2a7780e 2605 axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
c69e8d9c 2606 axp->target_uid[axp->pid_count] = t_uid;
4746ec5b 2607 axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
2a862b32 2608 security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
c2a7780e 2609 memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
e54dc243
AG
2610 axp->pid_count++;
2611
2612 return 0;
c2f0c7c3 2613}
0a4ff8c2 2614
3fc689e9
EP
2615/**
2616 * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
d84f4f99
DH
2617 * @bprm: pointer to the bprm being processed
2618 * @new: the proposed new credentials
2619 * @old: the old credentials
3fc689e9
EP
2620 *
2621 * Simply check if the proc already has the caps given by the file and if not
2622 * store the priv escalation info for later auditing at the end of the syscall
2623 *
3fc689e9
EP
2624 * -Eric
2625 */
d84f4f99
DH
2626int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
2627 const struct cred *new, const struct cred *old)
3fc689e9
EP
2628{
2629 struct audit_aux_data_bprm_fcaps *ax;
2630 struct audit_context *context = current->audit_context;
2631 struct cpu_vfs_cap_data vcaps;
2632 struct dentry *dentry;
2633
2634 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2635 if (!ax)
d84f4f99 2636 return -ENOMEM;
3fc689e9
EP
2637
2638 ax->d.type = AUDIT_BPRM_FCAPS;
2639 ax->d.next = context->aux;
2640 context->aux = (void *)ax;
2641
2642 dentry = dget(bprm->file->f_dentry);
2643 get_vfs_caps_from_disk(dentry, &vcaps);
2644 dput(dentry);
2645
2646 ax->fcap.permitted = vcaps.permitted;
2647 ax->fcap.inheritable = vcaps.inheritable;
2648 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2649 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2650
d84f4f99
DH
2651 ax->old_pcap.permitted = old->cap_permitted;
2652 ax->old_pcap.inheritable = old->cap_inheritable;
2653 ax->old_pcap.effective = old->cap_effective;
3fc689e9 2654
d84f4f99
DH
2655 ax->new_pcap.permitted = new->cap_permitted;
2656 ax->new_pcap.inheritable = new->cap_inheritable;
2657 ax->new_pcap.effective = new->cap_effective;
2658 return 0;
3fc689e9
EP
2659}
2660
e68b75a0
EP
2661/**
2662 * __audit_log_capset - store information about the arguments to the capset syscall
d84f4f99
DH
2663 * @pid: target pid of the capset call
2664 * @new: the new credentials
2665 * @old: the old (current) credentials
e68b75a0
EP
2666 *
2667 * Record the aguments userspace sent to sys_capset for later printing by the
2668 * audit system if applicable
2669 */
57f71a0a 2670void __audit_log_capset(pid_t pid,
d84f4f99 2671 const struct cred *new, const struct cred *old)
e68b75a0 2672{
e68b75a0 2673 struct audit_context *context = current->audit_context;
57f71a0a
AV
2674 context->capset.pid = pid;
2675 context->capset.cap.effective = new->cap_effective;
2676 context->capset.cap.inheritable = new->cap_effective;
2677 context->capset.cap.permitted = new->cap_permitted;
2678 context->type = AUDIT_CAPSET;
e68b75a0
EP
2679}
2680
120a795d
AV
2681void __audit_mmap_fd(int fd, int flags)
2682{
2683 struct audit_context *context = current->audit_context;
2684 context->mmap.fd = fd;
2685 context->mmap.flags = flags;
2686 context->type = AUDIT_MMAP;
2687}
2688
7b9205bd 2689static void audit_log_task(struct audit_buffer *ab)
85e7bac3 2690{
cca080d9
EB
2691 kuid_t auid, uid;
2692 kgid_t gid;
85e7bac3
EP
2693 unsigned int sessionid;
2694
2695 auid = audit_get_loginuid(current);
2696 sessionid = audit_get_sessionid(current);
2697 current_uid_gid(&uid, &gid);
2698
2699 audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
cca080d9
EB
2700 from_kuid(&init_user_ns, auid),
2701 from_kuid(&init_user_ns, uid),
2702 from_kgid(&init_user_ns, gid),
2703 sessionid);
85e7bac3
EP
2704 audit_log_task_context(ab);
2705 audit_log_format(ab, " pid=%d comm=", current->pid);
2706 audit_log_untrustedstring(ab, current->comm);
7b9205bd
KC
2707}
2708
2709static void audit_log_abend(struct audit_buffer *ab, char *reason, long signr)
2710{
2711 audit_log_task(ab);
85e7bac3
EP
2712 audit_log_format(ab, " reason=");
2713 audit_log_string(ab, reason);
2714 audit_log_format(ab, " sig=%ld", signr);
2715}
0a4ff8c2
SG
2716/**
2717 * audit_core_dumps - record information about processes that end abnormally
6d9525b5 2718 * @signr: signal value
0a4ff8c2
SG
2719 *
2720 * If a process ends with a core dump, something fishy is going on and we
2721 * should record the event for investigation.
2722 */
2723void audit_core_dumps(long signr)
2724{
2725 struct audit_buffer *ab;
0a4ff8c2
SG
2726
2727 if (!audit_enabled)
2728 return;
2729
2730 if (signr == SIGQUIT) /* don't care for those */
2731 return;
2732
2733 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
0644ec0c
KC
2734 if (unlikely(!ab))
2735 return;
85e7bac3
EP
2736 audit_log_abend(ab, "memory violation", signr);
2737 audit_log_end(ab);
2738}
0a4ff8c2 2739
3dc1c1b2 2740void __audit_seccomp(unsigned long syscall, long signr, int code)
85e7bac3
EP
2741{
2742 struct audit_buffer *ab;
2743
7b9205bd
KC
2744 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_SECCOMP);
2745 if (unlikely(!ab))
2746 return;
2747 audit_log_task(ab);
2748 audit_log_format(ab, " sig=%ld", signr);
85e7bac3 2749 audit_log_format(ab, " syscall=%ld", syscall);
3dc1c1b2
KC
2750 audit_log_format(ab, " compat=%d", is_compat_task());
2751 audit_log_format(ab, " ip=0x%lx", KSTK_EIP(current));
2752 audit_log_format(ab, " code=0x%x", code);
0a4ff8c2
SG
2753 audit_log_end(ab);
2754}
916d7576
AV
2755
2756struct list_head *audit_killed_trees(void)
2757{
2758 struct audit_context *ctx = current->audit_context;
2759 if (likely(!ctx || !ctx->in_syscall))
2760 return NULL;
2761 return &ctx->killed_trees;
2762}