]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - contrib/openbsm/libbsm/au_class.3
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / contrib / openbsm / libbsm / au_class.3
1 .\"-
2 .\" Copyright (c) 2005-2006 Robert N. M. Watson
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .Dd April 19, 2005
27 .Dt AU_CLASS 3
28 .Os
29 .Sh NAME
30 .Nm getauclassent ,
31 .Nm getauclassent_r ,
32 .Nm getauclassnam ,
33 .Nm getauclassnam_r ,
34 .Nm setauclass ,
35 .Nm endauclass
36 .Nd "look up information from the audit_class database"
37 .Sh LIBRARY
38 .Lb libbsm
39 .Sh SYNOPSIS
40 .In bsm/libbsm.h
41 .Ft "struct au_class_ent *"
42 .Fn getauclassent void
43 .Ft "struct au_class_ent *"
44 .Fn getauclassent_r "struct au_class_ent *e"
45 .Ft "struct au_class_ent *"
46 .Fn getauclassnam "const char *name"
47 .Ft "struct au_class_ent *"
48 .Fn getauclassnam_r "struct au_class_ent *e" "const char *name"
49 .Ft void
50 .Fn setauclass void
51 .Ft void
52 .Fn endauclass void
53 .Sh DESCRIPTION
54 These interfaces may be used to look up information from the
55 .Xr audit_class 5
56 database, which describes audit event classes.
57 Audit event classes are described by
58 .Vt "struct au_class_ent" .
59 .Pp
60 The
61 .Fn getauclassent
62 function
63 will return the next class found in the
64 .Xr audit_class 5
65 database, or the first if the function has not yet been called.
66 .Dv NULL
67 will be returned if no further records are available.
68 .Pp
69 The
70 .Fn getauclassnam
71 function
72 looks up a class by name.
73 .Dv NULL
74 will be returned if no matching class can be found.
75 .Pp
76 The
77 .Fn setauclass
78 function
79 resets the iterator through the
80 .Xr audit_class 5
81 database, causing the next call to
82 .Fn getauclassent
83 to start again from the beginning of the file.
84 .Pp
85 The
86 .Fn endauclass
87 function
88 closes the
89 .Xr audit_class 5
90 database, if open.
91 .Sh SEE ALSO
92 .Xr libbsm 3 ,
93 .Xr audit_class 5
94 .Sh HISTORY
95 The OpenBSM implementation was created by McAfee Research, the security
96 division of McAfee Inc., under contract to Apple Computer, Inc., in 2004.
97 It was subsequently adopted by the TrustedBSD Project as the foundation for
98 the OpenBSM distribution.
99 .Sh AUTHORS
100 .An -nosplit
101 This software was created by
102 .An Robert Watson ,
103 .An Wayne Salamon ,
104 and
105 .An Suresh Krishnaswamy
106 for McAfee Research, the security research division of McAfee,
107 Inc., under contract to Apple Computer, Inc.
108 .Pp
109 The Basic Security Module (BSM) interface to audit records and audit event
110 stream format were defined by Sun Microsystems.
111 .Sh BUGS
112 These routines cannot currently distinguish between an entry not being found
113 and an error accessing the database.
114 The implementation should be changed to return an error via
115 .Va errno
116 when
117 .Dv NULL
118 is returned.