]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/accesslog.c
Fix prev commit
[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-2006 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         Filter *li_oldf;
61         Entry *li_old;
62         int li_success;
63         ldap_pvt_thread_mutex_t li_op_mutex;
64         ldap_pvt_thread_mutex_t li_log_mutex;
65 } log_info;
66
67 static ConfigDriver log_cf_gen;
68
69 enum {
70         LOG_DB = 1,
71         LOG_OPS,
72         LOG_PURGE,
73         LOG_SUCCESS,
74         LOG_OLD
75 };
76
77 static ConfigTable log_cfats[] = {
78         { "logdb", "suffix", 2, 2, 0, ARG_DN|ARG_MAGIC|LOG_DB,
79                 log_cf_gen, "( OLcfgOvAt:4.1 NAME 'olcAccessLogDB' "
80                         "DESC 'Suffix of database for log content' "
81                         "SUP distinguishedName SINGLE-VALUE )", NULL, NULL },
82         { "logops", "op|writes|reads|session|all", 2, 0, 0,
83                 ARG_MAGIC|LOG_OPS,
84                 log_cf_gen, "( OLcfgOvAt:4.2 NAME 'olcAccessLogOps' "
85                         "DESC 'Operation types to log' "
86                         "EQUALITY caseIgnoreMatch "
87                         "SYNTAX OMsDirectoryString )", NULL, NULL },
88         { "logpurge", "age> <interval", 3, 3, 0, ARG_MAGIC|LOG_PURGE,
89                 log_cf_gen, "( OLcfgOvAt:4.3 NAME 'olcAccessLogPurge' "
90                         "DESC 'Log cleanup parameters' "
91                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
92         { "logsuccess", NULL, 2, 2, 0, ARG_MAGIC|ARG_ON_OFF|LOG_SUCCESS,
93                 log_cf_gen, "( OLcfgOvAt:4.4 NAME 'olcAccessLogSuccess' "
94                         "DESC 'Log successful ops only' "
95                         "SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
96         { "logold", "filter", 2, 2, 0, ARG_MAGIC|LOG_OLD,
97                 log_cf_gen, "( OLcfgOvAt:4.5 NAME 'olcAccessLogOld' "
98                         "DESC 'Log old values when modifying entries matching the filter' "
99                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
100         { NULL }
101 };
102
103 static ConfigOCs log_cfocs[] = {
104         { "( OLcfgOvOc:4.1 "
105                 "NAME 'olcAccessLogConfig' "
106                 "DESC 'Access log configuration' "
107                 "SUP olcOverlayConfig "
108                 "MUST olcAccessLogDB "
109                 "MAY ( olcAccessLogOps $ olcAccessLogPurge $ olcAccessLogSuccess $ "
110                         "olcAccessLogOld ) )",
111                         Cft_Overlay, log_cfats },
112         { NULL }
113 };
114
115 static slap_verbmasks logops[] = {
116         { BER_BVC("all"),               LOG_OP_ALL },
117         { BER_BVC("writes"),    LOG_OP_WRITES },
118         { BER_BVC("session"),   LOG_OP_SESSION },
119         { BER_BVC("reads"),             LOG_OP_READS },
120         { BER_BVC("add"),               LOG_OP_ADD },
121         { BER_BVC("delete"),    LOG_OP_DELETE },
122         { BER_BVC("modify"),    LOG_OP_MODIFY },
123         { BER_BVC("modrdn"),    LOG_OP_MODRDN },
124         { BER_BVC("compare"),   LOG_OP_COMPARE },
125         { BER_BVC("search"),    LOG_OP_SEARCH },
126         { BER_BVC("bind"),              LOG_OP_BIND },
127         { BER_BVC("unbind"),    LOG_OP_UNBIND },
128         { BER_BVC("abandon"),   LOG_OP_ABANDON },
129         { BER_BVC("extended"),  LOG_OP_EXTENDED },
130         { BER_BVC("unknown"),   LOG_OP_UNKNOWN },
131         { BER_BVNULL, 0 }
132 };
133
134 /* Start with "add" in logops */
135 #define EN_OFFSET       4
136
137 enum {
138         LOG_EN_ADD = 0,
139         LOG_EN_DELETE,
140         LOG_EN_MODIFY,
141         LOG_EN_MODRDN,
142         LOG_EN_COMPARE,
143         LOG_EN_SEARCH,
144         LOG_EN_BIND,
145         LOG_EN_UNBIND,
146         LOG_EN_ABANDON,
147         LOG_EN_EXTENDED,
148         LOG_EN_UNKNOWN,
149         LOG_EN__COUNT
150 };
151
152 static ObjectClass *log_ocs[LOG_EN__COUNT], *log_container;
153
154 #define LOG_SCHEMA_ROOT "1.3.6.1.4.1.4203.666.11.5"
155
156 #define LOG_SCHEMA_AT LOG_SCHEMA_ROOT ".1"
157 #define LOG_SCHEMA_OC LOG_SCHEMA_ROOT ".2"
158
159 static AttributeDescription *ad_reqDN, *ad_reqStart, *ad_reqEnd, *ad_reqType,
160         *ad_reqSession, *ad_reqResult, *ad_reqAuthzID, *ad_reqControls,
161         *ad_reqRespControls, *ad_reqMethod, *ad_reqAssertion, *ad_reqNewRDN,
162         *ad_reqNewSuperior, *ad_reqDeleteOldRDN, *ad_reqMod,
163         *ad_reqScope, *ad_reqFilter, *ad_reqAttr, *ad_reqEntries,
164         *ad_reqSizeLimit, *ad_reqTimeLimit, *ad_reqAttrsOnly, *ad_reqData,
165         *ad_reqId, *ad_reqMessage, *ad_reqVersion, *ad_reqDerefAliases,
166         *ad_reqReferral, *ad_reqOld;
167
168 static struct {
169         char *at;
170         AttributeDescription **ad;
171 } lattrs[] = {
172         { "( " LOG_SCHEMA_AT ".1 NAME 'reqDN' "
173                 "DESC 'Target DN of request' "
174                 "EQUALITY distinguishedNameMatch "
175                 "SYNTAX OMsDN "
176                 "SINGLE-VALUE )", &ad_reqDN },
177         { "( " LOG_SCHEMA_AT ".2 NAME 'reqStart' "
178                 "DESC 'Start time of request' "
179                 "EQUALITY generalizedTimeMatch "
180                 "ORDERING generalizedTimeOrderingMatch "
181                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
182                 "SINGLE-VALUE )", &ad_reqStart },
183         { "( " LOG_SCHEMA_AT ".3 NAME 'reqEnd' "
184                 "DESC 'End time of request' "
185                 "EQUALITY generalizedTimeMatch "
186                 "ORDERING generalizedTimeOrderingMatch "
187                 "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
188                 "SINGLE-VALUE )", &ad_reqEnd },
189         { "( " LOG_SCHEMA_AT ".4 NAME 'reqType' "
190                 "DESC 'Type of request' "
191                 "EQUALITY caseIgnoreMatch "
192                 "SYNTAX OMsDirectoryString "
193                 "SINGLE-VALUE )", &ad_reqType },
194         { "( " LOG_SCHEMA_AT ".5 NAME 'reqSession' "
195                 "DESC 'Session ID of request' "
196                 "EQUALITY caseIgnoreMatch "
197                 "SYNTAX OMsDirectoryString "
198                 "SINGLE-VALUE )", &ad_reqSession },
199         { "( " LOG_SCHEMA_AT ".6 NAME 'reqAuthzID' "
200                 "DESC 'Authorization ID of requestor' "
201                 "EQUALITY distinguishedNameMatch "
202                 "SYNTAX OMsDN "
203                 "SINGLE-VALUE )", &ad_reqAuthzID },
204         { "( " LOG_SCHEMA_AT ".7 NAME 'reqResult' "
205                 "DESC 'Result code of request' "
206                 "EQUALITY integerMatch "
207                 "ORDERING integerOrderingMatch "
208                 "SYNTAX OMsInteger "
209                 "SINGLE-VALUE )", &ad_reqResult },
210         { "( " LOG_SCHEMA_AT ".8 NAME 'reqMessage' "
211                 "DESC 'Error text of request' "
212                 "EQUALITY caseIgnoreMatch "
213                 "SUBSTR caseIgnoreSubstringsMatch "
214                 "SYNTAX OMsDirectoryString "
215                 "SINGLE-VALUE )", &ad_reqMessage },
216         { "( " LOG_SCHEMA_AT ".9 NAME 'reqReferral' "
217                 "DESC 'Referrals returned for request' "
218                 "SUP labeledURI )", &ad_reqReferral },
219         { "( " LOG_SCHEMA_AT ".10 NAME 'reqControls' "
220                 "DESC 'Request controls' "
221                 "SYNTAX OMsOctetString )", &ad_reqControls },
222         { "( " LOG_SCHEMA_AT ".11 NAME 'reqRespControls' "
223                 "DESC 'Response controls of request' "
224                 "SYNTAX OMsOctetString )", &ad_reqRespControls },
225         { "( " LOG_SCHEMA_AT ".12 NAME 'reqId' "
226                 "DESC 'ID of Request to Abandon' "
227                 "EQUALITY integerMatch "
228                 "ORDERING integerOrderingMatch "
229                 "SYNTAX OMsInteger "
230                 "SINGLE-VALUE )", &ad_reqId },
231         { "( " LOG_SCHEMA_AT ".13 NAME 'reqVersion' "
232                 "DESC 'Protocol version of Bind request' "
233                 "EQUALITY integerMatch "
234                 "ORDERING integerOrderingMatch "
235                 "SYNTAX OMsInteger "
236                 "SINGLE-VALUE )", &ad_reqVersion },
237         { "( " LOG_SCHEMA_AT ".14 NAME 'reqMethod' "
238                 "DESC 'Bind method of request' "
239                 "EQUALITY caseIgnoreMatch "
240                 "SYNTAX OMsDirectoryString "
241                 "SINGLE-VALUE )", &ad_reqMethod },
242         { "( " LOG_SCHEMA_AT ".15 NAME 'reqAssertion' "
243                 "DESC 'Compare Assertion of request' "
244                 "SYNTAX OMsDirectoryString "
245                 "SINGLE-VALUE )", &ad_reqAssertion },
246         { "( " LOG_SCHEMA_AT ".16 NAME 'reqMod' "
247                 "DESC 'Modifications of request' "
248                 "EQUALITY octetStringMatch "
249                 "SUBSTR octetStringSubstringsMatch "
250                 "SYNTAX OMsOctetString )", &ad_reqMod },
251         { "( " LOG_SCHEMA_AT ".17 NAME 'reqOld' "
252                 "DESC 'Old values of entry before request completed' "
253                 "EQUALITY octetStringMatch "
254                 "SUBSTR octetStringSubstringsMatch "
255                 "SYNTAX OMsOctetString )", &ad_reqOld },
256         { "( " LOG_SCHEMA_AT ".18 NAME 'reqNewRDN' "
257                 "DESC 'New RDN of request' "
258                 "EQUALITY distinguishedNameMatch "
259                 "SYNTAX OMsDN "
260                 "SINGLE-VALUE )", &ad_reqNewRDN },
261         { "( " LOG_SCHEMA_AT ".19 NAME 'reqDeleteOldRDN' "
262                 "DESC 'Delete old RDN' "
263                 "EQUALITY booleanMatch "
264                 "SYNTAX OMsBoolean "
265                 "SINGLE-VALUE )", &ad_reqDeleteOldRDN },
266         { "( " LOG_SCHEMA_AT ".20 NAME 'reqNewSuperior' "
267                 "DESC 'New superior DN of request' "
268                 "EQUALITY distinguishedNameMatch "
269                 "SYNTAX OMsDN "
270                 "SINGLE-VALUE )", &ad_reqNewSuperior },
271         { "( " LOG_SCHEMA_AT ".21 NAME 'reqScope' "
272                 "DESC 'Scope of request' "
273                 "EQUALITY caseIgnoreMatch "
274                 "SYNTAX OMsDirectoryString "
275                 "SINGLE-VALUE )", &ad_reqScope },
276         { "( " LOG_SCHEMA_AT ".22 NAME 'reqDerefAliases' "
277                 "DESC 'Disposition of Aliases in request' "
278                 "EQUALITY caseIgnoreMatch "
279                 "SYNTAX OMsDirectoryString "
280                 "SINGLE-VALUE )", &ad_reqDerefAliases },
281         { "( " LOG_SCHEMA_AT ".23 NAME 'reqAttrsOnly' "
282                 "DESC 'Attributes and values of request' "
283                 "EQUALITY booleanMatch "
284                 "SYNTAX OMsBoolean "
285                 "SINGLE-VALUE )", &ad_reqAttrsOnly },
286         { "( " LOG_SCHEMA_AT ".24 NAME 'reqFilter' "
287                 "DESC 'Filter of request' "
288                 "EQUALITY caseIgnoreMatch "
289                 "SUBSTR caseIgnoreSubstringsMatch "
290                 "SYNTAX OMsDirectoryString "
291                 "SINGLE-VALUE )", &ad_reqFilter },
292         { "( " LOG_SCHEMA_AT ".25 NAME 'reqAttr' "
293                 "DESC 'Attributes of request' "
294                 "EQUALITY caseIgnoreMatch "
295                 "SYNTAX OMsDirectoryString )", &ad_reqAttr },
296         { "( " LOG_SCHEMA_AT ".26 NAME 'reqSizeLimit' "
297                 "DESC 'Size limit of request' "
298                 "EQUALITY integerMatch "
299                 "ORDERING integerOrderingMatch "
300                 "SYNTAX OMsInteger "
301                 "SINGLE-VALUE )", &ad_reqSizeLimit },
302         { "( " LOG_SCHEMA_AT ".27 NAME 'reqTimeLimit' "
303                 "DESC 'Time limit of request' "
304                 "EQUALITY integerMatch "
305                 "ORDERING integerOrderingMatch "
306                 "SYNTAX OMsInteger "
307                 "SINGLE-VALUE )", &ad_reqTimeLimit },
308         { "( " LOG_SCHEMA_AT ".28 NAME 'reqEntries' "
309                 "DESC 'Number of entries returned' "
310                 "EQUALITY integerMatch "
311                 "ORDERING integerOrderingMatch "
312                 "SYNTAX OMsInteger "
313                 "SINGLE-VALUE )", &ad_reqEntries },
314         { "( " LOG_SCHEMA_AT ".29 NAME 'reqData' "
315                 "DESC 'Data of extended request' "
316                 "EQUALITY octetStringMatch "
317                 "SUBSTR octetStringSubstringsMatch "
318                 "SYNTAX OMsOctetString "
319                 "SINGLE-VALUE )", &ad_reqData },
320         { NULL, NULL }
321 };
322
323 static struct {
324         char *ot;
325         ObjectClass **oc;
326 } locs[] = {
327         { "( " LOG_SCHEMA_OC ".0 NAME 'auditContainer' "
328                 "DESC 'AuditLog container' "
329                 "SUP top STRUCTURAL "
330                 "MAY ( cn $ reqStart $ reqEnd ) )", &log_container },
331         { "( " LOG_SCHEMA_OC ".1 NAME 'auditObject' "
332                 "DESC 'OpenLDAP request auditing' "
333                 "SUP top STRUCTURAL "
334                 "MUST ( reqStart $ reqType $ reqSession ) "
335                 "MAY ( reqDN $ reqAuthzID $ reqControls $ reqRespControls $ reqEnd $ "
336                         "reqResult $ reqMessage $ reqReferral ) )",
337                                 &log_ocs[LOG_EN_UNBIND] },
338         { "( " LOG_SCHEMA_OC ".2 NAME 'auditReadObject' "
339                 "DESC 'OpenLDAP read request record' "
340                 "SUP auditObject STRUCTURAL )", NULL },
341         { "( " LOG_SCHEMA_OC ".3 NAME 'auditWriteObject' "
342                 "DESC 'OpenLDAP write request record' "
343                 "SUP auditObject STRUCTURAL )", NULL },
344         { "( " LOG_SCHEMA_OC ".4 NAME 'auditAbandon' "
345                 "DESC 'Abandon operation' "
346                 "SUP auditObject STRUCTURAL "
347                 "MUST reqId )", &log_ocs[LOG_EN_ABANDON] },
348         { "( " LOG_SCHEMA_OC ".5 NAME 'auditAdd' "
349                 "DESC 'Add operation' "
350                 "SUP auditWriteObject STRUCTURAL "
351                 "MUST reqMod )", &log_ocs[LOG_EN_ADD] },
352         { "( " LOG_SCHEMA_OC ".6 NAME 'auditBind' "
353                 "DESC 'Bind operation' "
354                 "SUP auditObject STRUCTURAL "
355                 "MUST ( reqVersion $ reqMethod ) )", &log_ocs[LOG_EN_BIND] },
356         { "( " LOG_SCHEMA_OC ".7 NAME 'auditCompare' "
357                 "DESC 'Compare operation' "
358                 "SUP auditReadObject STRUCTURAL "
359                 "MUST reqAssertion )", &log_ocs[LOG_EN_COMPARE] },
360         { "( " LOG_SCHEMA_OC ".8 NAME 'auditDelete' "
361                 "DESC 'Delete operation' "
362                 "SUP auditWriteObject STRUCTURAL "
363                 "MAY reqOld )", &log_ocs[LOG_EN_DELETE] },
364         { "( " LOG_SCHEMA_OC ".9 NAME 'auditModify' "
365                 "DESC 'Modify operation' "
366                 "SUP auditWriteObject STRUCTURAL "
367                 "MAY reqOld MUST reqMod )", &log_ocs[LOG_EN_MODIFY] },
368         { "( " LOG_SCHEMA_OC ".10 NAME 'auditModRDN' "
369                 "DESC 'ModRDN operation' "
370                 "SUP auditWriteObject STRUCTURAL "
371                 "MUST ( reqNewRDN $ reqDeleteOldRDN ) "
372                 "MAY reqNewSuperior )", &log_ocs[LOG_EN_MODRDN] },
373         { "( " LOG_SCHEMA_OC ".11 NAME 'auditSearch' "
374                 "DESC 'Search operation' "
375                 "SUP auditReadObject STRUCTURAL "
376                 "MUST ( reqScope $ reqDerefAliases $ reqAttrsonly ) "
377                 "MAY ( reqFilter $ reqAttr $ reqEntries $ reqSizeLimit $ "
378                         "reqTimeLimit ) )", &log_ocs[LOG_EN_SEARCH] },
379         { "( " LOG_SCHEMA_OC ".12 NAME 'auditExtended' "
380                 "DESC 'Extended operation' "
381                 "SUP auditObject STRUCTURAL "
382                 "MAY reqData )", &log_ocs[LOG_EN_EXTENDED] },
383         { NULL, NULL }
384 };
385
386 #define RDNEQ   "reqStart="
387
388 /* Our time intervals are of the form [ddd+]hh:mm[:ss]
389  * If a field is present, it must be two digits. (Except for
390  * days, which can be arbitrary width.)
391  */
392 static int
393 log_age_parse(char *agestr)
394 {
395         int t1, t2;
396         int gotdays = 0;
397         char *endptr;
398
399         t1 = strtol( agestr, &endptr, 10 );
400         /* Is there a days delimiter? */
401         if ( *endptr == '+' ) {
402                 /* 32 bit time only covers about 68 years */
403                 if ( t1 < 0 || t1 > 25000 )
404                         return -1;
405                 t1 *= 24;
406                 gotdays = 1;
407                 agestr = endptr + 1;
408         } else {
409                 if ( agestr[2] != ':' ) {
410                         /* No valid delimiter found, fail */
411                         return -1;
412                 }
413                 t1 *= 60;
414                 agestr += 3;
415         }
416
417         t2 = atoi( agestr );
418         t1 += t2;
419
420         if ( agestr[2] ) {
421                 /* if there's a delimiter, it can only be a colon */
422                 if ( agestr[2] != ':' )
423                         return -1;
424         } else {
425                 /* If we're at the end of the string, and we started with days,
426                  * fail because we expected to find minutes too.
427                  */
428                 return gotdays ? -1 : t1 * 60;
429         }
430
431         agestr += 3;
432         t2 = atoi( agestr );
433
434         /* last field can only be seconds */
435         if ( agestr[2] && ( agestr[2] != ':' || !gotdays ))
436                 return -1;
437         t1 *= 60;
438         t1 += t2;
439
440         if ( agestr[2] ) {
441                 agestr += 3;
442                 if ( agestr[2] )
443                         return -1;
444                 t1 *= 60;
445                 t1 += atoi( agestr );
446         } else if ( gotdays ) {
447                 /* only got days+hh:mm */
448                 t1 *= 60;
449         }
450         return t1;
451 }
452
453 static void
454 log_age_unparse( int age, struct berval *agebv )
455 {
456         int dd, hh, mm, ss;
457         char *ptr;
458
459         ss = age % 60;
460         age /= 60;
461         mm = age % 60;
462         age /= 60;
463         hh = age % 24;
464         age /= 24;
465         dd = age;
466
467         ptr = agebv->bv_val;
468
469         if ( dd ) 
470                 ptr += sprintf( ptr, "%d+", dd );
471         ptr += sprintf( ptr, "%02d:%02d", hh, mm );
472         if ( ss )
473                 ptr += sprintf( ptr, ":%02d", ss );
474
475         agebv->bv_len = ptr - agebv->bv_val;
476 }
477
478 static slap_callback nullsc = { NULL, NULL, NULL, NULL };
479
480 #define PURGE_INCREMENT 100
481
482 typedef struct purge_data {
483         int slots;
484         int used;
485         BerVarray dn;
486         BerVarray ndn;
487 } purge_data;
488
489 static int
490 log_old_lookup( Operation *op, SlapReply *rs )
491 {
492         purge_data *pd = op->o_callback->sc_private;
493
494         if ( rs->sr_type != REP_SEARCH) return 0;
495
496         if ( pd->used >= pd->slots ) {
497                 pd->slots += PURGE_INCREMENT;
498                 pd->dn = ch_realloc( pd->dn, pd->slots * sizeof( struct berval ));
499                 pd->ndn = ch_realloc( pd->ndn, pd->slots * sizeof( struct berval ));
500         }
501         ber_dupbv( &pd->dn[pd->used], &rs->sr_entry->e_name );
502         ber_dupbv( &pd->ndn[pd->used], &rs->sr_entry->e_nname );
503         pd->used++;
504         return 0;
505 }
506
507 /* Periodically search for old entries in the log database and delete them */
508 static void *
509 accesslog_purge( void *ctx, void *arg )
510 {
511         struct re_s *rtask = arg;
512         struct log_info *li = rtask->arg;
513
514         Connection conn = {0};
515         OperationBuffer opbuf;
516         Operation *op = (Operation *) &opbuf;
517         SlapReply rs = {REP_RESULT};
518         slap_callback cb = { NULL, log_old_lookup, NULL, NULL };
519         Filter f;
520         AttributeAssertion ava = {0};
521         purge_data pd = {0};
522         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE];
523         time_t old = slap_get_time();
524
525         connection_fake_init( &conn, op, ctx );
526
527         f.f_choice = LDAP_FILTER_LE;
528         f.f_ava = &ava;
529         f.f_next = NULL;
530
531         ava.aa_desc = ad_reqStart;
532         ava.aa_value.bv_val = timebuf;
533         ava.aa_value.bv_len = sizeof(timebuf);
534
535         old -= li->li_age;
536         slap_timestamp( &old, &ava.aa_value );
537
538         op->o_tag = LDAP_REQ_SEARCH;
539         op->o_bd = li->li_db;
540         op->o_dn = li->li_db->be_rootdn;
541         op->o_ndn = li->li_db->be_rootndn;
542         op->o_req_dn = li->li_db->be_suffix[0];
543         op->o_req_ndn = li->li_db->be_nsuffix[0];
544         op->o_callback = &cb;
545         op->ors_scope = LDAP_SCOPE_ONELEVEL;
546         op->ors_deref = LDAP_DEREF_NEVER;
547         op->ors_tlimit = SLAP_NO_LIMIT;
548         op->ors_slimit = SLAP_NO_LIMIT;
549         op->ors_filter = &f;
550         filter2bv_x( op, &f, &op->ors_filterstr );
551         op->ors_attrs = slap_anlist_no_attrs;
552         op->ors_attrsonly = 1;
553         
554         cb.sc_private = &pd;
555
556         op->o_bd->be_search( op, &rs );
557         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
558
559         if ( pd.used ) {
560                 int i;
561
562                 op->o_tag = LDAP_REQ_DELETE;
563                 op->o_callback = &nullsc;
564
565                 for (i=0; i<pd.used; i++) {
566                         op->o_req_dn = pd.dn[i];
567                         op->o_req_ndn = pd.ndn[i];
568                         op->o_bd->be_delete( op, &rs );
569                         ch_free( pd.ndn[i].bv_val );
570                         ch_free( pd.dn[i].bv_val );
571                 }
572                 ch_free( pd.ndn );
573                 ch_free( pd.dn );
574         }
575
576         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
577         ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
578         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
579
580         return NULL;
581 }
582
583 static int
584 log_cf_gen(ConfigArgs *c)
585 {
586         slap_overinst *on = (slap_overinst *)c->bi;
587         struct log_info *li = on->on_bi.bi_private;
588         int rc = 0;
589         slap_mask_t tmask = 0;
590         char agebuf[2*STRLENOF("ddddd+hh:mm:ss  ")];
591         struct berval agebv, cyclebv;
592
593         switch( c->op ) {
594         case SLAP_CONFIG_EMIT:
595                 switch( c->type ) {
596                 case LOG_DB:
597                         value_add( &c->rvalue_vals, li->li_db->be_suffix );
598                         value_add( &c->rvalue_nvals, li->li_db->be_nsuffix );
599                         break;
600                 case LOG_OPS:
601                         rc = mask_to_verbs( logops, li->li_ops, &c->rvalue_vals );
602                         break;
603                 case LOG_PURGE:
604                         agebv.bv_val = agebuf;
605                         log_age_unparse( li->li_age, &agebv );
606                         agebv.bv_val[agebv.bv_len] = ' ';
607                         agebv.bv_len++;
608                         cyclebv.bv_val = agebv.bv_val + agebv.bv_len;
609                         log_age_unparse( li->li_cycle, &cyclebv );
610                         agebv.bv_len += cyclebv.bv_len;
611                         value_add_one( &c->rvalue_vals, &agebv );
612                         break;
613                 case LOG_SUCCESS:
614                         if ( li->li_success )
615                                 c->value_int = li->li_success;
616                         else
617                                 rc = 1;
618                         break;
619                 case LOG_OLD:
620                         if ( li->li_oldf ) {
621                                 filter2bv( li->li_oldf, &agebv );
622                                 value_add_one( &c->rvalue_vals, &agebv );
623                         }
624                         else
625                                 rc = 1;
626                         break;
627                 }
628                 break;
629         case LDAP_MOD_DELETE:
630                 switch( c->type ) {
631                 case LOG_DB:
632                         /* noop. this should always be a valid backend. */
633                         break;
634                 case LOG_OPS:
635                         if ( c->valx < 0 ) {
636                                 li->li_ops = 0;
637                         } else {
638                                 rc = verbs_to_mask( 1, &c->line, logops, &tmask );
639                                 if ( rc == 0 )
640                                         li->li_ops &= ~tmask;
641                         }
642                         break;
643                 case LOG_PURGE:
644                         if ( li->li_task ) {
645                                 struct re_s *re = li->li_task;
646                                 li->li_task = NULL;
647                                 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ))
648                                         ldap_pvt_runqueue_stoptask( &slapd_rq, re );
649                                 ldap_pvt_runqueue_remove( &slapd_rq, re );
650                         }
651                         li->li_age = 0;
652                         li->li_cycle = 0;
653                         break;
654                 case LOG_SUCCESS:
655                         li->li_success = 0;
656                         break;
657                 case LOG_OLD:
658                         if ( li->li_oldf ) {
659                                 filter_free( li->li_oldf );
660                                 li->li_oldf = NULL;
661                         }
662                         break;
663                 }
664                 break;
665         default:
666                 switch( c->type ) {
667                 case LOG_DB:
668                         li->li_db = select_backend( &c->value_ndn, 0, 0 );
669                         if ( !li->li_db ) {
670                                 sprintf( c->msg, "<%s> no matching backend found for suffix",
671                                         c->argv[0] );
672                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
673                                         c->log, c->msg, c->value_dn.bv_val );
674                                 rc = 1;
675                         }
676                         ch_free( c->value_dn.bv_val );
677                         ch_free( c->value_ndn.bv_val );
678                         break;
679                 case LOG_OPS:
680                         rc = verbs_to_mask( c->argc, c->argv, logops, &tmask );
681                         if ( rc == 0 )
682                                 li->li_ops |= tmask;
683                         break;
684                 case LOG_PURGE:
685                         li->li_age = log_age_parse( c->argv[1] );
686                         if ( li->li_age == -1 ) {
687                                 rc = 1;
688                         } else {
689                                 li->li_cycle = log_age_parse( c->argv[2] );
690                                 if ( li->li_cycle == -1 ) {
691                                         rc = 1;
692                                 } else if ( slapMode & SLAP_SERVER_MODE ) {
693                                         struct re_s *re = li->li_task;
694                                         if ( re )
695                                                 re->interval.tv_sec = li->li_cycle;
696                                         else
697                                                 li->li_task = ldap_pvt_runqueue_insert( &slapd_rq,
698                                                         li->li_cycle, accesslog_purge, li,
699                                                         "accesslog_purge", li->li_db ?
700                                                                 li->li_db->be_suffix[0].bv_val :
701                                                                 c->be->be_suffix[0].bv_val );
702                                 }
703                         }
704                         break;
705                 case LOG_SUCCESS:
706                         li->li_success = c->value_int;
707                         break;
708                 case LOG_OLD:
709                         li->li_oldf = str2filter( c->argv[1] );
710                         if ( !li->li_oldf ) {
711                                 sprintf( c->msg, "bad filter!" );
712                                 rc = 1;
713                         }
714                 }
715                 break;
716         }
717         return rc;
718 }
719
720 static Entry *accesslog_entry( Operation *op, int logop,
721         Operation *op2 ) {
722         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
723         log_info *li = on->on_bi.bi_private;
724
725         char rdnbuf[STRLENOF(RDNEQ)+LDAP_LUTIL_GENTIME_BUFSIZE+8];
726         char nrdnbuf[STRLENOF(RDNEQ)+LDAP_LUTIL_GENTIME_BUFSIZE+8];
727
728         struct berval rdn, nrdn, timestamp, ntimestamp, bv;
729         slap_verbmasks *lo = logops+logop+EN_OFFSET;
730
731         Entry *e = ch_calloc( 1, sizeof(Entry) );
732
733         strcpy( rdnbuf, RDNEQ );
734         rdn.bv_val = rdnbuf;
735         strcpy( nrdnbuf, RDNEQ );
736         nrdn.bv_val = nrdnbuf;
737
738         timestamp.bv_val = rdnbuf+STRLENOF(RDNEQ);
739         timestamp.bv_len = sizeof(rdnbuf) - STRLENOF(RDNEQ);
740         slap_timestamp( &op->o_time, &timestamp );
741         sprintf( timestamp.bv_val + timestamp.bv_len-1, ".%06dZ", op->o_tincr );
742         timestamp.bv_len += 7;
743
744         rdn.bv_len = STRLENOF(RDNEQ)+timestamp.bv_len;
745         ad_reqStart->ad_type->sat_equality->smr_normalize(
746                 SLAP_MR_VALUE_OF_ASSERTION_SYNTAX, ad_reqStart->ad_type->sat_syntax,
747                 ad_reqStart->ad_type->sat_equality, &timestamp, &ntimestamp,
748                 op->o_tmpmemctx );
749
750         strcpy( nrdn.bv_val + STRLENOF(RDNEQ), ntimestamp.bv_val );
751         nrdn.bv_len = STRLENOF(RDNEQ)+ntimestamp.bv_len;
752         build_new_dn( &e->e_name, li->li_db->be_suffix, &rdn, NULL );
753         build_new_dn( &e->e_nname, li->li_db->be_nsuffix, &nrdn, NULL );
754
755         attr_merge_one( e, slap_schema.si_ad_objectClass,
756                 &log_ocs[logop]->soc_cname, NULL );
757         attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
758                 &log_ocs[logop]->soc_cname, NULL );
759         attr_merge_one( e, ad_reqStart, &timestamp, &ntimestamp );
760         op->o_tmpfree( ntimestamp.bv_val, op->o_tmpmemctx );
761
762         slap_op_time( &op2->o_time, &op2->o_tincr );
763
764         timestamp.bv_len = sizeof(rdnbuf) - STRLENOF(RDNEQ);
765         slap_timestamp( &op2->o_time, &timestamp );
766         sprintf( timestamp.bv_val + timestamp.bv_len-1, ".%06dZ", op2->o_tincr );
767         timestamp.bv_len += 7;
768
769         attr_merge_normalize_one( e, ad_reqEnd, &timestamp, op->o_tmpmemctx );
770
771         /* Exops have OID appended */
772         if ( logop == LOG_EN_EXTENDED ) {
773                 bv.bv_len = lo->word.bv_len + op->ore_reqoid.bv_len + 2;
774                 bv.bv_val = ch_malloc( bv.bv_len + 1 );
775                 AC_MEMCPY( bv.bv_val, lo->word.bv_val, lo->word.bv_len );
776                 bv.bv_val[lo->word.bv_len] = '{';
777                 AC_MEMCPY( bv.bv_val+lo->word.bv_len+1, op->ore_reqoid.bv_val,
778                         op->ore_reqoid.bv_len );
779                 bv.bv_val[bv.bv_len-1] = '}';
780                 bv.bv_val[bv.bv_len] = '\0';
781                 attr_merge_one( e, ad_reqType, &bv, NULL );
782         } else {
783                 attr_merge_one( e, ad_reqType, &lo->word, NULL );
784         }
785
786         rdn.bv_len = sprintf( rdn.bv_val, "%lu", op->o_connid );
787         attr_merge_one( e, ad_reqSession, &rdn, NULL );
788
789         if ( BER_BVISNULL( &op->o_dn )) 
790                 attr_merge_one( e, ad_reqAuthzID, (struct berval *)&slap_empty_bv,
791                         (struct berval *)&slap_empty_bv );
792         else
793                 attr_merge_one( e, ad_reqAuthzID, &op->o_dn, &op->o_ndn );
794
795         /* FIXME: need to add reqControls and reqRespControls */
796
797         return e;
798 }
799
800 static struct berval scopes[] = {
801         BER_BVC("base"),
802         BER_BVC("one"),
803         BER_BVC("sub"),
804         BER_BVC("subord")
805 };
806
807 static struct berval derefs[] = {
808         BER_BVC("never"),
809         BER_BVC("searching"),
810         BER_BVC("finding"),
811         BER_BVC("always")
812 };
813
814 static struct berval simple = BER_BVC("SIMPLE");
815
816 static void accesslog_val2val(AttributeDescription *ad, struct berval *val,
817         char c_op, struct berval *dst) {
818         char *ptr;
819
820         dst->bv_len = ad->ad_cname.bv_len + val->bv_len + 2;
821         if ( c_op ) dst->bv_len++;
822
823         dst->bv_val = ch_malloc( dst->bv_len+1 );
824
825         ptr = lutil_strcopy( dst->bv_val, ad->ad_cname.bv_val );
826         *ptr++ = ':';
827         if ( c_op )
828                 *ptr++ = c_op;
829         *ptr++ = ' ';
830         AC_MEMCPY( ptr, val->bv_val, val->bv_len );
831         dst->bv_val[dst->bv_len] = '\0';
832 }
833
834 static int accesslog_response(Operation *op, SlapReply *rs) {
835         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
836         log_info *li = on->on_bi.bi_private;
837         Attribute *a, *last_attr;
838         Modifications *m;
839         struct berval *b;
840         int i;
841         int logop;
842         slap_verbmasks *lo;
843         Entry *e = NULL, *old = NULL;
844         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE+8];
845         struct berval bv;
846         char *ptr;
847         BerVarray vals;
848         Operation op2 = {0};
849         SlapReply rs2 = {REP_RESULT};
850
851         if ( rs->sr_type != REP_RESULT && rs->sr_type != REP_EXTENDED )
852                 return SLAP_CB_CONTINUE;
853
854         switch ( op->o_tag ) {
855         case LDAP_REQ_ADD:              logop = LOG_EN_ADD; break;
856         case LDAP_REQ_DELETE:   logop = LOG_EN_DELETE; break;
857         case LDAP_REQ_MODIFY:   logop = LOG_EN_MODIFY; break;
858         case LDAP_REQ_MODRDN:   logop = LOG_EN_MODRDN; break;
859         case LDAP_REQ_COMPARE:  logop = LOG_EN_COMPARE; break;
860         case LDAP_REQ_SEARCH:   logop = LOG_EN_SEARCH; break;
861         case LDAP_REQ_BIND:             logop = LOG_EN_BIND; break;
862         case LDAP_REQ_EXTENDED: logop = LOG_EN_EXTENDED; break;
863         default:        /* unknown operation type */
864                 logop = LOG_EN_UNKNOWN; break;
865         }       /* Unbind and Abandon never reach here */
866
867         lo = logops+logop+EN_OFFSET;
868         if ( !( li->li_ops & lo->mask ))
869                 return SLAP_CB_CONTINUE;
870
871         if ( lo->mask & LOG_OP_WRITES ) {
872                 ldap_pvt_thread_mutex_lock( &li->li_log_mutex );
873                 old = li->li_old;
874                 li->li_old = NULL;
875                 ldap_pvt_thread_mutex_unlock( &li->li_op_mutex );
876         }
877
878         if ( li->li_success && rs->sr_err != LDAP_SUCCESS )
879                 goto done;
880
881         e = accesslog_entry( op, logop, &op2 );
882
883         attr_merge_one( e, ad_reqDN, &op->o_req_dn, &op->o_req_ndn );
884
885         if ( rs->sr_text ) {
886                 ber_str2bv( rs->sr_text, 0, 0, &bv );
887                 attr_merge_one( e, ad_reqMessage, &bv, NULL );
888         }
889         bv.bv_len = sprintf( timebuf, "%d", rs->sr_err );
890         bv.bv_val = timebuf;
891
892         attr_merge_one( e, ad_reqResult, &bv, NULL );
893
894         last_attr = attr_find( e->e_attrs, ad_reqResult );
895
896         switch( logop ) {
897         case LOG_EN_ADD:
898         case LOG_EN_DELETE: {
899                 char c_op;
900                 Entry *e2;
901
902                 if ( logop == LOG_EN_ADD ) {
903                         e2 = op->ora_e;
904                         c_op = '+';
905                 } else {
906                         if ( !old )
907                                 break;
908                         e2 = old;
909                         c_op = 0;
910                 }
911                 /* count all the vals */
912                 i = 0;
913                 for ( a=e2->e_attrs; a; a=a->a_next ) {
914                         if ( a->a_vals ) {
915                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++) {
916                                         i++;
917                                 }
918                         }
919                 }
920                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
921                 i = 0;
922                 for ( a=e2->e_attrs; a; a=a->a_next ) {
923                         if ( a->a_vals ) {
924                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++,i++) {
925                                         accesslog_val2val( a->a_desc, b, c_op, &vals[i] );
926                                 }
927                         }
928                 }
929                 vals[i].bv_val = NULL;
930                 vals[i].bv_len = 0;
931                 a = attr_alloc( logop == LOG_EN_ADD ? ad_reqMod : ad_reqOld );
932                 a->a_vals = vals;
933                 a->a_nvals = vals;
934                 last_attr->a_next = a;
935                 break;
936         }
937
938         case LOG_EN_MODIFY:
939                 /* count all the mods */
940                 i = 0;
941                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
942                         if ( m->sml_values ) {
943                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++) {
944                                         i++;
945                                 }
946                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
947                                 i++;
948                         }
949                 }
950                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
951                 i = 0;
952
953                 /* Zero flags on old entry */
954                 if ( old ) {
955                         for ( a=old->e_attrs; a; a=a->a_next )
956                                 a->a_flags = 0;
957                 }
958
959                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
960                         /* Mark this attribute as modified */
961                         if ( old ) {
962                                 a = attr_find( old->e_attrs, m->sml_desc );
963                                 if ( a )
964                                         a->a_flags = 1;
965                         }
966                         if ( m->sml_values ) {
967                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++,i++) {
968                                         char c_op;
969
970                                         switch( m->sml_op ) {
971                                         case LDAP_MOD_ADD: c_op = '+'; break;
972                                         case LDAP_MOD_DELETE:   c_op = '-'; break;
973                                         case LDAP_MOD_REPLACE:  c_op = '='; break;
974                                         case LDAP_MOD_INCREMENT:        c_op = '#'; break;
975
976                                         /* unknown op. there shouldn't be any of these. we
977                                          * don't know what to do with it, but we shouldn't just
978                                          * ignore it.
979                                          */
980                                         default: c_op = '?'; break;
981                                         }
982                                         accesslog_val2val( m->sml_desc, b, c_op, &vals[i] );
983                                 }
984                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
985                                 vals[i].bv_len = m->sml_desc->ad_cname.bv_len + 2;
986                                 vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
987                                 ptr = lutil_strcopy( vals[i].bv_val,
988                                         m->sml_desc->ad_cname.bv_val );
989                                 *ptr++ = ':';
990                                 *ptr++ = '-';
991                                 *ptr = '\0';
992                                 i++;
993                         }
994                 }
995                 vals[i].bv_val = NULL;
996                 vals[i].bv_len = 0;
997                 a = attr_alloc( ad_reqMod );
998                 a->a_vals = vals;
999                 a->a_nvals = vals;
1000                 last_attr->a_next = a;
1001
1002                 if ( old ) {
1003                         last_attr = a;
1004                         /* count all the vals */
1005                         i = 0;
1006                         for ( a=old->e_attrs; a; a=a->a_next ) {
1007                                 if ( a->a_vals && a->a_flags ) {
1008                                         for (b=a->a_vals; !BER_BVISNULL( b ); b++) {
1009                                         i++;
1010                                         }
1011                                 }
1012                         }
1013                         vals = ch_malloc( (i+1) * sizeof( struct berval ));
1014                         i = 0;
1015                         for ( a=old->e_attrs; a; a=a->a_next ) {
1016                                 if ( a->a_vals && a->a_flags ) {
1017                                         for (b=a->a_vals; !BER_BVISNULL( b ); b++,i++) {
1018                                                 accesslog_val2val( a->a_desc, b, 0, &vals[i] );
1019                                         }
1020                                 }
1021                         }
1022                         vals[i].bv_val = NULL;
1023                         vals[i].bv_len = 0;
1024                         a = attr_alloc( ad_reqOld );
1025                         a->a_vals = vals;
1026                         a->a_nvals = vals;
1027                         last_attr->a_next = a;
1028                 }
1029                 break;
1030
1031         case LOG_EN_MODRDN:
1032                 attr_merge_one( e, ad_reqNewRDN, &op->orr_newrdn, &op->orr_nnewrdn );
1033                 attr_merge_one( e, ad_reqDeleteOldRDN, op->orr_deleteoldrdn ?
1034                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
1035                         NULL );
1036                 if ( op->orr_newSup ) {
1037                         attr_merge_one( e, ad_reqNewSuperior, op->orr_newSup, op->orr_nnewSup );
1038                 }
1039                 break;
1040
1041         case LOG_EN_COMPARE:
1042                 bv.bv_len = op->orc_ava->aa_desc->ad_cname.bv_len + 1 +
1043                         op->orc_ava->aa_value.bv_len;
1044                 bv.bv_val = op->o_tmpalloc( bv.bv_len+1, op->o_tmpmemctx );
1045                 ptr = lutil_strcopy( bv.bv_val, op->orc_ava->aa_desc->ad_cname.bv_val );
1046                 *ptr++ = '=';
1047                 AC_MEMCPY( ptr, op->orc_ava->aa_value.bv_val, op->orc_ava->aa_value.bv_len );
1048                 bv.bv_val[bv.bv_len] = '\0';
1049                 attr_merge_one( e, ad_reqAssertion, &bv, NULL );
1050                 op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
1051                 break;
1052
1053         case LOG_EN_SEARCH:
1054                 attr_merge_one( e, ad_reqScope, &scopes[op->ors_scope], NULL );
1055                 attr_merge_one( e, ad_reqDerefAliases, &derefs[op->ors_deref], NULL );
1056                 attr_merge_one( e, ad_reqAttrsOnly, op->ors_attrsonly ?
1057                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
1058                         NULL );
1059                 if ( !BER_BVISEMPTY( &op->ors_filterstr ))
1060                         attr_merge_one( e, ad_reqFilter, &op->ors_filterstr, NULL );
1061                 if ( op->ors_attrs ) {
1062                         /* count them */
1063                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
1064                                 ;
1065                         vals = op->o_tmpalloc( (i+1) * sizeof(struct berval),
1066                                 op->o_tmpmemctx );
1067                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
1068                                 vals[i] = op->ors_attrs[i].an_name;
1069                         vals[i].bv_val = NULL;
1070                         vals[i].bv_len = 0;
1071                         attr_merge( e, ad_reqAttr, vals, NULL );
1072                         op->o_tmpfree( vals, op->o_tmpmemctx );
1073                 }
1074                 bv.bv_val = timebuf;
1075                 bv.bv_len = sprintf( bv.bv_val, "%d", rs->sr_nentries );
1076                 attr_merge_one( e, ad_reqEntries, &bv, NULL );
1077
1078                 bv.bv_len = sprintf( bv.bv_val, "%d", op->ors_tlimit );
1079                 attr_merge_one( e, ad_reqTimeLimit, &bv, NULL );
1080
1081                 bv.bv_len = sprintf( bv.bv_val, "%d", op->ors_slimit );
1082                 attr_merge_one( e, ad_reqSizeLimit, &bv, NULL );
1083                 break;
1084
1085         case LOG_EN_BIND:
1086                 bv.bv_val = timebuf;
1087                 bv.bv_len = sprintf( bv.bv_val, "%d", op->o_protocol );
1088                 attr_merge_one( e, ad_reqVersion, &bv, NULL );
1089                 if ( op->orb_method == LDAP_AUTH_SIMPLE ) {
1090                         attr_merge_one( e, ad_reqMethod, &simple, NULL );
1091                 } else {
1092                         bv.bv_len = STRLENOF("SASL()") + op->orb_tmp_mech.bv_len;
1093                         bv.bv_val = op->o_tmpalloc( bv.bv_len + 1, op->o_tmpmemctx );
1094                         ptr = lutil_strcopy( bv.bv_val, "SASL(" );
1095                         ptr = lutil_strcopy( ptr, op->orb_tmp_mech.bv_val );
1096                         *ptr++ = ')';
1097                         *ptr = '\0';
1098                         attr_merge_one( e, ad_reqMethod, &bv, NULL );
1099                         op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
1100                 }
1101
1102                 break;
1103
1104         case LOG_EN_EXTENDED:
1105                 if ( op->ore_reqdata ) {
1106                         attr_merge_one( e, ad_reqData, op->ore_reqdata, NULL );
1107                 }
1108                 break;
1109
1110         case LOG_EN_UNKNOWN:
1111                 /* we don't know its parameters, don't add any */
1112                 break;
1113         }
1114
1115         op2.o_hdr = op->o_hdr;
1116         op2.o_tag = LDAP_REQ_ADD;
1117         op2.o_bd = li->li_db;
1118         op2.o_dn = li->li_db->be_rootdn;
1119         op2.o_ndn = li->li_db->be_rootndn;
1120         op2.o_req_dn = e->e_name;
1121         op2.o_req_ndn = e->e_nname;
1122         op2.ora_e = e;
1123         op2.o_callback = &nullsc;
1124
1125         if (( lo->mask & LOG_OP_WRITES ) && !BER_BVISEMPTY( &op->o_csn )) {
1126                 slap_queue_csn( &op2, &op->o_csn );
1127         }
1128
1129         op2.o_bd->be_add( &op2, &rs2 );
1130
1131 done:
1132         if ( lo->mask & LOG_OP_WRITES )
1133                 ldap_pvt_thread_mutex_unlock( &li->li_log_mutex );
1134         if ( e ) entry_free( e );
1135         if ( old ) entry_free( old );
1136         return SLAP_CB_CONTINUE;
1137 }
1138
1139 /* Since Bind success is sent by the frontend, it won't normally enter
1140  * the overlay response callback. Add another callback to make sure it
1141  * gets here.
1142  */
1143 static int
1144 accesslog_bind_resp( Operation *op, SlapReply *rs )
1145 {
1146         BackendDB *be, db;
1147         int rc;
1148         slap_callback *sc;
1149
1150         be = op->o_bd;
1151         db = *be;
1152         op->o_bd = &db;
1153         db.bd_info = op->o_callback->sc_private;
1154         rc = accesslog_response( op, rs );
1155         op->o_bd = be;
1156         sc = op->o_callback;
1157         op->o_callback = sc->sc_next;
1158         op->o_tmpfree( sc, op->o_tmpmemctx );
1159         return rc;
1160 }
1161
1162 static int
1163 accesslog_op_bind( Operation *op, SlapReply *rs )
1164 {
1165         slap_callback *sc;
1166
1167         sc = op->o_tmpcalloc( 1, sizeof(slap_callback), op->o_tmpmemctx );
1168         sc->sc_response = accesslog_bind_resp;
1169         sc->sc_private = op->o_bd->bd_info;
1170
1171         if ( op->o_callback ) {
1172                 sc->sc_next = op->o_callback->sc_next;
1173                 op->o_callback->sc_next = sc;
1174         } else {
1175                 op->o_callback = sc;
1176         }
1177         return SLAP_CB_CONTINUE;
1178 }
1179
1180 static int
1181 accesslog_op_mod( Operation *op, SlapReply *rs )
1182 {
1183         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1184         log_info *li = on->on_bi.bi_private;
1185
1186         if ( li->li_ops & LOG_OP_WRITES ) {
1187                 /* FIXME: this needs to be a recursive mutex to allow
1188                  * overlays like refint to keep working.
1189                  */
1190                 ldap_pvt_thread_mutex_lock( &li->li_op_mutex );
1191                 if ( li->li_oldf && ( op->o_tag == LDAP_REQ_DELETE ||
1192                         op->o_tag == LDAP_REQ_MODIFY )) {
1193                         int rc;
1194                         Entry *e;
1195
1196                         op->o_bd->bd_info = on->on_info->oi_orig;
1197                         rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
1198                         if ( e ) {
1199                                 if ( test_filter( op, e, li->li_oldf ) == LDAP_COMPARE_TRUE )
1200                                         li->li_old = entry_dup( e );
1201                                 be_entry_release_rw( op, e, 0 );
1202                         }
1203                         op->o_bd->bd_info = (BackendInfo *)on;
1204                 }
1205         }
1206         return SLAP_CB_CONTINUE;
1207 }
1208
1209 /* unbinds are broadcast to all backends; we only log it if this
1210  * backend was used for the original bind.
1211  */
1212 static int
1213 accesslog_unbind( Operation *op, SlapReply *rs )
1214 {
1215         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1216         if ( op->o_conn->c_authz_backend == on->on_info->oi_origdb ) {
1217                 log_info *li = on->on_bi.bi_private;
1218                 Operation op2 = {0};
1219                 void *cids[SLAP_MAX_CIDS];
1220                 SlapReply rs2 = {REP_RESULT};
1221                 Entry *e;
1222
1223                 if ( !( li->li_ops & LOG_OP_UNBIND ))
1224                         return SLAP_CB_CONTINUE;
1225
1226                 e = accesslog_entry( op, LOG_EN_UNBIND, &op2 );
1227                 op2.o_hdr = op->o_hdr;
1228                 op2.o_tag = LDAP_REQ_ADD;
1229                 op2.o_bd = li->li_db;
1230                 op2.o_dn = li->li_db->be_rootdn;
1231                 op2.o_ndn = li->li_db->be_rootndn;
1232                 op2.o_req_dn = e->e_name;
1233                 op2.o_req_ndn = e->e_nname;
1234                 op2.ora_e = e;
1235                 op2.o_callback = &nullsc;
1236                 op2.o_controls = cids;
1237                 memset(cids, 0, sizeof( cids ));
1238
1239                 op2.o_bd->be_add( &op2, &rs2 );
1240                 entry_free( e );
1241         }
1242         return SLAP_CB_CONTINUE;
1243 }
1244
1245 static int
1246 accesslog_abandon( Operation *op, SlapReply *rs )
1247 {
1248         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1249         log_info *li = on->on_bi.bi_private;
1250         Operation op2 = {0};
1251         void *cids[SLAP_MAX_CIDS];
1252         SlapReply rs2 = {REP_RESULT};
1253         Entry *e;
1254         char buf[64];
1255         struct berval bv;
1256
1257         if ( !op->o_time || !( li->li_ops & LOG_OP_ABANDON ))
1258                 return SLAP_CB_CONTINUE;
1259
1260         e = accesslog_entry( op, LOG_EN_ABANDON, &op2 );
1261         bv.bv_val = buf;
1262         bv.bv_len = sprintf( buf, "%d", op->orn_msgid );
1263         attr_merge_one( e, ad_reqId, &bv, NULL );
1264
1265         op2.o_hdr = op->o_hdr;
1266         op2.o_tag = LDAP_REQ_ADD;
1267         op2.o_bd = li->li_db;
1268         op2.o_dn = li->li_db->be_rootdn;
1269         op2.o_ndn = li->li_db->be_rootndn;
1270         op2.o_req_dn = e->e_name;
1271         op2.o_req_ndn = e->e_nname;
1272         op2.ora_e = e;
1273         op2.o_callback = &nullsc;
1274         op2.o_controls = cids;
1275         memset(cids, 0, sizeof( cids ));
1276
1277         op2.o_bd->be_add( &op2, &rs2 );
1278         entry_free( e );
1279
1280         return SLAP_CB_CONTINUE;
1281 }
1282
1283 static slap_overinst accesslog;
1284
1285 static int
1286 accesslog_db_init(
1287         BackendDB *be
1288 )
1289 {
1290         slap_overinst *on = (slap_overinst *)be->bd_info;
1291         log_info *li = ch_calloc(1, sizeof(log_info));
1292
1293         on->on_bi.bi_private = li;
1294         ldap_pvt_thread_mutex_init( &li->li_op_mutex );
1295         ldap_pvt_thread_mutex_init( &li->li_log_mutex );
1296         return 0;
1297 }
1298
1299 static int
1300 accesslog_db_destroy(
1301         BackendDB *be
1302 )
1303 {
1304         slap_overinst *on = (slap_overinst *)be->bd_info;
1305         log_info *li = on->on_bi.bi_private;
1306
1307         ldap_pvt_thread_mutex_destroy( &li->li_log_mutex );
1308         ldap_pvt_thread_mutex_destroy( &li->li_op_mutex );
1309         free( li );
1310         return LDAP_SUCCESS;
1311 }
1312
1313 static int
1314 accesslog_db_open(
1315         BackendDB *be
1316 )
1317 {
1318         slap_overinst *on = (slap_overinst *)be->bd_info;
1319         log_info *li = on->on_bi.bi_private;
1320
1321         Connection conn;
1322         OperationBuffer opbuf;
1323         Operation *op = (Operation *) &opbuf;
1324         Entry *e;
1325         int rc;
1326         void *thrctx;
1327
1328         if ( slapMode & SLAP_TOOL_MODE )
1329                 return 0;
1330
1331         thrctx = ldap_pvt_thread_pool_context();
1332         connection_fake_init( &conn, op, thrctx );
1333         op->o_bd = li->li_db;
1334         op->o_dn = li->li_db->be_rootdn;
1335         op->o_ndn = li->li_db->be_rootndn;
1336
1337         rc = be_entry_get_rw( op, li->li_db->be_nsuffix, NULL, NULL, 0, &e );
1338
1339         if ( e ) {
1340                 be_entry_release_rw( op, e, 0 );
1341         } else {
1342                 SlapReply rs = {REP_RESULT};
1343                 struct berval rdn, nrdn, attr;
1344                 char *ptr;
1345                 AttributeDescription *ad = NULL;
1346                 const char *text = NULL;
1347                 Entry *e_ctx;
1348
1349                 e = ch_calloc( 1, sizeof( Entry ));
1350                 e->e_name = *li->li_db->be_suffix;
1351                 e->e_nname = *li->li_db->be_nsuffix;
1352
1353                 attr_merge_one( e, slap_schema.si_ad_objectClass,
1354                         &log_container->soc_cname, NULL );
1355
1356                 dnRdn( &e->e_name, &rdn );
1357                 dnRdn( &e->e_nname, &nrdn );
1358                 ptr = ber_bvchr( &rdn, '=' );
1359
1360                 assert( ptr != NULL );
1361
1362                 attr.bv_val = rdn.bv_val;
1363                 attr.bv_len = ptr - rdn.bv_val;
1364
1365                 slap_bv2ad( &attr, &ad, &text );
1366
1367                 rdn.bv_val = ptr+1;
1368                 rdn.bv_len -= attr.bv_len + 1;
1369                 ptr = ber_bvchr( &nrdn, '=' );
1370                 nrdn.bv_len -= ptr - nrdn.bv_val + 1;
1371                 nrdn.bv_val = ptr+1;
1372                 attr_merge_one( e, ad, &rdn, &nrdn );
1373
1374                 /* Get contextCSN from main DB */
1375                 op->o_bd = be;
1376                 op->o_bd->bd_info = on->on_info->oi_orig;
1377                 rc = be_entry_get_rw( op, be->be_nsuffix, NULL,
1378                         slap_schema.si_ad_contextCSN, 0, &e_ctx );
1379
1380                 if ( e_ctx ) {
1381                         Attribute *a;
1382
1383                         a = attr_find( e_ctx->e_attrs, slap_schema.si_ad_contextCSN );
1384                         if ( a ) {
1385                                 attr_merge( e, slap_schema.si_ad_entryCSN, a->a_vals, NULL );
1386                                 attr_merge( e, a->a_desc, a->a_vals, NULL );
1387                         }
1388                         be_entry_release_rw( op, e_ctx, 0 );
1389                 }
1390                 op->o_bd->bd_info = (BackendInfo *)on;
1391                 op->o_bd = li->li_db;
1392
1393                 op->ora_e = e;
1394                 op->o_req_dn = e->e_name;
1395                 op->o_req_ndn = e->e_nname;
1396                 op->o_callback = &nullsc;
1397                 SLAP_DBFLAGS( op->o_bd ) |= SLAP_DBFLAG_NOLASTMOD;
1398                 rc = op->o_bd->be_add( op, &rs );
1399                 SLAP_DBFLAGS( op->o_bd ) ^= SLAP_DBFLAG_NOLASTMOD;
1400                 attrs_free( e->e_attrs );
1401                 ch_free( e );
1402         }
1403         ldap_pvt_thread_pool_context_reset( thrctx );
1404         return rc;
1405 }
1406
1407 int accesslog_initialize()
1408 {
1409         int i, rc;
1410
1411         accesslog.on_bi.bi_type = "accesslog";
1412         accesslog.on_bi.bi_db_init = accesslog_db_init;
1413         accesslog.on_bi.bi_db_destroy = accesslog_db_destroy;
1414         accesslog.on_bi.bi_db_open = accesslog_db_open;
1415
1416         accesslog.on_bi.bi_op_add = accesslog_op_mod;
1417         accesslog.on_bi.bi_op_bind = accesslog_op_bind;
1418         accesslog.on_bi.bi_op_delete = accesslog_op_mod;
1419         accesslog.on_bi.bi_op_modify = accesslog_op_mod;
1420         accesslog.on_bi.bi_op_modrdn = accesslog_op_mod;
1421         accesslog.on_bi.bi_op_unbind = accesslog_unbind;
1422         accesslog.on_bi.bi_op_abandon = accesslog_abandon;
1423         accesslog.on_response = accesslog_response;
1424
1425         accesslog.on_bi.bi_cf_ocs = log_cfocs;
1426
1427         nullsc.sc_response = slap_null_cb;
1428
1429         rc = config_register_schema( log_cfats, log_cfocs );
1430         if ( rc ) return rc;
1431
1432         /* log schema integration */
1433         for ( i=0; lattrs[i].at; i++ ) {
1434                 LDAPAttributeType *lat;
1435                 AttributeType *at;
1436                 int code;
1437                 const char *err;
1438
1439                 lat = ldap_str2attributetype( lattrs[i].at, &code, &err,
1440                         LDAP_SCHEMA_ALLOW_ALL );
1441                 if ( !lat ) {
1442                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1443                                 "ldap_str2attributetype failed on %d: %s, %s\n",
1444                                 i, ldap_scherr2str(code), err );
1445                         return -1;
1446                 }
1447                 code = at_add( lat, 0, &at, &err );
1448                 ldap_memfree( lat );
1449                 if ( code ) {
1450                         Debug( LDAP_DEBUG_ANY, "log_back_initialize: "
1451                                 "at_add failed on %d: %s\n",
1452                                 i, scherr2str(code), 0 );
1453                         return -1;
1454                 }
1455                 if ( slap_bv2ad( &at->sat_cname, lattrs[i].ad, &err )) {
1456                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1457                                 "slap_bv2ad failed on %d: %s\n",
1458                                 i, err, 0 );
1459                         return -1;
1460                 }
1461         }
1462         for ( i=0; locs[i].ot; i++ ) {
1463                 LDAPObjectClass *loc;
1464                 ObjectClass *oc;
1465                 int code;
1466                 const char *err;
1467
1468                 loc = ldap_str2objectclass( locs[i].ot, &code, &err,
1469                         LDAP_SCHEMA_ALLOW_ALL );
1470                 if ( !loc ) {
1471                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1472                                 "ldap_str2objectclass failed on %d: %s, %s\n",
1473                                 i, ldap_scherr2str(code), err );
1474                         return -1;
1475                 }
1476                 
1477                 code = oc_add( loc, 0, &oc, &err );
1478                 ldap_memfree( loc );
1479                 if ( code ) {
1480                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1481                                 "oc_add failed on %d: %s\n",
1482                                 i, scherr2str(code), 0 );
1483                         return -1;
1484                 }
1485                 if ( locs[i].oc )
1486                         *locs[i].oc = oc;
1487         }
1488
1489         return overlay_register(&accesslog);
1490 }
1491
1492 #if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_DYNAMIC
1493 int
1494 init_module( int argc, char *argv[] )
1495 {
1496         return accesslog_initialize();
1497 }
1498 #endif
1499
1500 #endif /* SLAPD_OVER_ACCESSLOG */