]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Vendor import of OpenBSM 1.1 alpha4, which incorporates the following
authorRobert Watson <rwatson@FreeBSD.org>
Sun, 28 Dec 2008 22:40:42 +0000 (22:40 +0000)
committerRobert Watson <rwatson@FreeBSD.org>
Sun, 28 Dec 2008 22:40:42 +0000 (22:40 +0000)
commit980b6e45aaf200a759c883374991028300774958
tree8026680e57e152bff629fb5733fa531adc5dd323
parenta5c6cfa00d9aad0a0da65a940ac6d782edfa841e
Vendor import of OpenBSM 1.1 alpha4, which incorporates the following
changes since the last imported OpenBSM release:

OpenBSM 1.1 alpha 4

- With the addition of BSM error number mapping, we also need to map the
  local error number passed to audit_submit(3) to a BSM error number,
  rather than have the caller perform that conversion.
- Reallocate user audit events to avoid collisions with Solaris; adopt a
  more formal allocation scheme, and add some events allocated in Solaris
  that will be of immediate use on other platforms.
- Add an event for Calife.
- Add au_strerror(3), which allows generating strings for BSM errors
  directly, rather than requiring applications to map to the local error
  space, which might not be able to entirely represent the BSM error
  number space.
- Major auditd rewrite for launchd(8) support.  Add libauditd library
  that is shared between launchd and auditd.
- Add AUDIT_TRIGGER_INITIALIZE trigger (sent via 'audit -i') for
  (re)starting auditing under launchd(8) on Mac OS X.
- Add 'current' symlink to active audit trail.
- Add crash recovery of previous audit trail file when detected on audit
  startup that it has not been properly terminated.
- Add the event AUE_audit_recovery to indicated when an audit trail file
  has been recovered from not being properly terminated.  This event is
  stored in the new audit trail file and includes the path of recovered
  audit trail file.
- Mac OS X and FreeBSD dependent code in auditd.c is separated into
  auditd_darwin.c and auditd_fbsd.c files.
- Add an event for the posix_spawn(2) and fsgetpath(2) Mac OS X system
  calls.
- For Mac OS X, we use ASL(3) instead of syslog(3) for logging.
- Add support for NOTICE level logging.

OpenBSM 1.1 alpha 3

- Add two new functions, au_bsm_to_errno() and au_errno_to_bsm(), to map
  between BSM error numbers (largely the Solaris definitions) and local
  errno(2) values for 32-bit and 64-bit return tokens.  This is required
  as operating systems don't agree on some of the values of more recent
  error numbers.
- Fix a bug how au_to_exec_args(3) and au_to_exec_env(3) calculates the
  total size for the token.  This bug resulted in "unknown" tokens being
  printed after the exec args/env tokens.
- Support for AUT_SOCKET_EX extended socket tokens, which describe a
  socket using a pair of IPv4/IPv6 and port tuples.
- OpenBSM BSM file header version bumped for 1.1 release.
- Deprecated Darwin constants, such as TRAILER_PAD_MAGIC, removed.

Obtained from: TrustedBSD Project
Sponsored by: Apple Inc.
125 files changed:
Makefile.am
Makefile.in
NEWS
README
TODO
VERSION
bin/Makefile.in
bin/audit/Makefile.am
bin/audit/Makefile.in
bin/audit/audit.8
bin/audit/audit.c
bin/auditd/Makefile.am
bin/auditd/Makefile.in
bin/auditd/audit_warn.c
bin/auditd/auditd.8
bin/auditd/auditd.c
bin/auditd/auditd.h
bin/auditd/auditd_darwin.c [new file with mode: 0644]
bin/auditd/auditd_fbsd.c [new file with mode: 0644]
bin/auditfilterd/Makefile.in
bin/auditreduce/Makefile.in
bin/auditreduce/auditreduce.c
bin/praudit/Makefile.in
bsm/Makefile.am
bsm/Makefile.in
bsm/audit_uevents.h
bsm/auditd_lib.h [new file with mode: 0644]
bsm/libbsm.h
compat/endian.h
config/config.h.in
configure
configure.ac
etc/audit_event
libauditd/Makefile.am [new file with mode: 0644]
libauditd/Makefile.in [new file with mode: 0644]
libauditd/auditd_lib.c [new file with mode: 0644]
libbsm/Makefile.am
libbsm/Makefile.in
libbsm/au_errno.3 [new file with mode: 0644]
libbsm/au_token.3
libbsm/audit_submit.3
libbsm/bsm_audit.c
libbsm/bsm_class.c
libbsm/bsm_control.c
libbsm/bsm_errno.c [new file with mode: 0644]
libbsm/bsm_event.c
libbsm/bsm_io.c
libbsm/bsm_mask.c
libbsm/bsm_token.c
libbsm/bsm_user.c
libbsm/bsm_wrappers.c
libbsm/libbsm.3
man/Makefile.in
man/audit.log.5
modules/Makefile.in
modules/auditfilter_noop/Makefile.in
sys/Makefile.in
sys/bsm/Makefile.am
sys/bsm/Makefile.in
sys/bsm/audit.h
sys/bsm/audit_errno.h [new file with mode: 0644]
sys/bsm/audit_internal.h
sys/bsm/audit_kevents.h
sys/bsm/audit_record.h
test/Makefile.in
test/bsm/Makefile.in
test/bsm/generate.c
test/reference/E2BIG_record [new file with mode: 0644]
test/reference/EACCES_record [new file with mode: 0644]
test/reference/EBADF_record [new file with mode: 0644]
test/reference/EBUSY_record [new file with mode: 0644]
test/reference/ECHILD_record [new file with mode: 0644]
test/reference/EDEADLK_record [new file with mode: 0644]
test/reference/EEXIST_record [new file with mode: 0644]
test/reference/EFAULT_record [new file with mode: 0644]
test/reference/EFBIG_record [new file with mode: 0644]
test/reference/EINTR_record [new file with mode: 0644]
test/reference/EINVAL_record [new file with mode: 0644]
test/reference/EIO_record [new file with mode: 0644]
test/reference/EISDIR_record [new file with mode: 0644]
test/reference/EMFILE_record [new file with mode: 0644]
test/reference/EMLINK_record [new file with mode: 0644]
test/reference/ENFILE_record [new file with mode: 0644]
test/reference/ENODEV_record [new file with mode: 0644]
test/reference/ENOENT_record [new file with mode: 0644]
test/reference/ENOEXEC_record [new file with mode: 0644]
test/reference/ENOMEM_record [new file with mode: 0644]
test/reference/ENOSPC_record [new file with mode: 0644]
test/reference/ENOTBLK_record [new file with mode: 0644]
test/reference/ENOTDIR_record [new file with mode: 0644]
test/reference/ENOTTY_record [new file with mode: 0644]
test/reference/ENXIO_record [new file with mode: 0644]
test/reference/EPERM_record [new file with mode: 0644]
test/reference/EPIPE_record [new file with mode: 0644]
test/reference/EROFS_record [new file with mode: 0644]
test/reference/ESPIPE_record [new file with mode: 0644]
test/reference/ESRCH_record [new file with mode: 0644]
test/reference/ETXTBSY_record [new file with mode: 0644]
test/reference/EXDEV_record [new file with mode: 0644]
test/reference/arg32_record
test/reference/data_record
test/reference/file_record
test/reference/header32_token
test/reference/in_addr_record
test/reference/ip_record
test/reference/ipc_record
test/reference/iport_record
test/reference/opaque_record
test/reference/path_record
test/reference/process32_record
test/reference/process32ex_record-IPv4
test/reference/process32ex_record-IPv6
test/reference/process64_record
test/reference/process64ex_record-IPv4
test/reference/process64ex_record-IPv6
test/reference/return32_record
test/reference/return32_token
test/reference/seq_record
test/reference/socketex_record [new file with mode: 0644]
test/reference/socketex_token [new file with mode: 0644]
test/reference/subject32_record
test/reference/subject32ex_record
test/reference/text_record
test/reference/zonename_record
tools/Makefile.in