freebsd-nq/tests/sys/audit
Alex Richardson df093aa946 tests/sys/audit: Avoid race caused by starting auditd(8) for testing
In the CheriBSD CI we reproducibly see the first test in sys/audit
(administrative:acct_failure) fail due to a missing startup message.
It appears this is caused by a race condition when starting auditd:
`service auditd onestart` returns as soon as the initial auditd() parent
exits (after the daemon(3) call).
We can avoid this problem by setting up the auditd infrastructure
in-process: libauditd contains audit_quick_{start,stop}() functions that
look like they are ideally suited to this task.
This patch also avoids forking lots of shell processes for each of the 418
tests by using `auditon(A_SENDTRIGGER, &trigger, sizeof(trigger))` to check
for a running auditd(8) instead of using `service auditd onestatus`.

With these two changes (and D28388 to fix the XFAIL'd test) I can now
boot and run `cd /usr/tests/sys/audit && kyua test` without any failures
in a single-core QEMU instance. Before there would always be at least one
failed test.

Besides making the tests more reliable in CI, a nice side-effect of this
change is that it also significantly speeds up running them by avoiding
lots of fork()/execve() caused by shell scripts:
Running kyua test on an AArch64 QEMU took 315s before and now takes 68s,
so it's roughly 3.5 times faster. This effect is even larger when running
on a CHERI-RISC-V QEMU since emulating CHERI instructions on an x86 host
is noticeably slower than emulating AArch64.

Test Plan: aarch64+amd64 QEMU no longer fail.

Reviewed By:	asomers
Differential Revision: https://reviews.freebsd.org/D28451
2021-02-18 14:02:48 +00:00
..
administrative.c tests/sys/audit: Avoid race caused by starting auditd(8) for testing 2021-02-18 14:02:48 +00:00
file-attribute-access.c tests/sys/audit: Skip extattr tests if extattrs are not supported 2021-02-02 09:55:19 +00:00
file-attribute-modify.c tests/sys/audit: Skip extattr tests if extattrs are not supported 2021-02-02 09:55:19 +00:00
file-close.c tests: audit: mark closefrom test an expected fail for now 2020-04-14 23:36:03 +00:00
file-create.c
file-delete.c
file-read.c
file-write.c
inter-process.c
ioctl.c
Makefile tests/sys/audit: Avoid race caused by starting auditd(8) for testing 2021-02-18 14:02:48 +00:00
miscellaneous.c
network.c
open.c
process-control.c
utils.c tests/sys/audit: Avoid race caused by starting auditd(8) for testing 2021-02-18 14:02:48 +00:00
utils.h tests/sys/audit: Skip extattr tests if extattrs are not supported 2021-02-02 09:55:19 +00:00