/etc/security/audit_class is an ASCII system file that stores class definitions. Programs use the getauclassent(3BSM) routines to access this information.
The fields for each class entry are separated by colons. Each class entry is a bitmap and is separated from each other by a newline.
Each entry in the audit_class file has the form:
mask:name:description
The fields are defined as follows:
-
mask
- The class mask.
-
name
- The class name.
-
description
- The description of the class.
The classes are now user-configurable. Each class is represented as a bit in the class mask which is an unsigned integer. Thus, there are 32 different classes available, plus two meta-classes --
all and no.
all represents a conjunction of all allowed classes, and is provided as a shorthand method of specifying all classes.
no is the "invalid" class, and any event mapped solely to this class will not be audited. (Turning auditing on to the all meta class will NOT cause events mapped
solely to the no class to be written to the audit trail.)
|