]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/accesslog.c
ab2d1aad528e4a8ca97f67cbc94bae1b61aba986
[openldap] / servers / slapd / overlays / accesslog.c
1 /* accesslog.c - log operations for audit/history purposes */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2005 The OpenLDAP Foundation.
6  * Portions copyright 2004-2005 Symas Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Howard Chu for inclusion in
19  * OpenLDAP Software.
20  */
21
22 #include "portable.h"
23
24 #ifdef SLAPD_OVER_ACCESSLOG
25
26 #include <stdio.h>
27
28 #include <ac/string.h>
29 #include <ac/ctype.h>
30
31 #include "slap.h"
32 #include "config.h"
33 #include "lutil.h"
34 #include "ldap_rq.h"
35
36 #define LOG_OP_ADD      0x001
37 #define LOG_OP_DELETE   0x002
38 #define LOG_OP_MODIFY   0x004
39 #define LOG_OP_MODRDN   0x008
40 #define LOG_OP_COMPARE  0x010
41 #define LOG_OP_SEARCH   0x020
42 #define LOG_OP_BIND     0x040
43 #define LOG_OP_UNBIND   0x080
44 #define LOG_OP_ABANDON  0x100
45 #define LOG_OP_EXTENDED 0x200
46 #define LOG_OP_UNKNOWN  0x400
47
48 #define LOG_OP_WRITES   (LOG_OP_ADD|LOG_OP_DELETE|LOG_OP_MODIFY|LOG_OP_MODRDN)
49 #define LOG_OP_READS    (LOG_OP_COMPARE|LOG_OP_SEARCH)
50 #define LOG_OP_SESSION  (LOG_OP_BIND|LOG_OP_UNBIND|LOG_OP_ABANDON)
51 #define LOG_OP_ALL              (LOG_OP_READS|LOG_OP_WRITES|LOG_OP_SESSION| \
52         LOG_OP_EXTENDED|LOG_OP_UNKNOWN)
53
54 typedef struct log_info {
55         BackendDB *li_db;
56         slap_mask_t li_ops;
57         int li_age;
58         int li_cycle;
59         struct re_s *li_task;
60         int li_success;
61 } log_info;
62
63 static ConfigDriver log_cf_gen;
64
65 enum {
66         LOG_DB = 1,
67         LOG_OPS,
68         LOG_PURGE,
69         LOG_SUCCESS
70 };
71
72 static ConfigTable log_cfats[] = {
73         { "logdb", "suffix", 2, 2, 0, ARG_DN|ARG_MAGIC|LOG_DB,
74                 log_cf_gen, "( OLcfgOvAt:4.1 NAME 'olcAccessLogDB' "
75                         "DESC 'Suffix of database for log content' "
76                         "SUP distinguishedName SINGLE-VALUE )", NULL, NULL },
77         { "logops", "op|writes|reads|session|all", 2, 0, 0,
78                 ARG_MAGIC|LOG_OPS,
79                 log_cf_gen, "( OLcfgOvAt:4.2 NAME 'olcAccessLogOps' "
80                         "DESC 'Operation types to log' "
81                         "EQUALITY caseIgnoreMatch "
82                         "SYNTAX OMsDirectoryString )", NULL, NULL },
83         { "logpurge", "age> <interval", 3, 3, 0, ARG_MAGIC|LOG_PURGE,
84                 log_cf_gen, "( OLcfgOvAt:4.3 NAME 'olcAccessLogPurge' "
85                         "DESC 'Log cleanup parameters' "
86                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
87         { "logsuccess", NULL, 2, 2, 0, ARG_MAGIC|ARG_ON_OFF|LOG_SUCCESS,
88                 log_cf_gen, "( OLcfgOvAt:4.4 NAME 'olcAccessLogSuccess' "
89                         "DESC 'Log successful ops only' "
90                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
91         { NULL }
92 };
93
94 static ConfigOCs log_cfocs[] = {
95         { "( OLcfgOvOc:4.1 "
96                 "NAME 'olcAccessLogConfig' "
97                 "DESC 'Access log configuration' "
98                 "SUP olcOverlayConfig "
99                 "MUST olcAccessLogDB "
100                 "MAY ( olcAccessLogOps $ olcAccessLogPurge $ olcAccessLogSuccess ) )",
101                         Cft_Overlay, log_cfats },
102         { NULL }
103 };
104
105 static slap_verbmasks logops[] = {
106         { BER_BVC("all"),               LOG_OP_ALL },
107         { BER_BVC("writes"),    LOG_OP_WRITES },
108         { BER_BVC("session"),   LOG_OP_SESSION },
109         { BER_BVC("reads"),             LOG_OP_READS },
110         { BER_BVC("add"),               LOG_OP_ADD },
111         { BER_BVC("delete"),    LOG_OP_DELETE },
112         { BER_BVC("modify"),    LOG_OP_MODIFY },
113         { BER_BVC("modrdn"),    LOG_OP_MODRDN },
114         { BER_BVC("compare"),   LOG_OP_COMPARE },
115         { BER_BVC("search"),    LOG_OP_SEARCH },
116         { BER_BVC("bind"),              LOG_OP_BIND },
117         { BER_BVC("unbind"),    LOG_OP_UNBIND },
118         { BER_BVC("abandon"),   LOG_OP_ABANDON },
119         { BER_BVC("extended"),  LOG_OP_EXTENDED },
120         { BER_BVC("unknown"),   LOG_OP_UNKNOWN },
121         { BER_BVNULL, 0 }
122 };
123
124 /* Start with "add" in logops */
125 #define EN_OFFSET       4
126
127 enum {
128         LOG_EN_ADD = 0,
129         LOG_EN_DELETE,
130         LOG_EN_MODIFY,
131         LOG_EN_MODRDN,
132         LOG_EN_COMPARE,
133         LOG_EN_SEARCH,
134         LOG_EN_BIND,
135         LOG_EN_UNBIND,
136         LOG_EN_ABANDON,
137         LOG_EN_EXTENDED,
138         LOG_EN_UNKNOWN,
139         LOG_EN__COUNT
140 };
141
142 static ObjectClass *log_ocs[LOG_EN__COUNT];
143
144 #define LOG_SCHEMA_ROOT "1.3.6.1.4.1.4203.666.11.5"
145
146 #define LOG_SCHEMA_AT LOG_SCHEMA_ROOT ".1"
147 #define LOG_SCHEMA_OC LOG_SCHEMA_ROOT ".2"
148
149 static AttributeDescription *ad_reqDN, *ad_reqStart, *ad_reqEnd, *ad_reqType,
150         *ad_reqSession, *ad_reqResult, *ad_reqAuthzID, *ad_reqControls,
151         *ad_reqRespControls, *ad_reqMethod, *ad_reqAssertion, *ad_reqNewRDN,
152         *ad_reqNewSuperior, *ad_reqDeleteOldRDN, *ad_reqMod,
153         *ad_reqScope, *ad_reqFilter, *ad_reqAttr, *ad_reqEntries,
154         *ad_reqSizeLimit, *ad_reqTimeLimit, *ad_reqAttrsOnly, *ad_reqData,
155         *ad_reqId, *ad_reqMessage;
156 #if 0
157 static AttributeDescription *ad_oldest;
158 #endif
159
160 static struct {
161         char *at;
162         AttributeDescription **ad;
163 } lattrs[] = {
164         { "( " LOG_SCHEMA_AT ".1 NAME 'reqDN' "
165                 "DESC 'Target DN of request' "
166                 "EQUALITY distinguishedNameMatch "
167                 "SYNTAX OMsDN "
168                 "SINGLE-VALUE )", &ad_reqDN },
169         { "( " LOG_SCHEMA_AT ".2 NAME 'reqStart' "
170                 "DESC 'Start time of request' "
171                 "EQUALITY generalizedTimeMatch "
172                 "ORDERING generalizedTimeOrderingMatch "
173                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
174                 "SINGLE-VALUE )", &ad_reqStart },
175         { "( " LOG_SCHEMA_AT ".3 NAME 'reqEnd' "
176                 "DESC 'End time of request' "
177                 "EQUALITY generalizedTimeMatch "
178                 "ORDERING generalizedTimeOrderingMatch "
179                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
180                 "SINGLE-VALUE )", &ad_reqEnd },
181         { "( " LOG_SCHEMA_AT ".4 NAME 'reqType' "
182                 "DESC 'Type of request' "
183                 "EQUALITY caseIgnoreMatch "
184                 "SYNTAX OMsDirectoryString "
185                 "SINGLE-VALUE )", &ad_reqType },
186         { "( " LOG_SCHEMA_AT ".5 NAME 'reqSession' "
187                 "DESC 'Session ID of request' "
188                 "EQUALITY caseIgnoreMatch "
189                 "SYNTAX OMsDirectoryString "
190                 "SINGLE-VALUE )", &ad_reqSession },
191         { "( " LOG_SCHEMA_AT ".6 NAME 'reqResult' "
192                 "DESC 'Result code of request' "
193                 "EQUALITY integerMatch "
194                 "SYNTAX OMsInteger "
195                 "SINGLE-VALUE )", &ad_reqResult },
196         { "( " LOG_SCHEMA_AT ".7 NAME 'reqAuthzID' "
197                 "DESC 'Authorization ID of requestor' "
198                 "EQUALITY distinguishedNameMatch "
199                 "SYNTAX OMsDN "
200                 "SINGLE-VALUE )", &ad_reqAuthzID },
201         { "( " LOG_SCHEMA_AT ".8 NAME 'reqControls' "
202                 "DESC 'Request controls' "
203                 "SYNTAX OMsOctetString )", &ad_reqControls },
204         { "( " LOG_SCHEMA_AT ".9 NAME 'reqRespControls' "
205                 "DESC 'Response controls of request' "
206                 "SYNTAX OMsOctetString )", &ad_reqRespControls },
207         { "( " LOG_SCHEMA_AT ".10 NAME 'reqMethod' "
208                 "DESC 'Bind method of request' "
209                 "EQUALITY caseIgnoreMatch "
210                 "SYNTAX OMsDirectoryString "
211                 "SINGLE-VALUE )", &ad_reqMethod },
212         { "( " LOG_SCHEMA_AT ".11 NAME 'reqAssertion' "
213                 "DESC 'Compare Assertion of request' "
214                 "SYNTAX OMsDirectoryString "
215                 "SINGLE-VALUE )", &ad_reqAssertion },
216         { "( " LOG_SCHEMA_AT ".12 NAME 'reqNewRDN' "
217                 "DESC 'New RDN of request' "
218                 "EQUALITY distinguishedNameMatch "
219                 "SYNTAX OMsDN "
220                 "SINGLE-VALUE )", &ad_reqNewRDN },
221         { "( " LOG_SCHEMA_AT ".13 NAME 'reqNewSuperior' "
222                 "DESC 'New superior DN of request' "
223                 "EQUALITY distinguishedNameMatch "
224                 "SYNTAX OMsDN "
225                 "SINGLE-VALUE )", &ad_reqNewSuperior },
226         { "( " LOG_SCHEMA_AT ".14 NAME 'reqDeleteOldRDN' "
227                 "DESC 'Delete old RDN' "
228                 "SYNTAX OMsBoolean "
229                 "SINGLE-VALUE )", &ad_reqDeleteOldRDN },
230         { "( " LOG_SCHEMA_AT ".15 NAME 'reqMod' "
231                 "DESC 'Modifications of request' "
232                 "SYNTAX OMsDirectoryString "
233                 "EQUALITY caseIgnoreMatch "
234                 "SUBSTR caseIgnoreSubstringsMatch )", &ad_reqMod },
235         { "( " LOG_SCHEMA_AT ".16 NAME 'reqScope' "
236                 "DESC 'Scope of request' "
237                 "SYNTAX OMsDirectoryString "
238                 "SINGLE-VALUE )", &ad_reqScope },
239         { "( " LOG_SCHEMA_AT ".17 NAME 'reqFilter' "
240                 "DESC 'Filter of request' "
241                 "SYNTAX OMsDirectoryString "
242                 "SINGLE-VALUE )", &ad_reqFilter },
243         { "( " LOG_SCHEMA_AT ".18 NAME 'reqAttr' "
244                 "DESC 'Attributes of request' "
245                 "SYNTAX OMsDirectoryString )", &ad_reqAttr },
246         { "( " LOG_SCHEMA_AT ".19 NAME 'reqEntries' "
247                 "DESC 'Number of entries returned' "
248                 "SYNTAX OMsInteger "
249                 "SINGLE-VALUE )", &ad_reqEntries },
250         { "( " LOG_SCHEMA_AT ".20 NAME 'reqSizeLimit' "
251                 "DESC 'Size limit of request' "
252                 "SYNTAX OMsInteger "
253                 "SINGLE-VALUE )", &ad_reqSizeLimit },
254         { "( " LOG_SCHEMA_AT ".21 NAME 'reqTimeLimit' "
255                 "DESC 'Time limit of request' "
256                 "SYNTAX OMsInteger "
257                 "SINGLE-VALUE )", &ad_reqTimeLimit },
258         { "( " LOG_SCHEMA_AT ".22 NAME 'reqAttrsOnly' "
259                 "DESC 'Attributes and values of request' "
260                 "SYNTAX OMsBoolean "
261                 "SINGLE-VALUE )", &ad_reqAttrsOnly },
262         { "( " LOG_SCHEMA_AT ".23 NAME 'reqData' "
263                 "DESC 'Data of extended request' "
264                 "SYNTAX OMsOctetString "
265                 "SINGLE-VALUE )", &ad_reqData },
266         { "( " LOG_SCHEMA_AT ".24 NAME 'reqId' "
267                 "DESC 'ID of Request to Abandon' "
268                 "SYNTAX OMsInteger "
269                 "SINGLE-VALUE )", &ad_reqId },
270         { "( " LOG_SCHEMA_AT ".25 NAME 'reqMessage' "
271                 "DESC 'Error text of request' "
272                 "SYNTAX OMsDirectoryString "
273                 "SINGLE-VALUE )", &ad_reqMessage },
274 #if 0
275         { "( " LOG_SCHEMA_AT ".26 NAME 'auditOldest' "
276                 "DESC 'Oldest record in this branch' "
277                 "EQUALITY generalizedTimeMatch "
278                 "ORDERING generalizedTimeOrderingMatch "
279                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
280                 "SINGLE-VALUE )", &ad_oldest },
281 #endif
282         { NULL, NULL }
283 };
284
285 static struct {
286         char *ot;
287         ObjectClass **oc;
288 } locs[] = {
289 #if 0
290         { "( " LOG_SCHEMA_OC ".0 NAME 'auditContainer' "
291                 "SUP top STRUCTURAL "
292                 "MUST auditOldest "
293                 "MAY cn )", &oc_container },
294 #endif
295         { "( " LOG_SCHEMA_OC ".1 NAME 'auditObject' "
296                 "DESC 'OpenLDAP request auditing' "
297                 "SUP top STRUCTURAL "
298                 "MUST ( reqStart $ reqType $ reqSession ) "
299                 "MAY ( reqDN $ reqAuthzID $ reqControls $ reqRespControls $ reqEnd $ "
300                         "reqResult $ reqMessage ) )", &log_ocs[LOG_EN_UNBIND] },
301         { "( " LOG_SCHEMA_OC ".2 NAME 'auditReadObject' "
302                 "DESC 'OpenLDAP read request record' "
303                 "SUP auditObject STRUCTURAL )", NULL },
304         { "( " LOG_SCHEMA_OC ".3 NAME 'auditWriteObject' "
305                 "DESC 'OpenLDAP write request record' "
306                 "SUP auditObject STRUCTURAL )", &log_ocs[LOG_EN_DELETE] },
307         { "( " LOG_SCHEMA_OC ".4 NAME 'auditAbandon' "
308                 "DESC 'Abandon operation' "
309                 "SUP auditObject STRUCTURAL "
310                 "MUST reqId )", &log_ocs[LOG_EN_ABANDON] },
311         { "( " LOG_SCHEMA_OC ".5 NAME 'auditAdd' "
312                 "DESC 'Add operation' "
313                 "SUP auditWriteObject STRUCTURAL "
314                 "MUST reqMod )", &log_ocs[LOG_EN_ADD] },
315         { "( " LOG_SCHEMA_OC ".6 NAME 'auditBind' "
316                 "DESC 'Bind operation' "
317                 "SUP auditObject STRUCTURAL "
318                 "MUST reqMethod )", &log_ocs[LOG_EN_BIND] },
319         { "( " LOG_SCHEMA_OC ".7 NAME 'auditCompare' "
320                 "DESC 'Compare operation' "
321                 "SUP auditReadObject STRUCTURAL "
322                 "MUST reqAssertion )", &log_ocs[LOG_EN_COMPARE] },
323         { "( " LOG_SCHEMA_OC ".8 NAME 'auditModify' "
324                 "DESC 'Modify operation' "
325                 "SUP auditWriteObject STRUCTURAL "
326                 "MUST reqMod )", &log_ocs[LOG_EN_MODIFY] },
327         { "( " LOG_SCHEMA_OC ".9 NAME 'auditModRDN' "
328                 "DESC 'ModRDN operation' "
329                 "SUP auditWriteObject STRUCTURAL "
330                 "MUST ( reqNewRDN $ reqDeleteOldRDN ) "
331                 "MAY reqNewSuperior )", &log_ocs[LOG_EN_MODRDN] },
332         { "( " LOG_SCHEMA_OC ".10 NAME 'auditSearch' "
333                 "DESC 'Search operation' "
334                 "SUP auditReadObject STRUCTURAL "
335                 "MUST ( reqScope $ reqAttrsonly ) "
336                 "MAY ( reqFilter $ reqAttr $ reqEntries $ reqSizeLimit $ "
337                         "reqTimeLimit ) )", &log_ocs[LOG_EN_SEARCH] },
338         { "( " LOG_SCHEMA_OC ".11 NAME 'auditExtended' "
339                 "DESC 'Extended operation' "
340                 "SUP auditObject STRUCTURAL "
341                 "MAY reqData )", &log_ocs[LOG_EN_EXTENDED] },
342         { NULL, NULL }
343 };
344
345 #define RDNEQ   "reqStart="
346
347 /* Our time intervals are of the form [dd+]hh:mm[:ss]
348  * If a field is present, it must be two digits. We assume no one
349  * will want to keep log records for longer than 99 days.
350  */
351 static int
352 log_age_parse(char *agestr)
353 {
354         int t1, t2;
355         int gotdays = 0;
356
357         t1 = atoi( agestr );
358         /* Is there a days delimiter? */
359         if ( agestr[2] == '+' ) {
360                 t1 *= 24;
361                 gotdays = 1;
362         } else if ( agestr[2] != ':' ) {
363         /* No valid delimiter found, fail */
364                 return -1;
365         }
366
367         agestr += 3;
368         t2 = atoi( agestr );
369
370         /* if there's a delimiter, it can only be a colon */
371         if ( agestr[2] && agestr[2] != ':' )
372                 return -1;
373
374         /* If we're at the end of the string, and we started with days,
375          * fail because we expected to find minutes too.
376          */
377         if ( gotdays && !agestr[2] )
378                 return -1;
379
380         t1 *= 60;
381         t1 += t2;
382
383         if ( !agestr[2] )
384                 return t1 * 60;
385
386         agestr += 3;
387         t2 = atoi( agestr );
388
389         /* last field can only be seconds */
390         if ( agestr[2] && ( agestr[2] != ':' || !gotdays ))
391                 return -1;
392         t1 *= 60;
393         t1 += t2;
394
395         t1 *= 60;
396         if ( agestr[2] ) {
397                 agestr += 3;
398                 if ( agestr[2] )
399                         return -1;
400                 t1 += atoi( agestr );
401         }
402         return t1;
403 }
404
405 static void
406 log_age_unparse( int age, struct berval *agebv )
407 {
408         int dd, hh, mm, ss;
409         char *ptr;
410
411         ss = age % 60;
412         age /= 60;
413         mm = age % 60;
414         age /= 60;
415         hh = age % 60;
416         age /= 24;
417         dd = age;
418
419         ptr = agebv->bv_val;
420
421         if ( dd ) 
422                 ptr += sprintf( ptr, "%02d+", dd );
423         ptr += sprintf( ptr, "%02d:%02d", hh, mm );
424         if ( ss )
425                 ptr += sprintf( ptr, ":%02d", ss );
426
427         agebv->bv_len = ptr - agebv->bv_val;
428 }
429
430 static slap_callback nullsc = { NULL, NULL, NULL, NULL };
431
432 #define PURGE_INCREMENT 100
433
434 typedef struct purge_data {
435         int slots;
436         int used;
437         BerVarray dn;
438         BerVarray ndn;
439 } purge_data;
440
441 static int
442 log_old_lookup( Operation *op, SlapReply *rs )
443 {
444         purge_data *pd = op->o_callback->sc_private;
445
446         if ( rs->sr_type != REP_SEARCH) return 0;
447
448         if ( pd->used >= pd->slots ) {
449                 pd->slots += PURGE_INCREMENT;
450                 pd->dn = ch_realloc( pd->dn, pd->slots * sizeof( struct berval ));
451                 pd->ndn = ch_realloc( pd->ndn, pd->slots * sizeof( struct berval ));
452         }
453         ber_dupbv( &pd->dn[pd->used], &rs->sr_entry->e_name );
454         ber_dupbv( &pd->ndn[pd->used], &rs->sr_entry->e_nname );
455         pd->used++;
456         return 0;
457 }
458
459 /* Periodically search for old entries in the log database and delete them */
460 static void *
461 accesslog_purge( void *ctx, void *arg )
462 {
463         struct re_s *rtask = arg;
464         struct log_info *li = rtask->arg;
465
466         Connection conn = {0};
467         char opbuf[OPERATION_BUFFER_SIZE];
468         Operation *op = (Operation *)opbuf;
469         SlapReply rs = {REP_RESULT};
470         slap_callback cb = { NULL, log_old_lookup, NULL, NULL };
471         Filter f;
472         AttributeAssertion ava = {0};
473         purge_data pd = {0};
474         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE];
475         time_t old = slap_get_time();
476
477         connection_fake_init( &conn, op, ctx );
478
479         f.f_choice = LDAP_FILTER_LE;
480         f.f_ava = &ava;
481         f.f_next = NULL;
482
483         ava.aa_desc = ad_reqStart;
484         ava.aa_value.bv_val = timebuf;
485         ava.aa_value.bv_len = sizeof(timebuf);
486
487         old -= li->li_age;
488         slap_timestamp( &old, &ava.aa_value );
489
490         op->o_tag = LDAP_REQ_SEARCH;
491         op->o_bd = li->li_db;
492         op->o_dn = li->li_db->be_rootdn;
493         op->o_ndn = li->li_db->be_rootndn;
494         op->o_req_dn = li->li_db->be_suffix[0];
495         op->o_req_ndn = li->li_db->be_nsuffix[0];
496         op->o_callback = &cb;
497         op->ors_scope = LDAP_SCOPE_ONELEVEL;
498         op->ors_deref = LDAP_DEREF_NEVER;
499         op->ors_tlimit = SLAP_NO_LIMIT;
500         op->ors_slimit = SLAP_NO_LIMIT;
501         op->ors_filter = &f;
502         filter2bv_x( op, &f, &op->ors_filterstr );
503         op->ors_attrs = slap_anlist_no_attrs;
504         op->ors_attrsonly = 1;
505         
506         cb.sc_private = &pd;
507
508         op->o_bd->be_search( op, &rs );
509         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
510
511         if ( pd.used ) {
512                 int i;
513
514                 op->o_tag = LDAP_REQ_DELETE;
515                 op->o_callback = &nullsc;
516
517                 for (i=0; i<pd.used; i++) {
518                         op->o_req_dn = pd.dn[i];
519                         op->o_req_ndn = pd.ndn[i];
520                         op->o_bd->be_delete( op, &rs );
521                         ch_free( pd.ndn[i].bv_val );
522                         ch_free( pd.dn[i].bv_val );
523                 }
524                 ch_free( pd.ndn );
525                 ch_free( pd.dn );
526         }
527
528         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
529         ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
530         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
531
532         return NULL;
533 }
534
535 static int
536 log_cf_gen(ConfigArgs *c)
537 {
538         slap_overinst *on = (slap_overinst *)c->bi;
539         struct log_info *li = on->on_bi.bi_private;
540         int rc = 0;
541         slap_mask_t tmask = 0;
542         char agebuf[2*STRLENOF("dd+hh:mm:ss  ")];
543         struct berval agebv, cyclebv;
544
545         switch( c->op ) {
546         case SLAP_CONFIG_EMIT:
547                 switch( c->type ) {
548                 case LOG_DB:
549                         value_add( &c->rvalue_vals, li->li_db->be_suffix );
550                         value_add( &c->rvalue_nvals, li->li_db->be_nsuffix );
551                         break;
552                 case LOG_OPS:
553                         rc = mask_to_verbs( logops, li->li_ops, &c->rvalue_vals );
554                         break;
555                 case LOG_PURGE:
556                         agebv.bv_val = agebuf;
557                         log_age_unparse( li->li_age, &agebv );
558                         agebv.bv_val[agebv.bv_len] = ' ';
559                         agebv.bv_len++;
560                         cyclebv.bv_val = agebv.bv_val + agebv.bv_len;
561                         log_age_unparse( li->li_cycle, &cyclebv );
562                         agebv.bv_len += cyclebv.bv_len;
563                         value_add_one( &c->rvalue_vals, &agebv );
564                         break;
565                 case LOG_SUCCESS:
566                         if ( li->li_success )
567                                 c->value_int = li->li_success;
568                         else
569                                 rc = 1;
570                         break;
571                 }
572                 break;
573         case LDAP_MOD_DELETE:
574                 switch( c->type ) {
575                 case LOG_DB:
576                         /* noop. this should always be a valid backend. */
577                         break;
578                 case LOG_OPS:
579                         if ( c->valx < 0 ) {
580                                 li->li_ops = 0;
581                         } else {
582                                 rc = verbs_to_mask( 1, &c->line, logops, &tmask );
583                                 if ( rc == 0 )
584                                         li->li_ops &= ~tmask;
585                         }
586                         break;
587                 case LOG_PURGE:
588                         if ( li->li_task ) {
589                                 struct re_s *re = li->li_task;
590                                 li->li_task = NULL;
591                                 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ))
592                                         ldap_pvt_runqueue_stoptask( &slapd_rq, re );
593                                 ldap_pvt_runqueue_remove( &slapd_rq, re );
594                         }
595                         li->li_age = 0;
596                         li->li_cycle = 0;
597                         break;
598                 case LOG_SUCCESS:
599                         li->li_success = 0;
600                         break;
601                 }
602                 break;
603         default:
604                 switch( c->type ) {
605                 case LOG_DB:
606                         li->li_db = select_backend( &c->value_ndn, 0, 0 );
607                         if ( !li->li_db ) {
608                                 sprintf( c->msg, "<%s> no matching backend found for suffix",
609                                         c->argv[0] );
610                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
611                                         c->log, c->msg, c->value_dn.bv_val );
612                                 rc = 1;
613                         }
614                         ch_free( c->value_dn.bv_val );
615                         ch_free( c->value_ndn.bv_val );
616                         break;
617                 case LOG_OPS:
618                         rc = verbs_to_mask( c->argc, c->argv, logops, &tmask );
619                         if ( rc == 0 )
620                                 li->li_ops |= tmask;
621                         break;
622                 case LOG_PURGE:
623                         li->li_age = log_age_parse( c->argv[1] );
624                         if ( li->li_age == -1 ) {
625                                 rc = 1;
626                         } else {
627                                 li->li_cycle = log_age_parse( c->argv[2] );
628                                 if ( li->li_cycle == -1 ) {
629                                         rc = 1;
630                                 } else if ( slapMode & SLAP_SERVER_MODE ) {
631                                         struct re_s *re = li->li_task;
632                                         if ( re )
633                                                 re->interval.tv_sec = li->li_cycle;
634                                         else
635                                                 li->li_task = ldap_pvt_runqueue_insert( &slapd_rq,
636                                                         li->li_cycle, accesslog_purge, li,
637                                                         "accesslog_purge", li->li_db ?
638                                                                 li->li_db->be_suffix[0].bv_val :
639                                                                 c->be->be_suffix[0].bv_val );
640                                 }
641                         }
642                         break;
643                 case LOG_SUCCESS:
644                         li->li_success = c->value_int;
645                         break;
646                 }
647                 break;
648         }
649         return rc;
650 }
651
652 static Entry *accesslog_entry( Operation *op, int logop ) {
653         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
654         log_info *li = on->on_bi.bi_private;
655
656         char rdnbuf[STRLENOF(RDNEQ)+LDAP_LUTIL_GENTIME_BUFSIZE+8];
657         struct berval rdn, nrdn, timestamp, ntimestamp, bv;
658         slap_verbmasks *lo = logops+logop+EN_OFFSET;
659
660         Entry *e = ch_calloc( 1, sizeof(Entry) );
661
662         strcpy( rdnbuf, RDNEQ );
663         rdn.bv_val = rdnbuf;
664
665         timestamp.bv_val = rdnbuf+STRLENOF(RDNEQ);
666         timestamp.bv_len = sizeof(rdnbuf) - STRLENOF(RDNEQ);
667         slap_timestamp( &op->o_time, &timestamp );
668         sprintf( timestamp.bv_val + timestamp.bv_len-1, ".%06dZ", op->o_tincr );
669         timestamp.bv_len += 7;
670
671         rdn.bv_len = STRLENOF(RDNEQ)+timestamp.bv_len;
672         rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, op->o_tmpmemctx );
673         build_new_dn( &e->e_name, li->li_db->be_suffix, &rdn, NULL );
674         build_new_dn( &e->e_nname, li->li_db->be_nsuffix, &nrdn, NULL );
675
676         attr_merge_one( e, slap_schema.si_ad_objectClass,
677                 &log_ocs[logop]->soc_cname, NULL );
678         attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
679                 &log_ocs[logop]->soc_cname, NULL );
680
681         ntimestamp.bv_val = nrdn.bv_val + STRLENOF(RDNEQ);
682         ntimestamp.bv_len = nrdn.bv_len - STRLENOF(RDNEQ);
683         attr_merge_one( e, ad_reqStart, &timestamp, &ntimestamp );
684         op->o_tmpfree( nrdn.bv_val, op->o_tmpmemctx );
685
686         /* Exops have OID appended */
687         if ( logop == LOG_EN_EXTENDED ) {
688                 bv.bv_len = lo->word.bv_len + op->ore_reqoid.bv_len + 2;
689                 bv.bv_val = ch_malloc( bv.bv_len + 1 );
690                 AC_MEMCPY( bv.bv_val, lo->word.bv_val, lo->word.bv_len );
691                 bv.bv_val[lo->word.bv_len] = '{';
692                 AC_MEMCPY( bv.bv_val+lo->word.bv_len+1, op->ore_reqoid.bv_val,
693                         op->ore_reqoid.bv_len );
694                 bv.bv_val[bv.bv_len-1] = '}';
695                 bv.bv_val[bv.bv_len] = '\0';
696                 attr_merge_one( e, ad_reqType, &bv, NULL );
697         } else {
698                 attr_merge_one( e, ad_reqType, &lo->word, NULL );
699         }
700
701         rdn.bv_len = sprintf( rdn.bv_val, "%lu", op->o_connid );
702         attr_merge_one( e, ad_reqSession, &rdn, NULL );
703
704         if ( BER_BVISNULL( &op->o_dn )) 
705                 attr_merge_one( e, ad_reqAuthzID, (struct berval *)&slap_empty_bv,
706                         (struct berval *)&slap_empty_bv );
707         else
708                 attr_merge_one( e, ad_reqAuthzID, &op->o_dn, &op->o_ndn );
709
710         /* FIXME: need to add reqControls and reqRespControls */
711
712         return e;
713 }
714
715 static struct berval scopes[] = {
716         BER_BVC("base"),
717         BER_BVC("onelevel"),
718         BER_BVC("subtree"),
719         BER_BVC("subordinate")
720 };
721
722 static struct berval simple = BER_BVC("SIMPLE");
723
724 static int accesslog_response(Operation *op, SlapReply *rs) {
725         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
726         log_info *li = on->on_bi.bi_private;
727         Attribute *a, *last_attr;
728         Modifications *m;
729         struct berval *b;
730         time_t endtime;
731         int i;
732         int logop;
733         slap_verbmasks *lo;
734         Entry *e;
735         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE];
736         struct berval bv;
737         char *ptr;
738         BerVarray vals;
739         Operation op2 = {0};
740         SlapReply rs2 = {REP_RESULT};
741
742         if ( rs->sr_type != REP_RESULT && rs->sr_type != REP_EXTENDED )
743                 return SLAP_CB_CONTINUE;
744
745         if ( li->li_success && rs->sr_err != LDAP_SUCCESS )
746                 return SLAP_CB_CONTINUE;
747
748         switch ( op->o_tag ) {
749         case LDAP_REQ_ADD:              logop = LOG_EN_ADD; break;
750         case LDAP_REQ_DELETE:   logop = LOG_EN_DELETE; break;
751         case LDAP_REQ_MODIFY:   logop = LOG_EN_MODIFY; break;
752         case LDAP_REQ_MODRDN:   logop = LOG_EN_MODRDN; break;
753         case LDAP_REQ_COMPARE:  logop = LOG_EN_COMPARE; break;
754         case LDAP_REQ_SEARCH:   logop = LOG_EN_SEARCH; break;
755         case LDAP_REQ_BIND:             logop = LOG_EN_BIND; break;
756         case LDAP_REQ_EXTENDED: logop = LOG_EN_EXTENDED; break;
757         default:        /* unknown operation type */
758                 logop = LOG_EN_UNKNOWN; break;
759         }       /* Unbind and Abandon never reach here */
760
761         lo = logops+logop+EN_OFFSET;
762         if ( !( li->li_ops & lo->mask ))
763                 return SLAP_CB_CONTINUE;
764
765         endtime = slap_get_time();
766
767         e = accesslog_entry( op, logop );
768
769         bv.bv_val = timebuf;
770         bv.bv_len = sizeof(timebuf);
771         slap_timestamp( &endtime, &bv );
772
773         attr_merge_one( e, ad_reqEnd, &bv, NULL );
774
775         attr_merge_one( e, ad_reqDN, &op->o_req_dn, &op->o_req_ndn );
776
777         if ( rs->sr_text ) {
778                 ber_str2bv( rs->sr_text, 0, 0, &bv );
779                 attr_merge_one( e, ad_reqMessage, &bv, NULL );
780         }
781         bv.bv_len = sprintf( timebuf, "%d", rs->sr_err );
782         bv.bv_val = timebuf;
783
784         attr_merge_one( e, ad_reqResult, &bv, NULL );
785
786         last_attr = attr_find( e->e_attrs, ad_reqResult );
787
788         switch( logop ) {
789         case LOG_EN_ADD:
790                 /* count all the vals */
791                 i = 0;
792                 for ( a=op->ora_e->e_attrs; a; a=a->a_next ) {
793                         if ( a->a_vals ) {
794                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++) {
795                                         i++;
796                                 }
797                         }
798                 }
799                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
800                 i = 0;
801                 for ( a=op->ora_e->e_attrs; a; a=a->a_next ) {
802                         if ( a->a_vals ) {
803                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++,i++) {
804                                         vals[i].bv_len = a->a_desc->ad_cname.bv_len + b->bv_len +3;
805                                         vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
806                                         ptr = lutil_strcopy( vals[i].bv_val,
807                                                 a->a_desc->ad_cname.bv_val );
808                                         *ptr++ = ':';
809                                         *ptr++ = '+';
810                                         *ptr++ = ' ';
811                                         AC_MEMCPY( ptr, b->bv_val, b->bv_len );
812                                         vals[i].bv_val[vals[i].bv_len] = '\0';
813                                 }
814                         }
815                 }
816                 vals[i].bv_val = NULL;
817                 vals[i].bv_len = 0;
818                 a = attr_alloc( ad_reqMod );
819                 a->a_vals = vals;
820                 a->a_nvals = vals;
821                 last_attr->a_next = a;
822                 break;
823
824         case LOG_EN_DELETE:
825                 /* needs nothing else */
826                 break;
827
828         case LOG_EN_MODIFY:
829                 /* count all the mods */
830                 i = 0;
831                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
832                         if ( m->sml_values ) {
833                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++) {
834                                         i++;
835                                 }
836                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
837                                 i++;
838                         }
839                 }
840                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
841                 i = 0;
842                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
843                         if ( m->sml_values ) {
844                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++,i++) {
845                                         char c_op;
846                                         vals[i].bv_len = m->sml_desc->ad_cname.bv_len + b->bv_len +3;
847                                         vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
848                                         ptr = lutil_strcopy( vals[i].bv_val,
849                                                 m->sml_desc->ad_cname.bv_val );
850                                         *ptr++ = ':';
851                                         switch( m->sml_op ) {
852                                         case LDAP_MOD_ADD: c_op = '+'; break;
853                                         case LDAP_MOD_DELETE:   c_op = '-'; break;
854                                         case LDAP_MOD_REPLACE:  c_op = '='; break;
855                                         case LDAP_MOD_INCREMENT:        c_op = '#'; break;
856
857                                         /* unknown op. there shouldn't be any of these. we
858                                          * don't know what to do with it, but we shouldn't just
859                                          * ignore it.
860                                          */
861                                         default: c_op = '?'; break;
862                                         }
863                                         *ptr++ = c_op;
864                                         *ptr++ = ' ';
865                                         AC_MEMCPY( ptr, b->bv_val, b->bv_len );
866                                         vals[i].bv_val[vals[i].bv_len] = '\0';
867                                 }
868                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
869                                 vals[i].bv_len = m->sml_desc->ad_cname.bv_len + 2;
870                                 vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
871                                 ptr = lutil_strcopy( vals[i].bv_val,
872                                         m->sml_desc->ad_cname.bv_val );
873                                 *ptr++ = ':';
874                                 *ptr++ = '-';
875                                 *ptr = '\0';
876                                 i++;
877                         }
878                 }
879                 vals[i].bv_val = NULL;
880                 vals[i].bv_len = 0;
881                 a = attr_alloc( ad_reqMod );
882                 a->a_vals = vals;
883                 a->a_nvals = vals;
884                 last_attr->a_next = a;
885                 break;
886
887         case LOG_EN_MODRDN:
888                 attr_merge_one( e, ad_reqNewRDN, &op->orr_newrdn, &op->orr_nnewrdn );
889                 attr_merge_one( e, ad_reqDeleteOldRDN, op->orr_deleteoldrdn ?
890                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
891                         NULL );
892                 if ( op->orr_newSup ) {
893                         attr_merge_one( e, ad_reqNewSuperior, op->orr_newSup, op->orr_nnewSup );
894                 }
895                 break;
896
897         case LOG_EN_COMPARE:
898                 bv.bv_len = op->orc_ava->aa_desc->ad_cname.bv_len + 1 +
899                         op->orc_ava->aa_value.bv_len;
900                 bv.bv_val = op->o_tmpalloc( bv.bv_len+1, op->o_tmpmemctx );
901                 ptr = lutil_strcopy( bv.bv_val, op->orc_ava->aa_desc->ad_cname.bv_val );
902                 *ptr++ = '=';
903                 AC_MEMCPY( ptr, op->orc_ava->aa_value.bv_val, op->orc_ava->aa_value.bv_len );
904                 bv.bv_val[bv.bv_len] = '\0';
905                 attr_merge_one( e, ad_reqAssertion, &bv, NULL );
906                 op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
907                 break;
908
909         case LOG_EN_SEARCH:
910                 attr_merge_one( e, ad_reqScope, &scopes[op->ors_scope], NULL );
911                 attr_merge_one( e, ad_reqAttrsOnly, op->ors_attrsonly ?
912                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
913                         NULL );
914                 if ( !BER_BVISEMPTY( &op->ors_filterstr ))
915                         attr_merge_one( e, ad_reqFilter, &op->ors_filterstr, NULL );
916                 if ( op->ors_attrs ) {
917                         /* count them */
918                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
919                                 ;
920                         vals = op->o_tmpalloc( (i+1) * sizeof(struct berval),
921                                 op->o_tmpmemctx );
922                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
923                                 vals[i] = op->ors_attrs[i].an_name;
924                         vals[i].bv_val = NULL;
925                         vals[i].bv_len = 0;
926                         attr_merge( e, ad_reqAttr, vals, NULL );
927                         op->o_tmpfree( vals, op->o_tmpmemctx );
928                 }
929                 bv.bv_val = timebuf;
930                 bv.bv_len = sprintf( bv.bv_val, "%d", rs->sr_nentries );
931                 attr_merge_one( e, ad_reqEntries, &bv, NULL );
932
933                 bv.bv_len = sprintf( bv.bv_val, "%d", op->ors_tlimit );
934                 attr_merge_one( e, ad_reqTimeLimit, &bv, NULL );
935                 /* FIXME: slimit was zeroed by the backends */
936                 break;
937
938         case LOG_EN_BIND:
939                 if ( op->orb_method == LDAP_AUTH_SIMPLE ) {
940                         attr_merge_one( e, ad_reqMethod, &simple, NULL );
941                 } else {
942                         bv.bv_len = STRLENOF("SASL()") + op->orb_tmp_mech.bv_len;
943                         bv.bv_val = op->o_tmpalloc( bv.bv_len + 1, op->o_tmpmemctx );
944                         ptr = lutil_strcopy( bv.bv_val, "SASL(" );
945                         ptr = lutil_strcopy( ptr, op->orb_tmp_mech.bv_val );
946                         *ptr++ = ')';
947                         *ptr = '\0';
948                         attr_merge_one( e, ad_reqMethod, &bv, NULL );
949                         op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
950                 }
951                 break;
952
953         case LOG_EN_EXTENDED:
954                 if ( op->ore_reqdata ) {
955                         attr_merge_one( e, ad_reqData, op->ore_reqdata, NULL );
956                 }
957                 break;
958
959         case LOG_EN_UNKNOWN:
960                 /* we don't know its parameters, don't add any */
961                 break;
962         }
963
964         op2.o_hdr = op->o_hdr;
965         op2.o_tag = LDAP_REQ_ADD;
966         op2.o_time = endtime;
967         op2.o_tincr = 0;
968         op2.o_bd = li->li_db;
969         op2.o_dn = li->li_db->be_rootdn;
970         op2.o_ndn = li->li_db->be_rootndn;
971         op2.o_req_dn = e->e_name;
972         op2.o_req_ndn = e->e_nname;
973         op2.ora_e = e;
974         op2.o_callback = &nullsc;
975
976         if ( lo->mask & LOG_OP_WRITES ) {
977                 slap_get_commit_csn( op, NULL, &bv );
978                 attr_merge_one( e, slap_schema.si_ad_entryCSN, &bv, NULL );
979                 slap_queue_csn( &op2, &bv );
980         }
981
982         op2.o_bd->be_add( &op2, &rs2 );
983         slap_graduate_commit_csn( &op2 );
984         entry_free( e );
985
986         return SLAP_CB_CONTINUE;
987 }
988
989 /* unbinds are broadcast to all backends; we only log it if this
990  * backend was used for the original bind.
991  */
992 static int
993 accesslog_unbind( Operation *op, SlapReply *rs )
994 {
995         if ( op->o_conn->c_authz_backend == op->o_bd ) {
996                 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
997                 log_info *li = on->on_bi.bi_private;
998                 Operation op2;
999                 SlapReply rs2 = {REP_RESULT};
1000                 Entry *e;
1001
1002                 if ( !( li->li_ops & LOG_OP_UNBIND ))
1003                         return SLAP_CB_CONTINUE;
1004
1005                 e = accesslog_entry( op, LOG_EN_UNBIND );
1006                 op2.o_hdr = op->o_hdr;
1007                 op2.o_tag = LDAP_REQ_ADD;
1008                 op2.o_time = op->o_time;
1009                 op2.o_tincr = 0;
1010                 op2.o_bd = li->li_db;
1011                 op2.o_dn = li->li_db->be_rootdn;
1012                 op2.o_ndn = li->li_db->be_rootndn;
1013                 op2.o_req_dn = e->e_name;
1014                 op2.o_req_ndn = e->e_nname;
1015                 op2.ora_e = e;
1016                 op2.o_callback = &nullsc;
1017
1018                 op2.o_bd->be_add( &op2, &rs2 );
1019                 entry_free( e );
1020         }
1021         return SLAP_CB_CONTINUE;
1022 }
1023
1024 static int
1025 accesslog_abandon( Operation *op, SlapReply *rs )
1026 {
1027         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1028         log_info *li = on->on_bi.bi_private;
1029         Operation op2;
1030         SlapReply rs2 = {REP_RESULT};
1031         Entry *e;
1032         char buf[64];
1033         struct berval bv;
1034
1035         if ( !op->o_time || !( li->li_ops & LOG_OP_ABANDON ))
1036                 return SLAP_CB_CONTINUE;
1037
1038         e = accesslog_entry( op, LOG_EN_ABANDON );
1039         bv.bv_val = buf;
1040         bv.bv_len = sprintf( buf, "%d", op->orn_msgid );
1041         attr_merge_one( e, ad_reqId, &bv, NULL );
1042
1043         op2.o_hdr = op->o_hdr;
1044         op2.o_tag = LDAP_REQ_ADD;
1045         op2.o_time = op->o_time;
1046         op2.o_tincr = 0;
1047         op2.o_bd = li->li_db;
1048         op2.o_dn = li->li_db->be_rootdn;
1049         op2.o_ndn = li->li_db->be_rootndn;
1050         op2.o_req_dn = e->e_name;
1051         op2.o_req_ndn = e->e_nname;
1052         op2.ora_e = e;
1053         op2.o_callback = &nullsc;
1054
1055         op2.o_bd->be_add( &op2, &rs2 );
1056         entry_free( e );
1057
1058         return SLAP_CB_CONTINUE;
1059 }
1060
1061 static slap_overinst accesslog;
1062
1063 static int
1064 accesslog_db_init(
1065         BackendDB *be
1066 )
1067 {
1068         slap_overinst *on = (slap_overinst *)be->bd_info;
1069         log_info *li = ch_calloc(1, sizeof(log_info));
1070
1071         on->on_bi.bi_private = li;
1072         return 0;
1073 }
1074
1075 static int
1076 accesslog_db_destroy(
1077         BackendDB *be
1078 )
1079 {
1080         slap_overinst *on = (slap_overinst *)be->bd_info;
1081         log_info *li = on->on_bi.bi_private;
1082         
1083         free( li );
1084         return LDAP_SUCCESS;
1085 }
1086
1087 int accesslog_init()
1088 {
1089         int i, rc;
1090
1091         accesslog.on_bi.bi_type = "accesslog";
1092         accesslog.on_bi.bi_db_init = accesslog_db_init;
1093         accesslog.on_bi.bi_db_destroy = accesslog_db_destroy;
1094
1095         accesslog.on_bi.bi_op_unbind = accesslog_unbind;
1096         accesslog.on_bi.bi_op_abandon = accesslog_abandon;
1097         accesslog.on_response = accesslog_response;
1098
1099         accesslog.on_bi.bi_cf_ocs = log_cfocs;
1100
1101         nullsc.sc_response = slap_null_cb;
1102
1103         rc = config_register_schema( log_cfats, log_cfocs );
1104         if ( rc ) return rc;
1105
1106         /* log schema integration */
1107         for ( i=0; lattrs[i].at; i++ ) {
1108                 LDAPAttributeType *lat;
1109                 AttributeType *at;
1110                 int code;
1111                 const char *err;
1112
1113                 lat = ldap_str2attributetype( lattrs[i].at, &code, &err,
1114                         LDAP_SCHEMA_ALLOW_ALL );
1115                 if ( !lat ) {
1116                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1117                                 "ldap_str2attributetype failed on %d: %s, %s\n",
1118                                 i, ldap_scherr2str(code), err );
1119                         return -1;
1120                 }
1121                 code = at_add( lat, 0, &at, &err );
1122                 ldap_memfree( lat );
1123                 if ( code ) {
1124                         Debug( LDAP_DEBUG_ANY, "log_back_initialize: "
1125                                 "at_add failed on %d: %s\n",
1126                                 i, scherr2str(code), 0 );
1127                         return -1;
1128                 }
1129                 if ( slap_bv2ad( &at->sat_cname, lattrs[i].ad, &err )) {
1130                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1131                                 "slap_bv2ad failed on %d: %s\n",
1132                                 i, err, 0 );
1133                         return -1;
1134                 }
1135         }
1136         for ( i=0; locs[i].ot; i++ ) {
1137                 LDAPObjectClass *loc;
1138                 ObjectClass *oc;
1139                 int code;
1140                 const char *err;
1141
1142                 loc = ldap_str2objectclass( locs[i].ot, &code, &err,
1143                         LDAP_SCHEMA_ALLOW_ALL );
1144                 if ( !loc ) {
1145                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1146                                 "ldap_str2objectclass failed on %d: %s, %s\n",
1147                                 i, ldap_scherr2str(code), err );
1148                         return -1;
1149                 }
1150                 
1151                 code = oc_add( loc, 0, &oc, &err );
1152                 ldap_memfree( loc );
1153                 if ( code ) {
1154                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1155                                 "oc_add failed on %d: %s\n",
1156                                 i, scherr2str(code), 0 );
1157                         return -1;
1158                 }
1159                 if ( locs[i].oc )
1160                         *locs[i].oc = oc;
1161         }
1162
1163         return overlay_register(&accesslog);
1164 }
1165
1166 #if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_DYNAMIC
1167 int init_module( int argc, char *argv[]) {
1168         return accesslog_init();
1169 }
1170 #endif
1171
1172 #endif /* SLAPD_OVER_ACCESSLOG */