]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapo-accesslog.5
Happy new year (belated)
[openldap] / doc / man / man5 / slapo-accesslog.5
1 .TH SLAPO-ACCESSLOG 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 2005-2014 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapo\-accesslog \- Access Logging overlay to slapd
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 audit schema (see below) to assure their readability whether viewed
17 as LDIF 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.
25 .TP
26 .B logdb <suffix>
27 Specify the suffix of a database to be used for storing the log records.
28 The specified database must be defined elsewhere in the configuration.
29 The access controls
30 on the log database should prevent general access. The suffix entry
31 of the log database will be created automatically by this overlay. The log
32 entries will be generated as the immediate children of the suffix entry.
33 .TP
34 .B logops <operations>
35 Specify which types of operations to log. The valid operation types are
36 abandon, add, bind, compare, delete, extended, modify, modrdn, search,
37 and unbind. Aliases for common sets of operations are also available:
38 .RS
39 .TP
40 .B writes
41 add, delete, modify, modrdn
42 .TP
43 .B reads
44 compare, search
45 .TP
46 .B session
47 abandon, bind, unbind
48 .TP
49 .B all
50 all operations
51 .RE
52 .TP
53 .B logbase <operations> <baseDN>
54 Specify a set of operations that will only be logged if they occur under
55 a specific subtree of the database. The operation types are as above for
56 the
57 .B logops
58 setting, and delimited by a '|' character.
59 .TP
60 .B logold <filter>
61 Specify a filter for matching against Deleted and Modified entries. If
62 the entry matches the filter, the old contents of the entry will be
63 logged along with the current request.
64 .TP
65 .B logoldattr <attr> ...
66 Specify a list of attributes whose old contents are always logged in
67 Modify and ModRDN requests. Usually only the contents of attributes that were
68 actually modified will be logged; by default no old attributes are logged
69 for ModRDN requests.
70 .TP
71 .B logpurge <age> <interval>
72 Specify the maximum age for log entries to be retained in the database,
73 and how often to scan the database for old entries. Both the
74 .B age
75 and
76 .B interval
77 are specified as a time span in days, hours, minutes, and seconds. The
78 time format is [ddd+]hh:mm[:ss] i.e., the days and seconds components are
79 optional but hours and minutes are required. Except for days, which can
80 be up to 5 digits, each numeric field must be exactly two digits. For example
81 .RS
82 .RS
83 .PD 0
84 .TP
85 logpurge 2+00:00 1+00:00
86 .RE
87 .PD
88 would specify that the log database should be scanned every day for old
89 entries, and entries older than two days should be deleted. When using a
90 log database that supports ordered indexing on generalizedTime attributes,
91 specifying an eq index on the
92 .B reqStart
93 attribute will greatly benefit the performance of the purge operation.
94 .RE
95 .TP
96 .B logsuccess TRUE | FALSE
97 If set to TRUE then log records will only be generated for successful
98 requests, i.e., requests that produce a result code of 0 (LDAP_SUCCESS).
99 If FALSE, log records are generated for all requests whether they
100 succeed or not. The default is FALSE.
101
102 .SH EXAMPLES
103 .LP
104 .nf
105         database mdb
106         suffix dc=example,dc=com
107         \...
108         overlay accesslog
109         logdb cn=log
110         logops writes reads
111         logbase search|compare ou=testing,dc=example,dc=com
112         logold (objectclass=person)
113
114         database mdb
115         suffix cn=log
116         \...
117         index reqStart eq
118         access to *
119           by dn.base="cn=admin,dc=example,dc=com" read
120 .fi
121
122 .SH SCHEMA
123 The
124 .B accesslog
125 overlay utilizes the "audit" schema described herein.
126 This schema is specifically designed for
127 .B accesslog
128 auditing and is not intended to be used otherwise.  It is also
129 noted that the schema described here is
130 .I a work in
131 .IR progress ,
132 and hence subject to change without notice.
133 The schema is loaded automatically by the overlay.
134
135 The schema includes a number of object classes and associated
136 attribute types as described below.
137
138 There is
139 a basic
140 .B auditObject
141 class from which two additional classes,
142 .B auditReadObject
143 and
144 .B auditWriteObject
145 are derived. Object classes for each type of LDAP operation are further
146 derived from these classes. This object class hierarchy is designed to
147 allow flexible yet efficient searches of the log based on either a specific
148 operation type's class, or on more general classifications. The definition
149 of the
150 .B auditObject
151 class is as follows:
152 .LP
153 .RS 4
154 (  1.3.6.1.4.1.4203.666.11.5.2.1
155     NAME 'auditObject'
156     DESC 'OpenLDAP request auditing'
157     SUP top STRUCTURAL
158     MUST ( reqStart $ reqType $ reqSession )
159     MAY ( reqDN $ reqAuthzID $ reqControls $ reqRespControls $
160         reqEnd $ reqResult $ reqMessage $ reqReferral ) )
161 .RE
162 .P
163 Note that all of the OIDs used in the logging schema currently reside
164 under the OpenLDAP Experimental branch. It is anticipated that they
165 will migrate to a Standard branch in the future.
166
167 An overview of the attributes follows:
168 .B reqStart
169 and
170 .B reqEnd
171 provide the start and end time of the operation, respectively. They use
172 generalizedTime syntax. The
173 .B reqStart
174 attribute is also used as the RDN for each log entry.
175
176 The
177 .B reqType
178 attribute is a simple string containing the type of operation
179 being logged, e.g.
180 .BR add ,
181 .BR delete ,
182 .BR search ,
183 etc. For extended operations, the type also includes the OID of the
184 extended operation, e.g.
185 .B extended(1.1.1.1)
186
187 The
188 .B reqSession
189 attribute is an implementation-specific identifier that is common to
190 all the operations associated with the same LDAP session. Currently this
191 is slapd's internal connection ID, stored in decimal.
192
193 The
194 .B reqDN
195 attribute is the distinguishedName of the target of the operation. E.g., for
196 a Bind request, this is the Bind DN. For an Add request, this is the DN
197 of the entry being added. For a Search request, this is the base DN of
198 the search.
199
200 The
201 .B reqAuthzID
202 attribute is the distinguishedName of the user that performed the operation.
203 This will usually be the same name as was established at the start of a
204 session by a Bind request (if any) but may be altered in various
205 circumstances.
206
207 The
208 .B reqControls
209 and
210 .B reqRespControls
211 attributes carry any controls sent by the client on the request and returned
212 by the server in the response, respectively. The attribute values are just
213 uninterpreted octet strings.
214
215 The
216 .B reqResult
217 attribute is the numeric LDAP result code of the operation, indicating
218 either success or a particular LDAP error code. An error code may be
219 accompanied by a text error message which will be recorded in the
220 .B reqMessage
221 attribute.
222
223 The
224 .B reqReferral
225 attribute carries any referrals that were returned with the result of the
226 request.
227
228 Operation-specific classes are defined with additional attributes to carry
229 all of the relevant parameters associated with the operation:
230
231 .LP
232 .RS 4
233 (  1.3.6.1.4.1.4203.666.11.5.2.4
234     NAME 'auditAbandon'
235     DESC 'Abandon operation'
236     SUP auditObject STRUCTURAL
237     MUST reqId )
238 .RE
239 .P
240 For the
241 .B Abandon
242 operation the
243 .B reqId
244 attribute contains the message ID of the request that was abandoned.
245
246 .LP
247 .RS 4
248 (  1.3.6.1.4.1.4203.666.11.5.2.5
249     NAME 'auditAdd'
250     DESC 'Add operation'
251     SUP auditWriteObject STRUCTURAL
252     MUST reqMod )
253 .RE
254 .P
255 The
256 .B Add
257 class inherits from the
258 .B auditWriteObject
259 class. The Add and Modify classes are very similar. The
260 .B reqMod
261 attribute carries all of the attributes of the original entry being added.
262 (Or in the case of a Modify operation, all of the modifications being
263 performed.) The values are formatted as
264 .RS
265 .PD 0
266 .TP
267 attribute:<+|\-|=|#> [ value]
268 .RE
269 .RE
270 .PD
271 Where '+' indicates an Add of a value, '\-' for Delete, '=' for Replace,
272 and '#' for Increment. In an Add operation, all of the reqMod values will
273 have the '+' designator.
274 .P
275 .LP
276 .RS 4
277 (  1.3.6.1.4.1.4203.666.11.5.2.6
278     NAME 'auditBind'
279     DESC 'Bind operation'
280     SUP auditObject STRUCTURAL
281     MUST ( reqVersion $ reqMethod ) )
282 .RE
283 .P
284 The
285 .B Bind
286 class includes the
287 .B reqVersion
288 attribute which contains the LDAP protocol version specified in the Bind
289 as well as the
290 .B reqMethod
291 attribute which contains the Bind Method used in the Bind. This will be
292 the string
293 .B SIMPLE
294 for LDAP Simple Binds or
295 .B SASL(<mech>)
296 for SASL Binds.
297 Note that unless configured as a global overlay, only Simple Binds using
298 DNs that reside in the current database will be logged.
299
300 .LP
301 .RS 4
302 (  1.3.6.1.4.1.4203.666.11.5.2.7
303     NAME 'auditCompare'
304     DESC 'Compare operation'
305     SUP auditObject STRUCTURAL
306     MUST reqAssertion )
307 .RE
308 .P
309 For the
310 .B Compare
311 operation the
312 .B reqAssertion
313 attribute carries the Attribute Value Assertion used in the compare request.
314
315 .LP
316 .RS 4
317 (  1.3.6.1.4.1.4203.666.11.5.2.8
318     NAME 'auditDelete'
319     DESC 'Delete operation'
320     SUP auditWriteObject STRUCTURAL
321     MAY reqOld )
322 .RE
323 .P
324 The
325 .B Delete
326 operation needs no further parameters. However, the
327 .B reqOld
328 attribute may optionally be used to record the contents of the entry prior
329 to its deletion. The values are formatted as
330 .RS
331 .PD 0
332 .TP
333 attribute: value
334 .RE
335 .PD
336 The
337 .B reqOld
338 attribute is only populated if the entry being deleted matches the
339 configured
340 .B logold
341 filter.
342
343 .LP
344 .RS 4
345 (  1.3.6.1.4.1.4203.666.11.5.2.9
346     NAME 'auditModify'
347     DESC 'Modify operation'
348     SUP auditWriteObject STRUCTURAL
349     MAY reqOld MUST reqMod )
350 .RE
351 .P
352 The
353 .B Modify
354 operation contains a description of modifications in the
355 .B reqMod
356 attribute, which was already described above in the Add operation. It may
357 optionally contain the previous contents of any modified attributes in the
358 .B reqOld
359 attribute, using the same format as described above for the Delete operation.
360 The
361 .B reqOld
362 attribute is only populated if the entry being modified matches the
363 configured
364 .B logold
365 filter.
366
367 .LP
368 .RS 4
369 (  1.3.6.1.4.1.4203.666.11.5.2.10
370     NAME 'auditModRDN'
371     DESC 'ModRDN operation'
372     SUP auditWriteObject STRUCTURAL
373     MUST ( reqNewRDN $ reqDeleteOldRDN )
374     MAY ( reqNewSuperior $ reqOld ) )
375 .RE
376 .P
377 The
378 .B ModRDN
379 class uses the
380 .B reqNewRDN
381 attribute to carry the new RDN of the request.
382 The
383 .B reqDeleteOldRDN
384 attribute is a Boolean value showing
385 .B TRUE
386 if the old RDN was deleted from the entry, or
387 .B FALSE
388 if the old RDN was preserved.
389 The
390 .B reqNewSuperior
391 attribute carries the DN of the new parent entry if the request specified
392 the new parent.
393 The
394 .B reqOld
395 attribute is only populated if the entry being modified matches the
396 configured
397 .B logold
398 filter and contains attributes in the
399 .B logoldattr
400 list.
401
402 .LP
403 .RS 4
404 (  1.3.6.1.4.1.4203.666.11.5.2.11
405     NAME 'auditSearch'
406     DESC 'Search operation'
407     SUP auditReadObject STRUCTURAL
408     MUST ( reqScope $ reqDerefAliases $ reqAttrsOnly )
409     MAY ( reqFilter $ reqAttr $ reqEntries $ reqSizeLimit $
410           reqTimeLimit ) )
411 .RE
412 .P
413 For the
414 .B Search
415 class the
416 .B reqScope
417 attribute contains the scope of the original search request, using the
418 values specified for the LDAP URL format. I.e.
419 .BR base ,
420 .BR one ,
421 .BR sub ,
422 or
423 .BR subord .
424 The
425 .B reqDerefAliases
426 attribute is one of
427 .BR never ,
428 .BR finding ,
429 .BR searching ,
430 or
431 .BR always ,
432 denoting how aliases will be processed during the search.
433 The
434 .B reqAttrsOnly
435 attribute is a Boolean value showing
436 .B TRUE 
437 if only attribute names were requested, or
438 .B FALSE
439 if attributes and their values were requested.
440 The
441 .B reqFilter
442 attribute carries the filter used in the search request.
443 The
444 .B reqAttr
445 attribute lists the requested attributes if specific attributes were
446 requested.
447 The
448 .B reqEntries
449 attribute is the integer count of how many entries were returned by
450 this search request.
451 The
452 .B reqSizeLimit
453 and
454 .B reqTimeLimit
455 attributes indicate what limits were requested on the search operation.
456
457 .LP
458 .RS 4
459 (  1.3.6.1.4.1.4203.666.11.5.2.12
460     NAME 'auditExtended'
461     DESC 'Extended operation'
462     SUP auditObject STRUCTURAL
463     MAY reqData )
464 .RE
465 .P
466 The
467 .B Extended
468 class represents an LDAP Extended Operation. As noted above, the actual OID of
469 the operation is included in the
470 .B reqType
471 attribute of the parent class. If any optional data was provided with the
472 request, it will be contained in the
473 .B reqData
474 attribute as an uninterpreted octet string.
475
476 .SH NOTES
477 The Access Log implemented by this overlay may be used for a variety of
478 other tasks, e.g. as a ChangeLog for a replication mechanism, as well
479 as for security/audit logging purposes.
480
481 .SH FILES
482 .TP
483 ETCDIR/slapd.conf
484 default slapd configuration file
485 .SH SEE ALSO
486 .BR slapd.conf (5),
487 .BR slapd\-config (5).
488
489 .SH ACKNOWLEDGEMENTS
490 .P
491 This module was written in 2005 by Howard Chu of Symas Corporation.