]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - kernel/audit.c
locking/lockdep: Avoid potential access of invalid memory in lock_class
[mirror_ubuntu-jammy-kernel.git] / kernel / audit.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
85c8721f 2/* audit.c -- Auditing support
1da177e4
LT
3 * Gateway between the kernel (e.g., selinux) and the user-space audit daemon.
4 * System-call specific features have moved to auditsc.c
5 *
6a01b07f 6 * Copyright 2003-2007 Red Hat Inc., Durham, North Carolina.
1da177e4
LT
7 * All Rights Reserved.
8 *
1da177e4
LT
9 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
10 *
d7a96f3a 11 * Goals: 1) Integrate fully with Security Modules.
1da177e4
LT
12 * 2) Minimal run-time overhead:
13 * a) Minimal when syscall auditing is disabled (audit_enable=0).
14 * b) Small when syscall auditing is enabled and no audit record
15 * is generated (defer as much work as possible to record
16 * generation time):
17 * i) context is allocated,
18 * ii) names from getname are stored without a copy, and
19 * iii) inode information stored from path_lookup.
20 * 3) Ability to disable syscall auditing at boot time (audit=0).
21 * 4) Usable by other parts of the kernel (if audit_log* is called,
22 * then a syscall record will be generated automatically for the
23 * current syscall).
24 * 5) Netlink interface to user-space.
25 * 6) Support low-overhead kernel-based filtering to minimize the
26 * information that must be passed to user-space.
27 *
d590dca6
RGB
28 * Audit userspace, documentation, tests, and bug/issue trackers:
29 * https://github.com/linux-audit
1da177e4
LT
30 */
31
d957f7b7
JP
32#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
5b282552 34#include <linux/file.h>
1da177e4 35#include <linux/init.h>
7153e402 36#include <linux/types.h>
60063497 37#include <linux/atomic.h>
1da177e4 38#include <linux/mm.h>
9984de1a 39#include <linux/export.h>
5a0e3ad6 40#include <linux/slab.h>
b7d11258
DW
41#include <linux/err.h>
42#include <linux/kthread.h>
46e959ea 43#include <linux/kernel.h>
b24a30a7 44#include <linux/syscalls.h>
5b52330b
PM
45#include <linux/spinlock.h>
46#include <linux/rcupdate.h>
47#include <linux/mutex.h>
48#include <linux/gfp.h>
b6c7c115 49#include <linux/pid.h>
1da177e4
LT
50
51#include <linux/audit.h>
52
53#include <net/sock.h>
93315ed6 54#include <net/netlink.h>
1da177e4 55#include <linux/skbuff.h>
131ad62d
MDF
56#ifdef CONFIG_SECURITY
57#include <linux/security.h>
58#endif
7dfb7103 59#include <linux/freezer.h>
34e36d8e 60#include <linux/pid_namespace.h>
33faba7f 61#include <net/netns/generic.h>
3dc7e315
DG
62
63#include "audit.h"
1da177e4 64
a3f07114 65/* No auditing will take place until audit_initialized == AUDIT_INITIALIZED.
1da177e4 66 * (Initialization happens after skb_init is called.) */
a3f07114
EP
67#define AUDIT_DISABLED -1
68#define AUDIT_UNINITIALIZED 0
69#define AUDIT_INITIALIZED 1
ba59eae7 70static int audit_initialized = AUDIT_UNINITIALIZED;
1da177e4 71
173743dd 72u32 audit_enabled = AUDIT_OFF;
b3b4fdf6 73bool audit_ever_enabled = !!AUDIT_OFF;
1da177e4 74
ae9d67af
JE
75EXPORT_SYMBOL_GPL(audit_enabled);
76
1da177e4 77/* Default state when kernel boots without any parameters. */
173743dd 78static u32 audit_default = AUDIT_OFF;
1da177e4
LT
79
80/* If auditing cannot proceed, audit_failure selects what happens. */
3e1d0bb6 81static u32 audit_failure = AUDIT_FAIL_PRINTK;
1da177e4 82
5b52330b
PM
83/* private audit network namespace index */
84static unsigned int audit_net_id;
85
86/**
87 * struct audit_net - audit private network namespace data
88 * @sk: communication socket
89 */
90struct audit_net {
91 struct sock *sk;
92};
93
94/**
95 * struct auditd_connection - kernel/auditd connection state
96 * @pid: auditd PID
97 * @portid: netlink portid
98 * @net: the associated network namespace
48d0e023 99 * @rcu: RCU head
5b52330b
PM
100 *
101 * Description:
102 * This struct is RCU protected; you must either hold the RCU lock for reading
48d0e023 103 * or the associated spinlock for writing.
75c0371a 104 */
cb5172d9 105struct auditd_connection {
b6c7c115 106 struct pid *pid;
5b52330b
PM
107 u32 portid;
108 struct net *net;
48d0e023 109 struct rcu_head rcu;
cb5172d9
AG
110};
111static struct auditd_connection __rcu *auditd_conn;
48d0e023 112static DEFINE_SPINLOCK(auditd_conn_lock);
1da177e4 113
b0dd25a8 114/* If audit_rate_limit is non-zero, limit the rate of sending audit records
1da177e4
LT
115 * to that number per second. This prevents DoS attacks, but results in
116 * audit records being dropped. */
3e1d0bb6 117static u32 audit_rate_limit;
1da177e4 118
40c0775e
RGB
119/* Number of outstanding audit_buffers allowed.
120 * When set to zero, this means unlimited. */
3e1d0bb6 121static u32 audit_backlog_limit = 64;
e789e561 122#define AUDIT_BACKLOG_WAIT_TIME (60 * HZ)
3e1d0bb6 123static u32 audit_backlog_wait_time = AUDIT_BACKLOG_WAIT_TIME;
1da177e4 124
c2f0c7c3 125/* The identity of the user shutting down the audit system. */
6b87024f
JI
126static kuid_t audit_sig_uid = INVALID_UID;
127static pid_t audit_sig_pid = -1;
36fd78ba 128struct lsmblob audit_sig_lsm;
c2f0c7c3 129
1da177e4
LT
130/* Records can be lost in several ways:
131 0) [suppressed in audit_alloc]
132 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
133 2) out of memory in audit_log_move [alloc_skb]
134 3) suppressed due to audit_rate_limit
135 4) suppressed due to audit_backlog_limit
136*/
92c82e8a 137static atomic_t audit_lost = ATOMIC_INIT(0);
1da177e4 138
b43870c7
ME
139/* Monotonically increasing sum of time the kernel has spent
140 * waiting while the backlog limit is exceeded.
141 */
142static atomic_t audit_backlog_wait_time_actual = ATOMIC_INIT(0);
143
f368c07d
AG
144/* Hash for inode-based rules */
145struct list_head audit_inode_hash[AUDIT_INODE_BUCKETS];
146
8cc96382 147static struct kmem_cache *audit_buffer_cache;
1da177e4 148
c6480207 149/* queue msgs to send via kauditd_task */
af8b824f 150static struct sk_buff_head audit_queue;
c6480207
PM
151/* queue msgs due to temporary unicast send problems */
152static struct sk_buff_head audit_retry_queue;
153/* queue msgs waiting for new auditd connection */
af8b824f 154static struct sk_buff_head audit_hold_queue;
c6480207
PM
155
156/* queue servicing thread */
b7d11258
DW
157static struct task_struct *kauditd_task;
158static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
c6480207
PM
159
160/* waitqueue for callers who are blocked on the audit backlog */
9ad9ad38 161static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
1da177e4 162
b0fed402
EP
163static struct audit_features af = {.vers = AUDIT_FEATURE_VERSION,
164 .mask = -1,
165 .features = 0,
166 .lock = 0,};
167
21b85c31 168static char *audit_feature_names[2] = {
d040e5af 169 "only_unset_loginuid",
21b85c31 170 "loginuid_immutable",
b0fed402
EP
171};
172
ce423631
PM
173/**
174 * struct audit_ctl_mutex - serialize requests from userspace
175 * @lock: the mutex used for locking
176 * @owner: the task which owns the lock
177 *
178 * Description:
179 * This is the lock struct used to ensure we only process userspace requests
180 * in an orderly fashion. We can't simply use a mutex/lock here because we
181 * need to track lock ownership so we don't end up blocking the lock owner in
182 * audit_log_start() or similar.
183 */
184static struct audit_ctl_mutex {
185 struct mutex lock;
186 void *owner;
187} audit_cmd_mutex;
1da177e4
LT
188
189/* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
190 * audit records. Since printk uses a 1024 byte buffer, this buffer
191 * should be at least that large. */
192#define AUDIT_BUFSIZ 1024
193
1da177e4
LT
194/* The audit_buffer is used when formatting an audit record. The caller
195 * locks briefly to get the record off the freelist or to allocate the
196 * buffer, and locks briefly to send the buffer to the netlink layer or
197 * to place it on a transmit queue. Multiple audit_buffers can be in
198 * use simultaneously. */
199struct audit_buffer {
8fc6115c 200 struct sk_buff *skb; /* formatted skb ready to send */
1da177e4 201 struct audit_context *ctx; /* NULL or associated context */
9796fdd8 202 gfp_t gfp_mask;
1da177e4
LT
203};
204
f09ac9db 205struct audit_reply {
f9441639 206 __u32 portid;
638a0fd2 207 struct net *net;
f09ac9db
EP
208 struct sk_buff *skb;
209};
210
5b52330b
PM
211/**
212 * auditd_test_task - Check to see if a given task is an audit daemon
213 * @task: the task to check
214 *
215 * Description:
216 * Return 1 if the task is a registered audit daemon, 0 otherwise.
217 */
b6c7c115 218int auditd_test_task(struct task_struct *task)
5b52330b
PM
219{
220 int rc;
48d0e023 221 struct auditd_connection *ac;
5b52330b
PM
222
223 rcu_read_lock();
48d0e023
PM
224 ac = rcu_dereference(auditd_conn);
225 rc = (ac && ac->pid == task_tgid(task) ? 1 : 0);
5b52330b
PM
226 rcu_read_unlock();
227
228 return rc;
229}
230
ce423631
PM
231/**
232 * audit_ctl_lock - Take the audit control lock
233 */
234void audit_ctl_lock(void)
235{
236 mutex_lock(&audit_cmd_mutex.lock);
237 audit_cmd_mutex.owner = current;
238}
239
240/**
241 * audit_ctl_unlock - Drop the audit control lock
242 */
243void audit_ctl_unlock(void)
244{
245 audit_cmd_mutex.owner = NULL;
246 mutex_unlock(&audit_cmd_mutex.lock);
247}
248
249/**
250 * audit_ctl_owner_current - Test to see if the current task owns the lock
251 *
252 * Description:
253 * Return true if the current task owns the audit control lock, false if it
254 * doesn't own the lock.
255 */
256static bool audit_ctl_owner_current(void)
257{
258 return (current == audit_cmd_mutex.owner);
259}
260
b6c7c115
PM
261/**
262 * auditd_pid_vnr - Return the auditd PID relative to the namespace
b6c7c115
PM
263 *
264 * Description:
48d0e023 265 * Returns the PID in relation to the namespace, 0 on failure.
b6c7c115 266 */
48d0e023 267static pid_t auditd_pid_vnr(void)
b6c7c115
PM
268{
269 pid_t pid;
48d0e023 270 const struct auditd_connection *ac;
b6c7c115
PM
271
272 rcu_read_lock();
48d0e023
PM
273 ac = rcu_dereference(auditd_conn);
274 if (!ac || !ac->pid)
b6c7c115
PM
275 pid = 0;
276 else
48d0e023 277 pid = pid_vnr(ac->pid);
b6c7c115
PM
278 rcu_read_unlock();
279
280 return pid;
281}
282
5b52330b
PM
283/**
284 * audit_get_sk - Return the audit socket for the given network namespace
285 * @net: the destination network namespace
286 *
287 * Description:
288 * Returns the sock pointer if valid, NULL otherwise. The caller must ensure
289 * that a reference is held for the network namespace while the sock is in use.
290 */
291static struct sock *audit_get_sk(const struct net *net)
292{
293 struct audit_net *aunet;
294
295 if (!net)
296 return NULL;
297
298 aunet = net_generic(net, audit_net_id);
299 return aunet->sk;
300}
301
8c8570fb 302void audit_panic(const char *message)
1da177e4 303{
d957f7b7 304 switch (audit_failure) {
1da177e4
LT
305 case AUDIT_FAIL_SILENT:
306 break;
307 case AUDIT_FAIL_PRINTK:
320f1b1e 308 if (printk_ratelimit())
d957f7b7 309 pr_err("%s\n", message);
1da177e4
LT
310 break;
311 case AUDIT_FAIL_PANIC:
5b52330b 312 panic("audit: %s\n", message);
1da177e4
LT
313 break;
314 }
315}
316
317static inline int audit_rate_check(void)
318{
319 static unsigned long last_check = 0;
320 static int messages = 0;
321 static DEFINE_SPINLOCK(lock);
322 unsigned long flags;
323 unsigned long now;
324 unsigned long elapsed;
325 int retval = 0;
326
327 if (!audit_rate_limit) return 1;
328
329 spin_lock_irqsave(&lock, flags);
330 if (++messages < audit_rate_limit) {
331 retval = 1;
332 } else {
333 now = jiffies;
334 elapsed = now - last_check;
335 if (elapsed > HZ) {
336 last_check = now;
337 messages = 0;
338 retval = 1;
339 }
340 }
341 spin_unlock_irqrestore(&lock, flags);
342
343 return retval;
344}
345
b0dd25a8
RD
346/**
347 * audit_log_lost - conditionally log lost audit message event
348 * @message: the message stating reason for lost audit message
349 *
350 * Emit at least 1 message per second, even if audit_rate_check is
351 * throttling.
352 * Always increment the lost messages counter.
353*/
1da177e4
LT
354void audit_log_lost(const char *message)
355{
356 static unsigned long last_msg = 0;
357 static DEFINE_SPINLOCK(lock);
358 unsigned long flags;
359 unsigned long now;
360 int print;
361
362 atomic_inc(&audit_lost);
363
364 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
365
366 if (!print) {
367 spin_lock_irqsave(&lock, flags);
368 now = jiffies;
369 if (now - last_msg > HZ) {
370 print = 1;
371 last_msg = now;
372 }
373 spin_unlock_irqrestore(&lock, flags);
374 }
375
376 if (print) {
320f1b1e 377 if (printk_ratelimit())
3e1d0bb6 378 pr_warn("audit_lost=%u audit_rate_limit=%u audit_backlog_limit=%u\n",
320f1b1e
EP
379 atomic_read(&audit_lost),
380 audit_rate_limit,
381 audit_backlog_limit);
1da177e4
LT
382 audit_panic(message);
383 }
1da177e4
LT
384}
385
3e1d0bb6 386static int audit_log_config_change(char *function_name, u32 new, u32 old,
2532386f 387 int allow_changes)
1da177e4 388{
1a6b9f23
EP
389 struct audit_buffer *ab;
390 int rc = 0;
ce29b682 391
626abcd1 392 ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_CONFIG_CHANGE);
0644ec0c
KC
393 if (unlikely(!ab))
394 return rc;
53fc7a01 395 audit_log_format(ab, "op=set %s=%u old=%u ", function_name, new, old);
4d3fb709 396 audit_log_session_info(ab);
85ff5379 397 rc = audit_log_task_context(ab, NULL);
b122c376
EP
398 if (rc)
399 allow_changes = 0; /* Something weird, deny request */
1a6b9f23 400 audit_log_format(ab, " res=%d", allow_changes);
85ff5379 401 audit_log_lsm(NULL, false);
1a6b9f23 402 audit_log_end(ab);
6a01b07f 403 return rc;
1da177e4
LT
404}
405
3e1d0bb6 406static int audit_do_config_change(char *function_name, u32 *to_change, u32 new)
1da177e4 407{
3e1d0bb6
JP
408 int allow_changes, rc = 0;
409 u32 old = *to_change;
6a01b07f
SG
410
411 /* check if we are locked */
1a6b9f23
EP
412 if (audit_enabled == AUDIT_LOCKED)
413 allow_changes = 0;
6a01b07f 414 else
1a6b9f23 415 allow_changes = 1;
ce29b682 416
1a6b9f23 417 if (audit_enabled != AUDIT_OFF) {
dc9eb698 418 rc = audit_log_config_change(function_name, new, old, allow_changes);
1a6b9f23
EP
419 if (rc)
420 allow_changes = 0;
6a01b07f 421 }
6a01b07f
SG
422
423 /* If we are allowed, make the change */
1a6b9f23
EP
424 if (allow_changes == 1)
425 *to_change = new;
6a01b07f
SG
426 /* Not allowed, update reason */
427 else if (rc == 0)
428 rc = -EPERM;
429 return rc;
1da177e4
LT
430}
431
3e1d0bb6 432static int audit_set_rate_limit(u32 limit)
1da177e4 433{
dc9eb698 434 return audit_do_config_change("audit_rate_limit", &audit_rate_limit, limit);
1a6b9f23 435}
ce29b682 436
3e1d0bb6 437static int audit_set_backlog_limit(u32 limit)
1a6b9f23 438{
dc9eb698 439 return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit, limit);
1a6b9f23 440}
6a01b07f 441
3e1d0bb6 442static int audit_set_backlog_wait_time(u32 timeout)
51cc83f0
RGB
443{
444 return audit_do_config_change("audit_backlog_wait_time",
31975424 445 &audit_backlog_wait_time, timeout);
51cc83f0
RGB
446}
447
3e1d0bb6 448static int audit_set_enabled(u32 state)
1a6b9f23 449{
b593d384 450 int rc;
724e7bfc 451 if (state > AUDIT_LOCKED)
1a6b9f23 452 return -EINVAL;
6a01b07f 453
dc9eb698 454 rc = audit_do_config_change("audit_enabled", &audit_enabled, state);
b593d384
EP
455 if (!rc)
456 audit_ever_enabled |= !!state;
457
458 return rc;
1da177e4
LT
459}
460
3e1d0bb6 461static int audit_set_failure(u32 state)
1da177e4 462{
1da177e4
LT
463 if (state != AUDIT_FAIL_SILENT
464 && state != AUDIT_FAIL_PRINTK
465 && state != AUDIT_FAIL_PANIC)
466 return -EINVAL;
ce29b682 467
dc9eb698 468 return audit_do_config_change("audit_failure", &audit_failure, state);
1da177e4
LT
469}
470
48d0e023
PM
471/**
472 * auditd_conn_free - RCU helper to release an auditd connection struct
473 * @rcu: RCU head
474 *
475 * Description:
476 * Drop any references inside the auditd connection tracking struct and free
477 * the memory.
478 */
447a5647
JP
479static void auditd_conn_free(struct rcu_head *rcu)
480{
48d0e023
PM
481 struct auditd_connection *ac;
482
483 ac = container_of(rcu, struct auditd_connection, rcu);
484 put_pid(ac->pid);
485 put_net(ac->net);
486 kfree(ac);
447a5647 487}
48d0e023 488
5b52330b
PM
489/**
490 * auditd_set - Set/Reset the auditd connection state
491 * @pid: auditd PID
492 * @portid: auditd netlink portid
493 * @net: auditd network namespace pointer
494 *
495 * Description:
496 * This function will obtain and drop network namespace references as
48d0e023 497 * necessary. Returns zero on success, negative values on failure.
5b52330b 498 */
48d0e023 499static int auditd_set(struct pid *pid, u32 portid, struct net *net)
5b52330b
PM
500{
501 unsigned long flags;
48d0e023 502 struct auditd_connection *ac_old, *ac_new;
5b52330b 503
48d0e023
PM
504 if (!pid || !net)
505 return -EINVAL;
506
507 ac_new = kzalloc(sizeof(*ac_new), GFP_KERNEL);
508 if (!ac_new)
509 return -ENOMEM;
510 ac_new->pid = get_pid(pid);
511 ac_new->portid = portid;
512 ac_new->net = get_net(net);
513
514 spin_lock_irqsave(&auditd_conn_lock, flags);
515 ac_old = rcu_dereference_protected(auditd_conn,
516 lockdep_is_held(&auditd_conn_lock));
517 rcu_assign_pointer(auditd_conn, ac_new);
518 spin_unlock_irqrestore(&auditd_conn_lock, flags);
519
520 if (ac_old)
521 call_rcu(&ac_old->rcu, auditd_conn_free);
522
523 return 0;
5b52330b
PM
524}
525
5b52330b 526/**
cbb52621 527 * kauditd_printk_skb - Print the audit record to the ring buffer
5b52330b
PM
528 * @skb: audit record
529 *
530 * Whatever the reason, this packet may not make it to the auditd connection
531 * so write it via printk so the information isn't completely lost.
038cbcf6 532 */
af8b824f 533static void kauditd_printk_skb(struct sk_buff *skb)
038cbcf6
EP
534{
535 struct nlmsghdr *nlh = nlmsg_hdr(skb);
c64e66c6 536 char *data = nlmsg_data(nlh);
038cbcf6 537
5b52330b
PM
538 if (nlh->nlmsg_type != AUDIT_EOE && printk_ratelimit())
539 pr_notice("type=%d %s\n", nlh->nlmsg_type, data);
540}
541
542/**
543 * kauditd_rehold_skb - Handle a audit record send failure in the hold queue
544 * @skb: audit record
5d95a67e 545 * @error: error code (unused)
5b52330b
PM
546 *
547 * Description:
548 * This should only be used by the kauditd_thread when it fails to flush the
549 * hold queue.
550 */
5d95a67e 551static void kauditd_rehold_skb(struct sk_buff *skb, __always_unused int error)
5b52330b 552{
5d95a67e
PM
553 /* put the record back in the queue */
554 skb_queue_tail(&audit_hold_queue, skb);
c6480207
PM
555}
556
557/**
558 * kauditd_hold_skb - Queue an audit record, waiting for auditd
559 * @skb: audit record
5d95a67e 560 * @error: error code
c6480207
PM
561 *
562 * Description:
563 * Queue the audit record, waiting for an instance of auditd. When this
564 * function is called we haven't given up yet on sending the record, but things
565 * are not looking good. The first thing we want to do is try to write the
566 * record via printk and then see if we want to try and hold on to the record
567 * and queue it, if we have room. If we want to hold on to the record, but we
568 * don't have room, record a record lost message.
569 */
5d95a67e 570static void kauditd_hold_skb(struct sk_buff *skb, int error)
c6480207
PM
571{
572 /* at this point it is uncertain if we will ever send this to auditd so
573 * try to send the message via printk before we go any further */
574 kauditd_printk_skb(skb);
575
576 /* can we just silently drop the message? */
5d95a67e
PM
577 if (!audit_default)
578 goto drop;
579
580 /* the hold queue is only for when the daemon goes away completely,
581 * not -EAGAIN failures; if we are in a -EAGAIN state requeue the
582 * record on the retry queue unless it's full, in which case drop it
583 */
584 if (error == -EAGAIN) {
585 if (!audit_backlog_limit ||
586 skb_queue_len(&audit_retry_queue) < audit_backlog_limit) {
587 skb_queue_tail(&audit_retry_queue, skb);
588 return;
589 }
590 audit_log_lost("kauditd retry queue overflow");
591 goto drop;
c6480207
PM
592 }
593
5d95a67e 594 /* if we have room in the hold queue, queue the message */
c6480207
PM
595 if (!audit_backlog_limit ||
596 skb_queue_len(&audit_hold_queue) < audit_backlog_limit) {
597 skb_queue_tail(&audit_hold_queue, skb);
598 return;
599 }
038cbcf6 600
c6480207
PM
601 /* we have no other options - drop the message */
602 audit_log_lost("kauditd hold queue overflow");
5d95a67e 603drop:
c6480207 604 kfree_skb(skb);
038cbcf6
EP
605}
606
c6480207
PM
607/**
608 * kauditd_retry_skb - Queue an audit record, attempt to send again to auditd
609 * @skb: audit record
5d95a67e 610 * @error: error code (unused)
c6480207
PM
611 *
612 * Description:
613 * Not as serious as kauditd_hold_skb() as we still have a connected auditd,
614 * but for some reason we are having problems sending it audit records so
615 * queue the given record and attempt to resend.
616 */
5d95a67e 617static void kauditd_retry_skb(struct sk_buff *skb, __always_unused int error)
f3d357b0 618{
5d95a67e
PM
619 if (!audit_backlog_limit ||
620 skb_queue_len(&audit_retry_queue) < audit_backlog_limit) {
621 skb_queue_tail(&audit_retry_queue, skb);
622 return;
623 }
624
625 /* we have to drop the record, send it via printk as a last effort */
626 kauditd_printk_skb(skb);
627 audit_log_lost("kauditd retry queue overflow");
628 kfree_skb(skb);
c6480207 629}
32a1dbae 630
264d5096
PM
631/**
632 * auditd_reset - Disconnect the auditd connection
c81be52a 633 * @ac: auditd connection state
264d5096
PM
634 *
635 * Description:
636 * Break the auditd/kauditd connection and move all the queued records into the
c81be52a
PM
637 * hold queue in case auditd reconnects. It is important to note that the @ac
638 * pointer should never be dereferenced inside this function as it may be NULL
639 * or invalid, you can only compare the memory address! If @ac is NULL then
640 * the connection will always be reset.
264d5096 641 */
c81be52a 642static void auditd_reset(const struct auditd_connection *ac)
264d5096 643{
48d0e023 644 unsigned long flags;
264d5096 645 struct sk_buff *skb;
48d0e023 646 struct auditd_connection *ac_old;
264d5096
PM
647
648 /* if it isn't already broken, break the connection */
48d0e023
PM
649 spin_lock_irqsave(&auditd_conn_lock, flags);
650 ac_old = rcu_dereference_protected(auditd_conn,
651 lockdep_is_held(&auditd_conn_lock));
c81be52a
PM
652 if (ac && ac != ac_old) {
653 /* someone already registered a new auditd connection */
654 spin_unlock_irqrestore(&auditd_conn_lock, flags);
655 return;
656 }
48d0e023
PM
657 rcu_assign_pointer(auditd_conn, NULL);
658 spin_unlock_irqrestore(&auditd_conn_lock, flags);
659
660 if (ac_old)
661 call_rcu(&ac_old->rcu, auditd_conn_free);
264d5096 662
cd33f5f2
PM
663 /* flush the retry queue to the hold queue, but don't touch the main
664 * queue since we need to process that normally for multicast */
264d5096 665 while ((skb = skb_dequeue(&audit_retry_queue)))
5d95a67e 666 kauditd_hold_skb(skb, -ECONNREFUSED);
264d5096
PM
667}
668
c6480207 669/**
5b52330b
PM
670 * auditd_send_unicast_skb - Send a record via unicast to auditd
671 * @skb: audit record
c6480207
PM
672 *
673 * Description:
5b52330b
PM
674 * Send a skb to the audit daemon, returns positive/zero values on success and
675 * negative values on failure; in all cases the skb will be consumed by this
676 * function. If the send results in -ECONNREFUSED the connection with auditd
677 * will be reset. This function may sleep so callers should not hold any locks
678 * where this would cause a problem.
c6480207 679 */
5b52330b 680static int auditd_send_unicast_skb(struct sk_buff *skb)
c6480207 681{
5b52330b
PM
682 int rc;
683 u32 portid;
684 struct net *net;
685 struct sock *sk;
48d0e023 686 struct auditd_connection *ac;
5b52330b
PM
687
688 /* NOTE: we can't call netlink_unicast while in the RCU section so
689 * take a reference to the network namespace and grab local
690 * copies of the namespace, the sock, and the portid; the
691 * namespace and sock aren't going to go away while we hold a
692 * reference and if the portid does become invalid after the RCU
693 * section netlink_unicast() should safely return an error */
694
695 rcu_read_lock();
48d0e023
PM
696 ac = rcu_dereference(auditd_conn);
697 if (!ac) {
5b52330b 698 rcu_read_unlock();
b0659ae5 699 kfree_skb(skb);
5b52330b
PM
700 rc = -ECONNREFUSED;
701 goto err;
533c7b69 702 }
48d0e023 703 net = get_net(ac->net);
5b52330b 704 sk = audit_get_sk(net);
48d0e023 705 portid = ac->portid;
5b52330b 706 rcu_read_unlock();
c6480207 707
5b52330b
PM
708 rc = netlink_unicast(sk, skb, portid, 0);
709 put_net(net);
710 if (rc < 0)
711 goto err;
712
713 return rc;
714
715err:
c81be52a
PM
716 if (ac && rc == -ECONNREFUSED)
717 auditd_reset(ac);
5b52330b 718 return rc;
c6480207
PM
719}
720
721/**
5b52330b
PM
722 * kauditd_send_queue - Helper for kauditd_thread to flush skb queues
723 * @sk: the sending sock
724 * @portid: the netlink destination
725 * @queue: the skb queue to process
726 * @retry_limit: limit on number of netlink unicast failures
727 * @skb_hook: per-skb hook for additional processing
728 * @err_hook: hook called if the skb fails the netlink unicast send
729 *
730 * Description:
731 * Run through the given queue and attempt to send the audit records to auditd,
732 * returns zero on success, negative values on failure. It is up to the caller
733 * to ensure that the @sk is valid for the duration of this function.
734 *
c6480207 735 */
5b52330b
PM
736static int kauditd_send_queue(struct sock *sk, u32 portid,
737 struct sk_buff_head *queue,
738 unsigned int retry_limit,
739 void (*skb_hook)(struct sk_buff *skb),
5d95a67e 740 void (*err_hook)(struct sk_buff *skb, int error))
c6480207 741{
5b52330b 742 int rc = 0;
5d95a67e
PM
743 struct sk_buff *skb = NULL;
744 struct sk_buff *skb_tail;
246f8623 745 unsigned int failed = 0;
32a1dbae 746
5b52330b
PM
747 /* NOTE: kauditd_thread takes care of all our locking, we just use
748 * the netlink info passed to us (e.g. sk and portid) */
749
5d95a67e
PM
750 skb_tail = skb_peek_tail(queue);
751 while ((skb != skb_tail) && (skb = skb_dequeue(queue))) {
5b52330b
PM
752 /* call the skb_hook for each skb we touch */
753 if (skb_hook)
754 (*skb_hook)(skb);
755
756 /* can we send to anyone via unicast? */
757 if (!sk) {
758 if (err_hook)
5d95a67e 759 (*err_hook)(skb, -ECONNREFUSED);
5b52330b
PM
760 continue;
761 }
6c54e789 762
246f8623 763retry:
5b52330b
PM
764 /* grab an extra skb reference in case of error */
765 skb_get(skb);
766 rc = netlink_unicast(sk, skb, portid, 0);
767 if (rc < 0) {
246f8623 768 /* send failed - try a few times unless fatal error */
5b52330b
PM
769 if (++failed >= retry_limit ||
770 rc == -ECONNREFUSED || rc == -EPERM) {
5b52330b
PM
771 sk = NULL;
772 if (err_hook)
5d95a67e 773 (*err_hook)(skb, rc);
246f8623
PM
774 if (rc == -EAGAIN)
775 rc = 0;
776 /* continue to drain the queue */
5b52330b
PM
777 continue;
778 } else
246f8623 779 goto retry;
5b52330b 780 } else {
246f8623 781 /* skb sent - drop the extra reference and continue */
5b52330b
PM
782 consume_skb(skb);
783 failed = 0;
784 }
c6480207
PM
785 }
786
5b52330b 787 return (rc >= 0 ? 0 : rc);
f3d357b0
EP
788}
789
451f9216 790/*
c6480207
PM
791 * kauditd_send_multicast_skb - Send a record to any multicast listeners
792 * @skb: audit record
451f9216 793 *
c6480207 794 * Description:
5b52330b
PM
795 * Write a multicast message to anyone listening in the initial network
796 * namespace. This function doesn't consume an skb as might be expected since
797 * it has to copy it anyways.
451f9216 798 */
c6480207 799static void kauditd_send_multicast_skb(struct sk_buff *skb)
451f9216 800{
c6480207 801 struct sk_buff *copy;
5b52330b 802 struct sock *sock = audit_get_sk(&init_net);
c6480207 803 struct nlmsghdr *nlh;
451f9216 804
5b52330b
PM
805 /* NOTE: we are not taking an additional reference for init_net since
806 * we don't have to worry about it going away */
807
7f74ecd7
RGB
808 if (!netlink_has_listeners(sock, AUDIT_NLGRP_READLOG))
809 return;
810
451f9216
RGB
811 /*
812 * The seemingly wasteful skb_copy() rather than bumping the refcount
813 * using skb_get() is necessary because non-standard mods are made to
814 * the skb by the original kaudit unicast socket send routine. The
815 * existing auditd daemon assumes this breakage. Fixing this would
816 * require co-ordinating a change in the established protocol between
817 * the kaudit kernel subsystem and the auditd userspace code. There is
818 * no reason for new multicast clients to continue with this
819 * non-compliance.
820 */
c6480207 821 copy = skb_copy(skb, GFP_KERNEL);
451f9216
RGB
822 if (!copy)
823 return;
c6480207
PM
824 nlh = nlmsg_hdr(copy);
825 nlh->nlmsg_len = skb->len;
451f9216 826
c6480207 827 nlmsg_multicast(sock, copy, 0, AUDIT_NLGRP_READLOG, GFP_KERNEL);
451f9216
RGB
828}
829
c6480207 830/**
5b52330b
PM
831 * kauditd_thread - Worker thread to send audit records to userspace
832 * @dummy: unused
b551d1d9 833 */
97a41e26 834static int kauditd_thread(void *dummy)
b7d11258 835{
c6480207 836 int rc;
5b52330b
PM
837 u32 portid = 0;
838 struct net *net = NULL;
839 struct sock *sk = NULL;
48d0e023 840 struct auditd_connection *ac;
4aa83872 841
c6480207 842#define UNICAST_RETRIES 5
c6480207 843
83144186 844 set_freezable();
4899b8b1 845 while (!kthread_should_stop()) {
5b52330b
PM
846 /* NOTE: see the lock comments in auditd_send_unicast_skb() */
847 rcu_read_lock();
48d0e023
PM
848 ac = rcu_dereference(auditd_conn);
849 if (!ac) {
5b52330b
PM
850 rcu_read_unlock();
851 goto main_queue;
852 }
48d0e023 853 net = get_net(ac->net);
5b52330b 854 sk = audit_get_sk(net);
48d0e023 855 portid = ac->portid;
5b52330b 856 rcu_read_unlock();
c6480207
PM
857
858 /* attempt to flush the hold queue */
5b52330b
PM
859 rc = kauditd_send_queue(sk, portid,
860 &audit_hold_queue, UNICAST_RETRIES,
861 NULL, kauditd_rehold_skb);
c34c78df 862 if (rc < 0) {
5b52330b 863 sk = NULL;
c81be52a 864 auditd_reset(ac);
5b52330b 865 goto main_queue;
c6480207 866 }
f3d357b0 867
c6480207 868 /* attempt to flush the retry queue */
5b52330b
PM
869 rc = kauditd_send_queue(sk, portid,
870 &audit_retry_queue, UNICAST_RETRIES,
871 NULL, kauditd_hold_skb);
c34c78df 872 if (rc < 0) {
5b52330b 873 sk = NULL;
c81be52a 874 auditd_reset(ac);
5b52330b 875 goto main_queue;
c6480207 876 }
db897319 877
5b52330b
PM
878main_queue:
879 /* process the main queue - do the multicast send and attempt
880 * unicast, dump failed record sends to the retry queue; if
881 * sk == NULL due to previous failures we will just do the
c81be52a 882 * multicast send and move the record to the hold queue */
264d5096
PM
883 rc = kauditd_send_queue(sk, portid, &audit_queue, 1,
884 kauditd_send_multicast_skb,
c81be52a
PM
885 (sk ?
886 kauditd_retry_skb : kauditd_hold_skb));
887 if (ac && rc < 0)
888 auditd_reset(ac);
264d5096 889 sk = NULL;
5b52330b
PM
890
891 /* drop our netns reference, no auditd sends past this line */
892 if (net) {
893 put_net(net);
894 net = NULL;
3320c513 895 }
5b52330b
PM
896
897 /* we have processed all the queues so wake everyone */
898 wake_up(&audit_backlog_wait);
899
900 /* NOTE: we want to wake up if there is anything on the queue,
901 * regardless of if an auditd is connected, as we need to
902 * do the multicast send and rotate records from the
903 * main queue to the retry/hold queues */
904 wait_event_freezable(kauditd_wait,
905 (skb_queue_len(&audit_queue) ? 1 : 0));
b7d11258 906 }
c6480207 907
4899b8b1 908 return 0;
b7d11258
DW
909}
910
3054d067 911int audit_send_list_thread(void *_dest)
9044e6bc
AV
912{
913 struct audit_netlink_list *dest = _dest;
9044e6bc 914 struct sk_buff *skb;
5b52330b 915 struct sock *sk = audit_get_sk(dest->net);
9044e6bc
AV
916
917 /* wait for parent to finish and send an ACK */
ce423631
PM
918 audit_ctl_lock();
919 audit_ctl_unlock();
9044e6bc
AV
920
921 while ((skb = __skb_dequeue(&dest->q)) != NULL)
5b52330b 922 netlink_unicast(sk, skb, dest->portid, 0);
9044e6bc 923
5b52330b 924 put_net(dest->net);
9044e6bc
AV
925 kfree(dest);
926
927 return 0;
928}
929
45a0642b 930struct sk_buff *audit_make_reply(int seq, int type, int done,
b8800aa5 931 int multi, const void *payload, int size)
9044e6bc
AV
932{
933 struct sk_buff *skb;
934 struct nlmsghdr *nlh;
9044e6bc
AV
935 void *data;
936 int flags = multi ? NLM_F_MULTI : 0;
937 int t = done ? NLMSG_DONE : type;
938
ee080e6c 939 skb = nlmsg_new(size, GFP_KERNEL);
9044e6bc
AV
940 if (!skb)
941 return NULL;
942
45a0642b 943 nlh = nlmsg_put(skb, 0, seq, t, size, flags);
c64e66c6
DM
944 if (!nlh)
945 goto out_kfree_skb;
946 data = nlmsg_data(nlh);
9044e6bc
AV
947 memcpy(data, payload, size);
948 return skb;
949
c64e66c6
DM
950out_kfree_skb:
951 kfree_skb(skb);
9044e6bc
AV
952 return NULL;
953}
954
a48b284b
PM
955static void audit_free_reply(struct audit_reply *reply)
956{
957 if (!reply)
958 return;
959
c0720351 960 kfree_skb(reply->skb);
a48b284b
PM
961 if (reply->net)
962 put_net(reply->net);
963 kfree(reply);
964}
965
f09ac9db
EP
966static int audit_send_reply_thread(void *arg)
967{
968 struct audit_reply *reply = (struct audit_reply *)arg;
969
ce423631
PM
970 audit_ctl_lock();
971 audit_ctl_unlock();
f09ac9db
EP
972
973 /* Ignore failure. It'll only happen if the sender goes away,
974 because our timeout is set to infinite. */
a48b284b
PM
975 netlink_unicast(audit_get_sk(reply->net), reply->skb, reply->portid, 0);
976 reply->skb = NULL;
977 audit_free_reply(reply);
f09ac9db
EP
978 return 0;
979}
c6480207 980
b0dd25a8
RD
981/**
982 * audit_send_reply - send an audit reply message via netlink
d211f177 983 * @request_skb: skb of request we are replying to (used to target the reply)
b0dd25a8
RD
984 * @seq: sequence number
985 * @type: audit message type
986 * @done: done (last) flag
987 * @multi: multi-part message flag
988 * @payload: payload data
989 * @size: payload size
990 *
a48b284b 991 * Allocates a skb, builds the netlink message, and sends it to the port id.
b0dd25a8 992 */
6f285b19 993static void audit_send_reply(struct sk_buff *request_skb, int seq, int type, int done,
f9441639 994 int multi, const void *payload, int size)
1da177e4 995{
f09ac9db 996 struct task_struct *tsk;
a48b284b 997 struct audit_reply *reply;
f09ac9db 998
a48b284b 999 reply = kzalloc(sizeof(*reply), GFP_KERNEL);
f09ac9db
EP
1000 if (!reply)
1001 return;
1002
a48b284b
PM
1003 reply->skb = audit_make_reply(seq, type, done, multi, payload, size);
1004 if (!reply->skb)
1005 goto err;
1006 reply->net = get_net(sock_net(NETLINK_CB(request_skb).sk));
45a0642b 1007 reply->portid = NETLINK_CB(request_skb).portid;
f09ac9db
EP
1008
1009 tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply");
a48b284b
PM
1010 if (IS_ERR(tsk))
1011 goto err;
1012
1013 return;
1014
1015err:
1016 audit_free_reply(reply);
1da177e4
LT
1017}
1018
1019/*
1020 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
1021 * control messages.
1022 */
c7bdb545 1023static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
1da177e4
LT
1024{
1025 int err = 0;
1026
5a3cb3b6 1027 /* Only support initial user namespace for now. */
aa4af831
EP
1028 /*
1029 * We return ECONNREFUSED because it tricks userspace into thinking
1030 * that audit was not configured into the kernel. Lots of users
1031 * configure their PAM stack (because that's what the distro does)
1032 * to reject login if unable to send messages to audit. If we return
1033 * ECONNREFUSED the PAM stack thinks the kernel does not have audit
1034 * configured in and will let login proceed. If we return EPERM
1035 * userspace will reject all logins. This should be removed when we
1036 * support non init namespaces!!
1037 */
0b747172 1038 if (current_user_ns() != &init_user_ns)
aa4af831 1039 return -ECONNREFUSED;
34e36d8e 1040
1da177e4 1041 switch (msg_type) {
1da177e4 1042 case AUDIT_LIST:
1da177e4
LT
1043 case AUDIT_ADD:
1044 case AUDIT_DEL:
18900909
EP
1045 return -EOPNOTSUPP;
1046 case AUDIT_GET:
1047 case AUDIT_SET:
b0fed402
EP
1048 case AUDIT_GET_FEATURE:
1049 case AUDIT_SET_FEATURE:
18900909
EP
1050 case AUDIT_LIST_RULES:
1051 case AUDIT_ADD_RULE:
93315ed6 1052 case AUDIT_DEL_RULE:
c2f0c7c3 1053 case AUDIT_SIGNAL_INFO:
522ed776
MT
1054 case AUDIT_TTY_GET:
1055 case AUDIT_TTY_SET:
74c3cbe3
AV
1056 case AUDIT_TRIM:
1057 case AUDIT_MAKE_EQUIV:
5a3cb3b6
RGB
1058 /* Only support auditd and auditctl in initial pid namespace
1059 * for now. */
5985de67 1060 if (task_active_pid_ns(current) != &init_pid_ns)
5a3cb3b6
RGB
1061 return -EPERM;
1062
90f62cf3 1063 if (!netlink_capable(skb, CAP_AUDIT_CONTROL))
1da177e4
LT
1064 err = -EPERM;
1065 break;
05474106 1066 case AUDIT_USER:
039b6b3e
RD
1067 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
1068 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
90f62cf3 1069 if (!netlink_capable(skb, CAP_AUDIT_WRITE))
1da177e4
LT
1070 err = -EPERM;
1071 break;
1072 default: /* bad msg */
1073 err = -EINVAL;
1074 }
1075
1076 return err;
1077}
1078
626abcd1
RGB
1079static void audit_log_common_recv_msg(struct audit_context *context,
1080 struct audit_buffer **ab, u16 msg_type)
50397bd1 1081{
dc9eb698 1082 uid_t uid = from_kuid(&init_user_ns, current_uid());
f1dc4867 1083 pid_t pid = task_tgid_nr(current);
50397bd1 1084
0868a5e1 1085 if (!audit_enabled && msg_type != AUDIT_USER_AVC) {
50397bd1 1086 *ab = NULL;
233a6866 1087 return;
50397bd1
EP
1088 }
1089
626abcd1 1090 *ab = audit_log_start(context, GFP_KERNEL, msg_type);
0644ec0c 1091 if (unlikely(!*ab))
233a6866 1092 return;
a2c97da1 1093 audit_log_format(*ab, "pid=%d uid=%u ", pid, uid);
4d3fb709 1094 audit_log_session_info(*ab);
85ff5379 1095 audit_log_task_context(*ab, NULL);
50397bd1
EP
1096}
1097
626abcd1
RGB
1098static inline void audit_log_user_recv_msg(struct audit_buffer **ab,
1099 u16 msg_type)
1100{
85ff5379
CS
1101 struct audit_context *context;
1102
1103 if (!lsm_multiple_contexts()) {
1104 audit_log_common_recv_msg(NULL, ab, msg_type);
1105 return;
1106 }
1107
1108 context = audit_context();
1109 if (context) {
1110 if (!context->in_syscall)
1111 audit_stamp_context(context);
1112 audit_log_common_recv_msg(context, ab, msg_type);
1113 return;
1114 }
1115
1116 audit_alloc(current);
1117 context = audit_context();
1118
1119 audit_log_common_recv_msg(context, ab, msg_type);
626abcd1
RGB
1120}
1121
b0fed402
EP
1122int is_audit_feature_set(int i)
1123{
1124 return af.features & AUDIT_FEATURE_TO_MASK(i);
1125}
1126
1127
1128static int audit_get_feature(struct sk_buff *skb)
1129{
1130 u32 seq;
1131
1132 seq = nlmsg_hdr(skb)->nlmsg_seq;
1133
9ef91514 1134 audit_send_reply(skb, seq, AUDIT_GET_FEATURE, 0, 0, &af, sizeof(af));
b0fed402
EP
1135
1136 return 0;
1137}
1138
1139static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature,
1140 u32 old_lock, u32 new_lock, int res)
1141{
1142 struct audit_buffer *ab;
1143
b6c50fe0
G
1144 if (audit_enabled == AUDIT_OFF)
1145 return;
2a1fe215 1146
cdfb6b34 1147 ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_FEATURE_CHANGE);
23138ead
RGB
1148 if (!ab)
1149 return;
2a1fe215 1150 audit_log_task_info(ab);
897f1acb 1151 audit_log_format(ab, " feature=%s old=%u new=%u old_lock=%u new_lock=%u res=%d",
b0fed402
EP
1152 audit_feature_names[which], !!old_feature, !!new_feature,
1153 !!old_lock, !!new_lock, res);
1154 audit_log_end(ab);
1155}
1156
75612528 1157static int audit_set_feature(struct audit_features *uaf)
b0fed402 1158{
b0fed402
EP
1159 int i;
1160
6eed9b26 1161 BUILD_BUG_ON(AUDIT_LAST_FEATURE + 1 > ARRAY_SIZE(audit_feature_names));
b0fed402
EP
1162
1163 /* if there is ever a version 2 we should handle that here */
1164
1165 for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
1166 u32 feature = AUDIT_FEATURE_TO_MASK(i);
1167 u32 old_feature, new_feature, old_lock, new_lock;
1168
1169 /* if we are not changing this feature, move along */
1170 if (!(feature & uaf->mask))
1171 continue;
1172
1173 old_feature = af.features & feature;
1174 new_feature = uaf->features & feature;
1175 new_lock = (uaf->lock | af.lock) & feature;
1176 old_lock = af.lock & feature;
1177
1178 /* are we changing a locked feature? */
4547b3bc 1179 if (old_lock && (new_feature != old_feature)) {
b0fed402
EP
1180 audit_log_feature_change(i, old_feature, new_feature,
1181 old_lock, new_lock, 0);
1182 return -EPERM;
1183 }
1184 }
1185 /* nothing invalid, do the changes */
1186 for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
1187 u32 feature = AUDIT_FEATURE_TO_MASK(i);
1188 u32 old_feature, new_feature, old_lock, new_lock;
1189
1190 /* if we are not changing this feature, move along */
1191 if (!(feature & uaf->mask))
1192 continue;
1193
1194 old_feature = af.features & feature;
1195 new_feature = uaf->features & feature;
1196 old_lock = af.lock & feature;
1197 new_lock = (uaf->lock | af.lock) & feature;
1198
1199 if (new_feature != old_feature)
1200 audit_log_feature_change(i, old_feature, new_feature,
1201 old_lock, new_lock, 1);
1202
1203 if (new_feature)
1204 af.features |= feature;
1205 else
1206 af.features &= ~feature;
1207 af.lock |= new_lock;
1208 }
1209
1210 return 0;
1211}
1212
b6c7c115 1213static int audit_replace(struct pid *pid)
133e1e5a 1214{
b6c7c115 1215 pid_t pvnr;
5b52330b 1216 struct sk_buff *skb;
133e1e5a 1217
b6c7c115
PM
1218 pvnr = pid_vnr(pid);
1219 skb = audit_make_reply(0, AUDIT_REPLACE, 0, 0, &pvnr, sizeof(pvnr));
133e1e5a
RGB
1220 if (!skb)
1221 return -ENOMEM;
5b52330b 1222 return auditd_send_unicast_skb(skb);
133e1e5a
RGB
1223}
1224
1da177e4
LT
1225static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1226{
dc9eb698 1227 u32 seq;
1da177e4 1228 void *data;
75612528 1229 int data_len;
1da177e4 1230 int err;
c0404993 1231 struct audit_buffer *ab;
1da177e4 1232 u16 msg_type = nlh->nlmsg_type;
e1396065 1233 struct audit_sig_info *sig_data;
1da177e4 1234
c7bdb545 1235 err = audit_netlink_ok(skb, msg_type);
1da177e4
LT
1236 if (err)
1237 return err;
1238
1da177e4 1239 seq = nlh->nlmsg_seq;
c64e66c6 1240 data = nlmsg_data(nlh);
75612528 1241 data_len = nlmsg_len(nlh);
1da177e4
LT
1242
1243 switch (msg_type) {
09f883a9
RGB
1244 case AUDIT_GET: {
1245 struct audit_status s;
1246 memset(&s, 0, sizeof(s));
b43870c7
ME
1247 s.enabled = audit_enabled;
1248 s.failure = audit_failure;
b6c7c115
PM
1249 /* NOTE: use pid_vnr() so the PID is relative to the current
1250 * namespace */
b43870c7
ME
1251 s.pid = auditd_pid_vnr();
1252 s.rate_limit = audit_rate_limit;
1253 s.backlog_limit = audit_backlog_limit;
1254 s.lost = atomic_read(&audit_lost);
1255 s.backlog = skb_queue_len(&audit_queue);
1256 s.feature_bitmap = AUDIT_FEATURE_BITMAP_ALL;
1257 s.backlog_wait_time = audit_backlog_wait_time;
1258 s.backlog_wait_time_actual = atomic_read(&audit_backlog_wait_time_actual);
6f285b19 1259 audit_send_reply(skb, seq, AUDIT_GET, 0, 0, &s, sizeof(s));
1da177e4 1260 break;
09f883a9
RGB
1261 }
1262 case AUDIT_SET: {
1263 struct audit_status s;
1264 memset(&s, 0, sizeof(s));
1265 /* guard against past and future API changes */
75612528 1266 memcpy(&s, data, min_t(size_t, sizeof(s), data_len));
09f883a9
RGB
1267 if (s.mask & AUDIT_STATUS_ENABLED) {
1268 err = audit_set_enabled(s.enabled);
20c6aaa3 1269 if (err < 0)
1270 return err;
1da177e4 1271 }
09f883a9
RGB
1272 if (s.mask & AUDIT_STATUS_FAILURE) {
1273 err = audit_set_failure(s.failure);
20c6aaa3 1274 if (err < 0)
1275 return err;
1da177e4 1276 }
09f883a9 1277 if (s.mask & AUDIT_STATUS_PID) {
b6c7c115
PM
1278 /* NOTE: we are using the vnr PID functions below
1279 * because the s.pid value is relative to the
1280 * namespace of the caller; at present this
1281 * doesn't matter much since you can really only
1282 * run auditd from the initial pid namespace, but
1283 * something to keep in mind if this changes */
1284 pid_t new_pid = s.pid;
5b52330b 1285 pid_t auditd_pid;
b6c7c115
PM
1286 struct pid *req_pid = task_tgid(current);
1287
33e8a907
SG
1288 /* Sanity check - PID values must match. Setting
1289 * pid to 0 is how auditd ends auditing. */
1290 if (new_pid && (new_pid != pid_vnr(req_pid)))
b6c7c115 1291 return -EINVAL;
1a6b9f23 1292
5b52330b 1293 /* test the auditd connection */
b6c7c115 1294 audit_replace(req_pid);
5b52330b 1295
48d0e023 1296 auditd_pid = auditd_pid_vnr();
33e8a907
SG
1297 if (auditd_pid) {
1298 /* replacing a healthy auditd is not allowed */
1299 if (new_pid) {
1300 audit_log_config_change("audit_pid",
1301 new_pid, auditd_pid, 0);
1302 return -EEXIST;
1303 }
1304 /* only current auditd can unregister itself */
1305 if (pid_vnr(req_pid) != auditd_pid) {
1306 audit_log_config_change("audit_pid",
1307 new_pid, auditd_pid, 0);
1308 return -EACCES;
1309 }
935c9e7f 1310 }
5b52330b 1311
533c7b69 1312 if (new_pid) {
5b52330b 1313 /* register a new auditd connection */
48d0e023
PM
1314 err = auditd_set(req_pid,
1315 NETLINK_CB(skb).portid,
1316 sock_net(NETLINK_CB(skb).sk));
1317 if (audit_enabled != AUDIT_OFF)
1318 audit_log_config_change("audit_pid",
1319 new_pid,
1320 auditd_pid,
1321 err ? 0 : 1);
1322 if (err)
1323 return err;
1324
5b52330b
PM
1325 /* try to process any backlog */
1326 wake_up_interruptible(&kauditd_wait);
48d0e023
PM
1327 } else {
1328 if (audit_enabled != AUDIT_OFF)
1329 audit_log_config_change("audit_pid",
1330 new_pid,
1331 auditd_pid, 1);
1332
5b52330b 1333 /* unregister the auditd connection */
c81be52a 1334 auditd_reset(NULL);
48d0e023 1335 }
1da177e4 1336 }
09f883a9
RGB
1337 if (s.mask & AUDIT_STATUS_RATE_LIMIT) {
1338 err = audit_set_rate_limit(s.rate_limit);
20c6aaa3 1339 if (err < 0)
1340 return err;
1341 }
51cc83f0 1342 if (s.mask & AUDIT_STATUS_BACKLOG_LIMIT) {
09f883a9 1343 err = audit_set_backlog_limit(s.backlog_limit);
51cc83f0
RGB
1344 if (err < 0)
1345 return err;
1346 }
3f0c5fad
EP
1347 if (s.mask & AUDIT_STATUS_BACKLOG_WAIT_TIME) {
1348 if (sizeof(s) > (size_t)nlh->nlmsg_len)
1349 return -EINVAL;
724e7bfc 1350 if (s.backlog_wait_time > 10*AUDIT_BACKLOG_WAIT_TIME)
3f0c5fad
EP
1351 return -EINVAL;
1352 err = audit_set_backlog_wait_time(s.backlog_wait_time);
1353 if (err < 0)
1354 return err;
51cc83f0 1355 }
92c82e8a
RGB
1356 if (s.mask == AUDIT_STATUS_LOST) {
1357 u32 lost = atomic_xchg(&audit_lost, 0);
1358
1359 audit_log_config_change("lost", 0, lost, 1);
1360 return lost;
1361 }
b43870c7
ME
1362 if (s.mask == AUDIT_STATUS_BACKLOG_WAIT_TIME_ACTUAL) {
1363 u32 actual = atomic_xchg(&audit_backlog_wait_time_actual, 0);
1364
1365 audit_log_config_change("backlog_wait_time_actual", 0, actual, 1);
1366 return actual;
1367 }
1da177e4 1368 break;
09f883a9 1369 }
b0fed402
EP
1370 case AUDIT_GET_FEATURE:
1371 err = audit_get_feature(skb);
1372 if (err)
1373 return err;
1374 break;
1375 case AUDIT_SET_FEATURE:
75612528
PM
1376 if (data_len < sizeof(struct audit_features))
1377 return -EINVAL;
1378 err = audit_set_feature(data);
b0fed402
EP
1379 if (err)
1380 return err;
1381 break;
05474106 1382 case AUDIT_USER:
039b6b3e
RD
1383 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
1384 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
4a4cd633
DW
1385 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
1386 return 0;
763dafc5
PM
1387 /* exit early if there isn't at least one character to print */
1388 if (data_len < 2)
1389 return -EINVAL;
4a4cd633 1390
86b2efbe 1391 err = audit_filter(msg_type, AUDIT_FILTER_USER);
724e4fcc 1392 if (err == 1) { /* match or error */
75612528
PM
1393 char *str = data;
1394
4a4cd633 1395 err = 0;
522ed776 1396 if (msg_type == AUDIT_USER_TTY) {
37282a77 1397 err = tty_audit_push();
522ed776
MT
1398 if (err)
1399 break;
1400 }
626abcd1 1401 audit_log_user_recv_msg(&ab, msg_type);
75612528
PM
1402 if (msg_type != AUDIT_USER_TTY) {
1403 /* ensure NULL termination */
1404 str[data_len - 1] = '\0';
b50eba7e
RGB
1405 audit_log_format(ab, " msg='%.*s'",
1406 AUDIT_MESSAGE_TEXT_MAX,
75612528
PM
1407 str);
1408 } else {
f7616102 1409 audit_log_format(ab, " data=");
75612528
PM
1410 if (data_len > 0 && str[data_len - 1] == '\0')
1411 data_len--;
1412 audit_log_n_untrustedstring(ab, str, data_len);
4a4cd633 1413 }
50397bd1 1414 audit_log_end(ab);
85ff5379 1415 audit_log_lsm(NULL, false);
0f45aa18 1416 }
1da177e4 1417 break;
93315ed6
AG
1418 case AUDIT_ADD_RULE:
1419 case AUDIT_DEL_RULE:
75612528 1420 if (data_len < sizeof(struct audit_rule_data))
93315ed6 1421 return -EINVAL;
1a6b9f23 1422 if (audit_enabled == AUDIT_LOCKED) {
626abcd1
RGB
1423 audit_log_common_recv_msg(audit_context(), &ab,
1424 AUDIT_CONFIG_CHANGE);
53fc7a01
RGB
1425 audit_log_format(ab, " op=%s audit_enabled=%d res=0",
1426 msg_type == AUDIT_ADD_RULE ?
1427 "add_rule" : "remove_rule",
1428 audit_enabled);
50397bd1 1429 audit_log_end(ab);
6a01b07f
SG
1430 return -EPERM;
1431 }
75612528 1432 err = audit_rule_change(msg_type, seq, data, data_len);
1da177e4 1433 break;
ce0d9f04 1434 case AUDIT_LIST_RULES:
6f285b19 1435 err = audit_list_rules_send(skb, seq);
ce0d9f04 1436 break;
74c3cbe3
AV
1437 case AUDIT_TRIM:
1438 audit_trim_trees();
626abcd1
RGB
1439 audit_log_common_recv_msg(audit_context(), &ab,
1440 AUDIT_CONFIG_CHANGE);
74c3cbe3
AV
1441 audit_log_format(ab, " op=trim res=1");
1442 audit_log_end(ab);
1443 break;
1444 case AUDIT_MAKE_EQUIV: {
1445 void *bufp = data;
1446 u32 sizes[2];
75612528 1447 size_t msglen = data_len;
74c3cbe3
AV
1448 char *old, *new;
1449
1450 err = -EINVAL;
7719e437 1451 if (msglen < 2 * sizeof(u32))
74c3cbe3
AV
1452 break;
1453 memcpy(sizes, bufp, 2 * sizeof(u32));
1454 bufp += 2 * sizeof(u32);
7719e437
HH
1455 msglen -= 2 * sizeof(u32);
1456 old = audit_unpack_string(&bufp, &msglen, sizes[0]);
74c3cbe3
AV
1457 if (IS_ERR(old)) {
1458 err = PTR_ERR(old);
1459 break;
1460 }
7719e437 1461 new = audit_unpack_string(&bufp, &msglen, sizes[1]);
74c3cbe3
AV
1462 if (IS_ERR(new)) {
1463 err = PTR_ERR(new);
1464 kfree(old);
1465 break;
1466 }
1467 /* OK, here comes... */
1468 err = audit_tag_tree(old, new);
1469
626abcd1
RGB
1470 audit_log_common_recv_msg(audit_context(), &ab,
1471 AUDIT_CONFIG_CHANGE);
74c3cbe3
AV
1472 audit_log_format(ab, " op=make_equiv old=");
1473 audit_log_untrustedstring(ab, old);
1474 audit_log_format(ab, " new=");
1475 audit_log_untrustedstring(ab, new);
1476 audit_log_format(ab, " res=%d", !err);
1477 audit_log_end(ab);
1478 kfree(old);
1479 kfree(new);
1480 break;
1481 }
62e4d84c
CS
1482 case AUDIT_SIGNAL_INFO: {
1483 struct lsmcontext context = { };
1484 int len = 0;
1485
36fd78ba 1486 if (lsmblob_is_set(&audit_sig_lsm)) {
62e4d84c 1487 err = security_secid_to_secctx(&audit_sig_lsm,
85ff5379 1488 &context, LSMBLOB_FIRST);
939cbf26
EP
1489 if (err)
1490 return err;
1491 }
62e4d84c 1492 sig_data = kmalloc(sizeof(*sig_data) + context.len, GFP_KERNEL);
e1396065 1493 if (!sig_data) {
62e4d84c
CS
1494 if (lsmblob_is_set(&audit_sig_lsm))
1495 security_release_secctx(&context);
e1396065
AV
1496 return -ENOMEM;
1497 }
cca080d9 1498 sig_data->uid = from_kuid(&init_user_ns, audit_sig_uid);
e1396065 1499 sig_data->pid = audit_sig_pid;
36fd78ba 1500 if (lsmblob_is_set(&audit_sig_lsm)) {
62e4d84c
CS
1501 len = context.len;
1502 memcpy(sig_data->ctx, context.context, len);
1503 security_release_secctx(&context);
939cbf26 1504 }
6f285b19
EB
1505 audit_send_reply(skb, seq, AUDIT_SIGNAL_INFO, 0, 0,
1506 sig_data, sizeof(*sig_data) + len);
e1396065 1507 kfree(sig_data);
c2f0c7c3 1508 break;
62e4d84c 1509 }
522ed776
MT
1510 case AUDIT_TTY_GET: {
1511 struct audit_tty_status s;
2e28d38a 1512 unsigned int t;
8aa14b64 1513
2e28d38a
PH
1514 t = READ_ONCE(current->signal->audit_tty);
1515 s.enabled = t & AUDIT_TTY_ENABLE;
1516 s.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
8aa14b64 1517
6f285b19 1518 audit_send_reply(skb, seq, AUDIT_TTY_GET, 0, 0, &s, sizeof(s));
522ed776
MT
1519 break;
1520 }
1521 case AUDIT_TTY_SET: {
a06e56b2 1522 struct audit_tty_status s, old;
a06e56b2 1523 struct audit_buffer *ab;
2e28d38a 1524 unsigned int t;
0e23bacc
EP
1525
1526 memset(&s, 0, sizeof(s));
1527 /* guard against past and future API changes */
75612528 1528 memcpy(&s, data, min_t(size_t, sizeof(s), data_len));
0e23bacc
EP
1529 /* check if new data is valid */
1530 if ((s.enabled != 0 && s.enabled != 1) ||
1531 (s.log_passwd != 0 && s.log_passwd != 1))
1532 err = -EINVAL;
a06e56b2 1533
2e28d38a
PH
1534 if (err)
1535 t = READ_ONCE(current->signal->audit_tty);
1536 else {
1537 t = s.enabled | (-s.log_passwd & AUDIT_TTY_LOG_PASSWD);
1538 t = xchg(&current->signal->audit_tty, t);
0e23bacc 1539 }
2e28d38a
PH
1540 old.enabled = t & AUDIT_TTY_ENABLE;
1541 old.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
522ed776 1542
626abcd1
RGB
1543 audit_log_common_recv_msg(audit_context(), &ab,
1544 AUDIT_CONFIG_CHANGE);
1ce319f1
EP
1545 audit_log_format(ab, " op=tty_set old-enabled=%d new-enabled=%d"
1546 " old-log_passwd=%d new-log_passwd=%d res=%d",
1547 old.enabled, s.enabled, old.log_passwd,
1548 s.log_passwd, !err);
a06e56b2 1549 audit_log_end(ab);
522ed776
MT
1550 break;
1551 }
1da177e4
LT
1552 default:
1553 err = -EINVAL;
1554 break;
1555 }
1556
1557 return err < 0 ? err : 0;
1558}
1559
a9d16208
PM
1560/**
1561 * audit_receive - receive messages from a netlink control socket
1562 * @skb: the message buffer
1563 *
1564 * Parse the provided skb and deal with any messages that may be present,
1565 * malformed skbs are discarded.
b0dd25a8 1566 */
a9d16208 1567static void audit_receive(struct sk_buff *skb)
1da177e4 1568{
ea7ae60b
EP
1569 struct nlmsghdr *nlh;
1570 /*
94191213 1571 * len MUST be signed for nlmsg_next to be able to dec it below 0
ea7ae60b
EP
1572 * if the nlmsg_len was not aligned
1573 */
1574 int len;
1575 int err;
1576
1577 nlh = nlmsg_hdr(skb);
1578 len = skb->len;
1579
ce423631 1580 audit_ctl_lock();
94191213 1581 while (nlmsg_ok(nlh, len)) {
ea7ae60b
EP
1582 err = audit_receive_msg(skb, nlh);
1583 /* if err or if this message says it wants a response */
1584 if (err || (nlh->nlmsg_flags & NLM_F_ACK))
2d4bc933 1585 netlink_ack(skb, nlh, err, NULL);
ea7ae60b 1586
2851da57 1587 nlh = nlmsg_next(nlh, &len);
1da177e4 1588 }
ce423631 1589 audit_ctl_unlock();
14555653
PM
1590
1591 /* can't block with the ctrl lock, so penalize the sender now */
1592 if (audit_backlog_limit &&
1593 (skb_queue_len(&audit_queue) > audit_backlog_limit)) {
1594 DECLARE_WAITQUEUE(wait, current);
1595
1596 /* wake kauditd to try and flush the queue */
1597 wake_up_interruptible(&kauditd_wait);
1598
1599 add_wait_queue_exclusive(&audit_backlog_wait, &wait);
1600 set_current_state(TASK_UNINTERRUPTIBLE);
1601 schedule_timeout(audit_backlog_wait_time);
1602 remove_wait_queue(&audit_backlog_wait, &wait);
1603 }
1da177e4
LT
1604}
1605
9d2161be
RGB
1606/* Log information about who is connecting to the audit multicast socket */
1607static void audit_log_multicast(int group, const char *op, int err)
1608{
1609 const struct cred *cred;
1610 struct tty_struct *tty;
1611 char comm[sizeof(current->comm)];
1612 struct audit_buffer *ab;
1613
1614 if (!audit_enabled)
1615 return;
1616
1617 ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_EVENT_LISTENER);
1618 if (!ab)
1619 return;
1620
1621 cred = current_cred();
1622 tty = audit_get_tty();
1623 audit_log_format(ab, "pid=%u uid=%u auid=%u tty=%s ses=%u",
1624 task_pid_nr(current),
1625 from_kuid(&init_user_ns, cred->uid),
1626 from_kuid(&init_user_ns, audit_get_loginuid(current)),
1627 tty ? tty_name(tty) : "(none)",
1628 audit_get_sessionid(current));
1629 audit_put_tty(tty);
85ff5379 1630 audit_log_task_context(ab, NULL); /* subj= */
9d2161be
RGB
1631 audit_log_format(ab, " comm=");
1632 audit_log_untrustedstring(ab, get_task_comm(comm, current));
1633 audit_log_d_path_exe(ab, current->mm); /* exe= */
1634 audit_log_format(ab, " nl-mcgrp=%d op=%s res=%d", group, op, !err);
1635 audit_log_end(ab);
1636}
1637
3a101b8d 1638/* Run custom bind function on netlink socket group connect or bind requests. */
9d2161be 1639static int audit_multicast_bind(struct net *net, int group)
3a101b8d 1640{
9d2161be
RGB
1641 int err = 0;
1642
3a101b8d 1643 if (!capable(CAP_AUDIT_READ))
9d2161be
RGB
1644 err = -EPERM;
1645 audit_log_multicast(group, "connect", err);
1646 return err;
1647}
3a101b8d 1648
9d2161be
RGB
1649static void audit_multicast_unbind(struct net *net, int group)
1650{
1651 audit_log_multicast(group, "disconnect", 0);
3a101b8d
RGB
1652}
1653
33faba7f 1654static int __net_init audit_net_init(struct net *net)
1da177e4 1655{
a31f2d17
PNA
1656 struct netlink_kernel_cfg cfg = {
1657 .input = audit_receive,
9d2161be
RGB
1658 .bind = audit_multicast_bind,
1659 .unbind = audit_multicast_unbind,
451f9216
RGB
1660 .flags = NL_CFG_F_NONROOT_RECV,
1661 .groups = AUDIT_NLGRP_MAX,
a31f2d17 1662 };
f368c07d 1663
33faba7f
RGB
1664 struct audit_net *aunet = net_generic(net, audit_net_id);
1665
5b52330b
PM
1666 aunet->sk = netlink_kernel_create(net, NETLINK_AUDIT, &cfg);
1667 if (aunet->sk == NULL) {
33faba7f 1668 audit_panic("cannot initialize netlink socket in namespace");
11ee39eb
G
1669 return -ENOMEM;
1670 }
246f8623
PM
1671 /* limit the timeout in case auditd is blocked/stopped */
1672 aunet->sk->sk_sndtimeo = HZ / 10;
5b52330b 1673
33faba7f
RGB
1674 return 0;
1675}
1676
1677static void __net_exit audit_net_exit(struct net *net)
1678{
1679 struct audit_net *aunet = net_generic(net, audit_net_id);
5b52330b 1680
48d0e023
PM
1681 /* NOTE: you would think that we would want to check the auditd
1682 * connection and potentially reset it here if it lives in this
1683 * namespace, but since the auditd connection tracking struct holds a
1684 * reference to this namespace (see auditd_set()) we are only ever
1685 * going to get here after that connection has been released */
33faba7f 1686
5b52330b 1687 netlink_kernel_release(aunet->sk);
33faba7f
RGB
1688}
1689
8626877b 1690static struct pernet_operations audit_net_ops __net_initdata = {
33faba7f
RGB
1691 .init = audit_net_init,
1692 .exit = audit_net_exit,
1693 .id = &audit_net_id,
1694 .size = sizeof(struct audit_net),
1695};
1696
1697/* Initialize audit support at boot time. */
1698static int __init audit_init(void)
1699{
1700 int i;
1701
a3f07114
EP
1702 if (audit_initialized == AUDIT_DISABLED)
1703 return 0;
1704
8cc96382
PM
1705 audit_buffer_cache = kmem_cache_create("audit_buffer",
1706 sizeof(struct audit_buffer),
1707 0, SLAB_PANIC, NULL);
1da177e4 1708
af8b824f 1709 skb_queue_head_init(&audit_queue);
c6480207 1710 skb_queue_head_init(&audit_retry_queue);
af8b824f 1711 skb_queue_head_init(&audit_hold_queue);
3dc7e315 1712
f368c07d
AG
1713 for (i = 0; i < AUDIT_INODE_BUCKETS; i++)
1714 INIT_LIST_HEAD(&audit_inode_hash[i]);
f368c07d 1715
ce423631
PM
1716 mutex_init(&audit_cmd_mutex.lock);
1717 audit_cmd_mutex.owner = NULL;
1718
5b52330b
PM
1719 pr_info("initializing netlink subsys (%s)\n",
1720 audit_default ? "enabled" : "disabled");
1721 register_pernet_subsys(&audit_net_ops);
1722
1723 audit_initialized = AUDIT_INITIALIZED;
5b52330b 1724
6c925564
PM
1725 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
1726 if (IS_ERR(kauditd_task)) {
1727 int err = PTR_ERR(kauditd_task);
1728 panic("audit: failed to start the kauditd thread (%d)\n", err);
1729 }
1730
7c397d01
SG
1731 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL,
1732 "state=initialized audit_enabled=%u res=1",
1733 audit_enabled);
6c925564 1734
1da177e4
LT
1735 return 0;
1736}
be4104ab 1737postcore_initcall(audit_init);
1da177e4 1738
11dd2666
GE
1739/*
1740 * Process kernel command-line parameter at boot time.
1741 * audit={0|off} or audit={1|on}.
1742 */
1da177e4
LT
1743static int __init audit_enable(char *str)
1744{
11dd2666
GE
1745 if (!strcasecmp(str, "off") || !strcmp(str, "0"))
1746 audit_default = AUDIT_OFF;
1747 else if (!strcasecmp(str, "on") || !strcmp(str, "1"))
1748 audit_default = AUDIT_ON;
1749 else {
1750 pr_err("audit: invalid 'audit' parameter value (%s)\n", str);
1751 audit_default = AUDIT_ON;
1752 }
80ab4df6
PM
1753
1754 if (audit_default == AUDIT_OFF)
a3f07114 1755 audit_initialized = AUDIT_DISABLED;
5d842a5b 1756 if (audit_set_enabled(audit_default))
11dd2666
GE
1757 pr_err("audit: error setting audit state (%d)\n",
1758 audit_default);
a3f07114 1759
d957f7b7 1760 pr_info("%s\n", audit_default ?
d3ca0344 1761 "enabled (after initialization)" : "disabled (until reboot)");
a3f07114 1762
9b41046c 1763 return 1;
1da177e4 1764}
1da177e4
LT
1765__setup("audit=", audit_enable);
1766
f910fde7
RGB
1767/* Process kernel command-line parameter at boot time.
1768 * audit_backlog_limit=<n> */
1769static int __init audit_backlog_limit_set(char *str)
1770{
3e1d0bb6 1771 u32 audit_backlog_limit_arg;
d957f7b7 1772
f910fde7 1773 pr_info("audit_backlog_limit: ");
3e1d0bb6
JP
1774 if (kstrtouint(str, 0, &audit_backlog_limit_arg)) {
1775 pr_cont("using default of %u, unable to parse %s\n",
d957f7b7 1776 audit_backlog_limit, str);
f910fde7
RGB
1777 return 1;
1778 }
3e1d0bb6
JP
1779
1780 audit_backlog_limit = audit_backlog_limit_arg;
d957f7b7 1781 pr_cont("%d\n", audit_backlog_limit);
f910fde7
RGB
1782
1783 return 1;
1784}
1785__setup("audit_backlog_limit=", audit_backlog_limit_set);
1786
16e1904e
CW
1787static void audit_buffer_free(struct audit_buffer *ab)
1788{
8fc6115c
CW
1789 if (!ab)
1790 return;
1791
d865e573 1792 kfree_skb(ab->skb);
8cc96382 1793 kmem_cache_free(audit_buffer_cache, ab);
16e1904e
CW
1794}
1795
8cc96382
PM
1796static struct audit_buffer *audit_buffer_alloc(struct audit_context *ctx,
1797 gfp_t gfp_mask, int type)
16e1904e 1798{
8cc96382 1799 struct audit_buffer *ab;
8fc6115c 1800
8cc96382
PM
1801 ab = kmem_cache_alloc(audit_buffer_cache, gfp_mask);
1802 if (!ab)
1803 return NULL;
ee080e6c
EP
1804
1805 ab->skb = nlmsg_new(AUDIT_BUFSIZ, gfp_mask);
1806 if (!ab->skb)
c64e66c6 1807 goto err;
8cc96382
PM
1808 if (!nlmsg_put(ab->skb, 0, 0, type, 0, 0))
1809 goto err;
ee080e6c 1810
8cc96382
PM
1811 ab->ctx = ctx;
1812 ab->gfp_mask = gfp_mask;
ee080e6c 1813
16e1904e 1814 return ab;
ee080e6c 1815
8fc6115c
CW
1816err:
1817 audit_buffer_free(ab);
1818 return NULL;
16e1904e 1819}
1da177e4 1820
b0dd25a8
RD
1821/**
1822 * audit_serial - compute a serial number for the audit record
1823 *
1824 * Compute a serial number for the audit record. Audit records are
bfb4496e
DW
1825 * written to user-space as soon as they are generated, so a complete
1826 * audit record may be written in several pieces. The timestamp of the
1827 * record and this serial number are used by the user-space tools to
1828 * determine which pieces belong to the same audit record. The
1829 * (timestamp,serial) tuple is unique for each syscall and is live from
1830 * syscall entry to syscall exit.
1831 *
bfb4496e
DW
1832 * NOTE: Another possibility is to store the formatted records off the
1833 * audit context (for those records that have a context), and emit them
1834 * all at syscall exit. However, this could delay the reporting of
1835 * significant errors until syscall exit (or never, if the system
b0dd25a8
RD
1836 * halts).
1837 */
bfb4496e
DW
1838unsigned int audit_serial(void)
1839{
01478d7d 1840 static atomic_t serial = ATOMIC_INIT(0);
d5b454f2 1841
6b321184 1842 return atomic_inc_return(&serial);
bfb4496e
DW
1843}
1844
5600b892 1845static inline void audit_get_stamp(struct audit_context *ctx,
2115bb25 1846 struct timespec64 *t, unsigned int *serial)
bfb4496e 1847{
48887e63 1848 if (!ctx || !auditsc_get_stamp(ctx, t, serial)) {
290e44b7 1849 ktime_get_coarse_real_ts64(t);
bfb4496e
DW
1850 *serial = audit_serial();
1851 }
1852}
1853
b0dd25a8
RD
1854/**
1855 * audit_log_start - obtain an audit buffer
1856 * @ctx: audit_context (may be NULL)
1857 * @gfp_mask: type of allocation
1858 * @type: audit message type
1859 *
1860 * Returns audit_buffer pointer on success or NULL on error.
1861 *
1862 * Obtain an audit buffer. This routine does locking to obtain the
1863 * audit buffer, but then no locking is required for calls to
1864 * audit_log_*format. If the task (ctx) is a task that is currently in a
1865 * syscall, then the syscall is marked as auditable and an audit record
1866 * will be written at syscall exit. If there is no associated task, then
1867 * task context (ctx) should be NULL.
1868 */
9796fdd8 1869struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
9ad9ad38 1870 int type)
1da177e4 1871{
31975424 1872 struct audit_buffer *ab;
2115bb25 1873 struct timespec64 t;
3f649ab7 1874 unsigned int serial;
1da177e4 1875
a3f07114 1876 if (audit_initialized != AUDIT_INITIALIZED)
1da177e4
LT
1877 return NULL;
1878
d904ac03 1879 if (unlikely(!audit_filter(type, AUDIT_FILTER_EXCLUDE)))
c8edc80c
DK
1880 return NULL;
1881
5b52330b 1882 /* NOTE: don't ever fail/sleep on these two conditions:
a09cfa47
PM
1883 * 1. auditd generated record - since we need auditd to drain the
1884 * queue; also, when we are checking for auditd, compare PIDs using
1885 * task_tgid_vnr() since auditd_pid is set in audit_receive_msg()
1886 * using a PID anchored in the caller's namespace
5b52330b 1887 * 2. generator holding the audit_cmd_mutex - we don't want to block
14555653
PM
1888 * while holding the mutex, although we do penalize the sender
1889 * later in audit_receive() when it is safe to block
1890 */
ce423631 1891 if (!(auditd_test_task(current) || audit_ctl_owner_current())) {
5b52330b 1892 long stime = audit_backlog_wait_time;
31975424
PM
1893
1894 while (audit_backlog_limit &&
1895 (skb_queue_len(&audit_queue) > audit_backlog_limit)) {
1896 /* wake kauditd to try and flush the queue */
1897 wake_up_interruptible(&kauditd_wait);
9ad9ad38 1898
31975424
PM
1899 /* sleep if we are allowed and we haven't exhausted our
1900 * backlog wait limit */
5b52330b 1901 if (gfpflags_allow_blocking(gfp_mask) && (stime > 0)) {
b43870c7
ME
1902 long rtime = stime;
1903
31975424
PM
1904 DECLARE_WAITQUEUE(wait, current);
1905
1906 add_wait_queue_exclusive(&audit_backlog_wait,
1907 &wait);
1908 set_current_state(TASK_UNINTERRUPTIBLE);
b43870c7
ME
1909 stime = schedule_timeout(rtime);
1910 atomic_add(rtime - stime, &audit_backlog_wait_time_actual);
31975424
PM
1911 remove_wait_queue(&audit_backlog_wait, &wait);
1912 } else {
1913 if (audit_rate_check() && printk_ratelimit())
1914 pr_warn("audit_backlog=%d > audit_backlog_limit=%d\n",
1915 skb_queue_len(&audit_queue),
1916 audit_backlog_limit);
1917 audit_log_lost("backlog limit exceeded");
1918 return NULL;
8ac1c8d5 1919 }
9ad9ad38 1920 }
fb19b4c6
DW
1921 }
1922
9ad9ad38 1923 ab = audit_buffer_alloc(ctx, gfp_mask, type);
1da177e4
LT
1924 if (!ab) {
1925 audit_log_lost("out of memory in audit_log_start");
1926 return NULL;
1927 }
1928
bfb4496e 1929 audit_get_stamp(ab->ctx, &t, &serial);
6d915476
RGB
1930 /* cancel dummy context to enable supporting records */
1931 if (ctx)
1932 ctx->dummy = 0;
8f3d16fe
CS
1933 if (type == AUDIT_MAC_TASK_CONTEXTS && ab->ctx &&
1934 ab->ctx->serial == 0) {
85ff5379
CS
1935 audit_stamp_context(ab->ctx);
1936 audit_get_stamp(ab->ctx, &t, &serial);
1937 }
2115bb25
DD
1938 audit_log_format(ab, "audit(%llu.%03lu:%u): ",
1939 (unsigned long long)t.tv_sec, t.tv_nsec/1000000, serial);
31975424 1940
1da177e4
LT
1941 return ab;
1942}
1943
8fc6115c 1944/**
5ac52f33 1945 * audit_expand - expand skb in the audit buffer
8fc6115c 1946 * @ab: audit_buffer
b0dd25a8 1947 * @extra: space to add at tail of the skb
8fc6115c
CW
1948 *
1949 * Returns 0 (no space) on failed expansion, or available space if
1950 * successful.
1951 */
e3b926b4 1952static inline int audit_expand(struct audit_buffer *ab, int extra)
8fc6115c 1953{
5ac52f33 1954 struct sk_buff *skb = ab->skb;
406a1d86
HX
1955 int oldtail = skb_tailroom(skb);
1956 int ret = pskb_expand_head(skb, 0, extra, ab->gfp_mask);
1957 int newtail = skb_tailroom(skb);
1958
5ac52f33
CW
1959 if (ret < 0) {
1960 audit_log_lost("out of memory in audit_expand");
8fc6115c 1961 return 0;
5ac52f33 1962 }
406a1d86
HX
1963
1964 skb->truesize += newtail - oldtail;
1965 return newtail;
8fc6115c 1966}
1da177e4 1967
b0dd25a8
RD
1968/*
1969 * Format an audit message into the audit buffer. If there isn't enough
1da177e4
LT
1970 * room in the audit buffer, more room will be allocated and vsnprint
1971 * will be called a second time. Currently, we assume that a printk
b0dd25a8
RD
1972 * can't format message larger than 1024 bytes, so we don't either.
1973 */
1da177e4
LT
1974static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
1975 va_list args)
1976{
1977 int len, avail;
5ac52f33 1978 struct sk_buff *skb;
eecb0a73 1979 va_list args2;
1da177e4
LT
1980
1981 if (!ab)
1982 return;
1983
5ac52f33
CW
1984 BUG_ON(!ab->skb);
1985 skb = ab->skb;
1986 avail = skb_tailroom(skb);
1987 if (avail == 0) {
e3b926b4 1988 avail = audit_expand(ab, AUDIT_BUFSIZ);
8fc6115c
CW
1989 if (!avail)
1990 goto out;
1da177e4 1991 }
eecb0a73 1992 va_copy(args2, args);
27a884dc 1993 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args);
1da177e4
LT
1994 if (len >= avail) {
1995 /* The printk buffer is 1024 bytes long, so if we get
1996 * here and AUDIT_BUFSIZ is at least 1024, then we can
1997 * log everything that printk could have logged. */
b0dd25a8
RD
1998 avail = audit_expand(ab,
1999 max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
8fc6115c 2000 if (!avail)
a0e86bd4 2001 goto out_va_end;
27a884dc 2002 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
1da177e4 2003 }
168b7173
SG
2004 if (len > 0)
2005 skb_put(skb, len);
a0e86bd4
JJ
2006out_va_end:
2007 va_end(args2);
8fc6115c
CW
2008out:
2009 return;
1da177e4
LT
2010}
2011
b0dd25a8
RD
2012/**
2013 * audit_log_format - format a message into the audit buffer.
2014 * @ab: audit_buffer
2015 * @fmt: format string
2016 * @...: optional parameters matching @fmt string
2017 *
2018 * All the work is done in audit_log_vformat.
2019 */
1da177e4
LT
2020void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
2021{
2022 va_list args;
2023
2024 if (!ab)
2025 return;
2026 va_start(args, fmt);
2027 audit_log_vformat(ab, fmt, args);
2028 va_end(args);
2029}
2030
b0dd25a8 2031/**
196a5085 2032 * audit_log_n_hex - convert a buffer to hex and append it to the audit skb
b0dd25a8
RD
2033 * @ab: the audit_buffer
2034 * @buf: buffer to convert to hex
2035 * @len: length of @buf to be converted
2036 *
2037 * No return value; failure to expand is silently ignored.
2038 *
2039 * This function will take the passed buf and convert it into a string of
2040 * ascii hex digits. The new string is placed onto the skb.
2041 */
b556f8ad 2042void audit_log_n_hex(struct audit_buffer *ab, const unsigned char *buf,
168b7173 2043 size_t len)
83c7d091 2044{
168b7173
SG
2045 int i, avail, new_len;
2046 unsigned char *ptr;
2047 struct sk_buff *skb;
168b7173 2048
8ef2d304
AG
2049 if (!ab)
2050 return;
2051
168b7173
SG
2052 BUG_ON(!ab->skb);
2053 skb = ab->skb;
2054 avail = skb_tailroom(skb);
2055 new_len = len<<1;
2056 if (new_len >= avail) {
2057 /* Round the buffer request up to the next multiple */
2058 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
2059 avail = audit_expand(ab, new_len);
2060 if (!avail)
2061 return;
2062 }
83c7d091 2063
27a884dc 2064 ptr = skb_tail_pointer(skb);
b8dbc324
JP
2065 for (i = 0; i < len; i++)
2066 ptr = hex_byte_pack_upper(ptr, buf[i]);
168b7173
SG
2067 *ptr = 0;
2068 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d091
DW
2069}
2070
9c937dcc
AG
2071/*
2072 * Format a string of no more than slen characters into the audit buffer,
2073 * enclosed in quote marks.
2074 */
b556f8ad
EP
2075void audit_log_n_string(struct audit_buffer *ab, const char *string,
2076 size_t slen)
9c937dcc
AG
2077{
2078 int avail, new_len;
2079 unsigned char *ptr;
2080 struct sk_buff *skb;
2081
8ef2d304
AG
2082 if (!ab)
2083 return;
2084
9c937dcc
AG
2085 BUG_ON(!ab->skb);
2086 skb = ab->skb;
2087 avail = skb_tailroom(skb);
2088 new_len = slen + 3; /* enclosing quotes + null terminator */
2089 if (new_len > avail) {
2090 avail = audit_expand(ab, new_len);
2091 if (!avail)
2092 return;
2093 }
27a884dc 2094 ptr = skb_tail_pointer(skb);
9c937dcc
AG
2095 *ptr++ = '"';
2096 memcpy(ptr, string, slen);
2097 ptr += slen;
2098 *ptr++ = '"';
2099 *ptr = 0;
2100 skb_put(skb, slen + 2); /* don't include null terminator */
2101}
2102
de6bbd1d
EP
2103/**
2104 * audit_string_contains_control - does a string need to be logged in hex
f706d5d2
DJ
2105 * @string: string to be checked
2106 * @len: max length of the string to check
de6bbd1d 2107 */
9fcf836b 2108bool audit_string_contains_control(const char *string, size_t len)
de6bbd1d
EP
2109{
2110 const unsigned char *p;
b3897f56 2111 for (p = string; p < (const unsigned char *)string + len; p++) {
1d6c9649 2112 if (*p == '"' || *p < 0x21 || *p > 0x7e)
9fcf836b 2113 return true;
de6bbd1d 2114 }
9fcf836b 2115 return false;
de6bbd1d
EP
2116}
2117
b0dd25a8 2118/**
522ed776 2119 * audit_log_n_untrustedstring - log a string that may contain random characters
b0dd25a8 2120 * @ab: audit_buffer
f706d5d2 2121 * @len: length of string (not including trailing null)
b0dd25a8
RD
2122 * @string: string to be logged
2123 *
2124 * This code will escape a string that is passed to it if the string
2125 * contains a control character, unprintable character, double quote mark,
168b7173 2126 * or a space. Unescaped strings will start and end with a double quote mark.
b0dd25a8 2127 * Strings that are escaped are printed in hex (2 digits per char).
9c937dcc
AG
2128 *
2129 * The caller specifies the number of characters in the string to log, which may
2130 * or may not be the entire string.
b0dd25a8 2131 */
b556f8ad
EP
2132void audit_log_n_untrustedstring(struct audit_buffer *ab, const char *string,
2133 size_t len)
83c7d091 2134{
de6bbd1d 2135 if (audit_string_contains_control(string, len))
b556f8ad 2136 audit_log_n_hex(ab, string, len);
de6bbd1d 2137 else
b556f8ad 2138 audit_log_n_string(ab, string, len);
83c7d091
DW
2139}
2140
9c937dcc 2141/**
522ed776 2142 * audit_log_untrustedstring - log a string that may contain random characters
9c937dcc
AG
2143 * @ab: audit_buffer
2144 * @string: string to be logged
2145 *
522ed776 2146 * Same as audit_log_n_untrustedstring(), except that strlen is used to
9c937dcc
AG
2147 * determine string length.
2148 */
de6bbd1d 2149void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
9c937dcc 2150{
b556f8ad 2151 audit_log_n_untrustedstring(ab, string, strlen(string));
9c937dcc
AG
2152}
2153
168b7173 2154/* This is a helper-function to print the escaped d_path */
1da177e4 2155void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
66b3fad3 2156 const struct path *path)
1da177e4 2157{
44707fdf 2158 char *p, *pathname;
1da177e4 2159
8fc6115c 2160 if (prefix)
c158a35c 2161 audit_log_format(ab, "%s", prefix);
1da177e4 2162
168b7173 2163 /* We will allow 11 spaces for ' (deleted)' to be appended */
44707fdf
JB
2164 pathname = kmalloc(PATH_MAX+11, ab->gfp_mask);
2165 if (!pathname) {
f1d9b23c 2166 audit_log_format(ab, "\"<no_memory>\"");
168b7173 2167 return;
1da177e4 2168 }
cf28b486 2169 p = d_path(path, pathname, PATH_MAX+11);
168b7173
SG
2170 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
2171 /* FIXME: can we save some information here? */
f1d9b23c 2172 audit_log_format(ab, "\"<too_long>\"");
5600b892 2173 } else
168b7173 2174 audit_log_untrustedstring(ab, p);
44707fdf 2175 kfree(pathname);
1da177e4
LT
2176}
2177
4d3fb709
EP
2178void audit_log_session_info(struct audit_buffer *ab)
2179{
4440e854 2180 unsigned int sessionid = audit_get_sessionid(current);
4d3fb709
EP
2181 uid_t auid = from_kuid(&init_user_ns, audit_get_loginuid(current));
2182
a2c97da1 2183 audit_log_format(ab, "auid=%u ses=%u", auid, sessionid);
4d3fb709
EP
2184}
2185
9d960985
EP
2186void audit_log_key(struct audit_buffer *ab, char *key)
2187{
2188 audit_log_format(ab, " key=");
2189 if (key)
2190 audit_log_untrustedstring(ab, key);
2191 else
2192 audit_log_format(ab, "(null)");
2193}
2194
85ff5379 2195int audit_log_task_context(struct audit_buffer *ab, struct lsmblob *blob)
b24a30a7 2196{
85ff5379 2197 int i;
b24a30a7 2198 int error;
85ff5379
CS
2199 struct lsmblob localblob;
2200 struct lsmcontext lsmdata;
b24a30a7 2201
85ff5379
CS
2202 /*
2203 * If there is more than one security module that has a
2204 * subject "context" it's necessary to put the subject data
2205 * into a separate record to maintain compatibility.
2206 */
2207 if (lsm_multiple_contexts()) {
2208 audit_log_format(ab, " subj=?");
b24a30a7 2209 return 0;
85ff5379 2210 }
b24a30a7 2211
85ff5379
CS
2212 if (blob == NULL) {
2213 security_task_getsecid_subj(current, &localblob);
2214 if (!lsmblob_is_set(&localblob)) {
2215 audit_log_format(ab, " subj=?");
2216 return 0;
2217 }
2218 blob = &localblob;
b24a30a7
EP
2219 }
2220
85ff5379
CS
2221 for (i = 0; i < LSMBLOB_ENTRIES; i++) {
2222 if (blob->secid[i] == 0)
2223 continue;
2224 error = security_secid_to_secctx(blob, &lsmdata, i);
2225 if (error && error != -EINVAL) {
2226 audit_panic("error in audit_log_task_context");
2227 return error;
2228 }
b24a30a7 2229
85ff5379
CS
2230 audit_log_format(ab, " subj=%s", lsmdata.context);
2231 security_release_secctx(&lsmdata);
2232 break;
2233 }
2234
2235 return 0;
b24a30a7
EP
2236}
2237EXPORT_SYMBOL(audit_log_task_context);
2238
558fd844
CS
2239int audit_log_object_context(struct audit_buffer *ab,
2240 struct lsmblob *blob)
2241{
2242 int i;
2243 int error;
2244 bool sep = false;
2245 struct lsmcontext lsmdata;
2246 struct audit_buffer *lsmab = NULL;
2247 struct audit_context *context = NULL;
2248
2249 /*
2250 * If there is more than one security module that has a
2251 * object "context" it's necessary to put the object data
2252 * into a separate record to maintain compatibility.
2253 */
2254 if (lsm_multiple_contexts()) {
2255 audit_log_format(ab, " obj=?");
2256 context = ab->ctx;
2257 if (context)
2258 lsmab = audit_log_start(context, GFP_KERNEL,
2259 AUDIT_MAC_OBJ_CONTEXTS);
2260 }
2261
2262 for (i = 0; i < LSMBLOB_ENTRIES; i++) {
2263 if (blob->secid[i] == 0)
2264 continue;
2265 error = security_secid_to_secctx(blob, &lsmdata, i);
2266 if (error && error != -EINVAL) {
2267 audit_panic("error in audit_log_object_context");
2268 return error;
2269 }
2270
2271 if (context) {
2272 audit_log_format(lsmab, "%sobj_%s=%s",
2273 sep ? " " : "",
2274 security_lsm_slot_name(i),
2275 lsmdata.context);
2276 sep = true;
2277 } else
2278 audit_log_format(ab, " obj=%s", lsmdata.context);
2279
2280 security_release_secctx(&lsmdata);
2281 if (!context)
2282 break;
2283 }
2284
2285 if (context)
2286 audit_log_end(lsmab);
2287
2288 return 0;
2289}
2290EXPORT_SYMBOL(audit_log_object_context);
2291
4766b199
DB
2292void audit_log_d_path_exe(struct audit_buffer *ab,
2293 struct mm_struct *mm)
2294{
5b282552
DB
2295 struct file *exe_file;
2296
2297 if (!mm)
2298 goto out_null;
4766b199 2299
5b282552
DB
2300 exe_file = get_mm_exe_file(mm);
2301 if (!exe_file)
2302 goto out_null;
2303
2304 audit_log_d_path(ab, " exe=", &exe_file->f_path);
2305 fput(exe_file);
2306 return;
2307out_null:
2308 audit_log_format(ab, " exe=(null)");
4766b199
DB
2309}
2310
2a1fe215 2311struct tty_struct *audit_get_tty(void)
3f5be2da
RGB
2312{
2313 struct tty_struct *tty = NULL;
2314 unsigned long flags;
2315
2a1fe215
PM
2316 spin_lock_irqsave(&current->sighand->siglock, flags);
2317 if (current->signal)
2318 tty = tty_kref_get(current->signal->tty);
2319 spin_unlock_irqrestore(&current->sighand->siglock, flags);
3f5be2da
RGB
2320 return tty;
2321}
2322
2323void audit_put_tty(struct tty_struct *tty)
2324{
2325 tty_kref_put(tty);
2326}
2327
2a1fe215 2328void audit_log_task_info(struct audit_buffer *ab)
b24a30a7
EP
2329{
2330 const struct cred *cred;
2a1fe215 2331 char comm[sizeof(current->comm)];
db0a6fb5 2332 struct tty_struct *tty;
b24a30a7
EP
2333
2334 if (!ab)
2335 return;
2336
b24a30a7 2337 cred = current_cred();
2a1fe215 2338 tty = audit_get_tty();
b24a30a7 2339 audit_log_format(ab,
c92cdeb4 2340 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
b24a30a7 2341 " euid=%u suid=%u fsuid=%u"
2f2ad101 2342 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
2a1fe215
PM
2343 task_ppid_nr(current),
2344 task_tgid_nr(current),
2345 from_kuid(&init_user_ns, audit_get_loginuid(current)),
b24a30a7
EP
2346 from_kuid(&init_user_ns, cred->uid),
2347 from_kgid(&init_user_ns, cred->gid),
2348 from_kuid(&init_user_ns, cred->euid),
2349 from_kuid(&init_user_ns, cred->suid),
2350 from_kuid(&init_user_ns, cred->fsuid),
2351 from_kgid(&init_user_ns, cred->egid),
2352 from_kgid(&init_user_ns, cred->sgid),
2353 from_kgid(&init_user_ns, cred->fsgid),
db0a6fb5 2354 tty ? tty_name(tty) : "(none)",
2a1fe215 2355 audit_get_sessionid(current));
db0a6fb5 2356 audit_put_tty(tty);
b24a30a7 2357 audit_log_format(ab, " comm=");
2a1fe215
PM
2358 audit_log_untrustedstring(ab, get_task_comm(comm, current));
2359 audit_log_d_path_exe(ab, current->mm);
85ff5379 2360 audit_log_task_context(ab, NULL);
b24a30a7
EP
2361}
2362EXPORT_SYMBOL(audit_log_task_info);
2363
a51d9eaa 2364/**
245d7369
KC
2365 * audit_log_path_denied - report a path restriction denial
2366 * @type: audit message type (AUDIT_ANOM_LINK, AUDIT_ANOM_CREAT, etc)
2367 * @operation: specific operation name
a51d9eaa 2368 */
245d7369 2369void audit_log_path_denied(int type, const char *operation)
a51d9eaa
KC
2370{
2371 struct audit_buffer *ab;
b24a30a7 2372
15564ff0 2373 if (!audit_enabled || audit_dummy_context())
b24a30a7 2374 return;
a51d9eaa 2375
245d7369
KC
2376 /* Generate log with subject, operation, outcome. */
2377 ab = audit_log_start(audit_context(), GFP_KERNEL, type);
d1c7d97a 2378 if (!ab)
45b578fe 2379 return;
b24a30a7 2380 audit_log_format(ab, "op=%s", operation);
2a1fe215 2381 audit_log_task_info(ab);
b24a30a7 2382 audit_log_format(ab, " res=0");
a51d9eaa
KC
2383 audit_log_end(ab);
2384}
2385
4b7d248b
RGB
2386/* global counter which is incremented every time something logs in */
2387static atomic_t session_id = ATOMIC_INIT(0);
2388
2389static int audit_set_loginuid_perm(kuid_t loginuid)
2390{
2391 /* if we are unset, we don't need privs */
2392 if (!audit_loginuid_set(current))
2393 return 0;
2394 /* if AUDIT_FEATURE_LOGINUID_IMMUTABLE means never ever allow a change*/
2395 if (is_audit_feature_set(AUDIT_FEATURE_LOGINUID_IMMUTABLE))
2396 return -EPERM;
2397 /* it is set, you need permission */
2398 if (!capable(CAP_AUDIT_CONTROL))
2399 return -EPERM;
2400 /* reject if this is not an unset and we don't allow that */
2401 if (is_audit_feature_set(AUDIT_FEATURE_ONLY_UNSET_LOGINUID)
2402 && uid_valid(loginuid))
2403 return -EPERM;
2404 return 0;
2405}
2406
2407static void audit_log_set_loginuid(kuid_t koldloginuid, kuid_t kloginuid,
2408 unsigned int oldsessionid,
2409 unsigned int sessionid, int rc)
2410{
2411 struct audit_buffer *ab;
2412 uid_t uid, oldloginuid, loginuid;
2413 struct tty_struct *tty;
2414
2415 if (!audit_enabled)
2416 return;
2417
85ff5379 2418 audit_stamp_context(audit_context());
73e65b88 2419 ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_LOGIN);
4b7d248b
RGB
2420 if (!ab)
2421 return;
2422
2423 uid = from_kuid(&init_user_ns, task_uid(current));
2424 oldloginuid = from_kuid(&init_user_ns, koldloginuid);
a1b861fa 2425 loginuid = from_kuid(&init_user_ns, kloginuid);
4b7d248b
RGB
2426 tty = audit_get_tty();
2427
2428 audit_log_format(ab, "pid=%d uid=%u", task_tgid_nr(current), uid);
85ff5379 2429 audit_log_task_context(ab, NULL);
4b7d248b
RGB
2430 audit_log_format(ab, " old-auid=%u auid=%u tty=%s old-ses=%u ses=%u res=%d",
2431 oldloginuid, loginuid, tty ? tty_name(tty) : "(none)",
2432 oldsessionid, sessionid, !rc);
2433 audit_put_tty(tty);
85ff5379 2434 audit_log_lsm(NULL, true);
4b7d248b
RGB
2435 audit_log_end(ab);
2436}
2437
2438/**
2439 * audit_set_loginuid - set current task's loginuid
2440 * @loginuid: loginuid value
2441 *
2442 * Returns 0.
2443 *
2444 * Called (set) from fs/proc/base.c::proc_loginuid_write().
2445 */
2446int audit_set_loginuid(kuid_t loginuid)
2447{
2448 unsigned int oldsessionid, sessionid = AUDIT_SID_UNSET;
2449 kuid_t oldloginuid;
2450 int rc;
2451
2452 oldloginuid = audit_get_loginuid(current);
2453 oldsessionid = audit_get_sessionid(current);
2454
2455 rc = audit_set_loginuid_perm(loginuid);
2456 if (rc)
2457 goto out;
2458
2459 /* are we setting or clearing? */
2460 if (uid_valid(loginuid)) {
2461 sessionid = (unsigned int)atomic_inc_return(&session_id);
2462 if (unlikely(sessionid == AUDIT_SID_UNSET))
2463 sessionid = (unsigned int)atomic_inc_return(&session_id);
2464 }
2465
2466 current->sessionid = sessionid;
2467 current->loginuid = loginuid;
2468out:
2469 audit_log_set_loginuid(oldloginuid, loginuid, oldsessionid, sessionid, rc);
2470 return rc;
2471}
2472
b48345aa
RGB
2473/**
2474 * audit_signal_info - record signal info for shutting down audit subsystem
2475 * @sig: signal value
2476 * @t: task being signaled
2477 *
2478 * If the audit subsystem is being terminated, record the task (pid)
2479 * and uid that is doing that.
2480 */
2481int audit_signal_info(int sig, struct task_struct *t)
2482{
2483 kuid_t uid = current_uid(), auid;
2484
2485 if (auditd_test_task(t) &&
2486 (sig == SIGTERM || sig == SIGHUP ||
2487 sig == SIGUSR1 || sig == SIGUSR2)) {
2488 audit_sig_pid = task_tgid_nr(current);
2489 auid = audit_get_loginuid(current);
2490 if (uid_valid(auid))
2491 audit_sig_uid = auid;
2492 else
2493 audit_sig_uid = uid;
36fd78ba 2494 security_task_getsecid_subj(current, &audit_sig_lsm);
b48345aa
RGB
2495 }
2496
2497 return audit_signal_info_syscall(t);
2498}
2499
b0dd25a8
RD
2500/**
2501 * audit_log_end - end one audit record
2502 * @ab: the audit_buffer
2503 *
4aa83872
PM
2504 * We can not do a netlink send inside an irq context because it blocks (last
2505 * arg, flags, is not set to MSG_DONTWAIT), so the audit buffer is placed on a
c1de4463 2506 * queue and a kthread is scheduled to remove them from the queue outside the
4aa83872 2507 * irq context. May be called in any context.
b0dd25a8 2508 */
b7d11258 2509void audit_log_end(struct audit_buffer *ab)
1da177e4 2510{
5b52330b
PM
2511 struct sk_buff *skb;
2512 struct nlmsghdr *nlh;
2513
1da177e4
LT
2514 if (!ab)
2515 return;
5b52330b
PM
2516
2517 if (audit_rate_check()) {
2518 skb = ab->skb;
f3d357b0 2519 ab->skb = NULL;
5b52330b
PM
2520
2521 /* setup the netlink header, see the comments in
2522 * kauditd_send_multicast_skb() for length quirks */
2523 nlh = nlmsg_hdr(skb);
2524 nlh->nlmsg_len = skb->len - NLMSG_HDRLEN;
2525
2526 /* queue the netlink packet and poke the kauditd thread */
2527 skb_queue_tail(&audit_queue, skb);
2528 wake_up_interruptible(&kauditd_wait);
2529 } else
2530 audit_log_lost("rate limit exceeded");
2531
16e1904e 2532 audit_buffer_free(ab);
1da177e4
LT
2533}
2534
b0dd25a8
RD
2535/**
2536 * audit_log - Log an audit record
2537 * @ctx: audit context
2538 * @gfp_mask: type of allocation
2539 * @type: audit message type
2540 * @fmt: format string to use
2541 * @...: variable parameters matching the format string
2542 *
2543 * This is a convenience function that calls audit_log_start,
2544 * audit_log_vformat, and audit_log_end. It may be called
2545 * in any context.
2546 */
5600b892 2547void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
9ad9ad38 2548 const char *fmt, ...)
1da177e4
LT
2549{
2550 struct audit_buffer *ab;
2551 va_list args;
2552
9ad9ad38 2553 ab = audit_log_start(ctx, gfp_mask, type);
1da177e4
LT
2554 if (ab) {
2555 va_start(args, fmt);
2556 audit_log_vformat(ab, fmt, args);
2557 va_end(args);
2558 audit_log_end(ab);
2559 }
2560}
bf45da97 2561
2562EXPORT_SYMBOL(audit_log_start);
2563EXPORT_SYMBOL(audit_log_end);
2564EXPORT_SYMBOL(audit_log_format);
2565EXPORT_SYMBOL(audit_log);