]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/accesslog.c
Zero out op2
[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, timestamp, 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         if ( op->o_tincr ) {
669                 sprintf( timestamp.bv_val + timestamp.bv_len-1, ".%06dZ", op->o_tincr );
670                 timestamp.bv_len += 7;
671         }
672         rdn.bv_len = STRLENOF(RDNEQ)+timestamp.bv_len;
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, &rdn, 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         attr_merge_one( e, ad_reqStart, &timestamp, NULL );
681
682         /* Exops have OID appended */
683         if ( logop == LOG_EN_EXTENDED ) {
684                 bv.bv_len = lo->word.bv_len + op->ore_reqoid.bv_len + 2;
685                 bv.bv_val = ch_malloc( bv.bv_len + 1 );
686                 AC_MEMCPY( bv.bv_val, lo->word.bv_val, lo->word.bv_len );
687                 bv.bv_val[lo->word.bv_len] = '{';
688                 AC_MEMCPY( bv.bv_val+lo->word.bv_len+1, op->ore_reqoid.bv_val,
689                         op->ore_reqoid.bv_len );
690                 bv.bv_val[bv.bv_len-1] = '}';
691                 bv.bv_val[bv.bv_len] = '\0';
692                 attr_merge_one( e, ad_reqType, &bv, NULL );
693         } else {
694                 attr_merge_one( e, ad_reqType, &lo->word, NULL );
695         }
696
697         rdn.bv_len = sprintf( rdn.bv_val, "%lu", op->o_connid );
698         attr_merge_one( e, ad_reqSession, &rdn, NULL );
699
700         if ( BER_BVISNULL( &op->o_dn )) 
701                 attr_merge_one( e, ad_reqAuthzID, (struct berval *)&slap_empty_bv,
702                         (struct berval *)&slap_empty_bv );
703         else
704                 attr_merge_one( e, ad_reqAuthzID, &op->o_dn, &op->o_ndn );
705
706         /* FIXME: need to add reqControls and reqRespControls */
707
708         return e;
709 }
710
711 static struct berval scopes[] = {
712         BER_BVC("base"),
713         BER_BVC("onelevel"),
714         BER_BVC("subtree"),
715         BER_BVC("subordinate")
716 };
717
718 static struct berval simple = BER_BVC("SIMPLE");
719
720 static int accesslog_response(Operation *op, SlapReply *rs) {
721         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
722         log_info *li = on->on_bi.bi_private;
723         Attribute *a, *last_attr;
724         Modifications *m;
725         struct berval *b;
726         time_t endtime;
727         int i;
728         int logop;
729         slap_verbmasks *lo;
730         Entry *e;
731         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE];
732         struct berval bv;
733         char *ptr;
734         BerVarray vals;
735         Operation op2 = {0};
736         SlapReply rs2 = {REP_RESULT};
737
738         if ( rs->sr_type != REP_RESULT && rs->sr_type != REP_EXTENDED )
739                 return SLAP_CB_CONTINUE;
740
741         if ( li->li_success && rs->sr_err != LDAP_SUCCESS )
742                 return SLAP_CB_CONTINUE;
743
744         switch ( op->o_tag ) {
745         case LDAP_REQ_ADD:              logop = LOG_EN_ADD; break;
746         case LDAP_REQ_DELETE:   logop = LOG_EN_DELETE; break;
747         case LDAP_REQ_MODIFY:   logop = LOG_EN_MODIFY; break;
748         case LDAP_REQ_MODRDN:   logop = LOG_EN_MODRDN; break;
749         case LDAP_REQ_COMPARE:  logop = LOG_EN_COMPARE; break;
750         case LDAP_REQ_SEARCH:   logop = LOG_EN_SEARCH; break;
751         case LDAP_REQ_BIND:             logop = LOG_EN_BIND; break;
752         case LDAP_REQ_EXTENDED: logop = LOG_EN_EXTENDED; break;
753         default:        /* unknown operation type */
754                 logop = LOG_EN_UNKNOWN; break;
755         }       /* Unbind and Abandon never reach here */
756
757         lo = logops+logop+EN_OFFSET;
758         if ( !( li->li_ops & lo->mask ))
759                 return SLAP_CB_CONTINUE;
760
761         endtime = slap_get_time();
762
763         e = accesslog_entry( op, logop );
764
765         bv.bv_val = timebuf;
766         bv.bv_len = sizeof(timebuf);
767         slap_timestamp( &endtime, &bv );
768
769         attr_merge_one( e, ad_reqEnd, &bv, NULL );
770
771         attr_merge_one( e, ad_reqDN, &op->o_req_dn, &op->o_req_ndn );
772
773         if ( rs->sr_text ) {
774                 ber_str2bv( rs->sr_text, 0, 0, &bv );
775                 attr_merge_one( e, ad_reqMessage, &bv, NULL );
776         }
777         bv.bv_len = sprintf( timebuf, "%d", rs->sr_err );
778         bv.bv_val = timebuf;
779
780         attr_merge_one( e, ad_reqResult, &bv, NULL );
781
782         last_attr = attr_find( e->e_attrs, ad_reqResult );
783
784         switch( logop ) {
785         case LOG_EN_ADD:
786                 /* count all the vals */
787                 i = 0;
788                 for ( a=op->ora_e->e_attrs; a; a=a->a_next ) {
789                         if ( a->a_vals ) {
790                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++) {
791                                         i++;
792                                 }
793                         }
794                 }
795                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
796                 i = 0;
797                 for ( a=op->ora_e->e_attrs; a; a=a->a_next ) {
798                         if ( a->a_vals ) {
799                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++,i++) {
800                                         vals[i].bv_len = a->a_desc->ad_cname.bv_len + b->bv_len +3;
801                                         vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
802                                         ptr = lutil_strcopy( vals[i].bv_val,
803                                                 a->a_desc->ad_cname.bv_val );
804                                         *ptr++ = ':';
805                                         *ptr++ = '+';
806                                         *ptr++ = ' ';
807                                         AC_MEMCPY( ptr, b->bv_val, b->bv_len );
808                                         vals[i].bv_val[vals[i].bv_len] = '\0';
809                                 }
810                         }
811                 }
812                 vals[i].bv_val = NULL;
813                 vals[i].bv_len = 0;
814                 a = attr_alloc( ad_reqMod );
815                 a->a_vals = vals;
816                 a->a_nvals = vals;
817                 last_attr->a_next = a;
818                 break;
819
820         case LOG_EN_DELETE:
821                 /* needs nothing else */
822                 break;
823
824         case LOG_EN_MODIFY:
825                 /* count all the mods */
826                 i = 0;
827                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
828                         if ( m->sml_values ) {
829                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++) {
830                                         i++;
831                                 }
832                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
833                                 i++;
834                         }
835                 }
836                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
837                 i = 0;
838                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
839                         if ( m->sml_values ) {
840                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++,i++) {
841                                         char c_op;
842                                         vals[i].bv_len = m->sml_desc->ad_cname.bv_len + b->bv_len +3;
843                                         vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
844                                         ptr = lutil_strcopy( vals[i].bv_val,
845                                                 m->sml_desc->ad_cname.bv_val );
846                                         *ptr++ = ':';
847                                         switch( m->sml_op ) {
848                                         case LDAP_MOD_ADD: c_op = '+'; break;
849                                         case LDAP_MOD_DELETE:   c_op = '-'; break;
850                                         case LDAP_MOD_REPLACE:  c_op = '='; break;
851                                         case LDAP_MOD_INCREMENT:        c_op = '#'; break;
852
853                                         /* unknown op. there shouldn't be any of these. we
854                                          * don't know what to do with it, but we shouldn't just
855                                          * ignore it.
856                                          */
857                                         default: c_op = '?'; break;
858                                         }
859                                         *ptr++ = c_op;
860                                         *ptr++ = ' ';
861                                         AC_MEMCPY( ptr, b->bv_val, b->bv_len );
862                                         vals[i].bv_val[vals[i].bv_len] = '\0';
863                                 }
864                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
865                                 vals[i].bv_len = m->sml_desc->ad_cname.bv_len + 2;
866                                 vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
867                                 ptr = lutil_strcopy( vals[i].bv_val,
868                                         m->sml_desc->ad_cname.bv_val );
869                                 *ptr++ = ':';
870                                 *ptr++ = '-';
871                                 *ptr = '\0';
872                                 i++;
873                         }
874                 }
875                 vals[i].bv_val = NULL;
876                 vals[i].bv_len = 0;
877                 a = attr_alloc( ad_reqMod );
878                 a->a_vals = vals;
879                 a->a_nvals = vals;
880                 last_attr->a_next = a;
881                 break;
882
883         case LOG_EN_MODRDN:
884                 attr_merge_one( e, ad_reqNewRDN, &op->orr_newrdn, &op->orr_nnewrdn );
885                 attr_merge_one( e, ad_reqDeleteOldRDN, op->orr_deleteoldrdn ?
886                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
887                         NULL );
888                 if ( op->orr_newSup ) {
889                         attr_merge_one( e, ad_reqNewSuperior, op->orr_newSup, op->orr_nnewSup );
890                 }
891                 break;
892
893         case LOG_EN_COMPARE:
894                 bv.bv_len = op->orc_ava->aa_desc->ad_cname.bv_len + 1 +
895                         op->orc_ava->aa_value.bv_len;
896                 bv.bv_val = op->o_tmpalloc( bv.bv_len+1, op->o_tmpmemctx );
897                 ptr = lutil_strcopy( bv.bv_val, op->orc_ava->aa_desc->ad_cname.bv_val );
898                 *ptr++ = '=';
899                 AC_MEMCPY( ptr, op->orc_ava->aa_value.bv_val, op->orc_ava->aa_value.bv_len );
900                 bv.bv_val[bv.bv_len] = '\0';
901                 attr_merge_one( e, ad_reqAssertion, &bv, NULL );
902                 op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
903                 break;
904
905         case LOG_EN_SEARCH:
906                 attr_merge_one( e, ad_reqScope, &scopes[op->ors_scope], NULL );
907                 attr_merge_one( e, ad_reqAttrsOnly, op->ors_attrsonly ?
908                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
909                         NULL );
910                 if ( !BER_BVISEMPTY( &op->ors_filterstr ))
911                         attr_merge_one( e, ad_reqFilter, &op->ors_filterstr, NULL );
912                 if ( op->ors_attrs ) {
913                         /* count them */
914                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
915                                 ;
916                         vals = op->o_tmpalloc( (i+1) * sizeof(struct berval),
917                                 op->o_tmpmemctx );
918                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
919                                 vals[i] = op->ors_attrs[i].an_name;
920                         vals[i].bv_val = NULL;
921                         vals[i].bv_len = 0;
922                         attr_merge( e, ad_reqAttr, vals, NULL );
923                         op->o_tmpfree( vals, op->o_tmpmemctx );
924                 }
925                 bv.bv_val = timebuf;
926                 bv.bv_len = sprintf( bv.bv_val, "%d", rs->sr_nentries );
927                 attr_merge_one( e, ad_reqEntries, &bv, NULL );
928
929                 bv.bv_len = sprintf( bv.bv_val, "%d", op->ors_tlimit );
930                 attr_merge_one( e, ad_reqTimeLimit, &bv, NULL );
931                 /* FIXME: slimit was zeroed by the backends */
932                 break;
933
934         case LOG_EN_BIND:
935                 if ( op->orb_method == LDAP_AUTH_SIMPLE ) {
936                         attr_merge_one( e, ad_reqMethod, &simple, NULL );
937                 } else {
938                         bv.bv_len = STRLENOF("SASL()") + op->orb_tmp_mech.bv_len;
939                         bv.bv_val = op->o_tmpalloc( bv.bv_len + 1, op->o_tmpmemctx );
940                         ptr = lutil_strcopy( bv.bv_val, "SASL(" );
941                         ptr = lutil_strcopy( ptr, op->orb_tmp_mech.bv_val );
942                         *ptr++ = ')';
943                         *ptr = '\0';
944                         attr_merge_one( e, ad_reqMethod, &bv, NULL );
945                         op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
946                 }
947                 break;
948
949         case LOG_EN_EXTENDED:
950                 if ( op->ore_reqdata ) {
951                         attr_merge_one( e, ad_reqData, op->ore_reqdata, NULL );
952                 }
953                 break;
954
955         case LOG_EN_UNKNOWN:
956                 /* we don't know its parameters, don't add any */
957                 break;
958         }
959
960         op2.o_hdr = op->o_hdr;
961         op2.o_tag = LDAP_REQ_ADD;
962         op2.o_time = endtime;
963         op2.o_tincr = 0;
964         op2.o_bd = li->li_db;
965         op2.o_dn = li->li_db->be_rootdn;
966         op2.o_ndn = li->li_db->be_rootndn;
967         op2.o_req_dn = e->e_name;
968         op2.o_req_ndn = e->e_nname;
969         op2.ora_e = e;
970         op2.o_callback = &nullsc;
971
972         op2.o_bd->be_add( &op2, &rs2 );
973         entry_free( e );
974
975         return SLAP_CB_CONTINUE;
976 }
977
978 /* unbinds are broadcast to all backends; we only log it if this
979  * backend was used for the original bind.
980  */
981 static int
982 accesslog_unbind( Operation *op, SlapReply *rs )
983 {
984         if ( op->o_conn->c_authz_backend == op->o_bd ) {
985                 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
986                 log_info *li = on->on_bi.bi_private;
987                 Operation op2;
988                 SlapReply rs2 = {REP_RESULT};
989                 Entry *e;
990
991                 e = accesslog_entry( op, LOG_EN_UNBIND );
992                 op2.o_hdr = op->o_hdr;
993                 op2.o_tag = LDAP_REQ_ADD;
994                 op2.o_time = op->o_time;
995                 op2.o_tincr = 0;
996                 op2.o_bd = li->li_db;
997                 op2.o_dn = li->li_db->be_rootdn;
998                 op2.o_ndn = li->li_db->be_rootndn;
999                 op2.o_req_dn = e->e_name;
1000                 op2.o_req_ndn = e->e_nname;
1001                 op2.ora_e = e;
1002                 op2.o_callback = &nullsc;
1003
1004                 op2.o_bd->be_add( &op2, &rs2 );
1005                 entry_free( e );
1006         }
1007         return SLAP_CB_CONTINUE;
1008 }
1009
1010 static int
1011 accesslog_abandon( Operation *op, SlapReply *rs )
1012 {
1013         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1014         log_info *li = on->on_bi.bi_private;
1015         Operation op2;
1016         SlapReply rs2 = {REP_RESULT};
1017         Entry *e;
1018         char buf[64];
1019         struct berval bv;
1020
1021         if ( !op->o_time )
1022                 return SLAP_CB_CONTINUE;
1023
1024         e = accesslog_entry( op, LOG_EN_ABANDON );
1025         bv.bv_val = buf;
1026         bv.bv_len = sprintf( buf, "%d", op->orn_msgid );
1027         attr_merge_one( e, ad_reqId, &bv, NULL );
1028
1029         op2.o_hdr = op->o_hdr;
1030         op2.o_tag = LDAP_REQ_ADD;
1031         op2.o_time = op->o_time;
1032         op2.o_tincr = 0;
1033         op2.o_bd = li->li_db;
1034         op2.o_dn = li->li_db->be_rootdn;
1035         op2.o_ndn = li->li_db->be_rootndn;
1036         op2.o_req_dn = e->e_name;
1037         op2.o_req_ndn = e->e_nname;
1038         op2.ora_e = e;
1039         op2.o_callback = &nullsc;
1040
1041         op2.o_bd->be_add( &op2, &rs2 );
1042         entry_free( e );
1043
1044         return SLAP_CB_CONTINUE;
1045 }
1046
1047 static slap_overinst accesslog;
1048
1049 static int
1050 accesslog_db_init(
1051         BackendDB *be
1052 )
1053 {
1054         slap_overinst *on = (slap_overinst *)be->bd_info;
1055         log_info *li = ch_calloc(1, sizeof(log_info));
1056
1057         on->on_bi.bi_private = li;
1058         return 0;
1059 }
1060
1061 static int
1062 accesslog_db_destroy(
1063         BackendDB *be
1064 )
1065 {
1066         slap_overinst *on = (slap_overinst *)be->bd_info;
1067         log_info *li = on->on_bi.bi_private;
1068         
1069         free( li );
1070         return LDAP_SUCCESS;
1071 }
1072
1073 int accesslog_init()
1074 {
1075         int i, rc;
1076
1077         accesslog.on_bi.bi_type = "accesslog";
1078         accesslog.on_bi.bi_db_init = accesslog_db_init;
1079         accesslog.on_bi.bi_db_destroy = accesslog_db_destroy;
1080
1081         accesslog.on_bi.bi_op_unbind = accesslog_unbind;
1082         accesslog.on_bi.bi_op_abandon = accesslog_abandon;
1083         accesslog.on_response = accesslog_response;
1084
1085         accesslog.on_bi.bi_cf_ocs = log_cfocs;
1086
1087         nullsc.sc_response = slap_null_cb;
1088
1089         rc = config_register_schema( log_cfats, log_cfocs );
1090         if ( rc ) return rc;
1091
1092         /* log schema integration */
1093         for ( i=0; lattrs[i].at; i++ ) {
1094                 LDAPAttributeType *lat;
1095                 AttributeType *at;
1096                 int code;
1097                 const char *err;
1098
1099                 lat = ldap_str2attributetype( lattrs[i].at, &code, &err,
1100                         LDAP_SCHEMA_ALLOW_ALL );
1101                 if ( !lat ) {
1102                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1103                                 "ldap_str2attributetype failed on %d: %s, %s\n",
1104                                 i, ldap_scherr2str(code), err );
1105                         return -1;
1106                 }
1107                 code = at_add( lat, 0, &at, &err );
1108                 ldap_memfree( lat );
1109                 if ( code ) {
1110                         Debug( LDAP_DEBUG_ANY, "log_back_initialize: "
1111                                 "at_add failed on %d: %s\n",
1112                                 i, scherr2str(code), 0 );
1113                         return -1;
1114                 }
1115                 if ( slap_bv2ad( &at->sat_cname, lattrs[i].ad, &err )) {
1116                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1117                                 "slap_bv2ad failed on %d: %s\n",
1118                                 i, err, 0 );
1119                         return -1;
1120                 }
1121         }
1122         for ( i=0; locs[i].ot; i++ ) {
1123                 LDAPObjectClass *loc;
1124                 ObjectClass *oc;
1125                 int code;
1126                 const char *err;
1127
1128                 loc = ldap_str2objectclass( locs[i].ot, &code, &err,
1129                         LDAP_SCHEMA_ALLOW_ALL );
1130                 if ( !loc ) {
1131                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1132                                 "ldap_str2objectclass failed on %d: %s, %s\n",
1133                                 i, ldap_scherr2str(code), err );
1134                         return -1;
1135                 }
1136                 
1137                 code = oc_add( loc, 0, &oc, &err );
1138                 ldap_memfree( loc );
1139                 if ( code ) {
1140                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1141                                 "oc_add failed on %d: %s\n",
1142                                 i, scherr2str(code), 0 );
1143                         return -1;
1144                 }
1145                 if ( locs[i].oc )
1146                         *locs[i].oc = oc;
1147         }
1148
1149         return overlay_register(&accesslog);
1150 }
1151
1152 #if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_DYNAMIC
1153 int init_module( int argc, char *argv[]) {
1154         return accesslog_init();
1155 }
1156 #endif
1157
1158 #endif /* SLAPD_OVER_ACCESSLOG */