xref: /freebsd/sys/security/audit/audit_worker.c (revision 224e0c2f)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1999-2008 Apple Inc.
5  * Copyright (c) 2006-2008, 2016 Robert N. M. Watson
6  * All rights reserved.
7  *
8  * Portions of this software were developed by BAE Systems, the University of
9  * Cambridge Computer Laboratory, and Memorial University under DARPA/AFRL
10  * contract FA8650-15-C-7558 ("CADETS"), as part of the DARPA Transparent
11  * Computing (TC) research program.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1.  Redistributions of source code must retain the above copyright
17  *     notice, this list of conditions and the following disclaimer.
18  * 2.  Redistributions in binary form must reproduce the above copyright
19  *     notice, this list of conditions and the following disclaimer in the
20  *     documentation and/or other materials provided with the distribution.
21  * 3.  Neither the name of Apple Inc. ("Apple") nor the names of
22  *     its contributors may be used to endorse or promote products derived
23  *     from this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR
29  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
33  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
34  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35  * POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40 
41 #include <sys/param.h>
42 #include <sys/condvar.h>
43 #include <sys/conf.h>
44 #include <sys/file.h>
45 #include <sys/filedesc.h>
46 #include <sys/fcntl.h>
47 #include <sys/ipc.h>
48 #include <sys/kernel.h>
49 #include <sys/kthread.h>
50 #include <sys/malloc.h>
51 #include <sys/mount.h>
52 #include <sys/namei.h>
53 #include <sys/proc.h>
54 #include <sys/queue.h>
55 #include <sys/socket.h>
56 #include <sys/socketvar.h>
57 #include <sys/protosw.h>
58 #include <sys/domain.h>
59 #include <sys/sx.h>
60 #include <sys/sysproto.h>
61 #include <sys/sysent.h>
62 #include <sys/systm.h>
63 #include <sys/ucred.h>
64 #include <sys/uio.h>
65 #include <sys/un.h>
66 #include <sys/unistd.h>
67 #include <sys/vnode.h>
68 
69 #include <bsm/audit.h>
70 #include <bsm/audit_internal.h>
71 #include <bsm/audit_kevents.h>
72 
73 #include <netinet/in.h>
74 #include <netinet/in_pcb.h>
75 
76 #include <security/audit/audit.h>
77 #include <security/audit/audit_private.h>
78 
79 #include <vm/uma.h>
80 
81 #include <machine/stdarg.h>
82 
83 /*
84  * Worker thread that will schedule disk I/O, etc.
85  */
86 static struct proc		*audit_thread;
87 
88 /*
89  * audit_cred and audit_vp are the stored credential and vnode to use for
90  * active audit trail.  They are protected by the audit worker lock, which
91  * will be held across all I/O and all rotation to prevent them from being
92  * replaced (rotated) while in use.  The audit_file_rotate_wait flag is set
93  * when the kernel has delivered a trigger to auditd to rotate the trail, and
94  * is cleared when the next rotation takes place.  It is also protected by
95  * the audit worker lock.
96  */
97 static int		 audit_file_rotate_wait;
98 static struct ucred	*audit_cred;
99 static struct vnode	*audit_vp;
100 static off_t		 audit_size;
101 static struct sx	 audit_worker_lock;
102 
103 #define	AUDIT_WORKER_LOCK_INIT()	sx_init(&audit_worker_lock, \
104 					    "audit_worker_lock");
105 #define	AUDIT_WORKER_LOCK_ASSERT()	sx_assert(&audit_worker_lock, \
106 					    SA_XLOCKED)
107 #define	AUDIT_WORKER_LOCK()		sx_xlock(&audit_worker_lock)
108 #define	AUDIT_WORKER_UNLOCK()		sx_xunlock(&audit_worker_lock)
109 
110 static void
111 audit_worker_sync_vp(struct vnode *vp, struct mount *mp, const char *fmt, ...)
112 {
113 	struct mount *mp1;
114 	int error;
115 	va_list va;
116 
117 	va_start(va, fmt);
118 	error = vn_start_write(vp, &mp1, 0);
119 	if (error == 0) {
120 		VOP_LOCK(vp, LK_EXCLUSIVE | LK_RETRY);
121 		(void)VOP_FSYNC(vp, MNT_WAIT, curthread);
122 		VOP_UNLOCK(vp, 0);
123 		vn_finished_write(mp1);
124 	}
125 	vfs_unbusy(mp);
126 	vpanic(fmt, va);
127 	va_end(va);
128 }
129 
130 /*
131  * Write an audit record to a file, performed as the last stage after both
132  * preselection and BSM conversion.  Both space management and write failures
133  * are handled in this function.
134  *
135  * No attempt is made to deal with possible failure to deliver a trigger to
136  * the audit daemon, since the message is asynchronous anyway.
137  */
138 static void
139 audit_record_write(struct vnode *vp, struct ucred *cred, void *data,
140     size_t len)
141 {
142 	static struct timeval last_lowspace_trigger;
143 	static struct timeval last_fail;
144 	static int cur_lowspace_trigger;
145 	struct statfs *mnt_stat;
146 	struct mount *mp;
147 	int error;
148 	static int cur_fail;
149 	long temp;
150 
151 	AUDIT_WORKER_LOCK_ASSERT();
152 
153 	if (vp == NULL)
154 		return;
155 
156 	mp = vp->v_mount;
157 	if (mp == NULL) {
158 		error = EINVAL;
159 		goto fail;
160 	}
161 	error = vfs_busy(mp, 0);
162 	if (error != 0) {
163 		mp = NULL;
164 		goto fail;
165 	}
166 	mnt_stat = &mp->mnt_stat;
167 
168 	/*
169 	 * First, gather statistics on the audit log file and file system so
170 	 * that we know how we're doing on space.  Consider failure of these
171 	 * operations to indicate a future inability to write to the file.
172 	 */
173 	error = VFS_STATFS(mp, mnt_stat);
174 	if (error != 0)
175 		goto fail;
176 
177 	/*
178 	 * We handle four different space-related limits:
179 	 *
180 	 * - A fixed (hard) limit on the minimum free blocks we require on
181 	 *   the file system, and results in record loss, a trigger, and
182 	 *   possible fail stop due to violating invariants.
183 	 *
184 	 * - An administrative (soft) limit, which when fallen below, results
185 	 *   in the kernel notifying the audit daemon of low space.
186 	 *
187 	 * - An audit trail size limit, which when gone above, results in the
188 	 *   kernel notifying the audit daemon that rotation is desired.
189 	 *
190 	 * - The total depth of the kernel audit record exceeding free space,
191 	 *   which can lead to possible fail stop (with drain), in order to
192 	 *   prevent violating invariants.  Failure here doesn't halt
193 	 *   immediately, but prevents new records from being generated.
194 	 *
195 	 * Possibly, the last of these should be handled differently, always
196 	 * allowing a full queue to be lost, rather than trying to prevent
197 	 * loss.
198 	 *
199 	 * First, handle the hard limit, which generates a trigger and may
200 	 * fail stop.  This is handled in the same manner as ENOSPC from
201 	 * VOP_WRITE, and results in record loss.
202 	 */
203 	if (mnt_stat->f_bfree < AUDIT_HARD_LIMIT_FREE_BLOCKS) {
204 		error = ENOSPC;
205 		goto fail_enospc;
206 	}
207 
208 	/*
209 	 * Second, handle falling below the soft limit, if defined; we send
210 	 * the daemon a trigger and continue processing the record.  Triggers
211 	 * are limited to 1/sec.
212 	 */
213 	if (audit_qctrl.aq_minfree != 0) {
214 		temp = mnt_stat->f_blocks / (100 / audit_qctrl.aq_minfree);
215 		if (mnt_stat->f_bfree < temp) {
216 			if (ppsratecheck(&last_lowspace_trigger,
217 			    &cur_lowspace_trigger, 1)) {
218 				(void)audit_send_trigger(
219 				    AUDIT_TRIGGER_LOW_SPACE);
220 				printf("Warning: disk space low (< %d%% free) "
221 				    "on audit log file-system\n",
222 				    audit_qctrl.aq_minfree);
223 			}
224 		}
225 	}
226 
227 	/*
228 	 * If the current file is getting full, generate a rotation trigger
229 	 * to the daemon.  This is only approximate, which is fine as more
230 	 * records may be generated before the daemon rotates the file.
231 	 */
232 	if (audit_fstat.af_filesz != 0 &&
233 	    audit_size >= audit_fstat.af_filesz * (audit_file_rotate_wait + 1)) {
234 		AUDIT_WORKER_LOCK_ASSERT();
235 
236 		audit_file_rotate_wait++;
237 		(void)audit_send_trigger(AUDIT_TRIGGER_ROTATE_KERNEL);
238 	}
239 
240 	/*
241 	 * If the estimated amount of audit data in the audit event queue
242 	 * (plus records allocated but not yet queued) has reached the amount
243 	 * of free space on the disk, then we need to go into an audit fail
244 	 * stop state, in which we do not permit the allocation/committing of
245 	 * any new audit records.  We continue to process records but don't
246 	 * allow any activities that might generate new records.  In the
247 	 * future, we might want to detect when space is available again and
248 	 * allow operation to continue, but this behavior is sufficient to
249 	 * meet fail stop requirements in CAPP.
250 	 */
251 	if (audit_fail_stop) {
252 		if ((unsigned long)((audit_q_len + audit_pre_q_len + 1) *
253 		    MAX_AUDIT_RECORD_SIZE) / mnt_stat->f_bsize >=
254 		    (unsigned long)(mnt_stat->f_bfree)) {
255 			if (ppsratecheck(&last_fail, &cur_fail, 1))
256 				printf("audit_record_write: free space "
257 				    "below size of audit queue, failing "
258 				    "stop\n");
259 			audit_in_failure = 1;
260 		} else if (audit_in_failure) {
261 			/*
262 			 * Note: if we want to handle recovery, this is the
263 			 * spot to do it: unset audit_in_failure, and issue a
264 			 * wakeup on the cv.
265 			 */
266 		}
267 	}
268 
269 	error = vn_rdwr(UIO_WRITE, vp, data, len, (off_t)0, UIO_SYSSPACE,
270 	    IO_APPEND|IO_UNIT, cred, NULL, NULL, curthread);
271 	if (error == ENOSPC)
272 		goto fail_enospc;
273 	else if (error)
274 		goto fail;
275 	AUDIT_WORKER_LOCK_ASSERT();
276 	audit_size += len;
277 
278 	/*
279 	 * Catch completion of a queue drain here; if we're draining and the
280 	 * queue is now empty, fail stop.  That audit_fail_stop is implicitly
281 	 * true, since audit_in_failure can only be set of audit_fail_stop is
282 	 * set.
283 	 *
284 	 * Note: if we handle recovery from audit_in_failure, then we need to
285 	 * make panic here conditional.
286 	 */
287 	if (audit_in_failure) {
288 		if (audit_q_len == 0 && audit_pre_q_len == 0) {
289 			audit_worker_sync_vp(vp, mp,
290 			    "Audit store overflow; record queue drained.");
291 		}
292 	}
293 
294 	vfs_unbusy(mp);
295 	return;
296 
297 fail_enospc:
298 	/*
299 	 * ENOSPC is considered a special case with respect to failures, as
300 	 * this can reflect either our preemptive detection of insufficient
301 	 * space, or ENOSPC returned by the vnode write call.
302 	 */
303 	if (audit_fail_stop) {
304 		audit_worker_sync_vp(vp, mp,
305 		    "Audit log space exhausted and fail-stop set.");
306 	}
307 	(void)audit_send_trigger(AUDIT_TRIGGER_NO_SPACE);
308 	audit_suspended = 1;
309 
310 	/* FALLTHROUGH */
311 fail:
312 	/*
313 	 * We have failed to write to the file, so the current record is
314 	 * lost, which may require an immediate system halt.
315 	 */
316 	if (audit_panic_on_write_fail) {
317 		audit_worker_sync_vp(vp, mp,
318 		    "audit_worker: write error %d\n", error);
319 	} else if (ppsratecheck(&last_fail, &cur_fail, 1))
320 		printf("audit_worker: write error %d\n", error);
321 	if (mp != NULL)
322 		vfs_unbusy(mp);
323 }
324 
325 /*
326  * Given a kernel audit record, process as required.  Kernel audit records
327  * are converted to one, or possibly two, BSM records, depending on whether
328  * there is a user audit record present also.  Kernel records need be
329  * converted to BSM before they can be written out.  Both types will be
330  * written to disk, and audit pipes.
331  */
332 static void
333 audit_worker_process_record(struct kaudit_record *ar)
334 {
335 	struct au_record *bsm;
336 	au_class_t class;
337 	au_event_t event;
338 	au_id_t auid;
339 	int error, sorf;
340 	int locked;
341 
342 	/*
343 	 * We hold the audit worker lock over both writes, if there are two,
344 	 * so that the two records won't be split across a rotation and end
345 	 * up in two different trail files.
346 	 */
347 	if (((ar->k_ar_commit & AR_COMMIT_USER) &&
348 	    (ar->k_ar_commit & AR_PRESELECT_USER_TRAIL)) ||
349 	    (ar->k_ar_commit & AR_PRESELECT_TRAIL)) {
350 		AUDIT_WORKER_LOCK();
351 		locked = 1;
352 	} else
353 		locked = 0;
354 
355 	/*
356 	 * First, handle the user record, if any: commit to the system trail
357 	 * and audit pipes as selected.
358 	 */
359 	if ((ar->k_ar_commit & AR_COMMIT_USER) &&
360 	    (ar->k_ar_commit & AR_PRESELECT_USER_TRAIL)) {
361 		AUDIT_WORKER_LOCK_ASSERT();
362 		audit_record_write(audit_vp, audit_cred, ar->k_udata,
363 		    ar->k_ulen);
364 	}
365 
366 	if ((ar->k_ar_commit & AR_COMMIT_USER) &&
367 	    (ar->k_ar_commit & AR_PRESELECT_USER_PIPE))
368 		audit_pipe_submit_user(ar->k_udata, ar->k_ulen);
369 
370 	if (!(ar->k_ar_commit & AR_COMMIT_KERNEL) ||
371 	    ((ar->k_ar_commit & AR_PRESELECT_PIPE) == 0 &&
372 	    (ar->k_ar_commit & AR_PRESELECT_TRAIL) == 0 &&
373 	    (ar->k_ar_commit & AR_PRESELECT_DTRACE) == 0))
374 		goto out;
375 
376 	auid = ar->k_ar.ar_subj_auid;
377 	event = ar->k_ar.ar_event;
378 	class = au_event_class(event);
379 	if (ar->k_ar.ar_errno == 0)
380 		sorf = AU_PRS_SUCCESS;
381 	else
382 		sorf = AU_PRS_FAILURE;
383 
384 	error = kaudit_to_bsm(ar, &bsm);
385 	switch (error) {
386 	case BSM_NOAUDIT:
387 		goto out;
388 
389 	case BSM_FAILURE:
390 		printf("audit_worker_process_record: BSM_FAILURE\n");
391 		goto out;
392 
393 	case BSM_SUCCESS:
394 		break;
395 
396 	default:
397 		panic("kaudit_to_bsm returned %d", error);
398 	}
399 
400 	if (ar->k_ar_commit & AR_PRESELECT_TRAIL) {
401 		AUDIT_WORKER_LOCK_ASSERT();
402 		audit_record_write(audit_vp, audit_cred, bsm->data, bsm->len);
403 	}
404 
405 	if (ar->k_ar_commit & AR_PRESELECT_PIPE)
406 		audit_pipe_submit(auid, event, class, sorf,
407 		    ar->k_ar_commit & AR_PRESELECT_TRAIL, bsm->data,
408 		    bsm->len);
409 
410 #ifdef KDTRACE_HOOKS
411 	/*
412 	 * Version of the dtaudit commit hook that accepts BSM.
413 	 */
414 	if (ar->k_ar_commit & AR_PRESELECT_DTRACE) {
415 		if (dtaudit_hook_bsm != NULL)
416 			dtaudit_hook_bsm(ar, auid, event, class, sorf,
417 			    bsm->data, bsm->len);
418 	}
419 #endif
420 
421 	kau_free(bsm);
422 out:
423 	if (locked)
424 		AUDIT_WORKER_UNLOCK();
425 }
426 
427 /*
428  * The audit_worker thread is responsible for watching the event queue,
429  * dequeueing records, converting them to BSM format, and committing them to
430  * disk.  In order to minimize lock thrashing, records are dequeued in sets
431  * to a thread-local work queue.
432  *
433  * Note: this means that the effect bound on the size of the pending record
434  * queue is 2x the length of the global queue.
435  */
436 static void
437 audit_worker(void *arg)
438 {
439 	struct kaudit_queue ar_worklist;
440 	struct kaudit_record *ar;
441 	int lowater_signal;
442 
443 	TAILQ_INIT(&ar_worklist);
444 	mtx_lock(&audit_mtx);
445 	while (1) {
446 		mtx_assert(&audit_mtx, MA_OWNED);
447 
448 		/*
449 		 * Wait for a record.
450 		 */
451 		while (TAILQ_EMPTY(&audit_q))
452 			cv_wait(&audit_worker_cv, &audit_mtx);
453 
454 		/*
455 		 * If there are records in the global audit record queue,
456 		 * transfer them to a thread-local queue and process them
457 		 * one by one.  If we cross the low watermark threshold,
458 		 * signal any waiting processes that they may wake up and
459 		 * continue generating records.
460 		 */
461 		lowater_signal = 0;
462 		while ((ar = TAILQ_FIRST(&audit_q))) {
463 			TAILQ_REMOVE(&audit_q, ar, k_q);
464 			audit_q_len--;
465 			if (audit_q_len == audit_qctrl.aq_lowater)
466 				lowater_signal++;
467 			TAILQ_INSERT_TAIL(&ar_worklist, ar, k_q);
468 		}
469 		if (lowater_signal)
470 			cv_broadcast(&audit_watermark_cv);
471 
472 		mtx_unlock(&audit_mtx);
473 		while ((ar = TAILQ_FIRST(&ar_worklist))) {
474 			TAILQ_REMOVE(&ar_worklist, ar, k_q);
475 			audit_worker_process_record(ar);
476 			audit_free(ar);
477 		}
478 		mtx_lock(&audit_mtx);
479 	}
480 }
481 
482 /*
483  * audit_rotate_vnode() is called by a user or kernel thread to configure or
484  * de-configure auditing on a vnode.  The arguments are the replacement
485  * credential (referenced) and vnode (referenced and opened) to substitute
486  * for the current credential and vnode, if any.  If either is set to NULL,
487  * both should be NULL, and this is used to indicate that audit is being
488  * disabled.  Any previous cred/vnode will be closed and freed.  We re-enable
489  * generating rotation requests to auditd.
490  */
491 void
492 audit_rotate_vnode(struct ucred *cred, struct vnode *vp)
493 {
494 	struct ucred *old_audit_cred;
495 	struct vnode *old_audit_vp;
496 	struct vattr vattr;
497 
498 	KASSERT((cred != NULL && vp != NULL) || (cred == NULL && vp == NULL),
499 	    ("audit_rotate_vnode: cred %p vp %p", cred, vp));
500 
501 	if (vp != NULL) {
502 		vn_lock(vp, LK_SHARED | LK_RETRY);
503 		if (VOP_GETATTR(vp, &vattr, cred) != 0)
504 			vattr.va_size = 0;
505 		VOP_UNLOCK(vp, 0);
506 	} else {
507 		vattr.va_size = 0;
508 	}
509 
510 	/*
511 	 * Rotate the vnode/cred, and clear the rotate flag so that we will
512 	 * send a rotate trigger if the new file fills.
513 	 */
514 	AUDIT_WORKER_LOCK();
515 	old_audit_cred = audit_cred;
516 	old_audit_vp = audit_vp;
517 	audit_cred = cred;
518 	audit_vp = vp;
519 	audit_size = vattr.va_size;
520 	audit_file_rotate_wait = 0;
521 	audit_enabled = (audit_vp != NULL);
522 	AUDIT_WORKER_UNLOCK();
523 
524 	/*
525 	 * If there was an old vnode/credential, close and free.
526 	 */
527 	if (old_audit_vp != NULL) {
528 		vn_close(old_audit_vp, AUDIT_CLOSE_FLAGS, old_audit_cred,
529 		    curthread);
530 		crfree(old_audit_cred);
531 	}
532 }
533 
534 void
535 audit_worker_init(void)
536 {
537 	int error;
538 
539 	AUDIT_WORKER_LOCK_INIT();
540 	error = kproc_create(audit_worker, NULL, &audit_thread, RFHIGHPID,
541 	    0, "audit");
542 	if (error)
543 		panic("audit_worker_init: kproc_create returned %d", error);
544 }
545