blob: b40f3c4727e11f251ad2aa70fe816571a35b528c [file] [log] [blame]
85c87212005-04-29 16:23:29 +01001/* audit.c -- Auditing support
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Gateway between the kernel (e.g., selinux) and the user-space audit daemon.
3 * System-call specific features have moved to auditsc.c
4 *
Steve Grubb6a01b07f2007-01-19 14:39:55 -05005 * Copyright 2003-2007 Red Hat Inc., Durham, North Carolina.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * All Rights Reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Written by Rickard E. (Rik) Faith <faith@redhat.com>
23 *
Ahmed S. Darwishd7a96f32008-03-01 22:01:11 +020024 * Goals: 1) Integrate fully with Security Modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * 2) Minimal run-time overhead:
26 * a) Minimal when syscall auditing is disabled (audit_enable=0).
27 * b) Small when syscall auditing is enabled and no audit record
28 * is generated (defer as much work as possible to record
29 * generation time):
30 * i) context is allocated,
31 * ii) names from getname are stored without a copy, and
32 * iii) inode information stored from path_lookup.
33 * 3) Ability to disable syscall auditing at boot time (audit=0).
34 * 4) Usable by other parts of the kernel (if audit_log* is called,
35 * then a syscall record will be generated automatically for the
36 * current syscall).
37 * 5) Netlink interface to user-space.
38 * 6) Support low-overhead kernel-based filtering to minimize the
39 * information that must be passed to user-space.
40 *
85c87212005-04-29 16:23:29 +010041 * Example user-space utilities: http://people.redhat.com/sgrubb/audit/
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
43
Joe Perchesd957f7b2014-01-14 10:33:12 -080044#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45
Davidlohr Bueso5b282552015-02-22 18:20:09 -080046#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/init.h>
Paul McQuade7153e402014-06-06 14:37:37 -070048#include <linux/types.h>
Arun Sharma600634972011-07-26 16:09:06 -070049#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mm.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040051#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
David Woodhouseb7d11252005-05-19 10:56:58 +010053#include <linux/err.h>
54#include <linux/kthread.h>
Richard Guy Briggs46e959e2013-05-03 14:03:50 -040055#include <linux/kernel.h>
Eric Parisb24a30a2013-04-30 15:30:32 -040056#include <linux/syscalls.h>
Paul Moore5b523302017-03-21 11:26:35 -040057#include <linux/spinlock.h>
58#include <linux/rcupdate.h>
59#include <linux/mutex.h>
60#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <linux/audit.h>
63
64#include <net/sock.h>
Amy Griffis93315ed2006-02-07 12:05:27 -050065#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/skbuff.h>
Mr Dash Four131ad622011-06-30 13:31:57 +020067#ifdef CONFIG_SECURITY
68#include <linux/security.h>
69#endif
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080070#include <linux/freezer.h>
Eric W. Biederman34e36d8e2012-09-10 23:20:20 -070071#include <linux/pid_namespace.h>
Richard Guy Briggs33faba72013-07-16 13:18:45 -040072#include <net/netns/generic.h>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060073
74#include "audit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Eric Parisa3f07112008-11-05 12:47:09 -050076/* No auditing will take place until audit_initialized == AUDIT_INITIALIZED.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * (Initialization happens after skb_init is called.) */
Eric Parisa3f07112008-11-05 12:47:09 -050078#define AUDIT_DISABLED -1
79#define AUDIT_UNINITIALIZED 0
80#define AUDIT_INITIALIZED 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int audit_initialized;
82
Eric Paris1a6b9f22008-01-07 17:09:31 -050083#define AUDIT_OFF 0
84#define AUDIT_ON 1
85#define AUDIT_LOCKED 2
Joe Perches3e1d0bb2014-01-14 10:33:13 -080086u32 audit_enabled;
87u32 audit_ever_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Jan Engelhardtae9d67af2011-01-18 06:48:12 +010089EXPORT_SYMBOL_GPL(audit_enabled);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* Default state when kernel boots without any parameters. */
Joe Perches3e1d0bb2014-01-14 10:33:13 -080092static u32 audit_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/* If auditing cannot proceed, audit_failure selects what happens. */
Joe Perches3e1d0bb2014-01-14 10:33:13 -080095static u32 audit_failure = AUDIT_FAIL_PRINTK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Paul Moore5b523302017-03-21 11:26:35 -040097/* private audit network namespace index */
98static unsigned int audit_net_id;
99
100/**
101 * struct audit_net - audit private network namespace data
102 * @sk: communication socket
Pavel Emelyanov75c03712008-03-20 15:39:41 -0700103 */
Paul Moore5b523302017-03-21 11:26:35 -0400104struct audit_net {
105 struct sock *sk;
106};
107
108/**
109 * struct auditd_connection - kernel/auditd connection state
110 * @pid: auditd PID
111 * @portid: netlink portid
112 * @net: the associated network namespace
113 * @lock: spinlock to protect write access
114 *
115 * Description:
116 * This struct is RCU protected; you must either hold the RCU lock for reading
117 * or the included spinlock for writing.
118 */
119static struct auditd_connection {
120 int pid;
121 u32 portid;
122 struct net *net;
123 spinlock_t lock;
124} auditd_conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700126/* If audit_rate_limit is non-zero, limit the rate of sending audit records
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * to that number per second. This prevents DoS attacks, but results in
128 * audit records being dropped. */
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800129static u32 audit_rate_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Richard Guy Briggs40c07752013-10-22 13:28:49 -0400131/* Number of outstanding audit_buffers allowed.
132 * When set to zero, this means unlimited. */
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800133static u32 audit_backlog_limit = 64;
Richard Guy Briggse789e562013-09-12 23:03:51 -0400134#define AUDIT_BACKLOG_WAIT_TIME (60 * HZ)
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800135static u32 audit_backlog_wait_time = AUDIT_BACKLOG_WAIT_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100137/* The identity of the user shutting down the audit system. */
Eric W. Biedermancca080d2012-02-07 16:53:48 -0800138kuid_t audit_sig_uid = INVALID_UID;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100139pid_t audit_sig_pid = -1;
Al Viroe1396062006-05-25 10:19:47 -0400140u32 audit_sig_sid = 0;
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* Records can be lost in several ways:
143 0) [suppressed in audit_alloc]
144 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
145 2) out of memory in audit_log_move [alloc_skb]
146 3) suppressed due to audit_rate_limit
147 4) suppressed due to audit_backlog_limit
148*/
Richard Guy Briggs92c82e82017-01-13 03:26:29 -0500149static atomic_t audit_lost = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Amy Griffisf368c07d2006-04-07 16:55:56 -0400151/* Hash for inode-based rules */
152struct list_head audit_inode_hash[AUDIT_INODE_BUCKETS];
153
David Woodhouseb7d11252005-05-19 10:56:58 +0100154/* The audit_freelist is a list of pre-allocated audit buffers (if more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
156 * being placed on the freelist). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static DEFINE_SPINLOCK(audit_freelist_lock);
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700158static int audit_freelist_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static LIST_HEAD(audit_freelist);
160
Paul Moorec6480202016-11-29 16:53:25 -0500161/* queue msgs to send via kauditd_task */
Paul Mooreaf8b8242016-11-29 16:53:24 -0500162static struct sk_buff_head audit_queue;
Paul Moorec6480202016-11-29 16:53:25 -0500163/* queue msgs due to temporary unicast send problems */
164static struct sk_buff_head audit_retry_queue;
165/* queue msgs waiting for new auditd connection */
Paul Mooreaf8b8242016-11-29 16:53:24 -0500166static struct sk_buff_head audit_hold_queue;
Paul Moorec6480202016-11-29 16:53:25 -0500167
168/* queue servicing thread */
David Woodhouseb7d11252005-05-19 10:56:58 +0100169static struct task_struct *kauditd_task;
170static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
Paul Moorec6480202016-11-29 16:53:25 -0500171
172/* waitqueue for callers who are blocked on the audit backlog */
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100173static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Parisb0fed402013-05-22 12:54:49 -0400175static struct audit_features af = {.vers = AUDIT_FEATURE_VERSION,
176 .mask = -1,
177 .features = 0,
178 .lock = 0,};
179
Eric Paris21b85c32013-05-23 14:26:00 -0400180static char *audit_feature_names[2] = {
Eric Parisd040e5a2013-05-24 09:18:04 -0400181 "only_unset_loginuid",
Eric Paris21b85c32013-05-23 14:26:00 -0400182 "loginuid_immutable",
Eric Parisb0fed402013-05-22 12:54:49 -0400183};
184
185
Amy Griffisf368c07d2006-04-07 16:55:56 -0400186/* Serialize requests from userspace. */
Al Viro916d7572009-06-24 00:02:38 -0400187DEFINE_MUTEX(audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
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
194/* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
195 * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
196#define AUDIT_MAXFREE (2*NR_CPUS)
197
198/* The audit_buffer is used when formatting an audit record. The caller
199 * locks briefly to get the record off the freelist or to allocate the
200 * buffer, and locks briefly to send the buffer to the netlink layer or
201 * to place it on a transmit queue. Multiple audit_buffers can be in
202 * use simultaneously. */
203struct audit_buffer {
204 struct list_head list;
Chris Wright8fc61152005-05-06 15:54:17 +0100205 struct sk_buff *skb; /* formatted skb ready to send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct audit_context *ctx; /* NULL or associated context */
Al Viro9796fdd2005-10-21 03:22:03 -0400207 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Eric Parisf09ac9d2008-04-18 10:11:04 -0400210struct audit_reply {
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400211 __u32 portid;
Eric W. Biederman638a0fd2014-02-28 10:49:05 -0800212 struct net *net;
Eric Parisf09ac9d2008-04-18 10:11:04 -0400213 struct sk_buff *skb;
214};
215
Paul Moore5b523302017-03-21 11:26:35 -0400216/**
217 * auditd_test_task - Check to see if a given task is an audit daemon
218 * @task: the task to check
219 *
220 * Description:
221 * Return 1 if the task is a registered audit daemon, 0 otherwise.
222 */
223int auditd_test_task(const struct task_struct *task)
224{
225 int rc;
226
227 rcu_read_lock();
228 rc = (auditd_conn.pid && task->tgid == auditd_conn.pid ? 1 : 0);
229 rcu_read_unlock();
230
231 return rc;
232}
233
234/**
235 * audit_get_sk - Return the audit socket for the given network namespace
236 * @net: the destination network namespace
237 *
238 * Description:
239 * Returns the sock pointer if valid, NULL otherwise. The caller must ensure
240 * that a reference is held for the network namespace while the sock is in use.
241 */
242static struct sock *audit_get_sk(const struct net *net)
243{
244 struct audit_net *aunet;
245
246 if (!net)
247 return NULL;
248
249 aunet = net_generic(net, audit_net_id);
250 return aunet->sk;
251}
252
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000253void audit_panic(const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Joe Perchesd957f7b2014-01-14 10:33:12 -0800255 switch (audit_failure) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 case AUDIT_FAIL_SILENT:
257 break;
258 case AUDIT_FAIL_PRINTK:
Eric Paris320f1b12008-01-23 22:55:05 -0500259 if (printk_ratelimit())
Joe Perchesd957f7b2014-01-14 10:33:12 -0800260 pr_err("%s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 break;
262 case AUDIT_FAIL_PANIC:
Paul Moore5b523302017-03-21 11:26:35 -0400263 panic("audit: %s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 break;
265 }
266}
267
268static inline int audit_rate_check(void)
269{
270 static unsigned long last_check = 0;
271 static int messages = 0;
272 static DEFINE_SPINLOCK(lock);
273 unsigned long flags;
274 unsigned long now;
275 unsigned long elapsed;
276 int retval = 0;
277
278 if (!audit_rate_limit) return 1;
279
280 spin_lock_irqsave(&lock, flags);
281 if (++messages < audit_rate_limit) {
282 retval = 1;
283 } else {
284 now = jiffies;
285 elapsed = now - last_check;
286 if (elapsed > HZ) {
287 last_check = now;
288 messages = 0;
289 retval = 1;
290 }
291 }
292 spin_unlock_irqrestore(&lock, flags);
293
294 return retval;
295}
296
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700297/**
298 * audit_log_lost - conditionally log lost audit message event
299 * @message: the message stating reason for lost audit message
300 *
301 * Emit at least 1 message per second, even if audit_rate_check is
302 * throttling.
303 * Always increment the lost messages counter.
304*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305void audit_log_lost(const char *message)
306{
307 static unsigned long last_msg = 0;
308 static DEFINE_SPINLOCK(lock);
309 unsigned long flags;
310 unsigned long now;
311 int print;
312
313 atomic_inc(&audit_lost);
314
315 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
316
317 if (!print) {
318 spin_lock_irqsave(&lock, flags);
319 now = jiffies;
320 if (now - last_msg > HZ) {
321 print = 1;
322 last_msg = now;
323 }
324 spin_unlock_irqrestore(&lock, flags);
325 }
326
327 if (print) {
Eric Paris320f1b12008-01-23 22:55:05 -0500328 if (printk_ratelimit())
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800329 pr_warn("audit_lost=%u audit_rate_limit=%u audit_backlog_limit=%u\n",
Eric Paris320f1b12008-01-23 22:55:05 -0500330 atomic_read(&audit_lost),
331 audit_rate_limit,
332 audit_backlog_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 audit_panic(message);
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800337static int audit_log_config_change(char *function_name, u32 new, u32 old,
Eric Paris25323862008-04-18 10:09:25 -0400338 int allow_changes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Eric Paris1a6b9f22008-01-07 17:09:31 -0500340 struct audit_buffer *ab;
341 int rc = 0;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500342
Eric Paris1a6b9f22008-01-07 17:09:31 -0500343 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
Kees Cook0644ec02013-01-11 14:32:07 -0800344 if (unlikely(!ab))
345 return rc;
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800346 audit_log_format(ab, "%s=%u old=%u", function_name, new, old);
Eric Paris4d3fb702013-04-30 09:53:34 -0400347 audit_log_session_info(ab);
Eric Parisb122c372013-04-19 15:00:33 -0400348 rc = audit_log_task_context(ab);
349 if (rc)
350 allow_changes = 0; /* Something weird, deny request */
Eric Paris1a6b9f22008-01-07 17:09:31 -0500351 audit_log_format(ab, " res=%d", allow_changes);
352 audit_log_end(ab);
353 return rc;
354}
355
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800356static int audit_do_config_change(char *function_name, u32 *to_change, u32 new)
Eric Paris1a6b9f22008-01-07 17:09:31 -0500357{
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800358 int allow_changes, rc = 0;
359 u32 old = *to_change;
Eric Paris1a6b9f22008-01-07 17:09:31 -0500360
361 /* check if we are locked */
362 if (audit_enabled == AUDIT_LOCKED)
363 allow_changes = 0;
364 else
365 allow_changes = 1;
366
367 if (audit_enabled != AUDIT_OFF) {
Eric Parisdc9eb692013-04-19 13:23:09 -0400368 rc = audit_log_config_change(function_name, new, old, allow_changes);
Eric Paris1a6b9f22008-01-07 17:09:31 -0500369 if (rc)
370 allow_changes = 0;
371 }
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500372
373 /* If we are allowed, make the change */
Eric Paris1a6b9f22008-01-07 17:09:31 -0500374 if (allow_changes == 1)
375 *to_change = new;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500376 /* Not allowed, update reason */
377 else if (rc == 0)
378 rc = -EPERM;
379 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800382static int audit_set_rate_limit(u32 limit)
Eric Paris1a6b9f22008-01-07 17:09:31 -0500383{
Eric Parisdc9eb692013-04-19 13:23:09 -0400384 return audit_do_config_change("audit_rate_limit", &audit_rate_limit, limit);
Eric Paris1a6b9f22008-01-07 17:09:31 -0500385}
386
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800387static int audit_set_backlog_limit(u32 limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Eric Parisdc9eb692013-04-19 13:23:09 -0400389 return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800392static int audit_set_backlog_wait_time(u32 timeout)
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -0400393{
394 return audit_do_config_change("audit_backlog_wait_time",
Paul Moore31975422016-11-29 16:53:25 -0500395 &audit_backlog_wait_time, timeout);
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -0400396}
397
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800398static int audit_set_enabled(u32 state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Eric Parisb593d382008-01-08 17:38:31 -0500400 int rc;
Pranith Kumar724e7bf2015-03-11 14:08:19 -0400401 if (state > AUDIT_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500403
Eric Parisdc9eb692013-04-19 13:23:09 -0400404 rc = audit_do_config_change("audit_enabled", &audit_enabled, state);
Eric Parisb593d382008-01-08 17:38:31 -0500405 if (!rc)
406 audit_ever_enabled |= !!state;
407
408 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800411static int audit_set_failure(u32 state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (state != AUDIT_FAIL_SILENT
414 && state != AUDIT_FAIL_PRINTK
415 && state != AUDIT_FAIL_PANIC)
416 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500417
Eric Parisdc9eb692013-04-19 13:23:09 -0400418 return audit_do_config_change("audit_failure", &audit_failure, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Paul Moore5b523302017-03-21 11:26:35 -0400421/**
422 * auditd_set - Set/Reset the auditd connection state
423 * @pid: auditd PID
424 * @portid: auditd netlink portid
425 * @net: auditd network namespace pointer
426 *
427 * Description:
428 * This function will obtain and drop network namespace references as
429 * necessary.
430 */
431static void auditd_set(int pid, u32 portid, struct net *net)
432{
433 unsigned long flags;
434
435 spin_lock_irqsave(&auditd_conn.lock, flags);
436 auditd_conn.pid = pid;
437 auditd_conn.portid = portid;
438 if (auditd_conn.net)
439 put_net(auditd_conn.net);
440 if (net)
441 auditd_conn.net = get_net(net);
442 else
443 auditd_conn.net = NULL;
444 spin_unlock_irqrestore(&auditd_conn.lock, flags);
445}
446
447/**
Paul Moore5b523302017-03-21 11:26:35 -0400448 * kauditd_print_skb - Print the audit record to the ring buffer
449 * @skb: audit record
450 *
451 * Whatever the reason, this packet may not make it to the auditd connection
452 * so write it via printk so the information isn't completely lost.
Eric Paris038cbcf2009-06-11 14:31:35 -0400453 */
Paul Mooreaf8b8242016-11-29 16:53:24 -0500454static void kauditd_printk_skb(struct sk_buff *skb)
Eric Paris038cbcf2009-06-11 14:31:35 -0400455{
456 struct nlmsghdr *nlh = nlmsg_hdr(skb);
David S. Millerc64e66c2012-06-26 21:45:21 -0700457 char *data = nlmsg_data(nlh);
Eric Paris038cbcf2009-06-11 14:31:35 -0400458
Paul Moore5b523302017-03-21 11:26:35 -0400459 if (nlh->nlmsg_type != AUDIT_EOE && printk_ratelimit())
460 pr_notice("type=%d %s\n", nlh->nlmsg_type, data);
461}
462
463/**
464 * kauditd_rehold_skb - Handle a audit record send failure in the hold queue
465 * @skb: audit record
466 *
467 * Description:
468 * This should only be used by the kauditd_thread when it fails to flush the
469 * hold queue.
470 */
471static void kauditd_rehold_skb(struct sk_buff *skb)
472{
473 /* put the record back in the queue at the same place */
474 skb_queue_head(&audit_hold_queue, skb);
Eric Paris038cbcf2009-06-11 14:31:35 -0400475}
476
Paul Moorec6480202016-11-29 16:53:25 -0500477/**
478 * kauditd_hold_skb - Queue an audit record, waiting for auditd
479 * @skb: audit record
480 *
481 * Description:
482 * Queue the audit record, waiting for an instance of auditd. When this
483 * function is called we haven't given up yet on sending the record, but things
484 * are not looking good. The first thing we want to do is try to write the
485 * record via printk and then see if we want to try and hold on to the record
486 * and queue it, if we have room. If we want to hold on to the record, but we
487 * don't have room, record a record lost message.
488 */
489static void kauditd_hold_skb(struct sk_buff *skb)
Eric Parisf3d357b2008-04-18 10:02:28 -0400490{
Paul Moorec6480202016-11-29 16:53:25 -0500491 /* at this point it is uncertain if we will ever send this to auditd so
492 * try to send the message via printk before we go any further */
493 kauditd_printk_skb(skb);
Richard Guy Briggs32a1dba2015-11-04 08:23:50 -0500494
Paul Moorec6480202016-11-29 16:53:25 -0500495 /* can we just silently drop the message? */
496 if (!audit_default) {
497 kfree_skb(skb);
498 return;
499 }
500
501 /* if we have room, queue the message */
502 if (!audit_backlog_limit ||
503 skb_queue_len(&audit_hold_queue) < audit_backlog_limit) {
504 skb_queue_tail(&audit_hold_queue, skb);
505 return;
506 }
507
508 /* we have no other options - drop the message */
509 audit_log_lost("kauditd hold queue overflow");
510 kfree_skb(skb);
511}
512
513/**
514 * kauditd_retry_skb - Queue an audit record, attempt to send again to auditd
515 * @skb: audit record
516 *
517 * Description:
518 * Not as serious as kauditd_hold_skb() as we still have a connected auditd,
519 * but for some reason we are having problems sending it audit records so
520 * queue the given record and attempt to resend.
521 */
522static void kauditd_retry_skb(struct sk_buff *skb)
523{
524 /* NOTE: because records should only live in the retry queue for a
525 * short period of time, before either being sent or moved to the hold
526 * queue, we don't currently enforce a limit on this queue */
527 skb_queue_tail(&audit_retry_queue, skb);
528}
529
530/**
Paul Moore264d5092017-04-10 11:16:59 -0400531 * auditd_reset - Disconnect the auditd connection
532 *
533 * Description:
534 * Break the auditd/kauditd connection and move all the queued records into the
535 * hold queue in case auditd reconnects.
536 */
537static void auditd_reset(void)
538{
539 struct sk_buff *skb;
540
541 /* if it isn't already broken, break the connection */
542 rcu_read_lock();
543 if (auditd_conn.pid)
544 auditd_set(0, 0, NULL);
545 rcu_read_unlock();
546
547 /* flush all of the main and retry queues to the hold queue */
548 while ((skb = skb_dequeue(&audit_retry_queue)))
549 kauditd_hold_skb(skb);
550 while ((skb = skb_dequeue(&audit_queue)))
551 kauditd_hold_skb(skb);
552}
553
554/**
Paul Moore5b523302017-03-21 11:26:35 -0400555 * auditd_send_unicast_skb - Send a record via unicast to auditd
556 * @skb: audit record
Paul Moorec6480202016-11-29 16:53:25 -0500557 *
558 * Description:
Paul Moore5b523302017-03-21 11:26:35 -0400559 * Send a skb to the audit daemon, returns positive/zero values on success and
560 * negative values on failure; in all cases the skb will be consumed by this
561 * function. If the send results in -ECONNREFUSED the connection with auditd
562 * will be reset. This function may sleep so callers should not hold any locks
563 * where this would cause a problem.
Paul Moorec6480202016-11-29 16:53:25 -0500564 */
Paul Moore5b523302017-03-21 11:26:35 -0400565static int auditd_send_unicast_skb(struct sk_buff *skb)
Paul Moorec6480202016-11-29 16:53:25 -0500566{
Paul Moore5b523302017-03-21 11:26:35 -0400567 int rc;
568 u32 portid;
569 struct net *net;
570 struct sock *sk;
Paul Moorec6480202016-11-29 16:53:25 -0500571
Paul Moore5b523302017-03-21 11:26:35 -0400572 /* NOTE: we can't call netlink_unicast while in the RCU section so
573 * take a reference to the network namespace and grab local
574 * copies of the namespace, the sock, and the portid; the
575 * namespace and sock aren't going to go away while we hold a
576 * reference and if the portid does become invalid after the RCU
577 * section netlink_unicast() should safely return an error */
578
579 rcu_read_lock();
580 if (!auditd_conn.pid) {
581 rcu_read_unlock();
582 rc = -ECONNREFUSED;
583 goto err;
Richard Guy Briggs533c7b62016-12-13 10:03:01 -0500584 }
Paul Moore5b523302017-03-21 11:26:35 -0400585 net = auditd_conn.net;
586 get_net(net);
587 sk = audit_get_sk(net);
588 portid = auditd_conn.portid;
589 rcu_read_unlock();
Paul Moorec6480202016-11-29 16:53:25 -0500590
Paul Moore5b523302017-03-21 11:26:35 -0400591 rc = netlink_unicast(sk, skb, portid, 0);
592 put_net(net);
593 if (rc < 0)
594 goto err;
595
596 return rc;
597
598err:
599 if (rc == -ECONNREFUSED)
600 auditd_reset();
601 return rc;
Paul Moorec6480202016-11-29 16:53:25 -0500602}
603
604/**
Paul Moore5b523302017-03-21 11:26:35 -0400605 * kauditd_send_queue - Helper for kauditd_thread to flush skb queues
606 * @sk: the sending sock
607 * @portid: the netlink destination
608 * @queue: the skb queue to process
609 * @retry_limit: limit on number of netlink unicast failures
610 * @skb_hook: per-skb hook for additional processing
611 * @err_hook: hook called if the skb fails the netlink unicast send
612 *
613 * Description:
614 * Run through the given queue and attempt to send the audit records to auditd,
615 * returns zero on success, negative values on failure. It is up to the caller
616 * to ensure that the @sk is valid for the duration of this function.
617 *
Paul Moorec6480202016-11-29 16:53:25 -0500618 */
Paul Moore5b523302017-03-21 11:26:35 -0400619static int kauditd_send_queue(struct sock *sk, u32 portid,
620 struct sk_buff_head *queue,
621 unsigned int retry_limit,
622 void (*skb_hook)(struct sk_buff *skb),
623 void (*err_hook)(struct sk_buff *skb))
Paul Moorec6480202016-11-29 16:53:25 -0500624{
Paul Moore5b523302017-03-21 11:26:35 -0400625 int rc = 0;
626 struct sk_buff *skb;
627 static unsigned int failed = 0;
Paul Moorec6480202016-11-29 16:53:25 -0500628
Paul Moore5b523302017-03-21 11:26:35 -0400629 /* NOTE: kauditd_thread takes care of all our locking, we just use
630 * the netlink info passed to us (e.g. sk and portid) */
Paul Moore6c54e782016-11-29 16:53:26 -0500631
Paul Moore5b523302017-03-21 11:26:35 -0400632 while ((skb = skb_dequeue(queue))) {
633 /* call the skb_hook for each skb we touch */
634 if (skb_hook)
635 (*skb_hook)(skb);
636
637 /* can we send to anyone via unicast? */
638 if (!sk) {
639 if (err_hook)
640 (*err_hook)(skb);
641 continue;
642 }
643
644 /* grab an extra skb reference in case of error */
645 skb_get(skb);
646 rc = netlink_unicast(sk, skb, portid, 0);
647 if (rc < 0) {
648 /* fatal failure for our queue flush attempt? */
649 if (++failed >= retry_limit ||
650 rc == -ECONNREFUSED || rc == -EPERM) {
651 /* yes - error processing for the queue */
652 sk = NULL;
653 if (err_hook)
654 (*err_hook)(skb);
655 if (!skb_hook)
656 goto out;
657 /* keep processing with the skb_hook */
658 continue;
659 } else
660 /* no - requeue to preserve ordering */
661 skb_queue_head(queue, skb);
662 } else {
663 /* it worked - drop the extra reference and continue */
664 consume_skb(skb);
665 failed = 0;
666 }
Paul Moorec6480202016-11-29 16:53:25 -0500667 }
668
Paul Moore5b523302017-03-21 11:26:35 -0400669out:
670 return (rc >= 0 ? 0 : rc);
Eric Parisf3d357b2008-04-18 10:02:28 -0400671}
672
Richard Guy Briggsb551d1d2013-01-24 13:15:10 -0500673/*
Paul Moorec6480202016-11-29 16:53:25 -0500674 * kauditd_send_multicast_skb - Send a record to any multicast listeners
675 * @skb: audit record
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400676 *
Paul Moorec6480202016-11-29 16:53:25 -0500677 * Description:
Paul Moore5b523302017-03-21 11:26:35 -0400678 * Write a multicast message to anyone listening in the initial network
679 * namespace. This function doesn't consume an skb as might be expected since
680 * it has to copy it anyways.
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400681 */
Paul Moorec6480202016-11-29 16:53:25 -0500682static void kauditd_send_multicast_skb(struct sk_buff *skb)
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400683{
Paul Moorec6480202016-11-29 16:53:25 -0500684 struct sk_buff *copy;
Paul Moore5b523302017-03-21 11:26:35 -0400685 struct sock *sock = audit_get_sk(&init_net);
Paul Moorec6480202016-11-29 16:53:25 -0500686 struct nlmsghdr *nlh;
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400687
Paul Moore5b523302017-03-21 11:26:35 -0400688 /* NOTE: we are not taking an additional reference for init_net since
689 * we don't have to worry about it going away */
690
Richard Guy Briggs7f74ecd2014-04-22 21:31:58 -0400691 if (!netlink_has_listeners(sock, AUDIT_NLGRP_READLOG))
692 return;
693
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400694 /*
695 * The seemingly wasteful skb_copy() rather than bumping the refcount
696 * using skb_get() is necessary because non-standard mods are made to
697 * the skb by the original kaudit unicast socket send routine. The
698 * existing auditd daemon assumes this breakage. Fixing this would
699 * require co-ordinating a change in the established protocol between
700 * the kaudit kernel subsystem and the auditd userspace code. There is
701 * no reason for new multicast clients to continue with this
702 * non-compliance.
703 */
Paul Moorec6480202016-11-29 16:53:25 -0500704 copy = skb_copy(skb, GFP_KERNEL);
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400705 if (!copy)
706 return;
Paul Moorec6480202016-11-29 16:53:25 -0500707 nlh = nlmsg_hdr(copy);
708 nlh->nlmsg_len = skb->len;
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400709
Paul Moorec6480202016-11-29 16:53:25 -0500710 nlmsg_multicast(sock, copy, 0, AUDIT_NLGRP_READLOG, GFP_KERNEL);
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400711}
712
Paul Moorec6480202016-11-29 16:53:25 -0500713/**
Paul Moore5b523302017-03-21 11:26:35 -0400714 * kauditd_thread - Worker thread to send audit records to userspace
715 * @dummy: unused
Richard Guy Briggsb551d1d2013-01-24 13:15:10 -0500716 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800717static int kauditd_thread(void *dummy)
David Woodhouseb7d11252005-05-19 10:56:58 +0100718{
Paul Moorec6480202016-11-29 16:53:25 -0500719 int rc;
Paul Moore5b523302017-03-21 11:26:35 -0400720 u32 portid = 0;
721 struct net *net = NULL;
722 struct sock *sk = NULL;
Paul Moore4aa838722016-11-29 16:53:24 -0500723
Paul Moorec6480202016-11-29 16:53:25 -0500724#define UNICAST_RETRIES 5
Paul Moorec6480202016-11-29 16:53:25 -0500725
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700726 set_freezable();
Andrew Morton4899b8b2006-10-06 00:43:48 -0700727 while (!kthread_should_stop()) {
Paul Moore5b523302017-03-21 11:26:35 -0400728 /* NOTE: see the lock comments in auditd_send_unicast_skb() */
729 rcu_read_lock();
730 if (!auditd_conn.pid) {
731 rcu_read_unlock();
732 goto main_queue;
733 }
734 net = auditd_conn.net;
735 get_net(net);
736 sk = audit_get_sk(net);
737 portid = auditd_conn.portid;
738 rcu_read_unlock();
Eric Parisf3d357b2008-04-18 10:02:28 -0400739
Paul Moorec6480202016-11-29 16:53:25 -0500740 /* attempt to flush the hold queue */
Paul Moore5b523302017-03-21 11:26:35 -0400741 rc = kauditd_send_queue(sk, portid,
742 &audit_hold_queue, UNICAST_RETRIES,
743 NULL, kauditd_rehold_skb);
744 if (rc < 0) {
745 sk = NULL;
Paul Moore264d5092017-04-10 11:16:59 -0400746 auditd_reset();
Paul Moore5b523302017-03-21 11:26:35 -0400747 goto main_queue;
David Woodhouseb7d11252005-05-19 10:56:58 +0100748 }
Richard Guy Briggs3320c512013-01-24 13:15:11 -0500749
Paul Moorec6480202016-11-29 16:53:25 -0500750 /* attempt to flush the retry queue */
Paul Moore5b523302017-03-21 11:26:35 -0400751 rc = kauditd_send_queue(sk, portid,
752 &audit_retry_queue, UNICAST_RETRIES,
753 NULL, kauditd_hold_skb);
754 if (rc < 0) {
755 sk = NULL;
Paul Moore264d5092017-04-10 11:16:59 -0400756 auditd_reset();
Paul Moore5b523302017-03-21 11:26:35 -0400757 goto main_queue;
Paul Moorec6480202016-11-29 16:53:25 -0500758 }
759
Paul Moore5b523302017-03-21 11:26:35 -0400760main_queue:
761 /* process the main queue - do the multicast send and attempt
762 * unicast, dump failed record sends to the retry queue; if
763 * sk == NULL due to previous failures we will just do the
764 * multicast send and move the record to the retry queue */
Paul Moore264d5092017-04-10 11:16:59 -0400765 rc = kauditd_send_queue(sk, portid, &audit_queue, 1,
766 kauditd_send_multicast_skb,
767 kauditd_retry_skb);
768 if (sk == NULL || rc < 0)
769 auditd_reset();
770 sk = NULL;
Paul Moore4aa838722016-11-29 16:53:24 -0500771
Paul Moore5b523302017-03-21 11:26:35 -0400772 /* drop our netns reference, no auditd sends past this line */
773 if (net) {
774 put_net(net);
775 net = NULL;
Richard Guy Briggs3320c512013-01-24 13:15:11 -0500776 }
Paul Moore5b523302017-03-21 11:26:35 -0400777
778 /* we have processed all the queues so wake everyone */
779 wake_up(&audit_backlog_wait);
780
781 /* NOTE: we want to wake up if there is anything on the queue,
782 * regardless of if an auditd is connected, as we need to
783 * do the multicast send and rotate records from the
784 * main queue to the retry/hold queues */
785 wait_event_freezable(kauditd_wait,
786 (skb_queue_len(&audit_queue) ? 1 : 0));
David Woodhouseb7d11252005-05-19 10:56:58 +0100787 }
Paul Moorec6480202016-11-29 16:53:25 -0500788
Andrew Morton4899b8b2006-10-06 00:43:48 -0700789 return 0;
David Woodhouseb7d11252005-05-19 10:56:58 +0100790}
791
Al Viro9044e6b2006-05-22 01:09:24 -0400792int audit_send_list(void *_dest)
793{
794 struct audit_netlink_list *dest = _dest;
Al Viro9044e6b2006-05-22 01:09:24 -0400795 struct sk_buff *skb;
Paul Moore5b523302017-03-21 11:26:35 -0400796 struct sock *sk = audit_get_sk(dest->net);
Al Viro9044e6b2006-05-22 01:09:24 -0400797
798 /* wait for parent to finish and send an ACK */
Amy Griffisf368c07d2006-04-07 16:55:56 -0400799 mutex_lock(&audit_cmd_mutex);
800 mutex_unlock(&audit_cmd_mutex);
Al Viro9044e6b2006-05-22 01:09:24 -0400801
802 while ((skb = __skb_dequeue(&dest->q)) != NULL)
Paul Moore5b523302017-03-21 11:26:35 -0400803 netlink_unicast(sk, skb, dest->portid, 0);
Al Viro9044e6b2006-05-22 01:09:24 -0400804
Paul Moore5b523302017-03-21 11:26:35 -0400805 put_net(dest->net);
Al Viro9044e6b2006-05-22 01:09:24 -0400806 kfree(dest);
807
808 return 0;
809}
810
Paul Moore45a06422017-05-02 10:16:05 -0400811struct sk_buff *audit_make_reply(int seq, int type, int done,
Stephen Hemmingerb8800aa2010-10-20 17:23:50 -0700812 int multi, const void *payload, int size)
Al Viro9044e6b2006-05-22 01:09:24 -0400813{
814 struct sk_buff *skb;
815 struct nlmsghdr *nlh;
Al Viro9044e6b2006-05-22 01:09:24 -0400816 void *data;
817 int flags = multi ? NLM_F_MULTI : 0;
818 int t = done ? NLMSG_DONE : type;
819
Eric Parisee080e62009-06-11 14:31:35 -0400820 skb = nlmsg_new(size, GFP_KERNEL);
Al Viro9044e6b2006-05-22 01:09:24 -0400821 if (!skb)
822 return NULL;
823
Paul Moore45a06422017-05-02 10:16:05 -0400824 nlh = nlmsg_put(skb, 0, seq, t, size, flags);
David S. Millerc64e66c2012-06-26 21:45:21 -0700825 if (!nlh)
826 goto out_kfree_skb;
827 data = nlmsg_data(nlh);
Al Viro9044e6b2006-05-22 01:09:24 -0400828 memcpy(data, payload, size);
829 return skb;
830
David S. Millerc64e66c2012-06-26 21:45:21 -0700831out_kfree_skb:
832 kfree_skb(skb);
Al Viro9044e6b2006-05-22 01:09:24 -0400833 return NULL;
834}
835
Eric Parisf09ac9d2008-04-18 10:11:04 -0400836static int audit_send_reply_thread(void *arg)
837{
838 struct audit_reply *reply = (struct audit_reply *)arg;
Paul Moore5b523302017-03-21 11:26:35 -0400839 struct sock *sk = audit_get_sk(reply->net);
Eric Parisf09ac9d2008-04-18 10:11:04 -0400840
841 mutex_lock(&audit_cmd_mutex);
842 mutex_unlock(&audit_cmd_mutex);
843
844 /* Ignore failure. It'll only happen if the sender goes away,
845 because our timeout is set to infinite. */
Paul Moore5b523302017-03-21 11:26:35 -0400846 netlink_unicast(sk, reply->skb, reply->portid, 0);
847 put_net(reply->net);
Eric Parisf09ac9d2008-04-18 10:11:04 -0400848 kfree(reply);
849 return 0;
850}
Paul Moorec6480202016-11-29 16:53:25 -0500851
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700852/**
853 * audit_send_reply - send an audit reply message via netlink
Eric W. Biedermand211f1772014-03-08 15:31:54 -0800854 * @request_skb: skb of request we are replying to (used to target the reply)
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700855 * @seq: sequence number
856 * @type: audit message type
857 * @done: done (last) flag
858 * @multi: multi-part message flag
859 * @payload: payload data
860 * @size: payload size
861 *
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400862 * Allocates an skb, builds the netlink message, and sends it to the port id.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700863 * No failure notifications.
864 */
Eric W. Biederman6f285b12014-02-28 19:44:55 -0800865static void audit_send_reply(struct sk_buff *request_skb, int seq, int type, int done,
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400866 int multi, const void *payload, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Eric W. Biederman6f285b12014-02-28 19:44:55 -0800868 struct net *net = sock_net(NETLINK_CB(request_skb).sk);
Eric Parisf09ac9d2008-04-18 10:11:04 -0400869 struct sk_buff *skb;
870 struct task_struct *tsk;
871 struct audit_reply *reply = kmalloc(sizeof(struct audit_reply),
872 GFP_KERNEL);
873
874 if (!reply)
875 return;
876
Paul Moore45a06422017-05-02 10:16:05 -0400877 skb = audit_make_reply(seq, type, done, multi, payload, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (!skb)
Andrew Mortonfcaf1eb2008-05-14 16:11:48 -0700879 goto out;
Eric Parisf09ac9d2008-04-18 10:11:04 -0400880
Eric W. Biederman6f285b12014-02-28 19:44:55 -0800881 reply->net = get_net(net);
Paul Moore45a06422017-05-02 10:16:05 -0400882 reply->portid = NETLINK_CB(request_skb).portid;
Eric Parisf09ac9d2008-04-18 10:11:04 -0400883 reply->skb = skb;
884
885 tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply");
Andrew Mortonfcaf1eb2008-05-14 16:11:48 -0700886 if (!IS_ERR(tsk))
887 return;
888 kfree_skb(skb);
889out:
890 kfree(reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
893/*
894 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
895 * control messages.
896 */
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700897static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 int err = 0;
900
Richard Guy Briggs5a3cb3b2013-08-16 00:04:46 -0400901 /* Only support initial user namespace for now. */
Eric Parisaa4af832014-03-30 19:07:54 -0400902 /*
903 * We return ECONNREFUSED because it tricks userspace into thinking
904 * that audit was not configured into the kernel. Lots of users
905 * configure their PAM stack (because that's what the distro does)
906 * to reject login if unable to send messages to audit. If we return
907 * ECONNREFUSED the PAM stack thinks the kernel does not have audit
908 * configured in and will let login proceed. If we return EPERM
909 * userspace will reject all logins. This should be removed when we
910 * support non init namespaces!!
911 */
Linus Torvalds0b747172014-04-12 12:38:53 -0700912 if (current_user_ns() != &init_user_ns)
Eric Parisaa4af832014-03-30 19:07:54 -0400913 return -ECONNREFUSED;
Eric W. Biederman34e36d8e2012-09-10 23:20:20 -0700914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 switch (msg_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 case AUDIT_LIST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 case AUDIT_ADD:
918 case AUDIT_DEL:
Eric Paris18900902013-04-18 19:16:36 -0400919 return -EOPNOTSUPP;
920 case AUDIT_GET:
921 case AUDIT_SET:
Eric Parisb0fed402013-05-22 12:54:49 -0400922 case AUDIT_GET_FEATURE:
923 case AUDIT_SET_FEATURE:
Eric Paris18900902013-04-18 19:16:36 -0400924 case AUDIT_LIST_RULES:
925 case AUDIT_ADD_RULE:
Amy Griffis93315ed2006-02-07 12:05:27 -0500926 case AUDIT_DEL_RULE:
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100927 case AUDIT_SIGNAL_INFO:
Miloslav Trmac522ed772007-07-15 23:40:56 -0700928 case AUDIT_TTY_GET:
929 case AUDIT_TTY_SET:
Al Viro74c3cbe2007-07-22 08:04:18 -0400930 case AUDIT_TRIM:
931 case AUDIT_MAKE_EQUIV:
Richard Guy Briggs5a3cb3b2013-08-16 00:04:46 -0400932 /* Only support auditd and auditctl in initial pid namespace
933 * for now. */
Ameen Ali5985de62015-02-23 15:38:00 -0500934 if (task_active_pid_ns(current) != &init_pid_ns)
Richard Guy Briggs5a3cb3b2013-08-16 00:04:46 -0400935 return -EPERM;
936
Eric W. Biederman90f62cf32014-04-23 14:29:27 -0700937 if (!netlink_capable(skb, CAP_AUDIT_CONTROL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 err = -EPERM;
939 break;
Steve Grubb05474102005-05-21 00:18:37 +0100940 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -0700941 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
942 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
Eric W. Biederman90f62cf32014-04-23 14:29:27 -0700943 if (!netlink_capable(skb, CAP_AUDIT_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 err = -EPERM;
945 break;
946 default: /* bad msg */
947 err = -EINVAL;
948 }
949
950 return err;
951}
952
Paul Moore233a6862015-11-04 08:23:52 -0500953static void audit_log_common_recv_msg(struct audit_buffer **ab, u16 msg_type)
Eric Paris50397bd2008-01-07 18:14:19 -0500954{
Eric Parisdc9eb692013-04-19 13:23:09 -0400955 uid_t uid = from_kuid(&init_user_ns, current_uid());
Richard Guy Briggsf1dc4862013-12-11 13:52:26 -0500956 pid_t pid = task_tgid_nr(current);
Eric Paris50397bd2008-01-07 18:14:19 -0500957
Tyler Hicks0868a5e2013-07-25 18:02:55 -0700958 if (!audit_enabled && msg_type != AUDIT_USER_AVC) {
Eric Paris50397bd2008-01-07 18:14:19 -0500959 *ab = NULL;
Paul Moore233a6862015-11-04 08:23:52 -0500960 return;
Eric Paris50397bd2008-01-07 18:14:19 -0500961 }
962
963 *ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
Kees Cook0644ec02013-01-11 14:32:07 -0800964 if (unlikely(!*ab))
Paul Moore233a6862015-11-04 08:23:52 -0500965 return;
Richard Guy Briggsf1dc4862013-12-11 13:52:26 -0500966 audit_log_format(*ab, "pid=%d uid=%u", pid, uid);
Eric Paris4d3fb702013-04-30 09:53:34 -0400967 audit_log_session_info(*ab);
Eric Parisb122c372013-04-19 15:00:33 -0400968 audit_log_task_context(*ab);
Eric Paris50397bd2008-01-07 18:14:19 -0500969}
970
Eric Parisb0fed402013-05-22 12:54:49 -0400971int is_audit_feature_set(int i)
972{
973 return af.features & AUDIT_FEATURE_TO_MASK(i);
974}
975
976
977static int audit_get_feature(struct sk_buff *skb)
978{
979 u32 seq;
980
981 seq = nlmsg_hdr(skb)->nlmsg_seq;
982
Richard Guy Briggs9ef91512014-08-24 20:37:52 -0400983 audit_send_reply(skb, seq, AUDIT_GET_FEATURE, 0, 0, &af, sizeof(af));
Eric Parisb0fed402013-05-22 12:54:49 -0400984
985 return 0;
986}
987
988static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature,
989 u32 old_lock, u32 new_lock, int res)
990{
991 struct audit_buffer *ab;
992
Gao fengb6c50fe2013-11-01 19:34:43 +0800993 if (audit_enabled == AUDIT_OFF)
994 return;
995
Eric Parisb0fed402013-05-22 12:54:49 -0400996 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_FEATURE_CHANGE);
Richard Guy Briggsad2ac262014-01-07 13:08:41 -0500997 audit_log_task_info(ab, current);
Richard Guy Briggs897f1ac2014-10-30 11:22:53 -0400998 audit_log_format(ab, " feature=%s old=%u new=%u old_lock=%u new_lock=%u res=%d",
Eric Parisb0fed402013-05-22 12:54:49 -0400999 audit_feature_names[which], !!old_feature, !!new_feature,
1000 !!old_lock, !!new_lock, res);
1001 audit_log_end(ab);
1002}
1003
1004static int audit_set_feature(struct sk_buff *skb)
1005{
1006 struct audit_features *uaf;
1007 int i;
1008
Fabian Frederick6eed9b22014-06-03 22:05:10 +02001009 BUILD_BUG_ON(AUDIT_LAST_FEATURE + 1 > ARRAY_SIZE(audit_feature_names));
Eric Parisb0fed402013-05-22 12:54:49 -04001010 uaf = nlmsg_data(nlmsg_hdr(skb));
1011
1012 /* if there is ever a version 2 we should handle that here */
1013
1014 for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
1015 u32 feature = AUDIT_FEATURE_TO_MASK(i);
1016 u32 old_feature, new_feature, old_lock, new_lock;
1017
1018 /* if we are not changing this feature, move along */
1019 if (!(feature & uaf->mask))
1020 continue;
1021
1022 old_feature = af.features & feature;
1023 new_feature = uaf->features & feature;
1024 new_lock = (uaf->lock | af.lock) & feature;
1025 old_lock = af.lock & feature;
1026
1027 /* are we changing a locked feature? */
Gao feng4547b3b2013-11-01 19:34:44 +08001028 if (old_lock && (new_feature != old_feature)) {
Eric Parisb0fed402013-05-22 12:54:49 -04001029 audit_log_feature_change(i, old_feature, new_feature,
1030 old_lock, new_lock, 0);
1031 return -EPERM;
1032 }
1033 }
1034 /* nothing invalid, do the changes */
1035 for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
1036 u32 feature = AUDIT_FEATURE_TO_MASK(i);
1037 u32 old_feature, new_feature, old_lock, new_lock;
1038
1039 /* if we are not changing this feature, move along */
1040 if (!(feature & uaf->mask))
1041 continue;
1042
1043 old_feature = af.features & feature;
1044 new_feature = uaf->features & feature;
1045 old_lock = af.lock & feature;
1046 new_lock = (uaf->lock | af.lock) & feature;
1047
1048 if (new_feature != old_feature)
1049 audit_log_feature_change(i, old_feature, new_feature,
1050 old_lock, new_lock, 1);
1051
1052 if (new_feature)
1053 af.features |= feature;
1054 else
1055 af.features &= ~feature;
1056 af.lock |= new_lock;
1057 }
1058
1059 return 0;
1060}
1061
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001062static int audit_replace(pid_t pid)
1063{
Paul Moore5b523302017-03-21 11:26:35 -04001064 struct sk_buff *skb;
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001065
Paul Moore45a06422017-05-02 10:16:05 -04001066 skb = audit_make_reply(0, AUDIT_REPLACE, 0, 0, &pid, sizeof(pid));
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001067 if (!skb)
1068 return -ENOMEM;
Paul Moore5b523302017-03-21 11:26:35 -04001069 return auditd_send_unicast_skb(skb);
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001070}
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1073{
Eric Parisdc9eb692013-04-19 13:23:09 -04001074 u32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 int err;
Steve Grubbc0404992005-05-13 18:17:42 +01001077 struct audit_buffer *ab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 u16 msg_type = nlh->nlmsg_type;
Al Viroe1396062006-05-25 10:19:47 -04001079 struct audit_sig_info *sig_data;
Eric Paris50397bd2008-01-07 18:14:19 -05001080 char *ctx = NULL;
Al Viroe1396062006-05-25 10:19:47 -04001081 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Darrel Goeddelc7bdb542006-06-27 13:26:11 -07001083 err = audit_netlink_ok(skb, msg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (err)
1085 return err;
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 seq = nlh->nlmsg_seq;
David S. Millerc64e66c2012-06-26 21:45:21 -07001088 data = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 switch (msg_type) {
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001091 case AUDIT_GET: {
1092 struct audit_status s;
1093 memset(&s, 0, sizeof(s));
1094 s.enabled = audit_enabled;
1095 s.failure = audit_failure;
Paul Moore5b523302017-03-21 11:26:35 -04001096 rcu_read_lock();
1097 s.pid = auditd_conn.pid;
1098 rcu_read_unlock();
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001099 s.rate_limit = audit_rate_limit;
1100 s.backlog_limit = audit_backlog_limit;
1101 s.lost = atomic_read(&audit_lost);
Paul Mooreaf8b8242016-11-29 16:53:24 -05001102 s.backlog = skb_queue_len(&audit_queue);
Richard Guy Briggs0288d712014-11-17 15:51:01 -05001103 s.feature_bitmap = AUDIT_FEATURE_BITMAP_ALL;
Paul Moore31975422016-11-29 16:53:25 -05001104 s.backlog_wait_time = audit_backlog_wait_time;
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001105 audit_send_reply(skb, seq, AUDIT_GET, 0, 0, &s, sizeof(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 break;
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001107 }
1108 case AUDIT_SET: {
1109 struct audit_status s;
1110 memset(&s, 0, sizeof(s));
1111 /* guard against past and future API changes */
1112 memcpy(&s, data, min_t(size_t, sizeof(s), nlmsg_len(nlh)));
1113 if (s.mask & AUDIT_STATUS_ENABLED) {
1114 err = audit_set_enabled(s.enabled);
zhangxiliang20c6aaa2008-07-31 10:11:19 +08001115 if (err < 0)
1116 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001118 if (s.mask & AUDIT_STATUS_FAILURE) {
1119 err = audit_set_failure(s.failure);
zhangxiliang20c6aaa2008-07-31 10:11:19 +08001120 if (err < 0)
1121 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001123 if (s.mask & AUDIT_STATUS_PID) {
Paul Moorefa2bea22016-08-30 17:19:13 -04001124 /* NOTE: we are using task_tgid_vnr() below because
1125 * the s.pid value is relative to the namespace
1126 * of the caller; at present this doesn't matter
1127 * much since you can really only run auditd
1128 * from the initial pid namespace, but something
1129 * to keep in mind if this changes */
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001130 int new_pid = s.pid;
Paul Moore5b523302017-03-21 11:26:35 -04001131 pid_t auditd_pid;
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001132 pid_t requesting_pid = task_tgid_vnr(current);
Eric Paris1a6b9f22008-01-07 17:09:31 -05001133
Paul Moore5b523302017-03-21 11:26:35 -04001134 /* test the auditd connection */
1135 audit_replace(requesting_pid);
1136
1137 rcu_read_lock();
1138 auditd_pid = auditd_conn.pid;
1139 /* only the current auditd can unregister itself */
1140 if ((!new_pid) && (requesting_pid != auditd_pid)) {
1141 rcu_read_unlock();
1142 audit_log_config_change("audit_pid", new_pid,
1143 auditd_pid, 0);
Richard Guy Briggs34eab0a2013-06-21 14:47:13 -04001144 return -EACCES;
Richard Guy Briggs935c9e72016-01-25 18:04:15 -05001145 }
Paul Moore5b523302017-03-21 11:26:35 -04001146 /* replacing a healthy auditd is not allowed */
1147 if (auditd_pid && new_pid) {
1148 rcu_read_unlock();
1149 audit_log_config_change("audit_pid", new_pid,
1150 auditd_pid, 0);
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001151 return -EEXIST;
Richard Guy Briggs935c9e72016-01-25 18:04:15 -05001152 }
Paul Moore5b523302017-03-21 11:26:35 -04001153 rcu_read_unlock();
1154
Eric Paris1a6b9f22008-01-07 17:09:31 -05001155 if (audit_enabled != AUDIT_OFF)
Paul Moore5b523302017-03-21 11:26:35 -04001156 audit_log_config_change("audit_pid", new_pid,
1157 auditd_pid, 1);
1158
Richard Guy Briggs533c7b62016-12-13 10:03:01 -05001159 if (new_pid) {
Paul Moore5b523302017-03-21 11:26:35 -04001160 /* register a new auditd connection */
1161 auditd_set(new_pid,
1162 NETLINK_CB(skb).portid,
1163 sock_net(NETLINK_CB(skb).sk));
1164 /* try to process any backlog */
1165 wake_up_interruptible(&kauditd_wait);
1166 } else
1167 /* unregister the auditd connection */
Paul Moore6c54e782016-11-29 16:53:26 -05001168 auditd_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001170 if (s.mask & AUDIT_STATUS_RATE_LIMIT) {
1171 err = audit_set_rate_limit(s.rate_limit);
zhangxiliang20c6aaa2008-07-31 10:11:19 +08001172 if (err < 0)
1173 return err;
1174 }
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -04001175 if (s.mask & AUDIT_STATUS_BACKLOG_LIMIT) {
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001176 err = audit_set_backlog_limit(s.backlog_limit);
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -04001177 if (err < 0)
1178 return err;
1179 }
Eric Paris3f0c5fa2014-01-13 16:49:28 -05001180 if (s.mask & AUDIT_STATUS_BACKLOG_WAIT_TIME) {
1181 if (sizeof(s) > (size_t)nlh->nlmsg_len)
1182 return -EINVAL;
Pranith Kumar724e7bf2015-03-11 14:08:19 -04001183 if (s.backlog_wait_time > 10*AUDIT_BACKLOG_WAIT_TIME)
Eric Paris3f0c5fa2014-01-13 16:49:28 -05001184 return -EINVAL;
1185 err = audit_set_backlog_wait_time(s.backlog_wait_time);
1186 if (err < 0)
1187 return err;
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -04001188 }
Richard Guy Briggs92c82e82017-01-13 03:26:29 -05001189 if (s.mask == AUDIT_STATUS_LOST) {
1190 u32 lost = atomic_xchg(&audit_lost, 0);
1191
1192 audit_log_config_change("lost", 0, lost, 1);
1193 return lost;
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 break;
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001196 }
Eric Parisb0fed402013-05-22 12:54:49 -04001197 case AUDIT_GET_FEATURE:
1198 err = audit_get_feature(skb);
1199 if (err)
1200 return err;
1201 break;
1202 case AUDIT_SET_FEATURE:
1203 err = audit_set_feature(skb);
1204 if (err)
1205 return err;
1206 break;
Steve Grubb05474102005-05-21 00:18:37 +01001207 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -07001208 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
1209 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
David Woodhouse4a4cd632005-06-22 14:56:47 +01001210 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
1211 return 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +01001212
Richard Guy Briggs86b2efb2016-06-24 16:35:46 -04001213 err = audit_filter(msg_type, AUDIT_FILTER_USER);
Richard Guy Briggs724e4fc2013-11-25 21:57:51 -05001214 if (err == 1) { /* match or error */
David Woodhouse4a4cd632005-06-22 14:56:47 +01001215 err = 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001216 if (msg_type == AUDIT_USER_TTY) {
Peter Hurley37282a72016-01-09 22:55:31 -08001217 err = tty_audit_push();
Miloslav Trmac522ed772007-07-15 23:40:56 -07001218 if (err)
1219 break;
1220 }
Eric Parisdc9eb692013-04-19 13:23:09 -04001221 audit_log_common_recv_msg(&ab, msg_type);
Eric Paris50397bd2008-01-07 18:14:19 -05001222 if (msg_type != AUDIT_USER_TTY)
Richard Guy Briggsb50eba72013-09-16 18:20:42 -04001223 audit_log_format(ab, " msg='%.*s'",
1224 AUDIT_MESSAGE_TEXT_MAX,
Eric Paris50397bd2008-01-07 18:14:19 -05001225 (char *)data);
1226 else {
1227 int size;
1228
Eric Parisf7616102013-04-11 11:25:00 -04001229 audit_log_format(ab, " data=");
Eric Paris50397bd2008-01-07 18:14:19 -05001230 size = nlmsg_len(nlh);
Miloslav Trmac55ad2f82009-03-19 09:52:47 -04001231 if (size > 0 &&
1232 ((unsigned char *)data)[size - 1] == '\0')
1233 size--;
Eric Parisb556f8a2008-04-18 10:12:59 -04001234 audit_log_n_untrustedstring(ab, data, size);
David Woodhouse4a4cd632005-06-22 14:56:47 +01001235 }
Eric Paris50397bd2008-01-07 18:14:19 -05001236 audit_log_end(ab);
David Woodhouse0f45aa12005-06-19 19:35:50 +01001237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 break;
Amy Griffis93315ed2006-02-07 12:05:27 -05001239 case AUDIT_ADD_RULE:
1240 case AUDIT_DEL_RULE:
1241 if (nlmsg_len(nlh) < sizeof(struct audit_rule_data))
1242 return -EINVAL;
Eric Paris1a6b9f22008-01-07 17:09:31 -05001243 if (audit_enabled == AUDIT_LOCKED) {
Eric Parisdc9eb692013-04-19 13:23:09 -04001244 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
1245 audit_log_format(ab, " audit_enabled=%d res=0", audit_enabled);
Eric Paris50397bd2008-01-07 18:14:19 -05001246 audit_log_end(ab);
Steve Grubb6a01b07f2007-01-19 14:39:55 -05001247 return -EPERM;
1248 }
Paul Moore45a06422017-05-02 10:16:05 -04001249 err = audit_rule_change(msg_type, seq, data, nlmsg_len(nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 break;
Richard Guy Briggsce0d9f02013-11-20 14:01:53 -05001251 case AUDIT_LIST_RULES:
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001252 err = audit_list_rules_send(skb, seq);
Richard Guy Briggsce0d9f02013-11-20 14:01:53 -05001253 break;
Al Viro74c3cbe2007-07-22 08:04:18 -04001254 case AUDIT_TRIM:
1255 audit_trim_trees();
Eric Parisdc9eb692013-04-19 13:23:09 -04001256 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
Al Viro74c3cbe2007-07-22 08:04:18 -04001257 audit_log_format(ab, " op=trim res=1");
1258 audit_log_end(ab);
1259 break;
1260 case AUDIT_MAKE_EQUIV: {
1261 void *bufp = data;
1262 u32 sizes[2];
Harvey Harrison7719e432008-04-27 02:39:56 -07001263 size_t msglen = nlmsg_len(nlh);
Al Viro74c3cbe2007-07-22 08:04:18 -04001264 char *old, *new;
1265
1266 err = -EINVAL;
Harvey Harrison7719e432008-04-27 02:39:56 -07001267 if (msglen < 2 * sizeof(u32))
Al Viro74c3cbe2007-07-22 08:04:18 -04001268 break;
1269 memcpy(sizes, bufp, 2 * sizeof(u32));
1270 bufp += 2 * sizeof(u32);
Harvey Harrison7719e432008-04-27 02:39:56 -07001271 msglen -= 2 * sizeof(u32);
1272 old = audit_unpack_string(&bufp, &msglen, sizes[0]);
Al Viro74c3cbe2007-07-22 08:04:18 -04001273 if (IS_ERR(old)) {
1274 err = PTR_ERR(old);
1275 break;
1276 }
Harvey Harrison7719e432008-04-27 02:39:56 -07001277 new = audit_unpack_string(&bufp, &msglen, sizes[1]);
Al Viro74c3cbe2007-07-22 08:04:18 -04001278 if (IS_ERR(new)) {
1279 err = PTR_ERR(new);
1280 kfree(old);
1281 break;
1282 }
1283 /* OK, here comes... */
1284 err = audit_tag_tree(old, new);
1285
Eric Parisdc9eb692013-04-19 13:23:09 -04001286 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
Eric Paris50397bd2008-01-07 18:14:19 -05001287
Al Viro74c3cbe2007-07-22 08:04:18 -04001288 audit_log_format(ab, " op=make_equiv old=");
1289 audit_log_untrustedstring(ab, old);
1290 audit_log_format(ab, " new=");
1291 audit_log_untrustedstring(ab, new);
1292 audit_log_format(ab, " res=%d", !err);
1293 audit_log_end(ab);
1294 kfree(old);
1295 kfree(new);
1296 break;
1297 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001298 case AUDIT_SIGNAL_INFO:
Eric Paris939cbf22009-09-23 13:46:00 -04001299 len = 0;
1300 if (audit_sig_sid) {
1301 err = security_secid_to_secctx(audit_sig_sid, &ctx, &len);
1302 if (err)
1303 return err;
1304 }
Al Viroe1396062006-05-25 10:19:47 -04001305 sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL);
1306 if (!sig_data) {
Eric Paris939cbf22009-09-23 13:46:00 -04001307 if (audit_sig_sid)
1308 security_release_secctx(ctx, len);
Al Viroe1396062006-05-25 10:19:47 -04001309 return -ENOMEM;
1310 }
Eric W. Biedermancca080d2012-02-07 16:53:48 -08001311 sig_data->uid = from_kuid(&init_user_ns, audit_sig_uid);
Al Viroe1396062006-05-25 10:19:47 -04001312 sig_data->pid = audit_sig_pid;
Eric Paris939cbf22009-09-23 13:46:00 -04001313 if (audit_sig_sid) {
1314 memcpy(sig_data->ctx, ctx, len);
1315 security_release_secctx(ctx, len);
1316 }
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001317 audit_send_reply(skb, seq, AUDIT_SIGNAL_INFO, 0, 0,
1318 sig_data, sizeof(*sig_data) + len);
Al Viroe1396062006-05-25 10:19:47 -04001319 kfree(sig_data);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001320 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001321 case AUDIT_TTY_GET: {
1322 struct audit_tty_status s;
Peter Hurley2e28d382016-01-09 22:55:33 -08001323 unsigned int t;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001324
Peter Hurley2e28d382016-01-09 22:55:33 -08001325 t = READ_ONCE(current->signal->audit_tty);
1326 s.enabled = t & AUDIT_TTY_ENABLE;
1327 s.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
Thomas Gleixner20703202009-12-09 14:19:35 +00001328
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001329 audit_send_reply(skb, seq, AUDIT_TTY_GET, 0, 0, &s, sizeof(s));
Miloslav Trmac522ed772007-07-15 23:40:56 -07001330 break;
1331 }
1332 case AUDIT_TTY_SET: {
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001333 struct audit_tty_status s, old;
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001334 struct audit_buffer *ab;
Peter Hurley2e28d382016-01-09 22:55:33 -08001335 unsigned int t;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001336
Richard Guy Briggs46e959e2013-05-03 14:03:50 -04001337 memset(&s, 0, sizeof(s));
1338 /* guard against past and future API changes */
Mathias Krause4d8fe732013-09-30 22:04:25 +02001339 memcpy(&s, data, min_t(size_t, sizeof(s), nlmsg_len(nlh)));
Eric Paris0e23bac2014-01-13 21:12:34 -05001340 /* check if new data is valid */
1341 if ((s.enabled != 0 && s.enabled != 1) ||
1342 (s.log_passwd != 0 && s.log_passwd != 1))
1343 err = -EINVAL;
1344
Peter Hurley2e28d382016-01-09 22:55:33 -08001345 if (err)
1346 t = READ_ONCE(current->signal->audit_tty);
1347 else {
1348 t = s.enabled | (-s.log_passwd & AUDIT_TTY_LOG_PASSWD);
1349 t = xchg(&current->signal->audit_tty, t);
Eric Paris0e23bac2014-01-13 21:12:34 -05001350 }
Peter Hurley2e28d382016-01-09 22:55:33 -08001351 old.enabled = t & AUDIT_TTY_ENABLE;
1352 old.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
Eric Paris0e23bac2014-01-13 21:12:34 -05001353
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001354 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
Eric Paris1ce319f2014-01-13 21:16:59 -05001355 audit_log_format(ab, " op=tty_set old-enabled=%d new-enabled=%d"
1356 " old-log_passwd=%d new-log_passwd=%d res=%d",
1357 old.enabled, s.enabled, old.log_passwd,
1358 s.log_passwd, !err);
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001359 audit_log_end(ab);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001360 break;
1361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 default:
1363 err = -EINVAL;
1364 break;
1365 }
1366
1367 return err < 0 ? err : 0;
1368}
1369
Paul Moorea9d16202017-05-02 10:16:05 -04001370/**
1371 * audit_receive - receive messages from a netlink control socket
1372 * @skb: the message buffer
1373 *
1374 * Parse the provided skb and deal with any messages that may be present,
1375 * malformed skbs are discarded.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001376 */
Paul Moorea9d16202017-05-02 10:16:05 -04001377static void audit_receive(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Eric Parisea7ae602009-06-11 14:31:35 -04001379 struct nlmsghdr *nlh;
1380 /*
Hong zhi guo94191212013-03-27 06:49:06 +00001381 * len MUST be signed for nlmsg_next to be able to dec it below 0
Eric Parisea7ae602009-06-11 14:31:35 -04001382 * if the nlmsg_len was not aligned
1383 */
1384 int len;
1385 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Eric Parisea7ae602009-06-11 14:31:35 -04001387 nlh = nlmsg_hdr(skb);
1388 len = skb->len;
1389
Paul Moorea9d16202017-05-02 10:16:05 -04001390 mutex_lock(&audit_cmd_mutex);
Hong zhi guo94191212013-03-27 06:49:06 +00001391 while (nlmsg_ok(nlh, len)) {
Eric Parisea7ae602009-06-11 14:31:35 -04001392 err = audit_receive_msg(skb, nlh);
1393 /* if err or if this message says it wants a response */
1394 if (err || (nlh->nlmsg_flags & NLM_F_ACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 netlink_ack(skb, nlh, err);
Eric Parisea7ae602009-06-11 14:31:35 -04001396
Alexandru Copot2851da52013-03-28 23:31:29 +02001397 nlh = nlmsg_next(nlh, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
Amy Griffisf368c07d2006-04-07 16:55:56 -04001399 mutex_unlock(&audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Richard Guy Briggs3a101b82014-04-22 21:31:56 -04001402/* Run custom bind function on netlink socket group connect or bind requests. */
Johannes Berg023e2cf2014-12-23 21:00:06 +01001403static int audit_bind(struct net *net, int group)
Richard Guy Briggs3a101b82014-04-22 21:31:56 -04001404{
1405 if (!capable(CAP_AUDIT_READ))
1406 return -EPERM;
1407
1408 return 0;
1409}
1410
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001411static int __net_init audit_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001413 struct netlink_kernel_cfg cfg = {
1414 .input = audit_receive,
Richard Guy Briggs3a101b82014-04-22 21:31:56 -04001415 .bind = audit_bind,
Richard Guy Briggs451f9212014-04-22 21:31:57 -04001416 .flags = NL_CFG_F_NONROOT_RECV,
1417 .groups = AUDIT_NLGRP_MAX,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001418 };
Amy Griffisf368c07d2006-04-07 16:55:56 -04001419
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001420 struct audit_net *aunet = net_generic(net, audit_net_id);
1421
Paul Moore5b523302017-03-21 11:26:35 -04001422 aunet->sk = netlink_kernel_create(net, NETLINK_AUDIT, &cfg);
1423 if (aunet->sk == NULL) {
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001424 audit_panic("cannot initialize netlink socket in namespace");
Gao feng11ee39e2013-12-17 11:10:41 +08001425 return -ENOMEM;
1426 }
Paul Moore5b523302017-03-21 11:26:35 -04001427 aunet->sk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
1428
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001429 return 0;
1430}
1431
1432static void __net_exit audit_net_exit(struct net *net)
1433{
1434 struct audit_net *aunet = net_generic(net, audit_net_id);
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001435
Paul Moore5b523302017-03-21 11:26:35 -04001436 rcu_read_lock();
1437 if (net == auditd_conn.net)
1438 auditd_reset();
1439 rcu_read_unlock();
1440
1441 netlink_kernel_release(aunet->sk);
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001442}
1443
Richard Guy Briggs86268772013-07-16 13:18:45 -04001444static struct pernet_operations audit_net_ops __net_initdata = {
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001445 .init = audit_net_init,
1446 .exit = audit_net_exit,
1447 .id = &audit_net_id,
1448 .size = sizeof(struct audit_net),
1449};
1450
1451/* Initialize audit support at boot time. */
1452static int __init audit_init(void)
1453{
1454 int i;
1455
Eric Parisa3f07112008-11-05 12:47:09 -05001456 if (audit_initialized == AUDIT_DISABLED)
1457 return 0;
1458
Paul Moore5b523302017-03-21 11:26:35 -04001459 memset(&auditd_conn, 0, sizeof(auditd_conn));
1460 spin_lock_init(&auditd_conn.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Paul Mooreaf8b8242016-11-29 16:53:24 -05001462 skb_queue_head_init(&audit_queue);
Paul Moorec6480202016-11-29 16:53:25 -05001463 skb_queue_head_init(&audit_retry_queue);
Paul Mooreaf8b8242016-11-29 16:53:24 -05001464 skb_queue_head_init(&audit_hold_queue);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001465
Amy Griffisf368c07d2006-04-07 16:55:56 -04001466 for (i = 0; i < AUDIT_INODE_BUCKETS; i++)
1467 INIT_LIST_HEAD(&audit_inode_hash[i]);
Amy Griffisf368c07d2006-04-07 16:55:56 -04001468
Paul Moore5b523302017-03-21 11:26:35 -04001469 pr_info("initializing netlink subsys (%s)\n",
1470 audit_default ? "enabled" : "disabled");
1471 register_pernet_subsys(&audit_net_ops);
1472
1473 audit_initialized = AUDIT_INITIALIZED;
1474 audit_enabled = audit_default;
1475 audit_ever_enabled |= !!audit_default;
1476
Paul Moore6c9255642016-11-29 16:53:23 -05001477 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
1478 if (IS_ERR(kauditd_task)) {
1479 int err = PTR_ERR(kauditd_task);
1480 panic("audit: failed to start the kauditd thread (%d)\n", err);
1481 }
1482
Steve Grubb7c397d02016-12-14 15:59:46 -05001483 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL,
1484 "state=initialized audit_enabled=%u res=1",
1485 audit_enabled);
Paul Moore6c9255642016-11-29 16:53:23 -05001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return 0;
1488}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489__initcall(audit_init);
1490
1491/* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
1492static int __init audit_enable(char *str)
1493{
1494 audit_default = !!simple_strtol(str, NULL, 0);
Eric Parisa3f07112008-11-05 12:47:09 -05001495 if (!audit_default)
1496 audit_initialized = AUDIT_DISABLED;
1497
Joe Perchesd957f7b2014-01-14 10:33:12 -08001498 pr_info("%s\n", audit_default ?
Gao fengd3ca0342013-10-31 14:31:01 +08001499 "enabled (after initialization)" : "disabled (until reboot)");
Eric Parisa3f07112008-11-05 12:47:09 -05001500
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001501 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503__setup("audit=", audit_enable);
1504
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001505/* Process kernel command-line parameter at boot time.
1506 * audit_backlog_limit=<n> */
1507static int __init audit_backlog_limit_set(char *str)
1508{
Joe Perches3e1d0bb2014-01-14 10:33:13 -08001509 u32 audit_backlog_limit_arg;
Joe Perchesd957f7b2014-01-14 10:33:12 -08001510
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001511 pr_info("audit_backlog_limit: ");
Joe Perches3e1d0bb2014-01-14 10:33:13 -08001512 if (kstrtouint(str, 0, &audit_backlog_limit_arg)) {
1513 pr_cont("using default of %u, unable to parse %s\n",
Joe Perchesd957f7b2014-01-14 10:33:12 -08001514 audit_backlog_limit, str);
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001515 return 1;
1516 }
Joe Perches3e1d0bb2014-01-14 10:33:13 -08001517
1518 audit_backlog_limit = audit_backlog_limit_arg;
Joe Perchesd957f7b2014-01-14 10:33:12 -08001519 pr_cont("%d\n", audit_backlog_limit);
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001520
1521 return 1;
1522}
1523__setup("audit_backlog_limit=", audit_backlog_limit_set);
1524
Chris Wright16e19042005-05-06 15:53:34 +01001525static void audit_buffer_free(struct audit_buffer *ab)
1526{
1527 unsigned long flags;
1528
Chris Wright8fc61152005-05-06 15:54:17 +01001529 if (!ab)
1530 return;
1531
Markus Elfringd865e572016-01-13 09:18:55 -05001532 kfree_skb(ab->skb);
Chris Wright16e19042005-05-06 15:53:34 +01001533 spin_lock_irqsave(&audit_freelist_lock, flags);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -05001534 if (audit_freelist_count > AUDIT_MAXFREE)
Chris Wright16e19042005-05-06 15:53:34 +01001535 kfree(ab);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -05001536 else {
1537 audit_freelist_count++;
Chris Wright16e19042005-05-06 15:53:34 +01001538 list_add(&ab->list, &audit_freelist);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -05001539 }
Chris Wright16e19042005-05-06 15:53:34 +01001540 spin_unlock_irqrestore(&audit_freelist_lock, flags);
1541}
1542
Steve Grubbc0404992005-05-13 18:17:42 +01001543static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
Al Virodd0fc662005-10-07 07:46:04 +01001544 gfp_t gfp_mask, int type)
Chris Wright16e19042005-05-06 15:53:34 +01001545{
1546 unsigned long flags;
1547 struct audit_buffer *ab = NULL;
Steve Grubbc0404992005-05-13 18:17:42 +01001548 struct nlmsghdr *nlh;
Chris Wright16e19042005-05-06 15:53:34 +01001549
1550 spin_lock_irqsave(&audit_freelist_lock, flags);
1551 if (!list_empty(&audit_freelist)) {
1552 ab = list_entry(audit_freelist.next,
1553 struct audit_buffer, list);
1554 list_del(&ab->list);
1555 --audit_freelist_count;
1556 }
1557 spin_unlock_irqrestore(&audit_freelist_lock, flags);
1558
1559 if (!ab) {
David Woodhouse4332bdd2005-05-06 15:59:57 +01001560 ab = kmalloc(sizeof(*ab), gfp_mask);
Chris Wright16e19042005-05-06 15:53:34 +01001561 if (!ab)
Chris Wright8fc61152005-05-06 15:54:17 +01001562 goto err;
Chris Wright16e19042005-05-06 15:53:34 +01001563 }
Chris Wright8fc61152005-05-06 15:54:17 +01001564
David Woodhouseb7d11252005-05-19 10:56:58 +01001565 ab->ctx = ctx;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001566 ab->gfp_mask = gfp_mask;
Eric Parisee080e62009-06-11 14:31:35 -04001567
1568 ab->skb = nlmsg_new(AUDIT_BUFSIZ, gfp_mask);
1569 if (!ab->skb)
David S. Millerc64e66c2012-06-26 21:45:21 -07001570 goto err;
Eric Parisee080e62009-06-11 14:31:35 -04001571
David S. Millerc64e66c2012-06-26 21:45:21 -07001572 nlh = nlmsg_put(ab->skb, 0, 0, type, 0, 0);
1573 if (!nlh)
1574 goto out_kfree_skb;
Eric Parisee080e62009-06-11 14:31:35 -04001575
Chris Wright16e19042005-05-06 15:53:34 +01001576 return ab;
Eric Parisee080e62009-06-11 14:31:35 -04001577
David S. Millerc64e66c2012-06-26 21:45:21 -07001578out_kfree_skb:
Eric Parisee080e62009-06-11 14:31:35 -04001579 kfree_skb(ab->skb);
1580 ab->skb = NULL;
Chris Wright8fc61152005-05-06 15:54:17 +01001581err:
1582 audit_buffer_free(ab);
1583 return NULL;
Chris Wright16e19042005-05-06 15:53:34 +01001584}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001586/**
1587 * audit_serial - compute a serial number for the audit record
1588 *
1589 * Compute a serial number for the audit record. Audit records are
David Woodhousebfb44962005-05-21 21:08:09 +01001590 * written to user-space as soon as they are generated, so a complete
1591 * audit record may be written in several pieces. The timestamp of the
1592 * record and this serial number are used by the user-space tools to
1593 * determine which pieces belong to the same audit record. The
1594 * (timestamp,serial) tuple is unique for each syscall and is live from
1595 * syscall entry to syscall exit.
1596 *
David Woodhousebfb44962005-05-21 21:08:09 +01001597 * NOTE: Another possibility is to store the formatted records off the
1598 * audit context (for those records that have a context), and emit them
1599 * all at syscall exit. However, this could delay the reporting of
1600 * significant errors until syscall exit (or never, if the system
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001601 * halts).
1602 */
David Woodhousebfb44962005-05-21 21:08:09 +01001603unsigned int audit_serial(void)
1604{
Richard Guy Briggs01478d72014-06-13 18:22:00 -04001605 static atomic_t serial = ATOMIC_INIT(0);
David Woodhousebfb44962005-05-21 21:08:09 +01001606
Richard Guy Briggs01478d72014-06-13 18:22:00 -04001607 return atomic_add_return(1, &serial);
David Woodhousebfb44962005-05-21 21:08:09 +01001608}
1609
Daniel Walker5600b892007-10-18 03:06:10 -07001610static inline void audit_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01001611 struct timespec *t, unsigned int *serial)
1612{
Al Viro48887e62008-12-06 01:05:50 -05001613 if (!ctx || !auditsc_get_stamp(ctx, t, serial)) {
David Woodhousebfb44962005-05-21 21:08:09 +01001614 *t = CURRENT_TIME;
1615 *serial = audit_serial();
1616 }
1617}
1618
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001619/**
1620 * audit_log_start - obtain an audit buffer
1621 * @ctx: audit_context (may be NULL)
1622 * @gfp_mask: type of allocation
1623 * @type: audit message type
1624 *
1625 * Returns audit_buffer pointer on success or NULL on error.
1626 *
1627 * Obtain an audit buffer. This routine does locking to obtain the
1628 * audit buffer, but then no locking is required for calls to
1629 * audit_log_*format. If the task (ctx) is a task that is currently in a
1630 * syscall, then the syscall is marked as auditable and an audit record
1631 * will be written at syscall exit. If there is no associated task, then
1632 * task context (ctx) should be NULL.
1633 */
Al Viro9796fdd2005-10-21 03:22:03 -04001634struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001635 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Paul Moore31975422016-11-29 16:53:25 -05001637 struct audit_buffer *ab;
1638 struct timespec t;
1639 unsigned int uninitialized_var(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Eric Parisa3f07112008-11-05 12:47:09 -05001641 if (audit_initialized != AUDIT_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return NULL;
1643
Richard Guy Briggs86b2efb2016-06-24 16:35:46 -04001644 if (unlikely(!audit_filter(type, AUDIT_FILTER_TYPE)))
Dustin Kirklandc8edc802005-11-03 16:12:36 +00001645 return NULL;
1646
Paul Moore5b523302017-03-21 11:26:35 -04001647 /* NOTE: don't ever fail/sleep on these two conditions:
Paul Moorea09cfa42016-11-29 16:53:26 -05001648 * 1. auditd generated record - since we need auditd to drain the
1649 * queue; also, when we are checking for auditd, compare PIDs using
1650 * task_tgid_vnr() since auditd_pid is set in audit_receive_msg()
1651 * using a PID anchored in the caller's namespace
Paul Moore5b523302017-03-21 11:26:35 -04001652 * 2. generator holding the audit_cmd_mutex - we don't want to block
1653 * while holding the mutex */
1654 if (!(auditd_test_task(current) ||
1655 (current == __mutex_owner(&audit_cmd_mutex)))) {
1656 long stime = audit_backlog_wait_time;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001657
Paul Moore31975422016-11-29 16:53:25 -05001658 while (audit_backlog_limit &&
1659 (skb_queue_len(&audit_queue) > audit_backlog_limit)) {
1660 /* wake kauditd to try and flush the queue */
1661 wake_up_interruptible(&kauditd_wait);
David Woodhouseac4cec42005-07-02 14:08:48 +01001662
Paul Moore31975422016-11-29 16:53:25 -05001663 /* sleep if we are allowed and we haven't exhausted our
1664 * backlog wait limit */
Paul Moore5b523302017-03-21 11:26:35 -04001665 if (gfpflags_allow_blocking(gfp_mask) && (stime > 0)) {
Paul Moore31975422016-11-29 16:53:25 -05001666 DECLARE_WAITQUEUE(wait, current);
1667
1668 add_wait_queue_exclusive(&audit_backlog_wait,
1669 &wait);
1670 set_current_state(TASK_UNINTERRUPTIBLE);
Paul Moore5b523302017-03-21 11:26:35 -04001671 stime = schedule_timeout(stime);
Paul Moore31975422016-11-29 16:53:25 -05001672 remove_wait_queue(&audit_backlog_wait, &wait);
1673 } else {
1674 if (audit_rate_check() && printk_ratelimit())
1675 pr_warn("audit_backlog=%d > audit_backlog_limit=%d\n",
1676 skb_queue_len(&audit_queue),
1677 audit_backlog_limit);
1678 audit_log_lost("backlog limit exceeded");
1679 return NULL;
Konstantin Khlebnikov8ac1c8d2013-09-24 15:27:42 -07001680 }
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001681 }
David Woodhousefb19b4c2005-05-19 14:55:56 +01001682 }
1683
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001684 ab = audit_buffer_alloc(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (!ab) {
1686 audit_log_lost("out of memory in audit_log_start");
1687 return NULL;
1688 }
1689
David Woodhousebfb44962005-05-21 21:08:09 +01001690 audit_get_stamp(ab->ctx, &t, &serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
1692 t.tv_sec, t.tv_nsec/1000000, serial);
Paul Moore31975422016-11-29 16:53:25 -05001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 return ab;
1695}
1696
Chris Wright8fc61152005-05-06 15:54:17 +01001697/**
Chris Wright5ac52f32005-05-06 15:54:53 +01001698 * audit_expand - expand skb in the audit buffer
Chris Wright8fc61152005-05-06 15:54:17 +01001699 * @ab: audit_buffer
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001700 * @extra: space to add at tail of the skb
Chris Wright8fc61152005-05-06 15:54:17 +01001701 *
1702 * Returns 0 (no space) on failed expansion, or available space if
1703 * successful.
1704 */
David Woodhousee3b926b2005-05-10 18:56:08 +01001705static inline int audit_expand(struct audit_buffer *ab, int extra)
Chris Wright8fc61152005-05-06 15:54:17 +01001706{
Chris Wright5ac52f32005-05-06 15:54:53 +01001707 struct sk_buff *skb = ab->skb;
Herbert Xu406a1d82008-01-28 20:47:09 -08001708 int oldtail = skb_tailroom(skb);
1709 int ret = pskb_expand_head(skb, 0, extra, ab->gfp_mask);
1710 int newtail = skb_tailroom(skb);
1711
Chris Wright5ac52f32005-05-06 15:54:53 +01001712 if (ret < 0) {
1713 audit_log_lost("out of memory in audit_expand");
Chris Wright8fc61152005-05-06 15:54:17 +01001714 return 0;
Chris Wright5ac52f32005-05-06 15:54:53 +01001715 }
Herbert Xu406a1d82008-01-28 20:47:09 -08001716
1717 skb->truesize += newtail - oldtail;
1718 return newtail;
Chris Wright8fc61152005-05-06 15:54:17 +01001719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001721/*
1722 * Format an audit message into the audit buffer. If there isn't enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 * room in the audit buffer, more room will be allocated and vsnprint
1724 * will be called a second time. Currently, we assume that a printk
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001725 * can't format message larger than 1024 bytes, so we don't either.
1726 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
1728 va_list args)
1729{
1730 int len, avail;
Chris Wright5ac52f32005-05-06 15:54:53 +01001731 struct sk_buff *skb;
David Woodhouseeecb0a72005-05-10 18:58:51 +01001732 va_list args2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 if (!ab)
1735 return;
1736
Chris Wright5ac52f32005-05-06 15:54:53 +01001737 BUG_ON(!ab->skb);
1738 skb = ab->skb;
1739 avail = skb_tailroom(skb);
1740 if (avail == 0) {
David Woodhousee3b926b2005-05-10 18:56:08 +01001741 avail = audit_expand(ab, AUDIT_BUFSIZ);
Chris Wright8fc61152005-05-06 15:54:17 +01001742 if (!avail)
1743 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
David Woodhouseeecb0a72005-05-10 18:58:51 +01001745 va_copy(args2, args);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001746 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (len >= avail) {
1748 /* The printk buffer is 1024 bytes long, so if we get
1749 * here and AUDIT_BUFSIZ is at least 1024, then we can
1750 * log everything that printk could have logged. */
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001751 avail = audit_expand(ab,
1752 max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
Chris Wright8fc61152005-05-06 15:54:17 +01001753 if (!avail)
Jesper Juhla0e86bd2012-01-08 22:44:29 +01001754 goto out_va_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001755 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
Steve Grubb168b7172005-05-19 10:24:22 +01001757 if (len > 0)
1758 skb_put(skb, len);
Jesper Juhla0e86bd2012-01-08 22:44:29 +01001759out_va_end:
1760 va_end(args2);
Chris Wright8fc61152005-05-06 15:54:17 +01001761out:
1762 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001765/**
1766 * audit_log_format - format a message into the audit buffer.
1767 * @ab: audit_buffer
1768 * @fmt: format string
1769 * @...: optional parameters matching @fmt string
1770 *
1771 * All the work is done in audit_log_vformat.
1772 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
1774{
1775 va_list args;
1776
1777 if (!ab)
1778 return;
1779 va_start(args, fmt);
1780 audit_log_vformat(ab, fmt, args);
1781 va_end(args);
1782}
1783
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001784/**
1785 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1786 * @ab: the audit_buffer
1787 * @buf: buffer to convert to hex
1788 * @len: length of @buf to be converted
1789 *
1790 * No return value; failure to expand is silently ignored.
1791 *
1792 * This function will take the passed buf and convert it into a string of
1793 * ascii hex digits. The new string is placed onto the skb.
1794 */
Eric Parisb556f8a2008-04-18 10:12:59 -04001795void audit_log_n_hex(struct audit_buffer *ab, const unsigned char *buf,
Steve Grubb168b7172005-05-19 10:24:22 +01001796 size_t len)
83c7d092005-04-29 15:54:44 +01001797{
Steve Grubb168b7172005-05-19 10:24:22 +01001798 int i, avail, new_len;
1799 unsigned char *ptr;
1800 struct sk_buff *skb;
83c7d092005-04-29 15:54:44 +01001801
Amy Griffis8ef2d302006-09-07 17:03:02 -04001802 if (!ab)
1803 return;
1804
Steve Grubb168b7172005-05-19 10:24:22 +01001805 BUG_ON(!ab->skb);
1806 skb = ab->skb;
1807 avail = skb_tailroom(skb);
1808 new_len = len<<1;
1809 if (new_len >= avail) {
1810 /* Round the buffer request up to the next multiple */
1811 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
1812 avail = audit_expand(ab, new_len);
1813 if (!avail)
1814 return;
1815 }
1816
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001817 ptr = skb_tail_pointer(skb);
Joe Perchesb8dbc322014-01-13 23:31:27 -08001818 for (i = 0; i < len; i++)
1819 ptr = hex_byte_pack_upper(ptr, buf[i]);
Steve Grubb168b7172005-05-19 10:24:22 +01001820 *ptr = 0;
1821 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d092005-04-29 15:54:44 +01001822}
1823
Amy Griffis9c937dc2006-06-08 23:19:31 -04001824/*
1825 * Format a string of no more than slen characters into the audit buffer,
1826 * enclosed in quote marks.
1827 */
Eric Parisb556f8a2008-04-18 10:12:59 -04001828void audit_log_n_string(struct audit_buffer *ab, const char *string,
1829 size_t slen)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001830{
1831 int avail, new_len;
1832 unsigned char *ptr;
1833 struct sk_buff *skb;
1834
Amy Griffis8ef2d302006-09-07 17:03:02 -04001835 if (!ab)
1836 return;
1837
Amy Griffis9c937dc2006-06-08 23:19:31 -04001838 BUG_ON(!ab->skb);
1839 skb = ab->skb;
1840 avail = skb_tailroom(skb);
1841 new_len = slen + 3; /* enclosing quotes + null terminator */
1842 if (new_len > avail) {
1843 avail = audit_expand(ab, new_len);
1844 if (!avail)
1845 return;
1846 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001847 ptr = skb_tail_pointer(skb);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001848 *ptr++ = '"';
1849 memcpy(ptr, string, slen);
1850 ptr += slen;
1851 *ptr++ = '"';
1852 *ptr = 0;
1853 skb_put(skb, slen + 2); /* don't include null terminator */
1854}
1855
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001856/**
Eric Parisde6bbd12008-01-07 14:31:58 -05001857 * audit_string_contains_control - does a string need to be logged in hex
Dave Jonesf706d5d2008-03-28 14:15:56 -07001858 * @string: string to be checked
1859 * @len: max length of the string to check
Eric Parisde6bbd12008-01-07 14:31:58 -05001860 */
Yaowei Bai9fcf8362015-11-04 08:23:51 -05001861bool audit_string_contains_control(const char *string, size_t len)
Eric Parisde6bbd12008-01-07 14:31:58 -05001862{
1863 const unsigned char *p;
Miloslav Trmacb3897f52009-03-19 09:48:27 -04001864 for (p = string; p < (const unsigned char *)string + len; p++) {
Vesa-Matti J Kari1d6c9642008-07-23 00:06:13 +03001865 if (*p == '"' || *p < 0x21 || *p > 0x7e)
Yaowei Bai9fcf8362015-11-04 08:23:51 -05001866 return true;
Eric Parisde6bbd12008-01-07 14:31:58 -05001867 }
Yaowei Bai9fcf8362015-11-04 08:23:51 -05001868 return false;
Eric Parisde6bbd12008-01-07 14:31:58 -05001869}
1870
1871/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001872 * audit_log_n_untrustedstring - log a string that may contain random characters
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001873 * @ab: audit_buffer
Dave Jonesf706d5d2008-03-28 14:15:56 -07001874 * @len: length of string (not including trailing null)
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001875 * @string: string to be logged
1876 *
1877 * This code will escape a string that is passed to it if the string
1878 * contains a control character, unprintable character, double quote mark,
Steve Grubb168b7172005-05-19 10:24:22 +01001879 * or a space. Unescaped strings will start and end with a double quote mark.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001880 * Strings that are escaped are printed in hex (2 digits per char).
Amy Griffis9c937dc2006-06-08 23:19:31 -04001881 *
1882 * The caller specifies the number of characters in the string to log, which may
1883 * or may not be the entire string.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001884 */
Eric Parisb556f8a2008-04-18 10:12:59 -04001885void audit_log_n_untrustedstring(struct audit_buffer *ab, const char *string,
1886 size_t len)
83c7d092005-04-29 15:54:44 +01001887{
Eric Parisde6bbd12008-01-07 14:31:58 -05001888 if (audit_string_contains_control(string, len))
Eric Parisb556f8a2008-04-18 10:12:59 -04001889 audit_log_n_hex(ab, string, len);
Eric Parisde6bbd12008-01-07 14:31:58 -05001890 else
Eric Parisb556f8a2008-04-18 10:12:59 -04001891 audit_log_n_string(ab, string, len);
83c7d092005-04-29 15:54:44 +01001892}
1893
Amy Griffis9c937dc2006-06-08 23:19:31 -04001894/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001895 * audit_log_untrustedstring - log a string that may contain random characters
Amy Griffis9c937dc2006-06-08 23:19:31 -04001896 * @ab: audit_buffer
1897 * @string: string to be logged
1898 *
Miloslav Trmac522ed772007-07-15 23:40:56 -07001899 * Same as audit_log_n_untrustedstring(), except that strlen is used to
Amy Griffis9c937dc2006-06-08 23:19:31 -04001900 * determine string length.
1901 */
Eric Parisde6bbd12008-01-07 14:31:58 -05001902void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001903{
Eric Parisb556f8a2008-04-18 10:12:59 -04001904 audit_log_n_untrustedstring(ab, string, strlen(string));
Amy Griffis9c937dc2006-06-08 23:19:31 -04001905}
1906
Steve Grubb168b7172005-05-19 10:24:22 +01001907/* This is a helper-function to print the escaped d_path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
Al Viro66b3fad2012-03-14 21:48:20 -04001909 const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Jan Blunck44707fd2008-02-14 19:38:33 -08001911 char *p, *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Chris Wright8fc61152005-05-06 15:54:17 +01001913 if (prefix)
Kees Cookc158a352012-01-06 14:07:10 -08001914 audit_log_format(ab, "%s", prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Steve Grubb168b7172005-05-19 10:24:22 +01001916 /* We will allow 11 spaces for ' (deleted)' to be appended */
Jan Blunck44707fd2008-02-14 19:38:33 -08001917 pathname = kmalloc(PATH_MAX+11, ab->gfp_mask);
1918 if (!pathname) {
Eric Parisdef57542009-03-10 18:00:14 -04001919 audit_log_string(ab, "<no_memory>");
Steve Grubb168b7172005-05-19 10:24:22 +01001920 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
Jan Blunckcf28b482008-02-14 19:38:44 -08001922 p = d_path(path, pathname, PATH_MAX+11);
Steve Grubb168b7172005-05-19 10:24:22 +01001923 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
1924 /* FIXME: can we save some information here? */
Eric Parisdef57542009-03-10 18:00:14 -04001925 audit_log_string(ab, "<too_long>");
Daniel Walker5600b892007-10-18 03:06:10 -07001926 } else
Steve Grubb168b7172005-05-19 10:24:22 +01001927 audit_log_untrustedstring(ab, p);
Jan Blunck44707fd2008-02-14 19:38:33 -08001928 kfree(pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Eric Paris4d3fb702013-04-30 09:53:34 -04001931void audit_log_session_info(struct audit_buffer *ab)
1932{
Eric Paris4440e852013-11-27 17:35:17 -05001933 unsigned int sessionid = audit_get_sessionid(current);
Eric Paris4d3fb702013-04-30 09:53:34 -04001934 uid_t auid = from_kuid(&init_user_ns, audit_get_loginuid(current));
1935
Richard Guy Briggsb8f89ca2013-09-18 11:17:43 -04001936 audit_log_format(ab, " auid=%u ses=%u", auid, sessionid);
Eric Paris4d3fb702013-04-30 09:53:34 -04001937}
1938
Eric Paris9d960982009-06-11 14:31:37 -04001939void audit_log_key(struct audit_buffer *ab, char *key)
1940{
1941 audit_log_format(ab, " key=");
1942 if (key)
1943 audit_log_untrustedstring(ab, key);
1944 else
1945 audit_log_format(ab, "(null)");
1946}
1947
Eric Parisb24a30a2013-04-30 15:30:32 -04001948void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1949{
1950 int i;
1951
1952 audit_log_format(ab, " %s=", prefix);
1953 CAP_FOR_EACH_U32(i) {
1954 audit_log_format(ab, "%08x",
Eric Paris7d8b6c62014-07-23 15:36:26 -04001955 cap->cap[CAP_LAST_U32 - i]);
Eric Parisb24a30a2013-04-30 15:30:32 -04001956 }
1957}
1958
Richard Guy Briggs691e6d52014-05-26 11:02:48 -04001959static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
Eric Parisb24a30a2013-04-30 15:30:32 -04001960{
1961 kernel_cap_t *perm = &name->fcap.permitted;
1962 kernel_cap_t *inh = &name->fcap.inheritable;
1963 int log = 0;
1964
1965 if (!cap_isclear(*perm)) {
1966 audit_log_cap(ab, "cap_fp", perm);
1967 log = 1;
1968 }
1969 if (!cap_isclear(*inh)) {
1970 audit_log_cap(ab, "cap_fi", inh);
1971 log = 1;
1972 }
1973
1974 if (log)
1975 audit_log_format(ab, " cap_fe=%d cap_fver=%x",
1976 name->fcap.fE, name->fcap_ver);
1977}
1978
1979static inline int audit_copy_fcaps(struct audit_names *name,
1980 const struct dentry *dentry)
1981{
1982 struct cpu_vfs_cap_data caps;
1983 int rc;
1984
1985 if (!dentry)
1986 return 0;
1987
1988 rc = get_vfs_caps_from_disk(dentry, &caps);
1989 if (rc)
1990 return rc;
1991
1992 name->fcap.permitted = caps.permitted;
1993 name->fcap.inheritable = caps.inheritable;
1994 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
1995 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >>
1996 VFS_CAP_REVISION_SHIFT;
1997
1998 return 0;
1999}
2000
2001/* Copy inode data into an audit_names. */
2002void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
Andreas Gruenbacherd6335d72015-12-24 11:09:39 -05002003 struct inode *inode)
Eric Parisb24a30a2013-04-30 15:30:32 -04002004{
2005 name->ino = inode->i_ino;
2006 name->dev = inode->i_sb->s_dev;
2007 name->mode = inode->i_mode;
2008 name->uid = inode->i_uid;
2009 name->gid = inode->i_gid;
2010 name->rdev = inode->i_rdev;
2011 security_inode_getsecid(inode, &name->osid);
2012 audit_copy_fcaps(name, dentry);
2013}
2014
2015/**
2016 * audit_log_name - produce AUDIT_PATH record from struct audit_names
2017 * @context: audit_context for the task
2018 * @n: audit_names structure with reportable details
2019 * @path: optional path to report instead of audit_names->name
2020 * @record_num: record number to report when handling a list of names
2021 * @call_panic: optional pointer to int that will be updated if secid fails
2022 */
2023void audit_log_name(struct audit_context *context, struct audit_names *n,
Al Viro8bd10762016-11-20 20:36:51 -05002024 const struct path *path, int record_num, int *call_panic)
Eric Parisb24a30a2013-04-30 15:30:32 -04002025{
2026 struct audit_buffer *ab;
2027 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
2028 if (!ab)
2029 return;
2030
2031 audit_log_format(ab, "item=%d", record_num);
2032
2033 if (path)
2034 audit_log_d_path(ab, " name=", path);
2035 else if (n->name) {
2036 switch (n->name_len) {
2037 case AUDIT_NAME_FULL:
2038 /* log the full path */
2039 audit_log_format(ab, " name=");
2040 audit_log_untrustedstring(ab, n->name->name);
2041 break;
2042 case 0:
2043 /* name was specified as a relative path and the
2044 * directory component is the cwd */
2045 audit_log_d_path(ab, " name=", &context->pwd);
2046 break;
2047 default:
2048 /* log the name's directory component */
2049 audit_log_format(ab, " name=");
2050 audit_log_n_untrustedstring(ab, n->name->name,
2051 n->name_len);
2052 }
2053 } else
2054 audit_log_format(ab, " name=(null)");
2055
Linus Torvalds425afcf2015-09-08 13:34:59 -07002056 if (n->ino != AUDIT_INO_UNSET)
Eric Parisb24a30a2013-04-30 15:30:32 -04002057 audit_log_format(ab, " inode=%lu"
2058 " dev=%02x:%02x mode=%#ho"
2059 " ouid=%u ogid=%u rdev=%02x:%02x",
2060 n->ino,
2061 MAJOR(n->dev),
2062 MINOR(n->dev),
2063 n->mode,
2064 from_kuid(&init_user_ns, n->uid),
2065 from_kgid(&init_user_ns, n->gid),
2066 MAJOR(n->rdev),
2067 MINOR(n->rdev));
Eric Parisb24a30a2013-04-30 15:30:32 -04002068 if (n->osid != 0) {
2069 char *ctx = NULL;
2070 u32 len;
2071 if (security_secid_to_secctx(
2072 n->osid, &ctx, &len)) {
2073 audit_log_format(ab, " osid=%u", n->osid);
2074 if (call_panic)
2075 *call_panic = 2;
2076 } else {
2077 audit_log_format(ab, " obj=%s", ctx);
2078 security_release_secctx(ctx, len);
2079 }
2080 }
2081
Jeff Laytond3aea842013-05-08 10:32:23 -04002082 /* log the audit_names record type */
2083 audit_log_format(ab, " nametype=");
2084 switch(n->type) {
2085 case AUDIT_TYPE_NORMAL:
2086 audit_log_format(ab, "NORMAL");
2087 break;
2088 case AUDIT_TYPE_PARENT:
2089 audit_log_format(ab, "PARENT");
2090 break;
2091 case AUDIT_TYPE_CHILD_DELETE:
2092 audit_log_format(ab, "DELETE");
2093 break;
2094 case AUDIT_TYPE_CHILD_CREATE:
2095 audit_log_format(ab, "CREATE");
2096 break;
2097 default:
2098 audit_log_format(ab, "UNKNOWN");
2099 break;
2100 }
2101
Eric Parisb24a30a2013-04-30 15:30:32 -04002102 audit_log_fcaps(ab, n);
2103 audit_log_end(ab);
2104}
2105
2106int audit_log_task_context(struct audit_buffer *ab)
2107{
2108 char *ctx = NULL;
2109 unsigned len;
2110 int error;
2111 u32 sid;
2112
2113 security_task_getsecid(current, &sid);
2114 if (!sid)
2115 return 0;
2116
2117 error = security_secid_to_secctx(sid, &ctx, &len);
2118 if (error) {
2119 if (error != -EINVAL)
2120 goto error_path;
2121 return 0;
2122 }
2123
2124 audit_log_format(ab, " subj=%s", ctx);
2125 security_release_secctx(ctx, len);
2126 return 0;
2127
2128error_path:
2129 audit_panic("error in audit_log_task_context");
2130 return error;
2131}
2132EXPORT_SYMBOL(audit_log_task_context);
2133
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002134void audit_log_d_path_exe(struct audit_buffer *ab,
2135 struct mm_struct *mm)
2136{
Davidlohr Bueso5b282552015-02-22 18:20:09 -08002137 struct file *exe_file;
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002138
Davidlohr Bueso5b282552015-02-22 18:20:09 -08002139 if (!mm)
2140 goto out_null;
2141
2142 exe_file = get_mm_exe_file(mm);
2143 if (!exe_file)
2144 goto out_null;
2145
2146 audit_log_d_path(ab, " exe=", &exe_file->f_path);
2147 fput(exe_file);
2148 return;
2149out_null:
2150 audit_log_format(ab, " exe=(null)");
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002151}
2152
Richard Guy Briggs3f5be2d2016-06-28 12:07:50 -04002153struct tty_struct *audit_get_tty(struct task_struct *tsk)
2154{
2155 struct tty_struct *tty = NULL;
2156 unsigned long flags;
2157
2158 spin_lock_irqsave(&tsk->sighand->siglock, flags);
2159 if (tsk->signal)
2160 tty = tty_kref_get(tsk->signal->tty);
2161 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
2162 return tty;
2163}
2164
2165void audit_put_tty(struct tty_struct *tty)
2166{
2167 tty_kref_put(tty);
2168}
2169
Eric Parisb24a30a2013-04-30 15:30:32 -04002170void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
2171{
2172 const struct cred *cred;
Richard Guy Briggs9eab3392014-03-15 18:42:34 -04002173 char comm[sizeof(tsk->comm)];
Richard Guy Briggsdb0a6fb2016-04-21 14:14:01 -04002174 struct tty_struct *tty;
Eric Parisb24a30a2013-04-30 15:30:32 -04002175
2176 if (!ab)
2177 return;
2178
2179 /* tsk == current */
2180 cred = current_cred();
Richard Guy Briggsdb0a6fb2016-04-21 14:14:01 -04002181 tty = audit_get_tty(tsk);
Eric Parisb24a30a2013-04-30 15:30:32 -04002182 audit_log_format(ab,
Richard Guy Briggsc92cdeb2013-12-10 22:10:41 -05002183 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Eric Parisb24a30a2013-04-30 15:30:32 -04002184 " euid=%u suid=%u fsuid=%u"
Richard Guy Briggs2f2ad102013-07-15 10:23:11 -04002185 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Richard Guy Briggsc92cdeb2013-12-10 22:10:41 -05002186 task_ppid_nr(tsk),
Paul Moorefa2bea22016-08-30 17:19:13 -04002187 task_tgid_nr(tsk),
Eric Parisb24a30a2013-04-30 15:30:32 -04002188 from_kuid(&init_user_ns, audit_get_loginuid(tsk)),
2189 from_kuid(&init_user_ns, cred->uid),
2190 from_kgid(&init_user_ns, cred->gid),
2191 from_kuid(&init_user_ns, cred->euid),
2192 from_kuid(&init_user_ns, cred->suid),
2193 from_kuid(&init_user_ns, cred->fsuid),
2194 from_kgid(&init_user_ns, cred->egid),
2195 from_kgid(&init_user_ns, cred->sgid),
2196 from_kgid(&init_user_ns, cred->fsgid),
Richard Guy Briggsdb0a6fb2016-04-21 14:14:01 -04002197 tty ? tty_name(tty) : "(none)",
2198 audit_get_sessionid(tsk));
2199 audit_put_tty(tty);
Eric Parisb24a30a2013-04-30 15:30:32 -04002200 audit_log_format(ab, " comm=");
Richard Guy Briggs9eab3392014-03-15 18:42:34 -04002201 audit_log_untrustedstring(ab, get_task_comm(comm, tsk));
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002202 audit_log_d_path_exe(ab, tsk->mm);
Eric Parisb24a30a2013-04-30 15:30:32 -04002203 audit_log_task_context(ab);
2204}
2205EXPORT_SYMBOL(audit_log_task_info);
2206
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002207/**
Kees Cooka51d9ea2012-07-25 17:29:08 -07002208 * audit_log_link_denied - report a link restriction denial
Shailendra Verma22011962015-05-23 10:40:27 +05302209 * @operation: specific link operation
Kees Cooka51d9ea2012-07-25 17:29:08 -07002210 * @link: the path that triggered the restriction
2211 */
Al Viro8bd10762016-11-20 20:36:51 -05002212void audit_log_link_denied(const char *operation, const struct path *link)
Kees Cooka51d9ea2012-07-25 17:29:08 -07002213{
2214 struct audit_buffer *ab;
Eric Parisb24a30a2013-04-30 15:30:32 -04002215 struct audit_names *name;
Kees Cooka51d9ea2012-07-25 17:29:08 -07002216
Eric Parisb24a30a2013-04-30 15:30:32 -04002217 name = kzalloc(sizeof(*name), GFP_NOFS);
2218 if (!name)
2219 return;
2220
2221 /* Generate AUDIT_ANOM_LINK with subject, operation, outcome. */
Kees Cooka51d9ea2012-07-25 17:29:08 -07002222 ab = audit_log_start(current->audit_context, GFP_KERNEL,
2223 AUDIT_ANOM_LINK);
Sasha Levind1c7d972012-10-04 19:57:31 -04002224 if (!ab)
Eric Parisb24a30a2013-04-30 15:30:32 -04002225 goto out;
2226 audit_log_format(ab, "op=%s", operation);
2227 audit_log_task_info(ab, current);
2228 audit_log_format(ab, " res=0");
Kees Cooka51d9ea2012-07-25 17:29:08 -07002229 audit_log_end(ab);
Eric Parisb24a30a2013-04-30 15:30:32 -04002230
2231 /* Generate AUDIT_PATH record with object. */
2232 name->type = AUDIT_TYPE_NORMAL;
David Howells3b362152015-03-17 22:26:21 +00002233 audit_copy_inode(name, link->dentry, d_backing_inode(link->dentry));
Eric Parisb24a30a2013-04-30 15:30:32 -04002234 audit_log_name(current->audit_context, name, link, 0, NULL);
2235out:
2236 kfree(name);
Kees Cooka51d9ea2012-07-25 17:29:08 -07002237}
2238
2239/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002240 * audit_log_end - end one audit record
2241 * @ab: the audit_buffer
2242 *
Paul Moore4aa838722016-11-29 16:53:24 -05002243 * We can not do a netlink send inside an irq context because it blocks (last
2244 * arg, flags, is not set to MSG_DONTWAIT), so the audit buffer is placed on a
2245 * queue and a tasklet is scheduled to remove them from the queue outside the
2246 * irq context. May be called in any context.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002247 */
David Woodhouseb7d11252005-05-19 10:56:58 +01002248void audit_log_end(struct audit_buffer *ab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
Paul Moore5b523302017-03-21 11:26:35 -04002250 struct sk_buff *skb;
2251 struct nlmsghdr *nlh;
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 if (!ab)
2254 return;
Paul Moore5b523302017-03-21 11:26:35 -04002255
2256 if (audit_rate_check()) {
2257 skb = ab->skb;
Eric Parisf3d357b2008-04-18 10:02:28 -04002258 ab->skb = NULL;
Paul Moore5b523302017-03-21 11:26:35 -04002259
2260 /* setup the netlink header, see the comments in
2261 * kauditd_send_multicast_skb() for length quirks */
2262 nlh = nlmsg_hdr(skb);
2263 nlh->nlmsg_len = skb->len - NLMSG_HDRLEN;
2264
2265 /* queue the netlink packet and poke the kauditd thread */
2266 skb_queue_tail(&audit_queue, skb);
2267 wake_up_interruptible(&kauditd_wait);
2268 } else
2269 audit_log_lost("rate limit exceeded");
2270
Chris Wright16e19042005-05-06 15:53:34 +01002271 audit_buffer_free(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002274/**
2275 * audit_log - Log an audit record
2276 * @ctx: audit context
2277 * @gfp_mask: type of allocation
2278 * @type: audit message type
2279 * @fmt: format string to use
2280 * @...: variable parameters matching the format string
2281 *
2282 * This is a convenience function that calls audit_log_start,
2283 * audit_log_vformat, and audit_log_end. It may be called
2284 * in any context.
2285 */
Daniel Walker5600b892007-10-18 03:06:10 -07002286void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01002287 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
2289 struct audit_buffer *ab;
2290 va_list args;
2291
David Woodhouse9ad9ad32005-06-22 15:04:33 +01002292 ab = audit_log_start(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if (ab) {
2294 va_start(args, fmt);
2295 audit_log_vformat(ab, fmt, args);
2296 va_end(args);
2297 audit_log_end(ab);
2298 }
2299}
lorenzo@gnu.orgbf45da92006-03-09 00:33:47 +01002300
Mr Dash Four131ad622011-06-30 13:31:57 +02002301#ifdef CONFIG_SECURITY
2302/**
2303 * audit_log_secctx - Converts and logs SELinux context
2304 * @ab: audit_buffer
2305 * @secid: security number
2306 *
2307 * This is a helper function that calls security_secid_to_secctx to convert
2308 * secid to secctx and then adds the (converted) SELinux context to the audit
2309 * log by calling audit_log_format, thus also preventing leak of internal secid
2310 * to userspace. If secid cannot be converted audit_panic is called.
2311 */
2312void audit_log_secctx(struct audit_buffer *ab, u32 secid)
2313{
2314 u32 len;
2315 char *secctx;
2316
2317 if (security_secid_to_secctx(secid, &secctx, &len)) {
2318 audit_panic("Cannot convert secid to context");
2319 } else {
2320 audit_log_format(ab, " obj=%s", secctx);
2321 security_release_secctx(secctx, len);
2322 }
2323}
2324EXPORT_SYMBOL(audit_log_secctx);
2325#endif
2326
lorenzo@gnu.orgbf45da92006-03-09 00:33:47 +01002327EXPORT_SYMBOL(audit_log_start);
2328EXPORT_SYMBOL(audit_log_end);
2329EXPORT_SYMBOL(audit_log_format);
2330EXPORT_SYMBOL(audit_log);