blob: eff602c1aa790f13df61fb93a1f9c17fe83de275 [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
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400253static void audit_set_portid(struct audit_buffer *ab, __u32 portid)
Steve Grubbc0404992005-05-13 18:17:42 +0100254{
Eric Paris50397bd2008-01-07 18:14:19 -0500255 if (ab) {
256 struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400257 nlh->nlmsg_pid = portid;
Eric Paris50397bd2008-01-07 18:14:19 -0500258 }
Steve Grubbc0404992005-05-13 18:17:42 +0100259}
260
Dustin Kirkland8c8570f2005-11-03 17:15:16 +0000261void audit_panic(const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Joe Perchesd957f7b2014-01-14 10:33:12 -0800263 switch (audit_failure) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 case AUDIT_FAIL_SILENT:
265 break;
266 case AUDIT_FAIL_PRINTK:
Eric Paris320f1b12008-01-23 22:55:05 -0500267 if (printk_ratelimit())
Joe Perchesd957f7b2014-01-14 10:33:12 -0800268 pr_err("%s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 break;
270 case AUDIT_FAIL_PANIC:
Paul Moore5b523302017-03-21 11:26:35 -0400271 panic("audit: %s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 break;
273 }
274}
275
276static inline int audit_rate_check(void)
277{
278 static unsigned long last_check = 0;
279 static int messages = 0;
280 static DEFINE_SPINLOCK(lock);
281 unsigned long flags;
282 unsigned long now;
283 unsigned long elapsed;
284 int retval = 0;
285
286 if (!audit_rate_limit) return 1;
287
288 spin_lock_irqsave(&lock, flags);
289 if (++messages < audit_rate_limit) {
290 retval = 1;
291 } else {
292 now = jiffies;
293 elapsed = now - last_check;
294 if (elapsed > HZ) {
295 last_check = now;
296 messages = 0;
297 retval = 1;
298 }
299 }
300 spin_unlock_irqrestore(&lock, flags);
301
302 return retval;
303}
304
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700305/**
306 * audit_log_lost - conditionally log lost audit message event
307 * @message: the message stating reason for lost audit message
308 *
309 * Emit at least 1 message per second, even if audit_rate_check is
310 * throttling.
311 * Always increment the lost messages counter.
312*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313void audit_log_lost(const char *message)
314{
315 static unsigned long last_msg = 0;
316 static DEFINE_SPINLOCK(lock);
317 unsigned long flags;
318 unsigned long now;
319 int print;
320
321 atomic_inc(&audit_lost);
322
323 print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
324
325 if (!print) {
326 spin_lock_irqsave(&lock, flags);
327 now = jiffies;
328 if (now - last_msg > HZ) {
329 print = 1;
330 last_msg = now;
331 }
332 spin_unlock_irqrestore(&lock, flags);
333 }
334
335 if (print) {
Eric Paris320f1b12008-01-23 22:55:05 -0500336 if (printk_ratelimit())
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800337 pr_warn("audit_lost=%u audit_rate_limit=%u audit_backlog_limit=%u\n",
Eric Paris320f1b12008-01-23 22:55:05 -0500338 atomic_read(&audit_lost),
339 audit_rate_limit,
340 audit_backlog_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 audit_panic(message);
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800345static int audit_log_config_change(char *function_name, u32 new, u32 old,
Eric Paris25323862008-04-18 10:09:25 -0400346 int allow_changes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Eric Paris1a6b9f22008-01-07 17:09:31 -0500348 struct audit_buffer *ab;
349 int rc = 0;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500350
Eric Paris1a6b9f22008-01-07 17:09:31 -0500351 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
Kees Cook0644ec02013-01-11 14:32:07 -0800352 if (unlikely(!ab))
353 return rc;
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800354 audit_log_format(ab, "%s=%u old=%u", function_name, new, old);
Eric Paris4d3fb702013-04-30 09:53:34 -0400355 audit_log_session_info(ab);
Eric Parisb122c372013-04-19 15:00:33 -0400356 rc = audit_log_task_context(ab);
357 if (rc)
358 allow_changes = 0; /* Something weird, deny request */
Eric Paris1a6b9f22008-01-07 17:09:31 -0500359 audit_log_format(ab, " res=%d", allow_changes);
360 audit_log_end(ab);
361 return rc;
362}
363
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800364static int audit_do_config_change(char *function_name, u32 *to_change, u32 new)
Eric Paris1a6b9f22008-01-07 17:09:31 -0500365{
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800366 int allow_changes, rc = 0;
367 u32 old = *to_change;
Eric Paris1a6b9f22008-01-07 17:09:31 -0500368
369 /* check if we are locked */
370 if (audit_enabled == AUDIT_LOCKED)
371 allow_changes = 0;
372 else
373 allow_changes = 1;
374
375 if (audit_enabled != AUDIT_OFF) {
Eric Parisdc9eb692013-04-19 13:23:09 -0400376 rc = audit_log_config_change(function_name, new, old, allow_changes);
Eric Paris1a6b9f22008-01-07 17:09:31 -0500377 if (rc)
378 allow_changes = 0;
379 }
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500380
381 /* If we are allowed, make the change */
Eric Paris1a6b9f22008-01-07 17:09:31 -0500382 if (allow_changes == 1)
383 *to_change = new;
Steve Grubb6a01b07f2007-01-19 14:39:55 -0500384 /* Not allowed, update reason */
385 else if (rc == 0)
386 rc = -EPERM;
387 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800390static int audit_set_rate_limit(u32 limit)
Eric Paris1a6b9f22008-01-07 17:09:31 -0500391{
Eric Parisdc9eb692013-04-19 13:23:09 -0400392 return audit_do_config_change("audit_rate_limit", &audit_rate_limit, limit);
Eric Paris1a6b9f22008-01-07 17:09:31 -0500393}
394
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800395static int audit_set_backlog_limit(u32 limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Eric Parisdc9eb692013-04-19 13:23:09 -0400397 return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800400static int audit_set_backlog_wait_time(u32 timeout)
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -0400401{
402 return audit_do_config_change("audit_backlog_wait_time",
Paul Moore31975422016-11-29 16:53:25 -0500403 &audit_backlog_wait_time, timeout);
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -0400404}
405
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800406static int audit_set_enabled(u32 state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Eric Parisb593d382008-01-08 17:38:31 -0500408 int rc;
Pranith Kumar724e7bf2015-03-11 14:08:19 -0400409 if (state > AUDIT_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500411
Eric Parisdc9eb692013-04-19 13:23:09 -0400412 rc = audit_do_config_change("audit_enabled", &audit_enabled, state);
Eric Parisb593d382008-01-08 17:38:31 -0500413 if (!rc)
414 audit_ever_enabled |= !!state;
415
416 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Joe Perches3e1d0bb2014-01-14 10:33:13 -0800419static int audit_set_failure(u32 state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (state != AUDIT_FAIL_SILENT
422 && state != AUDIT_FAIL_PRINTK
423 && state != AUDIT_FAIL_PANIC)
424 return -EINVAL;
Steve Grubbce29b682006-04-01 18:29:34 -0500425
Eric Parisdc9eb692013-04-19 13:23:09 -0400426 return audit_do_config_change("audit_failure", &audit_failure, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Paul Moore5b523302017-03-21 11:26:35 -0400429/**
430 * auditd_set - Set/Reset the auditd connection state
431 * @pid: auditd PID
432 * @portid: auditd netlink portid
433 * @net: auditd network namespace pointer
434 *
435 * Description:
436 * This function will obtain and drop network namespace references as
437 * necessary.
438 */
439static void auditd_set(int pid, u32 portid, struct net *net)
440{
441 unsigned long flags;
442
443 spin_lock_irqsave(&auditd_conn.lock, flags);
444 auditd_conn.pid = pid;
445 auditd_conn.portid = portid;
446 if (auditd_conn.net)
447 put_net(auditd_conn.net);
448 if (net)
449 auditd_conn.net = get_net(net);
450 else
451 auditd_conn.net = NULL;
452 spin_unlock_irqrestore(&auditd_conn.lock, flags);
453}
454
455/**
Paul Moore5b523302017-03-21 11:26:35 -0400456 * kauditd_print_skb - Print the audit record to the ring buffer
457 * @skb: audit record
458 *
459 * Whatever the reason, this packet may not make it to the auditd connection
460 * so write it via printk so the information isn't completely lost.
Eric Paris038cbcf2009-06-11 14:31:35 -0400461 */
Paul Mooreaf8b8242016-11-29 16:53:24 -0500462static void kauditd_printk_skb(struct sk_buff *skb)
Eric Paris038cbcf2009-06-11 14:31:35 -0400463{
464 struct nlmsghdr *nlh = nlmsg_hdr(skb);
David S. Millerc64e66c2012-06-26 21:45:21 -0700465 char *data = nlmsg_data(nlh);
Eric Paris038cbcf2009-06-11 14:31:35 -0400466
Paul Moore5b523302017-03-21 11:26:35 -0400467 if (nlh->nlmsg_type != AUDIT_EOE && printk_ratelimit())
468 pr_notice("type=%d %s\n", nlh->nlmsg_type, data);
469}
470
471/**
472 * kauditd_rehold_skb - Handle a audit record send failure in the hold queue
473 * @skb: audit record
474 *
475 * Description:
476 * This should only be used by the kauditd_thread when it fails to flush the
477 * hold queue.
478 */
479static void kauditd_rehold_skb(struct sk_buff *skb)
480{
481 /* put the record back in the queue at the same place */
482 skb_queue_head(&audit_hold_queue, skb);
Eric Paris038cbcf2009-06-11 14:31:35 -0400483}
484
Paul Moorec6480202016-11-29 16:53:25 -0500485/**
486 * kauditd_hold_skb - Queue an audit record, waiting for auditd
487 * @skb: audit record
488 *
489 * Description:
490 * Queue the audit record, waiting for an instance of auditd. When this
491 * function is called we haven't given up yet on sending the record, but things
492 * are not looking good. The first thing we want to do is try to write the
493 * record via printk and then see if we want to try and hold on to the record
494 * and queue it, if we have room. If we want to hold on to the record, but we
495 * don't have room, record a record lost message.
496 */
497static void kauditd_hold_skb(struct sk_buff *skb)
Eric Parisf3d357b2008-04-18 10:02:28 -0400498{
Paul Moorec6480202016-11-29 16:53:25 -0500499 /* at this point it is uncertain if we will ever send this to auditd so
500 * try to send the message via printk before we go any further */
501 kauditd_printk_skb(skb);
Richard Guy Briggs32a1dba2015-11-04 08:23:50 -0500502
Paul Moorec6480202016-11-29 16:53:25 -0500503 /* can we just silently drop the message? */
504 if (!audit_default) {
505 kfree_skb(skb);
506 return;
507 }
508
509 /* if we have room, queue the message */
510 if (!audit_backlog_limit ||
511 skb_queue_len(&audit_hold_queue) < audit_backlog_limit) {
512 skb_queue_tail(&audit_hold_queue, skb);
513 return;
514 }
515
516 /* we have no other options - drop the message */
517 audit_log_lost("kauditd hold queue overflow");
518 kfree_skb(skb);
519}
520
521/**
522 * kauditd_retry_skb - Queue an audit record, attempt to send again to auditd
523 * @skb: audit record
524 *
525 * Description:
526 * Not as serious as kauditd_hold_skb() as we still have a connected auditd,
527 * but for some reason we are having problems sending it audit records so
528 * queue the given record and attempt to resend.
529 */
530static void kauditd_retry_skb(struct sk_buff *skb)
531{
532 /* NOTE: because records should only live in the retry queue for a
533 * short period of time, before either being sent or moved to the hold
534 * queue, we don't currently enforce a limit on this queue */
535 skb_queue_tail(&audit_retry_queue, skb);
536}
537
538/**
Paul Moore264d5092017-04-10 11:16:59 -0400539 * auditd_reset - Disconnect the auditd connection
540 *
541 * Description:
542 * Break the auditd/kauditd connection and move all the queued records into the
543 * hold queue in case auditd reconnects.
544 */
545static void auditd_reset(void)
546{
547 struct sk_buff *skb;
548
549 /* if it isn't already broken, break the connection */
550 rcu_read_lock();
551 if (auditd_conn.pid)
552 auditd_set(0, 0, NULL);
553 rcu_read_unlock();
554
555 /* flush all of the main and retry queues to the hold queue */
556 while ((skb = skb_dequeue(&audit_retry_queue)))
557 kauditd_hold_skb(skb);
558 while ((skb = skb_dequeue(&audit_queue)))
559 kauditd_hold_skb(skb);
560}
561
562/**
Paul Moore5b523302017-03-21 11:26:35 -0400563 * auditd_send_unicast_skb - Send a record via unicast to auditd
564 * @skb: audit record
Paul Moorec6480202016-11-29 16:53:25 -0500565 *
566 * Description:
Paul Moore5b523302017-03-21 11:26:35 -0400567 * Send a skb to the audit daemon, returns positive/zero values on success and
568 * negative values on failure; in all cases the skb will be consumed by this
569 * function. If the send results in -ECONNREFUSED the connection with auditd
570 * will be reset. This function may sleep so callers should not hold any locks
571 * where this would cause a problem.
Paul Moorec6480202016-11-29 16:53:25 -0500572 */
Paul Moore5b523302017-03-21 11:26:35 -0400573static int auditd_send_unicast_skb(struct sk_buff *skb)
Paul Moorec6480202016-11-29 16:53:25 -0500574{
Paul Moore5b523302017-03-21 11:26:35 -0400575 int rc;
576 u32 portid;
577 struct net *net;
578 struct sock *sk;
Paul Moorec6480202016-11-29 16:53:25 -0500579
Paul Moore5b523302017-03-21 11:26:35 -0400580 /* NOTE: we can't call netlink_unicast while in the RCU section so
581 * take a reference to the network namespace and grab local
582 * copies of the namespace, the sock, and the portid; the
583 * namespace and sock aren't going to go away while we hold a
584 * reference and if the portid does become invalid after the RCU
585 * section netlink_unicast() should safely return an error */
586
587 rcu_read_lock();
588 if (!auditd_conn.pid) {
589 rcu_read_unlock();
590 rc = -ECONNREFUSED;
591 goto err;
Richard Guy Briggs533c7b62016-12-13 10:03:01 -0500592 }
Paul Moore5b523302017-03-21 11:26:35 -0400593 net = auditd_conn.net;
594 get_net(net);
595 sk = audit_get_sk(net);
596 portid = auditd_conn.portid;
597 rcu_read_unlock();
Paul Moorec6480202016-11-29 16:53:25 -0500598
Paul Moore5b523302017-03-21 11:26:35 -0400599 rc = netlink_unicast(sk, skb, portid, 0);
600 put_net(net);
601 if (rc < 0)
602 goto err;
603
604 return rc;
605
606err:
607 if (rc == -ECONNREFUSED)
608 auditd_reset();
609 return rc;
Paul Moorec6480202016-11-29 16:53:25 -0500610}
611
612/**
Paul Moore5b523302017-03-21 11:26:35 -0400613 * kauditd_send_queue - Helper for kauditd_thread to flush skb queues
614 * @sk: the sending sock
615 * @portid: the netlink destination
616 * @queue: the skb queue to process
617 * @retry_limit: limit on number of netlink unicast failures
618 * @skb_hook: per-skb hook for additional processing
619 * @err_hook: hook called if the skb fails the netlink unicast send
620 *
621 * Description:
622 * Run through the given queue and attempt to send the audit records to auditd,
623 * returns zero on success, negative values on failure. It is up to the caller
624 * to ensure that the @sk is valid for the duration of this function.
625 *
Paul Moorec6480202016-11-29 16:53:25 -0500626 */
Paul Moore5b523302017-03-21 11:26:35 -0400627static int kauditd_send_queue(struct sock *sk, u32 portid,
628 struct sk_buff_head *queue,
629 unsigned int retry_limit,
630 void (*skb_hook)(struct sk_buff *skb),
631 void (*err_hook)(struct sk_buff *skb))
Paul Moorec6480202016-11-29 16:53:25 -0500632{
Paul Moore5b523302017-03-21 11:26:35 -0400633 int rc = 0;
634 struct sk_buff *skb;
635 static unsigned int failed = 0;
Paul Moorec6480202016-11-29 16:53:25 -0500636
Paul Moore5b523302017-03-21 11:26:35 -0400637 /* NOTE: kauditd_thread takes care of all our locking, we just use
638 * the netlink info passed to us (e.g. sk and portid) */
Paul Moore6c54e782016-11-29 16:53:26 -0500639
Paul Moore5b523302017-03-21 11:26:35 -0400640 while ((skb = skb_dequeue(queue))) {
641 /* call the skb_hook for each skb we touch */
642 if (skb_hook)
643 (*skb_hook)(skb);
644
645 /* can we send to anyone via unicast? */
646 if (!sk) {
647 if (err_hook)
648 (*err_hook)(skb);
649 continue;
650 }
651
652 /* grab an extra skb reference in case of error */
653 skb_get(skb);
654 rc = netlink_unicast(sk, skb, portid, 0);
655 if (rc < 0) {
656 /* fatal failure for our queue flush attempt? */
657 if (++failed >= retry_limit ||
658 rc == -ECONNREFUSED || rc == -EPERM) {
659 /* yes - error processing for the queue */
660 sk = NULL;
661 if (err_hook)
662 (*err_hook)(skb);
663 if (!skb_hook)
664 goto out;
665 /* keep processing with the skb_hook */
666 continue;
667 } else
668 /* no - requeue to preserve ordering */
669 skb_queue_head(queue, skb);
670 } else {
671 /* it worked - drop the extra reference and continue */
672 consume_skb(skb);
673 failed = 0;
674 }
Paul Moorec6480202016-11-29 16:53:25 -0500675 }
676
Paul Moore5b523302017-03-21 11:26:35 -0400677out:
678 return (rc >= 0 ? 0 : rc);
Eric Parisf3d357b2008-04-18 10:02:28 -0400679}
680
Richard Guy Briggsb551d1d2013-01-24 13:15:10 -0500681/*
Paul Moorec6480202016-11-29 16:53:25 -0500682 * kauditd_send_multicast_skb - Send a record to any multicast listeners
683 * @skb: audit record
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400684 *
Paul Moorec6480202016-11-29 16:53:25 -0500685 * Description:
Paul Moore5b523302017-03-21 11:26:35 -0400686 * Write a multicast message to anyone listening in the initial network
687 * namespace. This function doesn't consume an skb as might be expected since
688 * it has to copy it anyways.
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400689 */
Paul Moorec6480202016-11-29 16:53:25 -0500690static void kauditd_send_multicast_skb(struct sk_buff *skb)
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400691{
Paul Moorec6480202016-11-29 16:53:25 -0500692 struct sk_buff *copy;
Paul Moore5b523302017-03-21 11:26:35 -0400693 struct sock *sock = audit_get_sk(&init_net);
Paul Moorec6480202016-11-29 16:53:25 -0500694 struct nlmsghdr *nlh;
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400695
Paul Moore5b523302017-03-21 11:26:35 -0400696 /* NOTE: we are not taking an additional reference for init_net since
697 * we don't have to worry about it going away */
698
Richard Guy Briggs7f74ecd2014-04-22 21:31:58 -0400699 if (!netlink_has_listeners(sock, AUDIT_NLGRP_READLOG))
700 return;
701
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400702 /*
703 * The seemingly wasteful skb_copy() rather than bumping the refcount
704 * using skb_get() is necessary because non-standard mods are made to
705 * the skb by the original kaudit unicast socket send routine. The
706 * existing auditd daemon assumes this breakage. Fixing this would
707 * require co-ordinating a change in the established protocol between
708 * the kaudit kernel subsystem and the auditd userspace code. There is
709 * no reason for new multicast clients to continue with this
710 * non-compliance.
711 */
Paul Moorec6480202016-11-29 16:53:25 -0500712 copy = skb_copy(skb, GFP_KERNEL);
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400713 if (!copy)
714 return;
Paul Moorec6480202016-11-29 16:53:25 -0500715 nlh = nlmsg_hdr(copy);
716 nlh->nlmsg_len = skb->len;
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400717
Paul Moorec6480202016-11-29 16:53:25 -0500718 nlmsg_multicast(sock, copy, 0, AUDIT_NLGRP_READLOG, GFP_KERNEL);
Richard Guy Briggs451f9212014-04-22 21:31:57 -0400719}
720
Paul Moorec6480202016-11-29 16:53:25 -0500721/**
Paul Moore5b523302017-03-21 11:26:35 -0400722 * kauditd_thread - Worker thread to send audit records to userspace
723 * @dummy: unused
Richard Guy Briggsb551d1d2013-01-24 13:15:10 -0500724 */
Adrian Bunk97a41e22006-01-08 01:02:17 -0800725static int kauditd_thread(void *dummy)
David Woodhouseb7d11252005-05-19 10:56:58 +0100726{
Paul Moorec6480202016-11-29 16:53:25 -0500727 int rc;
Paul Moore5b523302017-03-21 11:26:35 -0400728 u32 portid = 0;
729 struct net *net = NULL;
730 struct sock *sk = NULL;
Paul Moore4aa838722016-11-29 16:53:24 -0500731
Paul Moorec6480202016-11-29 16:53:25 -0500732#define UNICAST_RETRIES 5
Paul Moorec6480202016-11-29 16:53:25 -0500733
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700734 set_freezable();
Andrew Morton4899b8b2006-10-06 00:43:48 -0700735 while (!kthread_should_stop()) {
Paul Moore5b523302017-03-21 11:26:35 -0400736 /* NOTE: see the lock comments in auditd_send_unicast_skb() */
737 rcu_read_lock();
738 if (!auditd_conn.pid) {
739 rcu_read_unlock();
740 goto main_queue;
741 }
742 net = auditd_conn.net;
743 get_net(net);
744 sk = audit_get_sk(net);
745 portid = auditd_conn.portid;
746 rcu_read_unlock();
Eric Parisf3d357b2008-04-18 10:02:28 -0400747
Paul Moorec6480202016-11-29 16:53:25 -0500748 /* attempt to flush the hold queue */
Paul Moore5b523302017-03-21 11:26:35 -0400749 rc = kauditd_send_queue(sk, portid,
750 &audit_hold_queue, UNICAST_RETRIES,
751 NULL, kauditd_rehold_skb);
752 if (rc < 0) {
753 sk = NULL;
Paul Moore264d5092017-04-10 11:16:59 -0400754 auditd_reset();
Paul Moore5b523302017-03-21 11:26:35 -0400755 goto main_queue;
David Woodhouseb7d11252005-05-19 10:56:58 +0100756 }
Richard Guy Briggs3320c512013-01-24 13:15:11 -0500757
Paul Moorec6480202016-11-29 16:53:25 -0500758 /* attempt to flush the retry queue */
Paul Moore5b523302017-03-21 11:26:35 -0400759 rc = kauditd_send_queue(sk, portid,
760 &audit_retry_queue, UNICAST_RETRIES,
761 NULL, kauditd_hold_skb);
762 if (rc < 0) {
763 sk = NULL;
Paul Moore264d5092017-04-10 11:16:59 -0400764 auditd_reset();
Paul Moore5b523302017-03-21 11:26:35 -0400765 goto main_queue;
Paul Moorec6480202016-11-29 16:53:25 -0500766 }
767
Paul Moore5b523302017-03-21 11:26:35 -0400768main_queue:
769 /* process the main queue - do the multicast send and attempt
770 * unicast, dump failed record sends to the retry queue; if
771 * sk == NULL due to previous failures we will just do the
772 * multicast send and move the record to the retry queue */
Paul Moore264d5092017-04-10 11:16:59 -0400773 rc = kauditd_send_queue(sk, portid, &audit_queue, 1,
774 kauditd_send_multicast_skb,
775 kauditd_retry_skb);
776 if (sk == NULL || rc < 0)
777 auditd_reset();
778 sk = NULL;
Paul Moore4aa838722016-11-29 16:53:24 -0500779
Paul Moore5b523302017-03-21 11:26:35 -0400780 /* drop our netns reference, no auditd sends past this line */
781 if (net) {
782 put_net(net);
783 net = NULL;
Richard Guy Briggs3320c512013-01-24 13:15:11 -0500784 }
Paul Moore5b523302017-03-21 11:26:35 -0400785
786 /* we have processed all the queues so wake everyone */
787 wake_up(&audit_backlog_wait);
788
789 /* NOTE: we want to wake up if there is anything on the queue,
790 * regardless of if an auditd is connected, as we need to
791 * do the multicast send and rotate records from the
792 * main queue to the retry/hold queues */
793 wait_event_freezable(kauditd_wait,
794 (skb_queue_len(&audit_queue) ? 1 : 0));
David Woodhouseb7d11252005-05-19 10:56:58 +0100795 }
Paul Moorec6480202016-11-29 16:53:25 -0500796
Andrew Morton4899b8b2006-10-06 00:43:48 -0700797 return 0;
David Woodhouseb7d11252005-05-19 10:56:58 +0100798}
799
Al Viro9044e6b2006-05-22 01:09:24 -0400800int audit_send_list(void *_dest)
801{
802 struct audit_netlink_list *dest = _dest;
Al Viro9044e6b2006-05-22 01:09:24 -0400803 struct sk_buff *skb;
Paul Moore5b523302017-03-21 11:26:35 -0400804 struct sock *sk = audit_get_sk(dest->net);
Al Viro9044e6b2006-05-22 01:09:24 -0400805
806 /* wait for parent to finish and send an ACK */
Amy Griffisf368c07d2006-04-07 16:55:56 -0400807 mutex_lock(&audit_cmd_mutex);
808 mutex_unlock(&audit_cmd_mutex);
Al Viro9044e6b2006-05-22 01:09:24 -0400809
810 while ((skb = __skb_dequeue(&dest->q)) != NULL)
Paul Moore5b523302017-03-21 11:26:35 -0400811 netlink_unicast(sk, skb, dest->portid, 0);
Al Viro9044e6b2006-05-22 01:09:24 -0400812
Paul Moore5b523302017-03-21 11:26:35 -0400813 put_net(dest->net);
Al Viro9044e6b2006-05-22 01:09:24 -0400814 kfree(dest);
815
816 return 0;
817}
818
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400819struct sk_buff *audit_make_reply(__u32 portid, int seq, int type, int done,
Stephen Hemmingerb8800aa2010-10-20 17:23:50 -0700820 int multi, const void *payload, int size)
Al Viro9044e6b2006-05-22 01:09:24 -0400821{
822 struct sk_buff *skb;
823 struct nlmsghdr *nlh;
Al Viro9044e6b2006-05-22 01:09:24 -0400824 void *data;
825 int flags = multi ? NLM_F_MULTI : 0;
826 int t = done ? NLMSG_DONE : type;
827
Eric Parisee080e62009-06-11 14:31:35 -0400828 skb = nlmsg_new(size, GFP_KERNEL);
Al Viro9044e6b2006-05-22 01:09:24 -0400829 if (!skb)
830 return NULL;
831
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400832 nlh = nlmsg_put(skb, portid, seq, t, size, flags);
David S. Millerc64e66c2012-06-26 21:45:21 -0700833 if (!nlh)
834 goto out_kfree_skb;
835 data = nlmsg_data(nlh);
Al Viro9044e6b2006-05-22 01:09:24 -0400836 memcpy(data, payload, size);
837 return skb;
838
David S. Millerc64e66c2012-06-26 21:45:21 -0700839out_kfree_skb:
840 kfree_skb(skb);
Al Viro9044e6b2006-05-22 01:09:24 -0400841 return NULL;
842}
843
Eric Parisf09ac9d2008-04-18 10:11:04 -0400844static int audit_send_reply_thread(void *arg)
845{
846 struct audit_reply *reply = (struct audit_reply *)arg;
Paul Moore5b523302017-03-21 11:26:35 -0400847 struct sock *sk = audit_get_sk(reply->net);
Eric Parisf09ac9d2008-04-18 10:11:04 -0400848
849 mutex_lock(&audit_cmd_mutex);
850 mutex_unlock(&audit_cmd_mutex);
851
852 /* Ignore failure. It'll only happen if the sender goes away,
853 because our timeout is set to infinite. */
Paul Moore5b523302017-03-21 11:26:35 -0400854 netlink_unicast(sk, reply->skb, reply->portid, 0);
855 put_net(reply->net);
Eric Parisf09ac9d2008-04-18 10:11:04 -0400856 kfree(reply);
857 return 0;
858}
Paul Moorec6480202016-11-29 16:53:25 -0500859
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700860/**
861 * audit_send_reply - send an audit reply message via netlink
Eric W. Biedermand211f1772014-03-08 15:31:54 -0800862 * @request_skb: skb of request we are replying to (used to target the reply)
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700863 * @seq: sequence number
864 * @type: audit message type
865 * @done: done (last) flag
866 * @multi: multi-part message flag
867 * @payload: payload data
868 * @size: payload size
869 *
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400870 * Allocates an skb, builds the netlink message, and sends it to the port id.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -0700871 * No failure notifications.
872 */
Eric W. Biederman6f285b12014-02-28 19:44:55 -0800873static void audit_send_reply(struct sk_buff *request_skb, int seq, int type, int done,
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400874 int multi, const void *payload, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Eric W. Biederman6f285b12014-02-28 19:44:55 -0800876 u32 portid = NETLINK_CB(request_skb).portid;
877 struct net *net = sock_net(NETLINK_CB(request_skb).sk);
Eric Parisf09ac9d2008-04-18 10:11:04 -0400878 struct sk_buff *skb;
879 struct task_struct *tsk;
880 struct audit_reply *reply = kmalloc(sizeof(struct audit_reply),
881 GFP_KERNEL);
882
883 if (!reply)
884 return;
885
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400886 skb = audit_make_reply(portid, seq, type, done, multi, payload, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (!skb)
Andrew Mortonfcaf1eb2008-05-14 16:11:48 -0700888 goto out;
Eric Parisf09ac9d2008-04-18 10:11:04 -0400889
Eric W. Biederman6f285b12014-02-28 19:44:55 -0800890 reply->net = get_net(net);
Richard Guy Briggsf9441632013-08-14 11:32:45 -0400891 reply->portid = portid;
Eric Parisf09ac9d2008-04-18 10:11:04 -0400892 reply->skb = skb;
893
894 tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply");
Andrew Mortonfcaf1eb2008-05-14 16:11:48 -0700895 if (!IS_ERR(tsk))
896 return;
897 kfree_skb(skb);
898out:
899 kfree(reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902/*
903 * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
904 * control messages.
905 */
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700906static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 int err = 0;
909
Richard Guy Briggs5a3cb3b2013-08-16 00:04:46 -0400910 /* Only support initial user namespace for now. */
Eric Parisaa4af832014-03-30 19:07:54 -0400911 /*
912 * We return ECONNREFUSED because it tricks userspace into thinking
913 * that audit was not configured into the kernel. Lots of users
914 * configure their PAM stack (because that's what the distro does)
915 * to reject login if unable to send messages to audit. If we return
916 * ECONNREFUSED the PAM stack thinks the kernel does not have audit
917 * configured in and will let login proceed. If we return EPERM
918 * userspace will reject all logins. This should be removed when we
919 * support non init namespaces!!
920 */
Linus Torvalds0b747172014-04-12 12:38:53 -0700921 if (current_user_ns() != &init_user_ns)
Eric Parisaa4af832014-03-30 19:07:54 -0400922 return -ECONNREFUSED;
Eric W. Biederman34e36d8e2012-09-10 23:20:20 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 switch (msg_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 case AUDIT_LIST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 case AUDIT_ADD:
927 case AUDIT_DEL:
Eric Paris18900902013-04-18 19:16:36 -0400928 return -EOPNOTSUPP;
929 case AUDIT_GET:
930 case AUDIT_SET:
Eric Parisb0fed402013-05-22 12:54:49 -0400931 case AUDIT_GET_FEATURE:
932 case AUDIT_SET_FEATURE:
Eric Paris18900902013-04-18 19:16:36 -0400933 case AUDIT_LIST_RULES:
934 case AUDIT_ADD_RULE:
Amy Griffis93315ed2006-02-07 12:05:27 -0500935 case AUDIT_DEL_RULE:
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100936 case AUDIT_SIGNAL_INFO:
Miloslav Trmac522ed772007-07-15 23:40:56 -0700937 case AUDIT_TTY_GET:
938 case AUDIT_TTY_SET:
Al Viro74c3cbe2007-07-22 08:04:18 -0400939 case AUDIT_TRIM:
940 case AUDIT_MAKE_EQUIV:
Richard Guy Briggs5a3cb3b2013-08-16 00:04:46 -0400941 /* Only support auditd and auditctl in initial pid namespace
942 * for now. */
Ameen Ali5985de62015-02-23 15:38:00 -0500943 if (task_active_pid_ns(current) != &init_pid_ns)
Richard Guy Briggs5a3cb3b2013-08-16 00:04:46 -0400944 return -EPERM;
945
Eric W. Biederman90f62cf32014-04-23 14:29:27 -0700946 if (!netlink_capable(skb, CAP_AUDIT_CONTROL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 err = -EPERM;
948 break;
Steve Grubb05474102005-05-21 00:18:37 +0100949 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -0700950 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
951 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
Eric W. Biederman90f62cf32014-04-23 14:29:27 -0700952 if (!netlink_capable(skb, CAP_AUDIT_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 err = -EPERM;
954 break;
955 default: /* bad msg */
956 err = -EINVAL;
957 }
958
959 return err;
960}
961
Paul Moore233a6862015-11-04 08:23:52 -0500962static void audit_log_common_recv_msg(struct audit_buffer **ab, u16 msg_type)
Eric Paris50397bd2008-01-07 18:14:19 -0500963{
Eric Parisdc9eb692013-04-19 13:23:09 -0400964 uid_t uid = from_kuid(&init_user_ns, current_uid());
Richard Guy Briggsf1dc4862013-12-11 13:52:26 -0500965 pid_t pid = task_tgid_nr(current);
Eric Paris50397bd2008-01-07 18:14:19 -0500966
Tyler Hicks0868a5e2013-07-25 18:02:55 -0700967 if (!audit_enabled && msg_type != AUDIT_USER_AVC) {
Eric Paris50397bd2008-01-07 18:14:19 -0500968 *ab = NULL;
Paul Moore233a6862015-11-04 08:23:52 -0500969 return;
Eric Paris50397bd2008-01-07 18:14:19 -0500970 }
971
972 *ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
Kees Cook0644ec02013-01-11 14:32:07 -0800973 if (unlikely(!*ab))
Paul Moore233a6862015-11-04 08:23:52 -0500974 return;
Richard Guy Briggsf1dc4862013-12-11 13:52:26 -0500975 audit_log_format(*ab, "pid=%d uid=%u", pid, uid);
Eric Paris4d3fb702013-04-30 09:53:34 -0400976 audit_log_session_info(*ab);
Eric Parisb122c372013-04-19 15:00:33 -0400977 audit_log_task_context(*ab);
Eric Paris50397bd2008-01-07 18:14:19 -0500978}
979
Eric Parisb0fed402013-05-22 12:54:49 -0400980int is_audit_feature_set(int i)
981{
982 return af.features & AUDIT_FEATURE_TO_MASK(i);
983}
984
985
986static int audit_get_feature(struct sk_buff *skb)
987{
988 u32 seq;
989
990 seq = nlmsg_hdr(skb)->nlmsg_seq;
991
Richard Guy Briggs9ef91512014-08-24 20:37:52 -0400992 audit_send_reply(skb, seq, AUDIT_GET_FEATURE, 0, 0, &af, sizeof(af));
Eric Parisb0fed402013-05-22 12:54:49 -0400993
994 return 0;
995}
996
997static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature,
998 u32 old_lock, u32 new_lock, int res)
999{
1000 struct audit_buffer *ab;
1001
Gao fengb6c50fe2013-11-01 19:34:43 +08001002 if (audit_enabled == AUDIT_OFF)
1003 return;
1004
Eric Parisb0fed402013-05-22 12:54:49 -04001005 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_FEATURE_CHANGE);
Richard Guy Briggsad2ac262014-01-07 13:08:41 -05001006 audit_log_task_info(ab, current);
Richard Guy Briggs897f1ac2014-10-30 11:22:53 -04001007 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 -04001008 audit_feature_names[which], !!old_feature, !!new_feature,
1009 !!old_lock, !!new_lock, res);
1010 audit_log_end(ab);
1011}
1012
1013static int audit_set_feature(struct sk_buff *skb)
1014{
1015 struct audit_features *uaf;
1016 int i;
1017
Fabian Frederick6eed9b22014-06-03 22:05:10 +02001018 BUILD_BUG_ON(AUDIT_LAST_FEATURE + 1 > ARRAY_SIZE(audit_feature_names));
Eric Parisb0fed402013-05-22 12:54:49 -04001019 uaf = nlmsg_data(nlmsg_hdr(skb));
1020
1021 /* if there is ever a version 2 we should handle that here */
1022
1023 for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
1024 u32 feature = AUDIT_FEATURE_TO_MASK(i);
1025 u32 old_feature, new_feature, old_lock, new_lock;
1026
1027 /* if we are not changing this feature, move along */
1028 if (!(feature & uaf->mask))
1029 continue;
1030
1031 old_feature = af.features & feature;
1032 new_feature = uaf->features & feature;
1033 new_lock = (uaf->lock | af.lock) & feature;
1034 old_lock = af.lock & feature;
1035
1036 /* are we changing a locked feature? */
Gao feng4547b3b2013-11-01 19:34:44 +08001037 if (old_lock && (new_feature != old_feature)) {
Eric Parisb0fed402013-05-22 12:54:49 -04001038 audit_log_feature_change(i, old_feature, new_feature,
1039 old_lock, new_lock, 0);
1040 return -EPERM;
1041 }
1042 }
1043 /* nothing invalid, do the changes */
1044 for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
1045 u32 feature = AUDIT_FEATURE_TO_MASK(i);
1046 u32 old_feature, new_feature, old_lock, new_lock;
1047
1048 /* if we are not changing this feature, move along */
1049 if (!(feature & uaf->mask))
1050 continue;
1051
1052 old_feature = af.features & feature;
1053 new_feature = uaf->features & feature;
1054 old_lock = af.lock & feature;
1055 new_lock = (uaf->lock | af.lock) & feature;
1056
1057 if (new_feature != old_feature)
1058 audit_log_feature_change(i, old_feature, new_feature,
1059 old_lock, new_lock, 1);
1060
1061 if (new_feature)
1062 af.features |= feature;
1063 else
1064 af.features &= ~feature;
1065 af.lock |= new_lock;
1066 }
1067
1068 return 0;
1069}
1070
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001071static int audit_replace(pid_t pid)
1072{
Paul Moore5b523302017-03-21 11:26:35 -04001073 struct sk_buff *skb;
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001074
Paul Moore5b523302017-03-21 11:26:35 -04001075 skb = audit_make_reply(0, 0, AUDIT_REPLACE, 0, 0, &pid, sizeof(pid));
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001076 if (!skb)
1077 return -ENOMEM;
Paul Moore5b523302017-03-21 11:26:35 -04001078 return auditd_send_unicast_skb(skb);
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001079}
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1082{
Eric Parisdc9eb692013-04-19 13:23:09 -04001083 u32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 int err;
Steve Grubbc0404992005-05-13 18:17:42 +01001086 struct audit_buffer *ab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 u16 msg_type = nlh->nlmsg_type;
Al Viroe1396062006-05-25 10:19:47 -04001088 struct audit_sig_info *sig_data;
Eric Paris50397bd2008-01-07 18:14:19 -05001089 char *ctx = NULL;
Al Viroe1396062006-05-25 10:19:47 -04001090 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Darrel Goeddelc7bdb542006-06-27 13:26:11 -07001092 err = audit_netlink_ok(skb, msg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (err)
1094 return err;
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 seq = nlh->nlmsg_seq;
David S. Millerc64e66c2012-06-26 21:45:21 -07001097 data = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 switch (msg_type) {
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001100 case AUDIT_GET: {
1101 struct audit_status s;
1102 memset(&s, 0, sizeof(s));
1103 s.enabled = audit_enabled;
1104 s.failure = audit_failure;
Paul Moore5b523302017-03-21 11:26:35 -04001105 rcu_read_lock();
1106 s.pid = auditd_conn.pid;
1107 rcu_read_unlock();
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001108 s.rate_limit = audit_rate_limit;
1109 s.backlog_limit = audit_backlog_limit;
1110 s.lost = atomic_read(&audit_lost);
Paul Mooreaf8b8242016-11-29 16:53:24 -05001111 s.backlog = skb_queue_len(&audit_queue);
Richard Guy Briggs0288d712014-11-17 15:51:01 -05001112 s.feature_bitmap = AUDIT_FEATURE_BITMAP_ALL;
Paul Moore31975422016-11-29 16:53:25 -05001113 s.backlog_wait_time = audit_backlog_wait_time;
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001114 audit_send_reply(skb, seq, AUDIT_GET, 0, 0, &s, sizeof(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 break;
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001116 }
1117 case AUDIT_SET: {
1118 struct audit_status s;
1119 memset(&s, 0, sizeof(s));
1120 /* guard against past and future API changes */
1121 memcpy(&s, data, min_t(size_t, sizeof(s), nlmsg_len(nlh)));
1122 if (s.mask & AUDIT_STATUS_ENABLED) {
1123 err = audit_set_enabled(s.enabled);
zhangxiliang20c6aaa2008-07-31 10:11:19 +08001124 if (err < 0)
1125 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001127 if (s.mask & AUDIT_STATUS_FAILURE) {
1128 err = audit_set_failure(s.failure);
zhangxiliang20c6aaa2008-07-31 10:11:19 +08001129 if (err < 0)
1130 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001132 if (s.mask & AUDIT_STATUS_PID) {
Paul Moorefa2bea22016-08-30 17:19:13 -04001133 /* NOTE: we are using task_tgid_vnr() below because
1134 * the s.pid value is relative to the namespace
1135 * of the caller; at present this doesn't matter
1136 * much since you can really only run auditd
1137 * from the initial pid namespace, but something
1138 * to keep in mind if this changes */
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001139 int new_pid = s.pid;
Paul Moore5b523302017-03-21 11:26:35 -04001140 pid_t auditd_pid;
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001141 pid_t requesting_pid = task_tgid_vnr(current);
Eric Paris1a6b9f22008-01-07 17:09:31 -05001142
Paul Moore5b523302017-03-21 11:26:35 -04001143 /* test the auditd connection */
1144 audit_replace(requesting_pid);
1145
1146 rcu_read_lock();
1147 auditd_pid = auditd_conn.pid;
1148 /* only the current auditd can unregister itself */
1149 if ((!new_pid) && (requesting_pid != auditd_pid)) {
1150 rcu_read_unlock();
1151 audit_log_config_change("audit_pid", new_pid,
1152 auditd_pid, 0);
Richard Guy Briggs34eab0a2013-06-21 14:47:13 -04001153 return -EACCES;
Richard Guy Briggs935c9e72016-01-25 18:04:15 -05001154 }
Paul Moore5b523302017-03-21 11:26:35 -04001155 /* replacing a healthy auditd is not allowed */
1156 if (auditd_pid && new_pid) {
1157 rcu_read_unlock();
1158 audit_log_config_change("audit_pid", new_pid,
1159 auditd_pid, 0);
Richard Guy Briggs133e1e52016-01-25 18:04:15 -05001160 return -EEXIST;
Richard Guy Briggs935c9e72016-01-25 18:04:15 -05001161 }
Paul Moore5b523302017-03-21 11:26:35 -04001162 rcu_read_unlock();
1163
Eric Paris1a6b9f22008-01-07 17:09:31 -05001164 if (audit_enabled != AUDIT_OFF)
Paul Moore5b523302017-03-21 11:26:35 -04001165 audit_log_config_change("audit_pid", new_pid,
1166 auditd_pid, 1);
1167
Richard Guy Briggs533c7b62016-12-13 10:03:01 -05001168 if (new_pid) {
Paul Moore5b523302017-03-21 11:26:35 -04001169 /* register a new auditd connection */
1170 auditd_set(new_pid,
1171 NETLINK_CB(skb).portid,
1172 sock_net(NETLINK_CB(skb).sk));
1173 /* try to process any backlog */
1174 wake_up_interruptible(&kauditd_wait);
1175 } else
1176 /* unregister the auditd connection */
Paul Moore6c54e782016-11-29 16:53:26 -05001177 auditd_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001179 if (s.mask & AUDIT_STATUS_RATE_LIMIT) {
1180 err = audit_set_rate_limit(s.rate_limit);
zhangxiliang20c6aaa2008-07-31 10:11:19 +08001181 if (err < 0)
1182 return err;
1183 }
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -04001184 if (s.mask & AUDIT_STATUS_BACKLOG_LIMIT) {
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001185 err = audit_set_backlog_limit(s.backlog_limit);
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -04001186 if (err < 0)
1187 return err;
1188 }
Eric Paris3f0c5fa2014-01-13 16:49:28 -05001189 if (s.mask & AUDIT_STATUS_BACKLOG_WAIT_TIME) {
1190 if (sizeof(s) > (size_t)nlh->nlmsg_len)
1191 return -EINVAL;
Pranith Kumar724e7bf2015-03-11 14:08:19 -04001192 if (s.backlog_wait_time > 10*AUDIT_BACKLOG_WAIT_TIME)
Eric Paris3f0c5fa2014-01-13 16:49:28 -05001193 return -EINVAL;
1194 err = audit_set_backlog_wait_time(s.backlog_wait_time);
1195 if (err < 0)
1196 return err;
Richard Guy Briggs51cc83f2013-09-18 11:55:12 -04001197 }
Richard Guy Briggs92c82e82017-01-13 03:26:29 -05001198 if (s.mask == AUDIT_STATUS_LOST) {
1199 u32 lost = atomic_xchg(&audit_lost, 0);
1200
1201 audit_log_config_change("lost", 0, lost, 1);
1202 return lost;
1203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 break;
Richard Guy Briggs09f883a2013-09-18 09:32:24 -04001205 }
Eric Parisb0fed402013-05-22 12:54:49 -04001206 case AUDIT_GET_FEATURE:
1207 err = audit_get_feature(skb);
1208 if (err)
1209 return err;
1210 break;
1211 case AUDIT_SET_FEATURE:
1212 err = audit_set_feature(skb);
1213 if (err)
1214 return err;
1215 break;
Steve Grubb05474102005-05-21 00:18:37 +01001216 case AUDIT_USER:
Robert P. J. Day039b6b32007-05-08 00:29:20 -07001217 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
1218 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
David Woodhouse4a4cd632005-06-22 14:56:47 +01001219 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
1220 return 0;
David Woodhouse0f45aa12005-06-19 19:35:50 +01001221
Richard Guy Briggs86b2efb2016-06-24 16:35:46 -04001222 err = audit_filter(msg_type, AUDIT_FILTER_USER);
Richard Guy Briggs724e4fc2013-11-25 21:57:51 -05001223 if (err == 1) { /* match or error */
David Woodhouse4a4cd632005-06-22 14:56:47 +01001224 err = 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001225 if (msg_type == AUDIT_USER_TTY) {
Peter Hurley37282a72016-01-09 22:55:31 -08001226 err = tty_audit_push();
Miloslav Trmac522ed772007-07-15 23:40:56 -07001227 if (err)
1228 break;
1229 }
Eric Parisdc9eb692013-04-19 13:23:09 -04001230 audit_log_common_recv_msg(&ab, msg_type);
Eric Paris50397bd2008-01-07 18:14:19 -05001231 if (msg_type != AUDIT_USER_TTY)
Richard Guy Briggsb50eba72013-09-16 18:20:42 -04001232 audit_log_format(ab, " msg='%.*s'",
1233 AUDIT_MESSAGE_TEXT_MAX,
Eric Paris50397bd2008-01-07 18:14:19 -05001234 (char *)data);
1235 else {
1236 int size;
1237
Eric Parisf7616102013-04-11 11:25:00 -04001238 audit_log_format(ab, " data=");
Eric Paris50397bd2008-01-07 18:14:19 -05001239 size = nlmsg_len(nlh);
Miloslav Trmac55ad2f82009-03-19 09:52:47 -04001240 if (size > 0 &&
1241 ((unsigned char *)data)[size - 1] == '\0')
1242 size--;
Eric Parisb556f8a2008-04-18 10:12:59 -04001243 audit_log_n_untrustedstring(ab, data, size);
David Woodhouse4a4cd632005-06-22 14:56:47 +01001244 }
Richard Guy Briggsf9441632013-08-14 11:32:45 -04001245 audit_set_portid(ab, NETLINK_CB(skb).portid);
Eric Paris50397bd2008-01-07 18:14:19 -05001246 audit_log_end(ab);
David Woodhouse0f45aa12005-06-19 19:35:50 +01001247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 break;
Amy Griffis93315ed2006-02-07 12:05:27 -05001249 case AUDIT_ADD_RULE:
1250 case AUDIT_DEL_RULE:
1251 if (nlmsg_len(nlh) < sizeof(struct audit_rule_data))
1252 return -EINVAL;
Eric Paris1a6b9f22008-01-07 17:09:31 -05001253 if (audit_enabled == AUDIT_LOCKED) {
Eric Parisdc9eb692013-04-19 13:23:09 -04001254 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
1255 audit_log_format(ab, " audit_enabled=%d res=0", audit_enabled);
Eric Paris50397bd2008-01-07 18:14:19 -05001256 audit_log_end(ab);
Steve Grubb6a01b07f2007-01-19 14:39:55 -05001257 return -EPERM;
1258 }
Richard Guy Briggsce0d9f02013-11-20 14:01:53 -05001259 err = audit_rule_change(msg_type, NETLINK_CB(skb).portid,
Eric Parisdc9eb692013-04-19 13:23:09 -04001260 seq, data, nlmsg_len(nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 break;
Richard Guy Briggsce0d9f02013-11-20 14:01:53 -05001262 case AUDIT_LIST_RULES:
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001263 err = audit_list_rules_send(skb, seq);
Richard Guy Briggsce0d9f02013-11-20 14:01:53 -05001264 break;
Al Viro74c3cbe2007-07-22 08:04:18 -04001265 case AUDIT_TRIM:
1266 audit_trim_trees();
Eric Parisdc9eb692013-04-19 13:23:09 -04001267 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
Al Viro74c3cbe2007-07-22 08:04:18 -04001268 audit_log_format(ab, " op=trim res=1");
1269 audit_log_end(ab);
1270 break;
1271 case AUDIT_MAKE_EQUIV: {
1272 void *bufp = data;
1273 u32 sizes[2];
Harvey Harrison7719e432008-04-27 02:39:56 -07001274 size_t msglen = nlmsg_len(nlh);
Al Viro74c3cbe2007-07-22 08:04:18 -04001275 char *old, *new;
1276
1277 err = -EINVAL;
Harvey Harrison7719e432008-04-27 02:39:56 -07001278 if (msglen < 2 * sizeof(u32))
Al Viro74c3cbe2007-07-22 08:04:18 -04001279 break;
1280 memcpy(sizes, bufp, 2 * sizeof(u32));
1281 bufp += 2 * sizeof(u32);
Harvey Harrison7719e432008-04-27 02:39:56 -07001282 msglen -= 2 * sizeof(u32);
1283 old = audit_unpack_string(&bufp, &msglen, sizes[0]);
Al Viro74c3cbe2007-07-22 08:04:18 -04001284 if (IS_ERR(old)) {
1285 err = PTR_ERR(old);
1286 break;
1287 }
Harvey Harrison7719e432008-04-27 02:39:56 -07001288 new = audit_unpack_string(&bufp, &msglen, sizes[1]);
Al Viro74c3cbe2007-07-22 08:04:18 -04001289 if (IS_ERR(new)) {
1290 err = PTR_ERR(new);
1291 kfree(old);
1292 break;
1293 }
1294 /* OK, here comes... */
1295 err = audit_tag_tree(old, new);
1296
Eric Parisdc9eb692013-04-19 13:23:09 -04001297 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
Eric Paris50397bd2008-01-07 18:14:19 -05001298
Al Viro74c3cbe2007-07-22 08:04:18 -04001299 audit_log_format(ab, " op=make_equiv old=");
1300 audit_log_untrustedstring(ab, old);
1301 audit_log_format(ab, " new=");
1302 audit_log_untrustedstring(ab, new);
1303 audit_log_format(ab, " res=%d", !err);
1304 audit_log_end(ab);
1305 kfree(old);
1306 kfree(new);
1307 break;
1308 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001309 case AUDIT_SIGNAL_INFO:
Eric Paris939cbf22009-09-23 13:46:00 -04001310 len = 0;
1311 if (audit_sig_sid) {
1312 err = security_secid_to_secctx(audit_sig_sid, &ctx, &len);
1313 if (err)
1314 return err;
1315 }
Al Viroe1396062006-05-25 10:19:47 -04001316 sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL);
1317 if (!sig_data) {
Eric Paris939cbf22009-09-23 13:46:00 -04001318 if (audit_sig_sid)
1319 security_release_secctx(ctx, len);
Al Viroe1396062006-05-25 10:19:47 -04001320 return -ENOMEM;
1321 }
Eric W. Biedermancca080d2012-02-07 16:53:48 -08001322 sig_data->uid = from_kuid(&init_user_ns, audit_sig_uid);
Al Viroe1396062006-05-25 10:19:47 -04001323 sig_data->pid = audit_sig_pid;
Eric Paris939cbf22009-09-23 13:46:00 -04001324 if (audit_sig_sid) {
1325 memcpy(sig_data->ctx, ctx, len);
1326 security_release_secctx(ctx, len);
1327 }
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001328 audit_send_reply(skb, seq, AUDIT_SIGNAL_INFO, 0, 0,
1329 sig_data, sizeof(*sig_data) + len);
Al Viroe1396062006-05-25 10:19:47 -04001330 kfree(sig_data);
Steve Grubbc2f0c7c2005-05-06 12:38:39 +01001331 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001332 case AUDIT_TTY_GET: {
1333 struct audit_tty_status s;
Peter Hurley2e28d382016-01-09 22:55:33 -08001334 unsigned int t;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001335
Peter Hurley2e28d382016-01-09 22:55:33 -08001336 t = READ_ONCE(current->signal->audit_tty);
1337 s.enabled = t & AUDIT_TTY_ENABLE;
1338 s.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
Thomas Gleixner20703202009-12-09 14:19:35 +00001339
Eric W. Biederman6f285b12014-02-28 19:44:55 -08001340 audit_send_reply(skb, seq, AUDIT_TTY_GET, 0, 0, &s, sizeof(s));
Miloslav Trmac522ed772007-07-15 23:40:56 -07001341 break;
1342 }
1343 case AUDIT_TTY_SET: {
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001344 struct audit_tty_status s, old;
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001345 struct audit_buffer *ab;
Peter Hurley2e28d382016-01-09 22:55:33 -08001346 unsigned int t;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001347
Richard Guy Briggs46e959e2013-05-03 14:03:50 -04001348 memset(&s, 0, sizeof(s));
1349 /* guard against past and future API changes */
Mathias Krause4d8fe732013-09-30 22:04:25 +02001350 memcpy(&s, data, min_t(size_t, sizeof(s), nlmsg_len(nlh)));
Eric Paris0e23bac2014-01-13 21:12:34 -05001351 /* check if new data is valid */
1352 if ((s.enabled != 0 && s.enabled != 1) ||
1353 (s.log_passwd != 0 && s.log_passwd != 1))
1354 err = -EINVAL;
1355
Peter Hurley2e28d382016-01-09 22:55:33 -08001356 if (err)
1357 t = READ_ONCE(current->signal->audit_tty);
1358 else {
1359 t = s.enabled | (-s.log_passwd & AUDIT_TTY_LOG_PASSWD);
1360 t = xchg(&current->signal->audit_tty, t);
Eric Paris0e23bac2014-01-13 21:12:34 -05001361 }
Peter Hurley2e28d382016-01-09 22:55:33 -08001362 old.enabled = t & AUDIT_TTY_ENABLE;
1363 old.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
Eric Paris0e23bac2014-01-13 21:12:34 -05001364
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001365 audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
Eric Paris1ce319f2014-01-13 21:16:59 -05001366 audit_log_format(ab, " op=tty_set old-enabled=%d new-enabled=%d"
1367 " old-log_passwd=%d new-log_passwd=%d res=%d",
1368 old.enabled, s.enabled, old.log_passwd,
1369 s.log_passwd, !err);
Richard Guy Briggsa06e56b2013-11-15 11:29:02 -05001370 audit_log_end(ab);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001371 break;
1372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 default:
1374 err = -EINVAL;
1375 break;
1376 }
1377
1378 return err < 0 ? err : 0;
1379}
1380
Paul Moorea9d16202017-05-02 10:16:05 -04001381/**
1382 * audit_receive - receive messages from a netlink control socket
1383 * @skb: the message buffer
1384 *
1385 * Parse the provided skb and deal with any messages that may be present,
1386 * malformed skbs are discarded.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001387 */
Paul Moorea9d16202017-05-02 10:16:05 -04001388static void audit_receive(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Eric Parisea7ae602009-06-11 14:31:35 -04001390 struct nlmsghdr *nlh;
1391 /*
Hong zhi guo94191212013-03-27 06:49:06 +00001392 * len MUST be signed for nlmsg_next to be able to dec it below 0
Eric Parisea7ae602009-06-11 14:31:35 -04001393 * if the nlmsg_len was not aligned
1394 */
1395 int len;
1396 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Eric Parisea7ae602009-06-11 14:31:35 -04001398 nlh = nlmsg_hdr(skb);
1399 len = skb->len;
1400
Paul Moorea9d16202017-05-02 10:16:05 -04001401 mutex_lock(&audit_cmd_mutex);
Hong zhi guo94191212013-03-27 06:49:06 +00001402 while (nlmsg_ok(nlh, len)) {
Eric Parisea7ae602009-06-11 14:31:35 -04001403 err = audit_receive_msg(skb, nlh);
1404 /* if err or if this message says it wants a response */
1405 if (err || (nlh->nlmsg_flags & NLM_F_ACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 netlink_ack(skb, nlh, err);
Eric Parisea7ae602009-06-11 14:31:35 -04001407
Alexandru Copot2851da52013-03-28 23:31:29 +02001408 nlh = nlmsg_next(nlh, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
Amy Griffisf368c07d2006-04-07 16:55:56 -04001410 mutex_unlock(&audit_cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Richard Guy Briggs3a101b82014-04-22 21:31:56 -04001413/* Run custom bind function on netlink socket group connect or bind requests. */
Johannes Berg023e2cf2014-12-23 21:00:06 +01001414static int audit_bind(struct net *net, int group)
Richard Guy Briggs3a101b82014-04-22 21:31:56 -04001415{
1416 if (!capable(CAP_AUDIT_READ))
1417 return -EPERM;
1418
1419 return 0;
1420}
1421
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001422static int __net_init audit_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001424 struct netlink_kernel_cfg cfg = {
1425 .input = audit_receive,
Richard Guy Briggs3a101b82014-04-22 21:31:56 -04001426 .bind = audit_bind,
Richard Guy Briggs451f9212014-04-22 21:31:57 -04001427 .flags = NL_CFG_F_NONROOT_RECV,
1428 .groups = AUDIT_NLGRP_MAX,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001429 };
Amy Griffisf368c07d2006-04-07 16:55:56 -04001430
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001431 struct audit_net *aunet = net_generic(net, audit_net_id);
1432
Paul Moore5b523302017-03-21 11:26:35 -04001433 aunet->sk = netlink_kernel_create(net, NETLINK_AUDIT, &cfg);
1434 if (aunet->sk == NULL) {
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001435 audit_panic("cannot initialize netlink socket in namespace");
Gao feng11ee39e2013-12-17 11:10:41 +08001436 return -ENOMEM;
1437 }
Paul Moore5b523302017-03-21 11:26:35 -04001438 aunet->sk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
1439
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001440 return 0;
1441}
1442
1443static void __net_exit audit_net_exit(struct net *net)
1444{
1445 struct audit_net *aunet = net_generic(net, audit_net_id);
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001446
Paul Moore5b523302017-03-21 11:26:35 -04001447 rcu_read_lock();
1448 if (net == auditd_conn.net)
1449 auditd_reset();
1450 rcu_read_unlock();
1451
1452 netlink_kernel_release(aunet->sk);
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001453}
1454
Richard Guy Briggs86268772013-07-16 13:18:45 -04001455static struct pernet_operations audit_net_ops __net_initdata = {
Richard Guy Briggs33faba72013-07-16 13:18:45 -04001456 .init = audit_net_init,
1457 .exit = audit_net_exit,
1458 .id = &audit_net_id,
1459 .size = sizeof(struct audit_net),
1460};
1461
1462/* Initialize audit support at boot time. */
1463static int __init audit_init(void)
1464{
1465 int i;
1466
Eric Parisa3f07112008-11-05 12:47:09 -05001467 if (audit_initialized == AUDIT_DISABLED)
1468 return 0;
1469
Paul Moore5b523302017-03-21 11:26:35 -04001470 memset(&auditd_conn, 0, sizeof(auditd_conn));
1471 spin_lock_init(&auditd_conn.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Paul Mooreaf8b8242016-11-29 16:53:24 -05001473 skb_queue_head_init(&audit_queue);
Paul Moorec6480202016-11-29 16:53:25 -05001474 skb_queue_head_init(&audit_retry_queue);
Paul Mooreaf8b8242016-11-29 16:53:24 -05001475 skb_queue_head_init(&audit_hold_queue);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001476
Amy Griffisf368c07d2006-04-07 16:55:56 -04001477 for (i = 0; i < AUDIT_INODE_BUCKETS; i++)
1478 INIT_LIST_HEAD(&audit_inode_hash[i]);
Amy Griffisf368c07d2006-04-07 16:55:56 -04001479
Paul Moore5b523302017-03-21 11:26:35 -04001480 pr_info("initializing netlink subsys (%s)\n",
1481 audit_default ? "enabled" : "disabled");
1482 register_pernet_subsys(&audit_net_ops);
1483
1484 audit_initialized = AUDIT_INITIALIZED;
1485 audit_enabled = audit_default;
1486 audit_ever_enabled |= !!audit_default;
1487
Paul Moore6c9255642016-11-29 16:53:23 -05001488 kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
1489 if (IS_ERR(kauditd_task)) {
1490 int err = PTR_ERR(kauditd_task);
1491 panic("audit: failed to start the kauditd thread (%d)\n", err);
1492 }
1493
Steve Grubb7c397d02016-12-14 15:59:46 -05001494 audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL,
1495 "state=initialized audit_enabled=%u res=1",
1496 audit_enabled);
Paul Moore6c9255642016-11-29 16:53:23 -05001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 return 0;
1499}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500__initcall(audit_init);
1501
1502/* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
1503static int __init audit_enable(char *str)
1504{
1505 audit_default = !!simple_strtol(str, NULL, 0);
Eric Parisa3f07112008-11-05 12:47:09 -05001506 if (!audit_default)
1507 audit_initialized = AUDIT_DISABLED;
1508
Joe Perchesd957f7b2014-01-14 10:33:12 -08001509 pr_info("%s\n", audit_default ?
Gao fengd3ca0342013-10-31 14:31:01 +08001510 "enabled (after initialization)" : "disabled (until reboot)");
Eric Parisa3f07112008-11-05 12:47:09 -05001511
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001512 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514__setup("audit=", audit_enable);
1515
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001516/* Process kernel command-line parameter at boot time.
1517 * audit_backlog_limit=<n> */
1518static int __init audit_backlog_limit_set(char *str)
1519{
Joe Perches3e1d0bb2014-01-14 10:33:13 -08001520 u32 audit_backlog_limit_arg;
Joe Perchesd957f7b2014-01-14 10:33:12 -08001521
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001522 pr_info("audit_backlog_limit: ");
Joe Perches3e1d0bb2014-01-14 10:33:13 -08001523 if (kstrtouint(str, 0, &audit_backlog_limit_arg)) {
1524 pr_cont("using default of %u, unable to parse %s\n",
Joe Perchesd957f7b2014-01-14 10:33:12 -08001525 audit_backlog_limit, str);
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001526 return 1;
1527 }
Joe Perches3e1d0bb2014-01-14 10:33:13 -08001528
1529 audit_backlog_limit = audit_backlog_limit_arg;
Joe Perchesd957f7b2014-01-14 10:33:12 -08001530 pr_cont("%d\n", audit_backlog_limit);
Richard Guy Briggsf910fde2013-09-17 12:34:52 -04001531
1532 return 1;
1533}
1534__setup("audit_backlog_limit=", audit_backlog_limit_set);
1535
Chris Wright16e19042005-05-06 15:53:34 +01001536static void audit_buffer_free(struct audit_buffer *ab)
1537{
1538 unsigned long flags;
1539
Chris Wright8fc61152005-05-06 15:54:17 +01001540 if (!ab)
1541 return;
1542
Markus Elfringd865e572016-01-13 09:18:55 -05001543 kfree_skb(ab->skb);
Chris Wright16e19042005-05-06 15:53:34 +01001544 spin_lock_irqsave(&audit_freelist_lock, flags);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -05001545 if (audit_freelist_count > AUDIT_MAXFREE)
Chris Wright16e19042005-05-06 15:53:34 +01001546 kfree(ab);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -05001547 else {
1548 audit_freelist_count++;
Chris Wright16e19042005-05-06 15:53:34 +01001549 list_add(&ab->list, &audit_freelist);
Serge E. Hallyn5d136a02006-04-27 16:45:14 -05001550 }
Chris Wright16e19042005-05-06 15:53:34 +01001551 spin_unlock_irqrestore(&audit_freelist_lock, flags);
1552}
1553
Steve Grubbc0404992005-05-13 18:17:42 +01001554static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
Al Virodd0fc662005-10-07 07:46:04 +01001555 gfp_t gfp_mask, int type)
Chris Wright16e19042005-05-06 15:53:34 +01001556{
1557 unsigned long flags;
1558 struct audit_buffer *ab = NULL;
Steve Grubbc0404992005-05-13 18:17:42 +01001559 struct nlmsghdr *nlh;
Chris Wright16e19042005-05-06 15:53:34 +01001560
1561 spin_lock_irqsave(&audit_freelist_lock, flags);
1562 if (!list_empty(&audit_freelist)) {
1563 ab = list_entry(audit_freelist.next,
1564 struct audit_buffer, list);
1565 list_del(&ab->list);
1566 --audit_freelist_count;
1567 }
1568 spin_unlock_irqrestore(&audit_freelist_lock, flags);
1569
1570 if (!ab) {
David Woodhouse4332bdd2005-05-06 15:59:57 +01001571 ab = kmalloc(sizeof(*ab), gfp_mask);
Chris Wright16e19042005-05-06 15:53:34 +01001572 if (!ab)
Chris Wright8fc61152005-05-06 15:54:17 +01001573 goto err;
Chris Wright16e19042005-05-06 15:53:34 +01001574 }
Chris Wright8fc61152005-05-06 15:54:17 +01001575
David Woodhouseb7d11252005-05-19 10:56:58 +01001576 ab->ctx = ctx;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001577 ab->gfp_mask = gfp_mask;
Eric Parisee080e62009-06-11 14:31:35 -04001578
1579 ab->skb = nlmsg_new(AUDIT_BUFSIZ, gfp_mask);
1580 if (!ab->skb)
David S. Millerc64e66c2012-06-26 21:45:21 -07001581 goto err;
Eric Parisee080e62009-06-11 14:31:35 -04001582
David S. Millerc64e66c2012-06-26 21:45:21 -07001583 nlh = nlmsg_put(ab->skb, 0, 0, type, 0, 0);
1584 if (!nlh)
1585 goto out_kfree_skb;
Eric Parisee080e62009-06-11 14:31:35 -04001586
Chris Wright16e19042005-05-06 15:53:34 +01001587 return ab;
Eric Parisee080e62009-06-11 14:31:35 -04001588
David S. Millerc64e66c2012-06-26 21:45:21 -07001589out_kfree_skb:
Eric Parisee080e62009-06-11 14:31:35 -04001590 kfree_skb(ab->skb);
1591 ab->skb = NULL;
Chris Wright8fc61152005-05-06 15:54:17 +01001592err:
1593 audit_buffer_free(ab);
1594 return NULL;
Chris Wright16e19042005-05-06 15:53:34 +01001595}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001597/**
1598 * audit_serial - compute a serial number for the audit record
1599 *
1600 * Compute a serial number for the audit record. Audit records are
David Woodhousebfb44962005-05-21 21:08:09 +01001601 * written to user-space as soon as they are generated, so a complete
1602 * audit record may be written in several pieces. The timestamp of the
1603 * record and this serial number are used by the user-space tools to
1604 * determine which pieces belong to the same audit record. The
1605 * (timestamp,serial) tuple is unique for each syscall and is live from
1606 * syscall entry to syscall exit.
1607 *
David Woodhousebfb44962005-05-21 21:08:09 +01001608 * NOTE: Another possibility is to store the formatted records off the
1609 * audit context (for those records that have a context), and emit them
1610 * all at syscall exit. However, this could delay the reporting of
1611 * significant errors until syscall exit (or never, if the system
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001612 * halts).
1613 */
David Woodhousebfb44962005-05-21 21:08:09 +01001614unsigned int audit_serial(void)
1615{
Richard Guy Briggs01478d72014-06-13 18:22:00 -04001616 static atomic_t serial = ATOMIC_INIT(0);
David Woodhousebfb44962005-05-21 21:08:09 +01001617
Richard Guy Briggs01478d72014-06-13 18:22:00 -04001618 return atomic_add_return(1, &serial);
David Woodhousebfb44962005-05-21 21:08:09 +01001619}
1620
Daniel Walker5600b892007-10-18 03:06:10 -07001621static inline void audit_get_stamp(struct audit_context *ctx,
David Woodhousebfb44962005-05-21 21:08:09 +01001622 struct timespec *t, unsigned int *serial)
1623{
Al Viro48887e62008-12-06 01:05:50 -05001624 if (!ctx || !auditsc_get_stamp(ctx, t, serial)) {
David Woodhousebfb44962005-05-21 21:08:09 +01001625 *t = CURRENT_TIME;
1626 *serial = audit_serial();
1627 }
1628}
1629
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001630/**
1631 * audit_log_start - obtain an audit buffer
1632 * @ctx: audit_context (may be NULL)
1633 * @gfp_mask: type of allocation
1634 * @type: audit message type
1635 *
1636 * Returns audit_buffer pointer on success or NULL on error.
1637 *
1638 * Obtain an audit buffer. This routine does locking to obtain the
1639 * audit buffer, but then no locking is required for calls to
1640 * audit_log_*format. If the task (ctx) is a task that is currently in a
1641 * syscall, then the syscall is marked as auditable and an audit record
1642 * will be written at syscall exit. If there is no associated task, then
1643 * task context (ctx) should be NULL.
1644 */
Al Viro9796fdd2005-10-21 03:22:03 -04001645struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001646 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Paul Moore31975422016-11-29 16:53:25 -05001648 struct audit_buffer *ab;
1649 struct timespec t;
1650 unsigned int uninitialized_var(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Eric Parisa3f07112008-11-05 12:47:09 -05001652 if (audit_initialized != AUDIT_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return NULL;
1654
Richard Guy Briggs86b2efb2016-06-24 16:35:46 -04001655 if (unlikely(!audit_filter(type, AUDIT_FILTER_TYPE)))
Dustin Kirklandc8edc802005-11-03 16:12:36 +00001656 return NULL;
1657
Paul Moore5b523302017-03-21 11:26:35 -04001658 /* NOTE: don't ever fail/sleep on these two conditions:
Paul Moorea09cfa42016-11-29 16:53:26 -05001659 * 1. auditd generated record - since we need auditd to drain the
1660 * queue; also, when we are checking for auditd, compare PIDs using
1661 * task_tgid_vnr() since auditd_pid is set in audit_receive_msg()
1662 * using a PID anchored in the caller's namespace
Paul Moore5b523302017-03-21 11:26:35 -04001663 * 2. generator holding the audit_cmd_mutex - we don't want to block
1664 * while holding the mutex */
1665 if (!(auditd_test_task(current) ||
1666 (current == __mutex_owner(&audit_cmd_mutex)))) {
1667 long stime = audit_backlog_wait_time;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001668
Paul Moore31975422016-11-29 16:53:25 -05001669 while (audit_backlog_limit &&
1670 (skb_queue_len(&audit_queue) > audit_backlog_limit)) {
1671 /* wake kauditd to try and flush the queue */
1672 wake_up_interruptible(&kauditd_wait);
David Woodhouseac4cec42005-07-02 14:08:48 +01001673
Paul Moore31975422016-11-29 16:53:25 -05001674 /* sleep if we are allowed and we haven't exhausted our
1675 * backlog wait limit */
Paul Moore5b523302017-03-21 11:26:35 -04001676 if (gfpflags_allow_blocking(gfp_mask) && (stime > 0)) {
Paul Moore31975422016-11-29 16:53:25 -05001677 DECLARE_WAITQUEUE(wait, current);
1678
1679 add_wait_queue_exclusive(&audit_backlog_wait,
1680 &wait);
1681 set_current_state(TASK_UNINTERRUPTIBLE);
Paul Moore5b523302017-03-21 11:26:35 -04001682 stime = schedule_timeout(stime);
Paul Moore31975422016-11-29 16:53:25 -05001683 remove_wait_queue(&audit_backlog_wait, &wait);
1684 } else {
1685 if (audit_rate_check() && printk_ratelimit())
1686 pr_warn("audit_backlog=%d > audit_backlog_limit=%d\n",
1687 skb_queue_len(&audit_queue),
1688 audit_backlog_limit);
1689 audit_log_lost("backlog limit exceeded");
1690 return NULL;
Konstantin Khlebnikov8ac1c8d2013-09-24 15:27:42 -07001691 }
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001692 }
David Woodhousefb19b4c2005-05-19 14:55:56 +01001693 }
1694
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001695 ab = audit_buffer_alloc(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (!ab) {
1697 audit_log_lost("out of memory in audit_log_start");
1698 return NULL;
1699 }
1700
David Woodhousebfb44962005-05-21 21:08:09 +01001701 audit_get_stamp(ab->ctx, &t, &serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
1703 t.tv_sec, t.tv_nsec/1000000, serial);
Paul Moore31975422016-11-29 16:53:25 -05001704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return ab;
1706}
1707
Chris Wright8fc61152005-05-06 15:54:17 +01001708/**
Chris Wright5ac52f32005-05-06 15:54:53 +01001709 * audit_expand - expand skb in the audit buffer
Chris Wright8fc61152005-05-06 15:54:17 +01001710 * @ab: audit_buffer
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001711 * @extra: space to add at tail of the skb
Chris Wright8fc61152005-05-06 15:54:17 +01001712 *
1713 * Returns 0 (no space) on failed expansion, or available space if
1714 * successful.
1715 */
David Woodhousee3b926b2005-05-10 18:56:08 +01001716static inline int audit_expand(struct audit_buffer *ab, int extra)
Chris Wright8fc61152005-05-06 15:54:17 +01001717{
Chris Wright5ac52f32005-05-06 15:54:53 +01001718 struct sk_buff *skb = ab->skb;
Herbert Xu406a1d82008-01-28 20:47:09 -08001719 int oldtail = skb_tailroom(skb);
1720 int ret = pskb_expand_head(skb, 0, extra, ab->gfp_mask);
1721 int newtail = skb_tailroom(skb);
1722
Chris Wright5ac52f32005-05-06 15:54:53 +01001723 if (ret < 0) {
1724 audit_log_lost("out of memory in audit_expand");
Chris Wright8fc61152005-05-06 15:54:17 +01001725 return 0;
Chris Wright5ac52f32005-05-06 15:54:53 +01001726 }
Herbert Xu406a1d82008-01-28 20:47:09 -08001727
1728 skb->truesize += newtail - oldtail;
1729 return newtail;
Chris Wright8fc61152005-05-06 15:54:17 +01001730}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001732/*
1733 * Format an audit message into the audit buffer. If there isn't enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 * room in the audit buffer, more room will be allocated and vsnprint
1735 * will be called a second time. Currently, we assume that a printk
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001736 * can't format message larger than 1024 bytes, so we don't either.
1737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
1739 va_list args)
1740{
1741 int len, avail;
Chris Wright5ac52f32005-05-06 15:54:53 +01001742 struct sk_buff *skb;
David Woodhouseeecb0a72005-05-10 18:58:51 +01001743 va_list args2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 if (!ab)
1746 return;
1747
Chris Wright5ac52f32005-05-06 15:54:53 +01001748 BUG_ON(!ab->skb);
1749 skb = ab->skb;
1750 avail = skb_tailroom(skb);
1751 if (avail == 0) {
David Woodhousee3b926b2005-05-10 18:56:08 +01001752 avail = audit_expand(ab, AUDIT_BUFSIZ);
Chris Wright8fc61152005-05-06 15:54:17 +01001753 if (!avail)
1754 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
David Woodhouseeecb0a72005-05-10 18:58:51 +01001756 va_copy(args2, args);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001757 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (len >= avail) {
1759 /* The printk buffer is 1024 bytes long, so if we get
1760 * here and AUDIT_BUFSIZ is at least 1024, then we can
1761 * log everything that printk could have logged. */
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001762 avail = audit_expand(ab,
1763 max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
Chris Wright8fc61152005-05-06 15:54:17 +01001764 if (!avail)
Jesper Juhla0e86bd2012-01-08 22:44:29 +01001765 goto out_va_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001766 len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Steve Grubb168b7172005-05-19 10:24:22 +01001768 if (len > 0)
1769 skb_put(skb, len);
Jesper Juhla0e86bd2012-01-08 22:44:29 +01001770out_va_end:
1771 va_end(args2);
Chris Wright8fc61152005-05-06 15:54:17 +01001772out:
1773 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001776/**
1777 * audit_log_format - format a message into the audit buffer.
1778 * @ab: audit_buffer
1779 * @fmt: format string
1780 * @...: optional parameters matching @fmt string
1781 *
1782 * All the work is done in audit_log_vformat.
1783 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
1785{
1786 va_list args;
1787
1788 if (!ab)
1789 return;
1790 va_start(args, fmt);
1791 audit_log_vformat(ab, fmt, args);
1792 va_end(args);
1793}
1794
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001795/**
1796 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1797 * @ab: the audit_buffer
1798 * @buf: buffer to convert to hex
1799 * @len: length of @buf to be converted
1800 *
1801 * No return value; failure to expand is silently ignored.
1802 *
1803 * This function will take the passed buf and convert it into a string of
1804 * ascii hex digits. The new string is placed onto the skb.
1805 */
Eric Parisb556f8a2008-04-18 10:12:59 -04001806void audit_log_n_hex(struct audit_buffer *ab, const unsigned char *buf,
Steve Grubb168b7172005-05-19 10:24:22 +01001807 size_t len)
83c7d092005-04-29 15:54:44 +01001808{
Steve Grubb168b7172005-05-19 10:24:22 +01001809 int i, avail, new_len;
1810 unsigned char *ptr;
1811 struct sk_buff *skb;
83c7d092005-04-29 15:54:44 +01001812
Amy Griffis8ef2d302006-09-07 17:03:02 -04001813 if (!ab)
1814 return;
1815
Steve Grubb168b7172005-05-19 10:24:22 +01001816 BUG_ON(!ab->skb);
1817 skb = ab->skb;
1818 avail = skb_tailroom(skb);
1819 new_len = len<<1;
1820 if (new_len >= avail) {
1821 /* Round the buffer request up to the next multiple */
1822 new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
1823 avail = audit_expand(ab, new_len);
1824 if (!avail)
1825 return;
1826 }
1827
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001828 ptr = skb_tail_pointer(skb);
Joe Perchesb8dbc322014-01-13 23:31:27 -08001829 for (i = 0; i < len; i++)
1830 ptr = hex_byte_pack_upper(ptr, buf[i]);
Steve Grubb168b7172005-05-19 10:24:22 +01001831 *ptr = 0;
1832 skb_put(skb, len << 1); /* new string is twice the old string */
83c7d092005-04-29 15:54:44 +01001833}
1834
Amy Griffis9c937dc2006-06-08 23:19:31 -04001835/*
1836 * Format a string of no more than slen characters into the audit buffer,
1837 * enclosed in quote marks.
1838 */
Eric Parisb556f8a2008-04-18 10:12:59 -04001839void audit_log_n_string(struct audit_buffer *ab, const char *string,
1840 size_t slen)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001841{
1842 int avail, new_len;
1843 unsigned char *ptr;
1844 struct sk_buff *skb;
1845
Amy Griffis8ef2d302006-09-07 17:03:02 -04001846 if (!ab)
1847 return;
1848
Amy Griffis9c937dc2006-06-08 23:19:31 -04001849 BUG_ON(!ab->skb);
1850 skb = ab->skb;
1851 avail = skb_tailroom(skb);
1852 new_len = slen + 3; /* enclosing quotes + null terminator */
1853 if (new_len > avail) {
1854 avail = audit_expand(ab, new_len);
1855 if (!avail)
1856 return;
1857 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001858 ptr = skb_tail_pointer(skb);
Amy Griffis9c937dc2006-06-08 23:19:31 -04001859 *ptr++ = '"';
1860 memcpy(ptr, string, slen);
1861 ptr += slen;
1862 *ptr++ = '"';
1863 *ptr = 0;
1864 skb_put(skb, slen + 2); /* don't include null terminator */
1865}
1866
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001867/**
Eric Parisde6bbd12008-01-07 14:31:58 -05001868 * audit_string_contains_control - does a string need to be logged in hex
Dave Jonesf706d5d2008-03-28 14:15:56 -07001869 * @string: string to be checked
1870 * @len: max length of the string to check
Eric Parisde6bbd12008-01-07 14:31:58 -05001871 */
Yaowei Bai9fcf8362015-11-04 08:23:51 -05001872bool audit_string_contains_control(const char *string, size_t len)
Eric Parisde6bbd12008-01-07 14:31:58 -05001873{
1874 const unsigned char *p;
Miloslav Trmacb3897f52009-03-19 09:48:27 -04001875 for (p = string; p < (const unsigned char *)string + len; p++) {
Vesa-Matti J Kari1d6c9642008-07-23 00:06:13 +03001876 if (*p == '"' || *p < 0x21 || *p > 0x7e)
Yaowei Bai9fcf8362015-11-04 08:23:51 -05001877 return true;
Eric Parisde6bbd12008-01-07 14:31:58 -05001878 }
Yaowei Bai9fcf8362015-11-04 08:23:51 -05001879 return false;
Eric Parisde6bbd12008-01-07 14:31:58 -05001880}
1881
1882/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001883 * audit_log_n_untrustedstring - log a string that may contain random characters
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001884 * @ab: audit_buffer
Dave Jonesf706d5d2008-03-28 14:15:56 -07001885 * @len: length of string (not including trailing null)
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001886 * @string: string to be logged
1887 *
1888 * This code will escape a string that is passed to it if the string
1889 * contains a control character, unprintable character, double quote mark,
Steve Grubb168b7172005-05-19 10:24:22 +01001890 * or a space. Unescaped strings will start and end with a double quote mark.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001891 * Strings that are escaped are printed in hex (2 digits per char).
Amy Griffis9c937dc2006-06-08 23:19:31 -04001892 *
1893 * The caller specifies the number of characters in the string to log, which may
1894 * or may not be the entire string.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07001895 */
Eric Parisb556f8a2008-04-18 10:12:59 -04001896void audit_log_n_untrustedstring(struct audit_buffer *ab, const char *string,
1897 size_t len)
83c7d092005-04-29 15:54:44 +01001898{
Eric Parisde6bbd12008-01-07 14:31:58 -05001899 if (audit_string_contains_control(string, len))
Eric Parisb556f8a2008-04-18 10:12:59 -04001900 audit_log_n_hex(ab, string, len);
Eric Parisde6bbd12008-01-07 14:31:58 -05001901 else
Eric Parisb556f8a2008-04-18 10:12:59 -04001902 audit_log_n_string(ab, string, len);
83c7d092005-04-29 15:54:44 +01001903}
1904
Amy Griffis9c937dc2006-06-08 23:19:31 -04001905/**
Miloslav Trmac522ed772007-07-15 23:40:56 -07001906 * audit_log_untrustedstring - log a string that may contain random characters
Amy Griffis9c937dc2006-06-08 23:19:31 -04001907 * @ab: audit_buffer
1908 * @string: string to be logged
1909 *
Miloslav Trmac522ed772007-07-15 23:40:56 -07001910 * Same as audit_log_n_untrustedstring(), except that strlen is used to
Amy Griffis9c937dc2006-06-08 23:19:31 -04001911 * determine string length.
1912 */
Eric Parisde6bbd12008-01-07 14:31:58 -05001913void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
Amy Griffis9c937dc2006-06-08 23:19:31 -04001914{
Eric Parisb556f8a2008-04-18 10:12:59 -04001915 audit_log_n_untrustedstring(ab, string, strlen(string));
Amy Griffis9c937dc2006-06-08 23:19:31 -04001916}
1917
Steve Grubb168b7172005-05-19 10:24:22 +01001918/* This is a helper-function to print the escaped d_path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
Al Viro66b3fad2012-03-14 21:48:20 -04001920 const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Jan Blunck44707fd2008-02-14 19:38:33 -08001922 char *p, *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Chris Wright8fc61152005-05-06 15:54:17 +01001924 if (prefix)
Kees Cookc158a352012-01-06 14:07:10 -08001925 audit_log_format(ab, "%s", prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Steve Grubb168b7172005-05-19 10:24:22 +01001927 /* We will allow 11 spaces for ' (deleted)' to be appended */
Jan Blunck44707fd2008-02-14 19:38:33 -08001928 pathname = kmalloc(PATH_MAX+11, ab->gfp_mask);
1929 if (!pathname) {
Eric Parisdef57542009-03-10 18:00:14 -04001930 audit_log_string(ab, "<no_memory>");
Steve Grubb168b7172005-05-19 10:24:22 +01001931 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
Jan Blunckcf28b482008-02-14 19:38:44 -08001933 p = d_path(path, pathname, PATH_MAX+11);
Steve Grubb168b7172005-05-19 10:24:22 +01001934 if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
1935 /* FIXME: can we save some information here? */
Eric Parisdef57542009-03-10 18:00:14 -04001936 audit_log_string(ab, "<too_long>");
Daniel Walker5600b892007-10-18 03:06:10 -07001937 } else
Steve Grubb168b7172005-05-19 10:24:22 +01001938 audit_log_untrustedstring(ab, p);
Jan Blunck44707fd2008-02-14 19:38:33 -08001939 kfree(pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
Eric Paris4d3fb702013-04-30 09:53:34 -04001942void audit_log_session_info(struct audit_buffer *ab)
1943{
Eric Paris4440e852013-11-27 17:35:17 -05001944 unsigned int sessionid = audit_get_sessionid(current);
Eric Paris4d3fb702013-04-30 09:53:34 -04001945 uid_t auid = from_kuid(&init_user_ns, audit_get_loginuid(current));
1946
Richard Guy Briggsb8f89ca2013-09-18 11:17:43 -04001947 audit_log_format(ab, " auid=%u ses=%u", auid, sessionid);
Eric Paris4d3fb702013-04-30 09:53:34 -04001948}
1949
Eric Paris9d960982009-06-11 14:31:37 -04001950void audit_log_key(struct audit_buffer *ab, char *key)
1951{
1952 audit_log_format(ab, " key=");
1953 if (key)
1954 audit_log_untrustedstring(ab, key);
1955 else
1956 audit_log_format(ab, "(null)");
1957}
1958
Eric Parisb24a30a2013-04-30 15:30:32 -04001959void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
1960{
1961 int i;
1962
1963 audit_log_format(ab, " %s=", prefix);
1964 CAP_FOR_EACH_U32(i) {
1965 audit_log_format(ab, "%08x",
Eric Paris7d8b6c62014-07-23 15:36:26 -04001966 cap->cap[CAP_LAST_U32 - i]);
Eric Parisb24a30a2013-04-30 15:30:32 -04001967 }
1968}
1969
Richard Guy Briggs691e6d52014-05-26 11:02:48 -04001970static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
Eric Parisb24a30a2013-04-30 15:30:32 -04001971{
1972 kernel_cap_t *perm = &name->fcap.permitted;
1973 kernel_cap_t *inh = &name->fcap.inheritable;
1974 int log = 0;
1975
1976 if (!cap_isclear(*perm)) {
1977 audit_log_cap(ab, "cap_fp", perm);
1978 log = 1;
1979 }
1980 if (!cap_isclear(*inh)) {
1981 audit_log_cap(ab, "cap_fi", inh);
1982 log = 1;
1983 }
1984
1985 if (log)
1986 audit_log_format(ab, " cap_fe=%d cap_fver=%x",
1987 name->fcap.fE, name->fcap_ver);
1988}
1989
1990static inline int audit_copy_fcaps(struct audit_names *name,
1991 const struct dentry *dentry)
1992{
1993 struct cpu_vfs_cap_data caps;
1994 int rc;
1995
1996 if (!dentry)
1997 return 0;
1998
1999 rc = get_vfs_caps_from_disk(dentry, &caps);
2000 if (rc)
2001 return rc;
2002
2003 name->fcap.permitted = caps.permitted;
2004 name->fcap.inheritable = caps.inheritable;
2005 name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2006 name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >>
2007 VFS_CAP_REVISION_SHIFT;
2008
2009 return 0;
2010}
2011
2012/* Copy inode data into an audit_names. */
2013void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
Andreas Gruenbacherd6335d72015-12-24 11:09:39 -05002014 struct inode *inode)
Eric Parisb24a30a2013-04-30 15:30:32 -04002015{
2016 name->ino = inode->i_ino;
2017 name->dev = inode->i_sb->s_dev;
2018 name->mode = inode->i_mode;
2019 name->uid = inode->i_uid;
2020 name->gid = inode->i_gid;
2021 name->rdev = inode->i_rdev;
2022 security_inode_getsecid(inode, &name->osid);
2023 audit_copy_fcaps(name, dentry);
2024}
2025
2026/**
2027 * audit_log_name - produce AUDIT_PATH record from struct audit_names
2028 * @context: audit_context for the task
2029 * @n: audit_names structure with reportable details
2030 * @path: optional path to report instead of audit_names->name
2031 * @record_num: record number to report when handling a list of names
2032 * @call_panic: optional pointer to int that will be updated if secid fails
2033 */
2034void audit_log_name(struct audit_context *context, struct audit_names *n,
Al Viro8bd10762016-11-20 20:36:51 -05002035 const struct path *path, int record_num, int *call_panic)
Eric Parisb24a30a2013-04-30 15:30:32 -04002036{
2037 struct audit_buffer *ab;
2038 ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
2039 if (!ab)
2040 return;
2041
2042 audit_log_format(ab, "item=%d", record_num);
2043
2044 if (path)
2045 audit_log_d_path(ab, " name=", path);
2046 else if (n->name) {
2047 switch (n->name_len) {
2048 case AUDIT_NAME_FULL:
2049 /* log the full path */
2050 audit_log_format(ab, " name=");
2051 audit_log_untrustedstring(ab, n->name->name);
2052 break;
2053 case 0:
2054 /* name was specified as a relative path and the
2055 * directory component is the cwd */
2056 audit_log_d_path(ab, " name=", &context->pwd);
2057 break;
2058 default:
2059 /* log the name's directory component */
2060 audit_log_format(ab, " name=");
2061 audit_log_n_untrustedstring(ab, n->name->name,
2062 n->name_len);
2063 }
2064 } else
2065 audit_log_format(ab, " name=(null)");
2066
Linus Torvalds425afcf2015-09-08 13:34:59 -07002067 if (n->ino != AUDIT_INO_UNSET)
Eric Parisb24a30a2013-04-30 15:30:32 -04002068 audit_log_format(ab, " inode=%lu"
2069 " dev=%02x:%02x mode=%#ho"
2070 " ouid=%u ogid=%u rdev=%02x:%02x",
2071 n->ino,
2072 MAJOR(n->dev),
2073 MINOR(n->dev),
2074 n->mode,
2075 from_kuid(&init_user_ns, n->uid),
2076 from_kgid(&init_user_ns, n->gid),
2077 MAJOR(n->rdev),
2078 MINOR(n->rdev));
Eric Parisb24a30a2013-04-30 15:30:32 -04002079 if (n->osid != 0) {
2080 char *ctx = NULL;
2081 u32 len;
2082 if (security_secid_to_secctx(
2083 n->osid, &ctx, &len)) {
2084 audit_log_format(ab, " osid=%u", n->osid);
2085 if (call_panic)
2086 *call_panic = 2;
2087 } else {
2088 audit_log_format(ab, " obj=%s", ctx);
2089 security_release_secctx(ctx, len);
2090 }
2091 }
2092
Jeff Laytond3aea842013-05-08 10:32:23 -04002093 /* log the audit_names record type */
2094 audit_log_format(ab, " nametype=");
2095 switch(n->type) {
2096 case AUDIT_TYPE_NORMAL:
2097 audit_log_format(ab, "NORMAL");
2098 break;
2099 case AUDIT_TYPE_PARENT:
2100 audit_log_format(ab, "PARENT");
2101 break;
2102 case AUDIT_TYPE_CHILD_DELETE:
2103 audit_log_format(ab, "DELETE");
2104 break;
2105 case AUDIT_TYPE_CHILD_CREATE:
2106 audit_log_format(ab, "CREATE");
2107 break;
2108 default:
2109 audit_log_format(ab, "UNKNOWN");
2110 break;
2111 }
2112
Eric Parisb24a30a2013-04-30 15:30:32 -04002113 audit_log_fcaps(ab, n);
2114 audit_log_end(ab);
2115}
2116
2117int audit_log_task_context(struct audit_buffer *ab)
2118{
2119 char *ctx = NULL;
2120 unsigned len;
2121 int error;
2122 u32 sid;
2123
2124 security_task_getsecid(current, &sid);
2125 if (!sid)
2126 return 0;
2127
2128 error = security_secid_to_secctx(sid, &ctx, &len);
2129 if (error) {
2130 if (error != -EINVAL)
2131 goto error_path;
2132 return 0;
2133 }
2134
2135 audit_log_format(ab, " subj=%s", ctx);
2136 security_release_secctx(ctx, len);
2137 return 0;
2138
2139error_path:
2140 audit_panic("error in audit_log_task_context");
2141 return error;
2142}
2143EXPORT_SYMBOL(audit_log_task_context);
2144
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002145void audit_log_d_path_exe(struct audit_buffer *ab,
2146 struct mm_struct *mm)
2147{
Davidlohr Bueso5b282552015-02-22 18:20:09 -08002148 struct file *exe_file;
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002149
Davidlohr Bueso5b282552015-02-22 18:20:09 -08002150 if (!mm)
2151 goto out_null;
2152
2153 exe_file = get_mm_exe_file(mm);
2154 if (!exe_file)
2155 goto out_null;
2156
2157 audit_log_d_path(ab, " exe=", &exe_file->f_path);
2158 fput(exe_file);
2159 return;
2160out_null:
2161 audit_log_format(ab, " exe=(null)");
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002162}
2163
Richard Guy Briggs3f5be2d2016-06-28 12:07:50 -04002164struct tty_struct *audit_get_tty(struct task_struct *tsk)
2165{
2166 struct tty_struct *tty = NULL;
2167 unsigned long flags;
2168
2169 spin_lock_irqsave(&tsk->sighand->siglock, flags);
2170 if (tsk->signal)
2171 tty = tty_kref_get(tsk->signal->tty);
2172 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
2173 return tty;
2174}
2175
2176void audit_put_tty(struct tty_struct *tty)
2177{
2178 tty_kref_put(tty);
2179}
2180
Eric Parisb24a30a2013-04-30 15:30:32 -04002181void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
2182{
2183 const struct cred *cred;
Richard Guy Briggs9eab3392014-03-15 18:42:34 -04002184 char comm[sizeof(tsk->comm)];
Richard Guy Briggsdb0a6fb2016-04-21 14:14:01 -04002185 struct tty_struct *tty;
Eric Parisb24a30a2013-04-30 15:30:32 -04002186
2187 if (!ab)
2188 return;
2189
2190 /* tsk == current */
2191 cred = current_cred();
Richard Guy Briggsdb0a6fb2016-04-21 14:14:01 -04002192 tty = audit_get_tty(tsk);
Eric Parisb24a30a2013-04-30 15:30:32 -04002193 audit_log_format(ab,
Richard Guy Briggsc92cdeb2013-12-10 22:10:41 -05002194 " ppid=%d pid=%d auid=%u uid=%u gid=%u"
Eric Parisb24a30a2013-04-30 15:30:32 -04002195 " euid=%u suid=%u fsuid=%u"
Richard Guy Briggs2f2ad102013-07-15 10:23:11 -04002196 " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
Richard Guy Briggsc92cdeb2013-12-10 22:10:41 -05002197 task_ppid_nr(tsk),
Paul Moorefa2bea22016-08-30 17:19:13 -04002198 task_tgid_nr(tsk),
Eric Parisb24a30a2013-04-30 15:30:32 -04002199 from_kuid(&init_user_ns, audit_get_loginuid(tsk)),
2200 from_kuid(&init_user_ns, cred->uid),
2201 from_kgid(&init_user_ns, cred->gid),
2202 from_kuid(&init_user_ns, cred->euid),
2203 from_kuid(&init_user_ns, cred->suid),
2204 from_kuid(&init_user_ns, cred->fsuid),
2205 from_kgid(&init_user_ns, cred->egid),
2206 from_kgid(&init_user_ns, cred->sgid),
2207 from_kgid(&init_user_ns, cred->fsgid),
Richard Guy Briggsdb0a6fb2016-04-21 14:14:01 -04002208 tty ? tty_name(tty) : "(none)",
2209 audit_get_sessionid(tsk));
2210 audit_put_tty(tty);
Eric Parisb24a30a2013-04-30 15:30:32 -04002211 audit_log_format(ab, " comm=");
Richard Guy Briggs9eab3392014-03-15 18:42:34 -04002212 audit_log_untrustedstring(ab, get_task_comm(comm, tsk));
Davidlohr Bueso4766b192015-02-22 18:20:00 -08002213 audit_log_d_path_exe(ab, tsk->mm);
Eric Parisb24a30a2013-04-30 15:30:32 -04002214 audit_log_task_context(ab);
2215}
2216EXPORT_SYMBOL(audit_log_task_info);
2217
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002218/**
Kees Cooka51d9ea2012-07-25 17:29:08 -07002219 * audit_log_link_denied - report a link restriction denial
Shailendra Verma22011962015-05-23 10:40:27 +05302220 * @operation: specific link operation
Kees Cooka51d9ea2012-07-25 17:29:08 -07002221 * @link: the path that triggered the restriction
2222 */
Al Viro8bd10762016-11-20 20:36:51 -05002223void audit_log_link_denied(const char *operation, const struct path *link)
Kees Cooka51d9ea2012-07-25 17:29:08 -07002224{
2225 struct audit_buffer *ab;
Eric Parisb24a30a2013-04-30 15:30:32 -04002226 struct audit_names *name;
Kees Cooka51d9ea2012-07-25 17:29:08 -07002227
Eric Parisb24a30a2013-04-30 15:30:32 -04002228 name = kzalloc(sizeof(*name), GFP_NOFS);
2229 if (!name)
2230 return;
2231
2232 /* Generate AUDIT_ANOM_LINK with subject, operation, outcome. */
Kees Cooka51d9ea2012-07-25 17:29:08 -07002233 ab = audit_log_start(current->audit_context, GFP_KERNEL,
2234 AUDIT_ANOM_LINK);
Sasha Levind1c7d972012-10-04 19:57:31 -04002235 if (!ab)
Eric Parisb24a30a2013-04-30 15:30:32 -04002236 goto out;
2237 audit_log_format(ab, "op=%s", operation);
2238 audit_log_task_info(ab, current);
2239 audit_log_format(ab, " res=0");
Kees Cooka51d9ea2012-07-25 17:29:08 -07002240 audit_log_end(ab);
Eric Parisb24a30a2013-04-30 15:30:32 -04002241
2242 /* Generate AUDIT_PATH record with object. */
2243 name->type = AUDIT_TYPE_NORMAL;
David Howells3b362152015-03-17 22:26:21 +00002244 audit_copy_inode(name, link->dentry, d_backing_inode(link->dentry));
Eric Parisb24a30a2013-04-30 15:30:32 -04002245 audit_log_name(current->audit_context, name, link, 0, NULL);
2246out:
2247 kfree(name);
Kees Cooka51d9ea2012-07-25 17:29:08 -07002248}
2249
2250/**
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002251 * audit_log_end - end one audit record
2252 * @ab: the audit_buffer
2253 *
Paul Moore4aa838722016-11-29 16:53:24 -05002254 * We can not do a netlink send inside an irq context because it blocks (last
2255 * arg, flags, is not set to MSG_DONTWAIT), so the audit buffer is placed on a
2256 * queue and a tasklet is scheduled to remove them from the queue outside the
2257 * irq context. May be called in any context.
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002258 */
David Woodhouseb7d11252005-05-19 10:56:58 +01002259void audit_log_end(struct audit_buffer *ab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260{
Paul Moore5b523302017-03-21 11:26:35 -04002261 struct sk_buff *skb;
2262 struct nlmsghdr *nlh;
2263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 if (!ab)
2265 return;
Paul Moore5b523302017-03-21 11:26:35 -04002266
2267 if (audit_rate_check()) {
2268 skb = ab->skb;
Eric Parisf3d357b2008-04-18 10:02:28 -04002269 ab->skb = NULL;
Paul Moore5b523302017-03-21 11:26:35 -04002270
2271 /* setup the netlink header, see the comments in
2272 * kauditd_send_multicast_skb() for length quirks */
2273 nlh = nlmsg_hdr(skb);
2274 nlh->nlmsg_len = skb->len - NLMSG_HDRLEN;
2275
2276 /* queue the netlink packet and poke the kauditd thread */
2277 skb_queue_tail(&audit_queue, skb);
2278 wake_up_interruptible(&kauditd_wait);
2279 } else
2280 audit_log_lost("rate limit exceeded");
2281
Chris Wright16e19042005-05-06 15:53:34 +01002282 audit_buffer_free(ab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}
2284
Randy Dunlapb0dd25a2005-09-13 12:47:11 -07002285/**
2286 * audit_log - Log an audit record
2287 * @ctx: audit context
2288 * @gfp_mask: type of allocation
2289 * @type: audit message type
2290 * @fmt: format string to use
2291 * @...: variable parameters matching the format string
2292 *
2293 * This is a convenience function that calls audit_log_start,
2294 * audit_log_vformat, and audit_log_end. It may be called
2295 * in any context.
2296 */
Daniel Walker5600b892007-10-18 03:06:10 -07002297void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
David Woodhouse9ad9ad32005-06-22 15:04:33 +01002298 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299{
2300 struct audit_buffer *ab;
2301 va_list args;
2302
David Woodhouse9ad9ad32005-06-22 15:04:33 +01002303 ab = audit_log_start(ctx, gfp_mask, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (ab) {
2305 va_start(args, fmt);
2306 audit_log_vformat(ab, fmt, args);
2307 va_end(args);
2308 audit_log_end(ab);
2309 }
2310}
lorenzo@gnu.orgbf45da92006-03-09 00:33:47 +01002311
Mr Dash Four131ad622011-06-30 13:31:57 +02002312#ifdef CONFIG_SECURITY
2313/**
2314 * audit_log_secctx - Converts and logs SELinux context
2315 * @ab: audit_buffer
2316 * @secid: security number
2317 *
2318 * This is a helper function that calls security_secid_to_secctx to convert
2319 * secid to secctx and then adds the (converted) SELinux context to the audit
2320 * log by calling audit_log_format, thus also preventing leak of internal secid
2321 * to userspace. If secid cannot be converted audit_panic is called.
2322 */
2323void audit_log_secctx(struct audit_buffer *ab, u32 secid)
2324{
2325 u32 len;
2326 char *secctx;
2327
2328 if (security_secid_to_secctx(secid, &secctx, &len)) {
2329 audit_panic("Cannot convert secid to context");
2330 } else {
2331 audit_log_format(ab, " obj=%s", secctx);
2332 security_release_secctx(secctx, len);
2333 }
2334}
2335EXPORT_SYMBOL(audit_log_secctx);
2336#endif
2337
lorenzo@gnu.orgbf45da92006-03-09 00:33:47 +01002338EXPORT_SYMBOL(audit_log_start);
2339EXPORT_SYMBOL(audit_log_end);
2340EXPORT_SYMBOL(audit_log_format);
2341EXPORT_SYMBOL(audit_log);