]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapo-accesslog.5
Sync with HEAD
[openldap] / doc / man / man5 / slapo-accesslog.5
1 .TH SLAPO-ACCESSLOG 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 2005 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapo-accesslog \- Access Logging overlay
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 The Access Logging overlay can be used to record all accesses to a given
11 backend database on another database. This allows all of the activity on
12 a given database to be reviewed using arbitrary LDAP queries, instead of
13 just logging to local flat text files. Configuration options are available
14 for selecting a subset of operation types to log, and to automatically
15 prune older log records from the logging database. Log records are stored
16 with a custom schema to assure their readability whether viewed as LDIF
17 or in raw form.
18 .SH CONFIGURATION
19 These
20 .B slapd.conf
21 options apply to the Access Logging overlay.
22 They should appear after the
23 .B overlay
24 directive and before any subsequent
25 .B database
26 directive.
27 .TP
28 .B logdb <suffix>
29 Specify the suffix of a database to be used for storing the log records.
30 The specified database must have already been configured in a prior section
31 of the config file. The suffix entry of the database must also already
32 exist. The log entries will be generated as the immediate children of the
33 suffix entry.
34 .TP
35 .B logops <operations>
36 Specify which types of operations to log. The valid operation types are
37 abandon, add, bind, compare, delete, extended, modify, modrdn, search,
38 and unbind. Aliases for common sets of operations are also available:
39 .RS
40 .TP
41 .B writes
42 add, delete, modify, modrdn
43 .TP
44 .B reads
45 compare, search
46 .TP
47 .B session
48 abandon, bind, unbind
49 .TP
50 .B all
51 all operations
52 .RE
53 .TP
54 .B logpurge <age> <interval>
55 Specify the maximum age for log entries to be retained in the database,
56 and how often to scan the database for old entries. Both the
57 .B age
58 and
59 .B interval
60 are specified as a time span in days, hours, minutes, and seconds. The
61 time format is [dd+]hh:mm[:ss] i.e., the days and seconds components are
62 optional but hours and minutes are required. Each numeric field must be
63 exactly two digits. For example
64 .RS
65 .RS
66 .PD 0
67 .TP
68 logpurge 02+00:00 01+00:00
69 .RE
70 .PD
71 would specify that the log database should be scanned every day for old
72 entries, and entries older than two days should be deleted. When using a
73 log database that supports ordered indexing on generalizedTime attributes,
74 specifying an eq index on the
75 .B reqStart
76 attribute will greatly benefit the performance of the purge operation.
77
78 .SH EXAMPLES
79 .LP
80 .nf
81         database bdb
82         suffix cn=log
83         \...
84         index reqStart eq
85
86         database bdb
87         suffix dc=example,dc=com
88         \...
89         overlay accesslog
90         logdb cn=log
91         logops writes reads
92 .fi
93
94 .SH OBJECT CLASSES
95 The
96 .B accesslog
97 overlay defines a number of object classes for use in the logs. There is
98 a basic
99 .B auditObject
100 class from which two additional classes,
101 .B auditReadObject
102 and
103 .B auditWriteObject
104 are derived. Object classes for each type of LDAP operation are further
105 derived from these classes. This object class hierarchy is designed to
106 allow flexible yet efficient searches of the log based on either a specific
107 operation type's class, or on more general classifications. The definition
108 of the
109 .B auditObject
110 class is as follows:
111 .LP
112 .RS 4
113 (  1.3.6.1.4.1.4203.666.11.5.2.1
114     NAME 'auditObject'
115     DESC 'OpenLDAP request auditing'
116     SUP top STRUCTURAL
117     MUST ( reqStart $ reqType $ reqSession )
118     MAY ( reqDN $ reqAuthzID $ reqControls $ reqRespControls $
119         reqEnd $ reqResult $ reqMessage ) )
120 .RE
121 .P
122 Note that all of the OIDs used in the logging schema currently reside
123 under the OpenLDAP Experimental branch. It is anticipated that thay
124 will migrate to a Standard branch in the future.
125
126 An overview of the attributes follows:
127 .B reqStart
128 and
129 .B reqEnd
130 provide the start and end time of the operation, respectively. They use
131 generalizedTime syntax. The
132 .B reqStart
133 attribute is also used as the RDN for each log entry.
134
135 The
136 .B reqType
137 attribute is a simple string containing the type of operation
138 being logged, e.g.
139 .BR add ,
140 .BR delete ,
141 .BR search ,
142 etc. For extended operations, the type also includes the OID of the
143 extended operation, e.g.
144 .B extended(1.2.3.4.1)
145
146 The
147 .B reqSession
148 attribute is an implementation-specific identifier that is common to
149 all the operations associated with the same LDAP session. Currently this
150 is slapd's internal connection ID, stored in decimal.
151
152 The
153 .B reqDN
154 attribute is the distinguishedName of the target of the operation. E.g., for
155 a Bind request, this is the Bind DN. For an Add request, this is the DN
156 of the entry being added. For a Search request, this is the base DN of
157 the search.
158
159 The
160 .B reqAuthzID
161 attribute is the distinguishedName of the user that performed the operation.
162 This will usually be the same name as was established at the start of a
163 session by a Bind request (if any) but may be altered in various
164 circumstances.
165
166 The
167 .BR reqControls and
168 .B reqRespControls
169 attributes carry any controls sent by the client on the request and returned
170 by the server in the response, respectively. The attribute values are just
171 uninterpreted octet strings.
172
173 The
174 .B reqResult
175 attribute is the numeric LDAP result code of the operation, indicating
176 either success or a particular LDAP error code. An error code may be
177 accompanied by a text error message which will be recorded in the
178 .B reqMessage
179 attribute.
180
181 Operation-specific classes are defined with additional attributes to carry
182 all of the relevant parameters associated with the operation:
183
184 .LP
185 .RS 4
186 (  1.3.6.1.4.1.4203.666.11.5.2.4
187     NAME 'auditAbandon'
188     DESC 'Abandon operation'
189     SUP auditObject STRUCTURAL
190     MUST reqId )
191 .RE
192 .P
193 For the
194 .B Abandon
195 operation the
196 .B reqId
197 attribute contains the message ID of the request that was abandoned.
198
199 .LP
200 .RS 4
201 (  1.3.6.1.4.1.4203.666.11.5.2.5
202     NAME 'auditAdd'
203     DESC 'Add operation'
204     SUP auditWriteObject STRUCTURAL
205     MUST reqMod )
206 .RE
207 .P
208 The
209 .B Add
210 class inherits from the
211 .B auditWriteObject
212 class. The Add and Modify classes are essentially the same. The
213 .B reqMod
214 attribute carries all of the attributes of the original entry being added.
215 (Or in the case of a Modify operation, all of the modifications being
216 performed.) The values are formatted as
217 .RS
218 .RS
219 .PD 0
220 .TP
221 attribute:<+|-|=|#> [ value]
222 .RE
223 .PD
224 Where '+' indicates an Add of a value, '-' for Delete, '=' for Replace,
225 and '#' for Increment. In an Add operation, all of the reqMod values will
226 have the '+' designator.
227 .RE
228 .P
229
230 .LP
231 .RS 4
232 (  1.3.6.1.4.1.4203.666.11.5.2.6
233     NAME 'auditBind'
234     DESC 'Bind operation'
235     SUP auditObject STRUCTURAL
236     MUST reqMethod )
237 .RE
238 .P
239 The
240 .B Bind
241 class just adds the
242 .B reqMethod
243 attribute which contains the Bind Method used in the Bind. This will be
244 the string
245 .B SIMPLE
246 for LDAP Simple Binds or
247 .B SASL(<mech>)
248 for SASL Binds.
249 Note that unless configured as a global overlay, only Simple Binds using
250 DNs that reside in the current database will be logged.
251
252 .LP
253 .RS 4
254 (  1.3.6.1.4.1.4203.666.11.5.2.7
255     NAME 'auditCompare'
256     DESC 'Compare operation'
257     SUP auditObject STRUCTURAL
258     MUST reqAssertion )
259 .RE
260 .P
261 For the
262 .B Compare
263 operation the
264 .B reqAssertion
265 attribute carries the Attribute Value Assertion used in the compare request.
266
267 .LP
268 .RS 4
269 (  1.3.6.1.4.1.4203.666.11.5.2.8
270     NAME 'auditModify'
271     DESC 'Modify operation'
272     SUP auditWriteObject STRUCTURAL
273     MUST reqMod )
274 .RE
275 .P
276 The
277 .B Modify
278 operation has already been described.
279
280 .LP
281 .RS 4
282 (  1.3.6.1.4.1.4203.666.11.5.2.9
283     NAME 'auditModRDN'
284     DESC 'ModRDN operation'
285     SUP auditWriteObject STRUCTURAL
286     MUST ( reqNewRDN $ reqDeleteOldRDN )
287     MAY reqNewSuperior )
288 .RE
289 .P
290 The
291 .B ModRDN
292 class uses the
293 .B reqNewRDN
294 attribute to carry the new RDN of the request.
295 The
296 .B reqDeleteOldRDN
297 attribute is a Boolean value showing
298 .B TRUE
299 if the old RDN was deleted from the entry, or
300 .B FALSE
301 if the old RDN was preserved.
302 The
303 .B reqNewSuperior
304 attribute carries the DN of the new parent entry if the request specified
305 the new parent.
306
307 .LP
308 .RS 4
309 (  1.3.6.1.4.1.4203.666.11.5.2.10
310     NAME 'auditSearch'
311     DESC 'Search operation'
312     SUP auditReadObject STRUCTURAL
313     MUST ( reqScope $ reqAttrsOnly )
314     MAY ( reqFilter $ reqAttr $ reqEntries $ reqSizeLimit $
315           reqTimeLimit ) )
316 .RE
317 .P
318 For the
319 .B Search
320 class the
321 .B reqScope
322 attribute contains the scope of the original search request, i.e.
323 .BR base ,
324 .BR onelevel ,
325 .BR subtree ,
326 or
327 .BR subordinate .
328 The
329 .B reqAttrsOnly
330 attribute is a Boolean value showing
331 .B TRUE 
332 if only attribute names were requested, or
333 .B FALSE
334 if attributes and their values were requested.
335 The
336 .B reqFilter
337 attribute carries the filter used in the search request.
338 The
339 .B reqAttr
340 attribute lists the requested attributes if specific attributes were
341 requested.
342 The
343 .B reqEntries
344 attribute is the integer count of how many entries were returned by
345 this search request.
346 The
347 .B reqSizeLimit
348 and
349 .B reqTimeLimit
350 attributes indicate what limits were requested on the search operation.
351
352 .LP
353 .RS 4
354 (  1.3.6.1.4.1.4203.666.11.5.2.11
355     NAME 'auditExtended'
356     DESC 'Extended operation'
357     SUP auditObject STRUCTURAL
358     MAY reqData )
359 .RE
360 .P
361 The
362 .B Extended
363 class represents an LDAP Extended Operation. As noted above, the actual OID of
364 the operation is included in the
365 .B reqType
366 attribute of the parent class. If any optional data was provided with the
367 request, it will be contained in the
368 .B reqData
369 attribute as an uninterpreted octet string.
370
371 .SH NOTES
372 The Access Log implemented by this overlay may be used for a variety of
373 other tasks, e.g. as a ChangeLog for a replication mechanism, as well
374 as for security/audit logging purposes.
375
376 .SH FILES
377 .TP
378 ETCDIR/slapd.conf
379 default slapd configuration file
380 .SH SEE ALSO
381 .BR slapd.conf (5).
382
383 .SH ACKNOWLEDGEMENTS
384 .P
385 This module was written in 2005 by Howard Chu of Symas Corporation.