]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/openbsm/NEWS
amd64: use register macros for gdb_cpu_getreg()
[FreeBSD/FreeBSD.git] / contrib / openbsm / NEWS
1 OpenBSM Version History
2
3 OpenBSM 1.2 alpha 5
4
5 - Add a new "qsize" parameter in audit_control and the getacqsize(3) API to
6   query it, allowing to set the kernel's maximum audit queue length.
7 - Add support to push a mapping between audit event names and event numbers
8   into the kernel (where supported) using new A_GETEVENT and A_SETEVENT
9   auditon(2) operations.
10 - Add audit event identifiers for a number of new (and not-so-new) FreeBSD
11   system calls including those for asynchronous I/O, thread management, SCTP,
12   jails, multi-FIB support, and misc. POSIX interfaces such as
13   posix_fallocate(2) and posix_fadvise(2).
14 - On operating systems supporting Capsicum, auditreduce(1) and praudit(1) now
15   run sandboxed.
16 - Empty "flags" and "naflags" fields are now permitted in audit_control(5).
17
18 OpenBSM 1.2 alpha 4
19
20 - Fix praudit to emit correct XML.
21 - Fix auditdistd bugs related to IPv6 support, locking, and a kqueue-related
22   descriptor leak.
23 - Add audit event definitions for Capsicum-related syscalls, as well as
24   AUE_BINDAT and AUE_CONNECTAT.
25 - Manpage symlinks for all libbsm functions are installed again after the
26   move to autotools in OpenBSM 1.0 Alpha 5.
27 - A variety of minor documentation cleanups.
28
29 OpenBSM 1.2 alpha 3
30
31 - Various minor tweaks to the auditdistd build to make it fit the FreeBSD
32   build environment better.
33 - AUE_WAIT6 merged from FreeBSD 9.
34
35 OpenBSM 1.2 alpha 2
36
37 - auditdistd, a distributed audit trail management daemon, has now been
38   merged.  This allows trail files to be securely and reliably synced from
39   audited hosts to an audit server, and employs TLS encryption.  Where
40   available, it uses Capsicum to sandbox the service.  This work was
41   contributed by Pawel Jakub Dawidek under sponsorship from the FreeBSD
42   Foundation. 
43
44 OpenBSM 1.2 alpha 1
45
46 - Add Capsicum-related error numbers for FreeBSD: ENOTCAPABLE, ECAPMODE.
47 - Add Capsicum, process descriptor audit events for FreeBSD.
48 - Allow 0% minspace.
49 - Fixes from the clang static analyser.
50 - Fix expiration of trail files when the host parameter is used.
51 - Various typo fixes.
52 - Support for Solaris privilege and privilege set tokens.
53 - Documentation for getachost(), improvements for getacfilesz().
54 - Fix a directory descriptor leak that happened when audit trail partitions
55   filled.
56 - Support for more Linux distributions with a partial contemporary endian.h.
57 - Improved escaping of XML-encapsulated BSM.
58 - A variety of minor documentation, style, and functional.
59
60 OpenBSM 1.1p2
61
62 - Fix audit_event definitions of AUE_OPENAT_RWT and AUE_OPENAT_RWTC.
63 - Fix build on Linux.
64 - Fix printing of class masks in the audump tool.
65
66 OpenBSM 1.1p1
67
68 - Fixes to AUT_SOCKUNIX token parsing.
69 - IPv6 support for au_to_me(3).
70 - Improved robustness in the parsing of audit_control, especially long
71   flags/naflags strings and whitespace in all fields.
72 - Add missing conversion of a number of FreeBSD/Mac OS X errnos to/from BSM
73   error number space.
74
75 OpenBSM 1.1
76
77 - Change auditon(2) parameters and data structures to be 32/64-bit architecture
78   independent.  Add more information to man page about auditon(2) parameters. 
79 - Add wrapper functions for auditon(2) to use legacy commands when the new
80   commands are not supported.
81 - Add default for 'expire-after' in audit_control to expire trail files when
82   the audit directory is more than 10 megabytes ('10M').
83 - Interface to convert between local and BSM fcntl(2) command values has been
84   added:  au_bsm_to_fcntl_cmd(3) and au_fcntl_cmd_to_bsm(3), along with 
85   definitions of constants in audit_fcntl.h.
86 - A bug, introduced in OpenBSM 1.1 alpha 4, in which AUT_RETURN32 tokens
87   generated by audit_submit(3) were improperly encoded has been fixed.
88 - Fix example in audit_submit(3) man page.  Also, make it clear that we want
89   the audit ID as the argument.
90 - A new audit event class 'aa', for post-login authentication and
91   authorization events, has been added.
92
93 OpenBSM 1.1 beta 1
94
95 - The filesz parameter in audit_control(5) now accepts suffixes: 'B' for
96   Bytes, 'K' for Kilobytes, 'M' for Megabytes, and 'G' for Gigabytes.
97   For legacy support no suffix defaults to bytes.
98 - Audit trail log expiration support added.  It is configured in
99   audit_control(5) with the expire-after parameter.  If there is no 
100   expire-after parameter in audit_control(5), the default, then the audit
101   trail files are not expired and removed.  See audit_control(5) for
102   more information.
103 - Change defaults in audit_control: warn at 5% rather than 20% free for audit
104   partitions, rotate automatically at 2mb, and set the default policy to
105   cnt,argv rather than cnt so that execve(2) arguments are captured if
106   AUE_EXECVE events are audited.  These may provide more usable defaults for
107   many users.
108 - Use au_domain_to_bsm(3) and au_socket_type_to_bsm(3) to convert
109   au_to_socket_ex(3) arguments to BSM format.
110 - Fix error encoding AUT_IPC_PERM tokens.
111
112 OpenBSM 1.1 alpha 5
113
114 - Stub libauditd(3) man page added.
115 - All BSM error number constants with BSM_ERRNO_.
116 - Interfaces to convert between local and BSM socket types and protocol
117   families have been added: au_bsm_to_domain(3), au_bsm_to_socket_type(3),
118   au_domain_to_bsm(3), and au_socket_type_to_bsm(3), along with definitions
119   of constants in audit_domain.h and audit_socket_type.h.  This improves
120   interoperability by converting local constant spaces, which vary by OS, to
121   and from Solaris constants (where available) or OpenBSM constants for
122   protocol domains not present in Solaris (a fair number).  These routines
123   should be used when generating and interpreting extended socket tokens.
124 - Fix build warnings with full gcc warnings enabled on most supported
125   platforms.
126 - Don't compile error strings into bsm_errno.c when building it in the kernel
127   environment.
128 - When started by launchd, use the label com.apple.auditd rather than
129   org.trustedbsd.auditd.
130
131 OpenBSM 1.1 alpha 4
132
133 - With the addition of BSM error number mapping, we also need to map the
134   local error number passed to audit_submit(3) to a BSM error number, rather
135   than have the caller perform that conversion.
136 - Reallocate user audit events to avoid collisions with Solaris; adopt a more
137   formal allocation scheme, and add some events allocated in Solaris that
138   will be of immediate use on other platforms.
139 - Add an event for Calife.
140 - Add au_strerror(3), which allows generating strings for BSM errors
141   directly, rather than requiring applications to map to the local error
142   space, which might not be able to entirely represent the BSM error number
143   space.
144 - Major auditd rewrite for launchd(8) support.  Add libauditd library that is
145   shared between launchd and auditd. 
146 - Add AUDIT_TRIGGER_INITIALIZE trigger (sent via 'audit -i') for (re)starting
147   auditing under launchd(8) on Mac OS X.
148 - Add 'current' symlink to active audit trail.
149 - Add crash recovery of previous audit trail file when detected on audit
150   startup that it has not been properly terminated.
151 - Add the event AUE_audit_recovery to indicated when an audit trail file has
152   been recovered from not being properly terminated.  This event is stored
153   in the new audit trail file and includes the path of recovered audit trail
154   file.
155 - Mac OS X and FreeBSD dependent code in auditd.c is separated into
156   auditd_darwin.c and auditd_fbsd.c files.
157 - Add an event for the posix_spawn(2) and fsgetpath(2) Mac OS X system calls.
158 - For Mac OS X, we use ASL(3) instead of syslog(3) for logging.
159 - Add support for NOTICE level logging. 
160
161 OpenBSM 1.1 alpha 3
162
163 - Add two new functions, au_bsm_to_errno() and au_errno_to_bsm(), to map
164   between BSM error numbers (largely the Solaris definitions) and local
165   errno(2) values for 32-bit and 64-bit return tokens.  This is required as
166   operating systems don't agree on some of the values of more recent error
167   numbers.
168 - Fix a bug how au_to_exec_args(3) and au_to_exec_env(3) calculates the total
169   size for the token.  This bug resulted in "unknown" tokens being printed
170   after the exec args/env tokens.
171 - Support for AUT_SOCKET_EX extended socket tokens, which describe a socket
172   using a pair of IPv4/IPv6 and port tuples.
173 - OpenBSM BSM file header version bumped for 1.1 release.
174 - Deprecated Darwin constants, such as TRAILER_PAD_MAGIC, removed.
175
176 OpenBSM 1.1 alpha 2
177
178 - Include files in OpenBSM are now broken out into two parts: library builds
179   required solely for user space, and system includes, which may also be
180   required for use in the kernels of systems integrating OpenBSM.  Submitted
181   by Stacey Son.
182 - Configure option --with-native-includes allows forcing the use of native
183   include for system includes, rather than the versions bundled with OpenBSM.
184   This is intended specifically for platforms that ship OpenBSM, have adapted
185   versions of the system includes in a kernel source tree, and will use the
186   OpenBSM build infrastructure with an unmodified OpenBSM distribution,
187   allowing the customized system includes to be used with the OpenBSM build.
188   Submitted by Stacey Son.
189 - Various strcpy()'s/strcat()'s have been changed to strlcpy()'s/strlcat()'s
190   or asprintf().  Added compat/strlcpy.h for Linux.
191 - Remove compatibility defines for old Darwin token constant names; now only
192   BSM token names are provided and used.
193 - Add support for extended header tokens, which contain space for information
194   on the host generating the record.
195 - Add support for setting extended host information in the kernel, which is
196   used for setting host information in extended header tokens.  The
197   audit_control file now supports a "host" parameter which can be used by
198   auditd to set the information; if not present, the kernel parameters won't
199   be set and auditd uses unextended headers for records that it generates.
200
201 OpenBSM 1.1 alpha 1
202
203 - Add option to auditreduce(1) which allows users to invert sense of
204   matching, such that BSM records that do not match, are selected.
205 - Fix bug in audit_write() where we commit an incomplete record in the
206   event there is an error writing the subject token.  This was submitted
207   by Diego Giagio.
208 - Build support for Mac OS X 10.5.1 submitted by Eric Hall.
209 - Fix a bug which resulted in host XML attributes not being printed
210   while processing extended header tokens.  This patch was submitted by
211   Martin Voros.
212 - Constification of function arguments so that const strings can be passed
213   as arguments to tokens.  This patch was submitted by Xin LI.
214 - Modify the -m option so users can select more then one audit event.
215 - For Mac OS X, added Mach IPC support for audit trigger messages.
216 - Fixed a bug in getacna() which resulted in a locking problem on Mac OS X.
217 - Added LOG_PERROR flag to openlog when -d option is used with auditd.
218 - AUE events added for Mac OS X Leopard system calls.
219
220 OpenBSM 1.0
221
222 - Fix bug in auditreduce(1) which resulted in a memory fault/crash when
223   the user specified an event name with -m.
224 - Remove AU_.* hard-coded audit class constants, as audit classes are now
225   entirely dynamically configured using /etc/security/audit_class.
226
227 OpenBSM 1.0 alpha 15
228
229 - Fix bug when processing in_addr_ex tokens.
230 - Restore the behavior of printing the string/text specified while
231   auditing arg32 tokens.
232 - Synchronized audit event list to Solaris, picking up the *at(2) system call
233   definitions, now required for FreeBSD and Linux.  Added additional events
234   for *at(2) system calls not present in Solaris.
235 - Bugs in auditreduce(1) fixed allowing partial date strings to be used in
236   filtering events.
237
238 OpenBSM 1.0 alpha 14
239
240 - Fix endian issues when processing IPv6 addresses for extended subject
241   and process tokens.
242 - gcc41 warnings clean.
243 - Teach audit_submit(3) about getaudit_addr(2).
244 - Add support for zonename tokens.
245
246 OpenBSM 1.0 alpha 13
247
248 - compat/clock_gettime.h now provides a compatibility implementation of
249   clock_gettime(), which fixes building on Mac OS X.
250 - Countless man page improvements, markup fixes, content fixs, etc.
251 - XML printing support via "praudit -x".
252 - audit.log.5 expanded to include additional BSM token types.
253 - Added encoding and decoding routines for process64_ex, process32_ex,
254   subject32_ex, header64, and attr64 tokens.
255 - Additional audit event identifiers for listen, mlockall/munlockall,
256   getpath, POSIX message queues, and mandatory access control.
257
258 OpenBSM 1.0 alpha 12
259
260 - Correct bug in auditreduce which prevented the -c option from working
261   correctly when the user specifies to process successful or failed events.
262   The problem stemmed from not having access to the return token at the time
263   the initial preselection occurred, but now a second preselection process
264   occurs while processing the return token.
265 - getacfilesz(3) API added to read new audit_control(5) filesz setting,
266   which auditd(8) now sets the kernel audit trail rotation size to.
267 - auditreduce(1) now uses stdin if no file names are specified on the command
268   line; this was the documented behavior previously, but it was not
269   implemented.  Be more specific in auditreduce(1)'s examples section about
270   what might be done with the output of auditreduce.
271 - Add audit_warn(5) closefile event so that administrators can hook
272   termination of an audit trail file.  For example, this might be used to
273   compress the trail file after it is closed.
274 - auditreduce(1) now uses regular expressions for pathname matching. Users can
275   now supply one or more (comma delimited) regular expressions for searching
276   the pathnames. If one of the regular expressions is prefixed with a tilde
277   (~), and a path matches, it will be excluded from the search results.
278
279 OpenBSM 1.0 alpha 11
280
281 - Reclassify certain read/write operations as having no class rather than the
282   fr/fw class; our default classes audit intent (open) not operations (read,
283   write).
284 - Introduce AUE_SYSCTL_WRITE event so that BSD/Darwin systems can audit reads
285   and writes of sysctls as separate events.  Add additional kernel
286   environment and jail events for FreeBSD.
287 - Break AUDIT_TRIGGER_OPEN_NEW into two events, AUDIT_TRIGGER_ROTATE_USER
288   (issued by the user audit(8) tool) and AUDIT_TRIGGER_ROTATE_KERNEL (issued
289   by the kernel audit implementation) so that they can be distinguished.
290 - Disable rate limiting of rotate requests; as the kernel doesn't retransmit
291   a dropped request, the log file will otherwise grow indefinitely if the
292   trigger is dropped.
293 - Improve auditd debugging output.
294 - Fix a number of threading related bugs in audit_control file reading
295   routines.
296 - Add APIs au_poltostr() and au_strtopol() to convert between text
297   representations of audit_control policy flags and the flags passed to
298   auditon(A_SETPOLICY) and retrieved from auditon(A_GETPOLICY).
299 - Add API getacpol() to return the 'policy:' entry from audit_control, an
300   extension to the Solaris file format to allow specification of policy
301   persistent flags.
302 - Update audump to print the audit_control policy field.
303 - Update auditd to read the audit_control policy field and set the kernel
304   policy to match it when configuring/reconfiguring.  Remove the -s and -h
305   arguments as these policies are now set via the configuration file.  If a
306   policy line is not found in the configuration file, continue with the
307   current default of setting AUDIT_CNT.
308 - Fix bugs in the parsing of large execve(2) arguments and environmental
309   variable tokens; increase maximum parsed argument and variable count.
310 - configure now detects strlcat(), used by policy-related functions.
311 - Reference token and record sample files added to test tree.
312
313 OpenBSM 1.0 alpha 10
314
315 - auditd now generates complete audit records for its events, as required for
316   application-submitted audit records in the FreeBSD kernel audit
317   implementation.
318
319 OpenBSM 1.0 alpha 9
320
321 - Rename many OpenBSM-specific constants and API elements containing the
322   strings "BSM" and "bsm" to "AUDIT" and "audit", observing that this is true
323   for almost all existing constants and APIs.
324 - Instead of passing a per-instance cookie directly into all audit filter
325   APIs, pass in the audit filter daemon state pointer, which is then used by
326   the module using an audit_filter_{get,set}cookie() API.  This will allow
327   future service APIs provided by the filter daemon to maintain their own
328   state -- for example, per-module preselection state.
329
330 OpenBSM 1.0 alpha 8
331
332 - Correct typo in definition of AUR_INT.
333 - Adopt OpenSolaris constant values for AUDIT_* configuration flags.
334 - Arguments to au_to_exec_args() and au_to_exec_env() no longer const.
335 - Add kernel versions of au_to_exec_args() and au_to_exec_env().
336 - Fix exec argument type that is printed for env strings from 'arg' to 'env'.
337 - New OpenBSM token version number assigned, constants added for other
338   commonly seen version numbers.
339 - OpenBSM-specific events assigned numbers in the 43xxx range to avoid future
340   collisions with Solaris.  Darwin events renamed to AUE_DARWIN_foo, as they
341   are now deprecated numberings.
342 - autoconf now detects clock_gettime(), which is not available on Darwin.
343 - praudit output fixes relating to arg32 and arg64 tokens.
344 - Maximum record size updated to 64k-1 to match Solaris record size limit.
345 - Various style and comment cleanups in include files.
346
347 OpenBSM 1.0 alpha 7
348
349 - Adopted Solaris-compatible format for subject32_ex and subject64_ex
350   tokens, which previously did not correctly implement variable length
351   address storage.
352 - Prefer inttypes.h to stdint.h; enhance queue.h detection to test for
353   TAILQ_FOREACH_SAFE(), which is present in recent BSD queue.h's, but not
354   older ones.  OpenBSM now builds on some FreeBSD 4.x versions.
355 - New event types for extended attributes, ACLs, and scheduling.
356
357 OpenBSM 1.0 alpha 6
358
359 - Use AU_TO_WRITE and AU_NO_TO_WRITE for the 'keep' argument to au_close();
360   previously we used hard-coded 0 and 1 values.
361 - Add man page for au_open(), au_write(), au_close(), and
362   au_close_buffer().
363 - Support a more complete range of data types for the arbitrary data token:
364   add AUR_CHAR (alias to AUR_BYTE), remove AUR_LONG, add AUR_INT32 (alias
365   to AUR_INT), add AUR_INT64.
366 - Add au_close_token(), which allows writing a single token_t to a memory
367   buffer.  Not likely to be used much by applications, but useful for
368   writing test tools.
369 - Modify au_to_file() so that it accepts a timeval in user space, not just
370   kernel -- this is not a Solaris BSM API so can be modified without
371   causing compatibility issues.
372 - Define a new API, au_to_header32_tm(), which adds a struct timeval
373   argument to the ordinary au_to_header32(), which is now implemented by
374   wrapping au_to_header32_tm() and calling gettimeofday().  #ifndef KERNEL
375   the APIs that invoke gettimeofday(), rather than having a variable
376   definition.  Don't try to retrieve time zone information using
377   gettimeofday(), as it's not needed, and introduces possible failure
378   modes.
379 - Don't perform byte order transformations on the addr/machine fields of
380   the terminal ID that appears in the process32/subject32 tokens.  These
381   are assumed to be IP addresses, and as such, to be in network byte
382   order.
383 - Universally, APIs now assume that IP addresses and ports are provided
384   in network byte order.  APIs now generally provide these types in
385   network byte order when decoding.
386 - Beginnings of an OpenBSM test framework can now be found in openbsm/test.
387   This code is not built or installed by default.
388 - auditd now assigns more appropriate syslog levels to its debugging and
389   error information.
390 - Support for audit filters introduced: audit filters are dynamically
391   loaded shared objects that run in the context of a new daemon,
392   auditfilterd.  The daemon reads from an audit pipe and feeds both BSM and
393   parsed versions of records to shared objects using a module API.  This
394   will provide a framework for the writing of intrusion detection services.
395 - New utility API, audit_submit(), added to capture common elements of audit
396   record submission for many applications.
397
398 OpenBSM 1.0 alpha 5
399
400 - Update install notes to indicate /etc files are to be installed manually.
401 - On systems without LOG_SECURITY, use LOG_AUTH.
402 - Convert to autoconf/automake in order to move to a more portable (not
403   BSD-specific) build infrastructure, and more easy conditional building of
404   components.  Currently, the primary feature loss is that automake does
405   not have native support for manual symlinks.  This will be addressed in a
406   future OpenBSM release.
407 - Add compat/queue.h, to be used on systems dated BSD queue macro libraries
408   (as found on Linux).
409 - Rename CHANGELOG to HISTORY, as our change log doesn't follow some of the
410   existing conventions for a CHANGELOG.
411 - Some private data structures moved from audit.h to audit_internal.h to
412   prevent inappropriate use by applications and name space pollution.
413 - Improved detection and use of endian macros using autoconf.
414 - Avoid non-portable use of struct in6_addr, which is largely opaque.
415 - Avoid leaking BSD kernel socket related token code to user space in
416   bsm_token.c.
417 - Teach System V IPC calls to look for Linux naming variations for certain
418   struct ipc_perm fields.
419 - Test for audit system calls, and if not present, don't build
420   bsm_wrappers.c, bsm_notify.c, audit(8), and auditd(8), which rely on
421   those system calls.
422 - au_close() is not implemented on systems that don't have audit system
423   calls, but au_close_buffer() is.
424 - Work around missing BSDisms in bsm_wrapper.c.
425 - Fix nested includes so including libbsm.h in an application on Linux
426   picks up the necessary definitions.
427
428 OpenBSM 1.0 alpha 4
429
430 - Remove "audit" user example from audit_user, as it's not present on most
431   systems.
432 - Add cannot_audit() function non-Darwin systems that wraps auditon();
433   required by OpenSSH BSM support.  Convert Darwin cannot_audit() into a
434   function rather than a macro.
435 - Library build fixed on Darwin following include file tweaks.  The native
436   Darwin sys/audit.h conflicts with bsm/audit.h due to duplicate types, so
437   for now we force bsm_wrappers.c to not perform a nested include of
438   sys/audit.h.
439
440 OpenBSM 1.0 alpha 3
441
442 - Man page formatting, cross reference, mlinks, and accuracy improvements.
443 - auditd and tools now compile and run on FreeBSD/arm.
444 - auditd will now fchown() the trail file to the audit review group, if
445   defined at compile-time.
446 - Added AUE_SYSARCH for FreeBSD.
447 - Definition of AUE_SETFSGID fixed for Linux.
448
449 OpenBSM 1.0 alpha 2
450
451 - Man page formatting improvements.
452 - A number of new audit event identifiers for FreeBSD, Linux, and POSIX.1b
453   events.
454 - Remove 'tfm' class, unused in OpenBSM.
455
456 OpenBSM 1.0 alpha 1
457
458 - Import of Darwin74 BSM drop
459 - Use 'syslog' for audit log warnings, rather than echoing to a file in
460   audit_warn.
461 - Compile using BSD make infrastructure.
462 - Integrate bsm/ include files from Darwin74 XNU drop into OpenBSM.
463 - Narrow set of symbols and defines that are exposed in user space: don't
464   compile in code relying on kernel-only types such as 'struct socket'.
465 - Add README, including basic build documentation.
466 - Compilation of Apple-specific notify and Machroutines now #ifdef __APPLE__.
467 - Staticize libbsm global variables to avoid leakage into applications.
468 - Add free_au_user_ent() so that au_user_ent's don't have to be leaked.
469 - Clean up bogus nul-termination checks in libbsm.
470 - Add libbsm API man pages: au_class.3 au_control.3 au_event.3
471   au_free_token.3 au_io.3 au_mask.3 au_token.3 au_user.3 libbsm.3.
472 - Add man pages for BSM system calls: audit.2 auditctl.2 auditon.2 getaudit.2
473   getauid.2 setaudit.2 setauid.2
474 - Modify various libbsm interfaces to more consistently return 'errno' values
475   on failure.
476 - Break out au_close() into constituent parts, allowing records to be written
477   to memory as well as files.
478 - Prefix various defines with 'BSM_' to reduce name space pollution.
479 - Added audit_internal.h, which can be used by a kernel audit implementation
480   wanting to rely on libbsm components.
481 - Build with warnings, and eliminate warnings.
482 - Make libbsm endian-independent, storing and reading BSM are big endian
483   (network byte order) rather than native byte order.  More consistently
484   print IP addresses using the IP address print routine.  These changes
485   make use of sys/endian.h from *BSD; since this isn't present on Darwin,
486   add it to OpenBSM as compat/endian.h, which is used only on Darwin.
487 - Import of Darwin80 BSM drop, including 64-bit file IDs, better
488   documentation of private APIs, and bug fixes.
489 - White space cleanup.
490 - Add audit.log.5, a first cut at a man page documenting the BSM file format.
491 - Teach au_read_rec() to recognize stand-alone file tokens, which are present
492   at the beginning and end of Solaris audit trails.  Technically, these
493   appear to violate the high level BSM spec, which suggests that all tokens
494   are present in records, but need to be supported.
495 - Implement HEADER64, ATTR64, SUBJECT64 token types, which make it possible
496   to run praudit(1) on basic Solaris BSM streams.
497 - Switched to Solaris spelling of token names; Darwin spellings are now
498   deprecated and will be removed in a future version of OpenBSM.
499 - Adopt Solaris model for representing IPv4 and IPv6 addresses.
500 - Prefer C99 types.
501 - Attempt to universally adopt the BSD style(9) coding style for
502   consistency.
503 - auditreduce(1) now has a usage message.
504 - Update support for auditctl(2) system call to support FreeBSD.
505 - Add support for /dev/audit as the trigger source on FreeBSD.
506 - Add additional event types for Darwin, FreeBSD, and Solaris.  Annotate
507   conflicts (there are a few, unfortunately).  Correct spellings, comment,
508   sort, etc.  These include {get,set}res[ug]id(), sendfile(), lchflags(),
509   eaccess(), kqueue(), kevent(), poll(), lchmod().
510 - Relicensed under a BSD license, many thanks to Apple, Inc!
511 - Many bug fixes, cleanups, thread safety in the class, control, event,
512   and user system audit databases.  Annotate some persisting atomicity
513   bugs associated with the API and implementation.
514 - Add audump test tool.
515 - Adopt OpenSolaris BSM API memory semantics: caller allocates memory,
516   or static memory is returned for non-_r() versions of API calls.
517   _free() calls dropped as a result, and source code compatibility with
518   OpenSolaris improved significantly.
519 - Annotate BSM events with origin OS and compatibility information.
520 - auditd(8), audit(8) added to the OpenBSM distribution.  auditd extended
521   to support reloading of kernel event table.
522 - Allow comments in /etc/security configuration files.