]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/accesslog.c
f134ed1d1f3a4013d166ecab43e8275209ae7642
[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_filter;
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_FILTER
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         { "logoldfilter", NULL, 2, 2, 0, ARG_MAGIC|LOG_FILTER,
97                 log_cf_gen, "( OLcfgOvAt:4.5 NAME 'olcAccessLogOldFilter' "
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                         "olcAccessLogOldFilter ) )",
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         }
447         return t1;
448 }
449
450 static void
451 log_age_unparse( int age, struct berval *agebv )
452 {
453         int dd, hh, mm, ss;
454         char *ptr;
455
456         ss = age % 60;
457         age /= 60;
458         mm = age % 60;
459         age /= 60;
460         hh = age % 24;
461         age /= 24;
462         dd = age;
463
464         ptr = agebv->bv_val;
465
466         if ( dd ) 
467                 ptr += sprintf( ptr, "%d+", dd );
468         ptr += sprintf( ptr, "%02d:%02d", hh, mm );
469         if ( ss )
470                 ptr += sprintf( ptr, ":%02d", ss );
471
472         agebv->bv_len = ptr - agebv->bv_val;
473 }
474
475 static slap_callback nullsc = { NULL, NULL, NULL, NULL };
476
477 #define PURGE_INCREMENT 100
478
479 typedef struct purge_data {
480         int slots;
481         int used;
482         BerVarray dn;
483         BerVarray ndn;
484 } purge_data;
485
486 static int
487 log_old_lookup( Operation *op, SlapReply *rs )
488 {
489         purge_data *pd = op->o_callback->sc_private;
490
491         if ( rs->sr_type != REP_SEARCH) return 0;
492
493         if ( pd->used >= pd->slots ) {
494                 pd->slots += PURGE_INCREMENT;
495                 pd->dn = ch_realloc( pd->dn, pd->slots * sizeof( struct berval ));
496                 pd->ndn = ch_realloc( pd->ndn, pd->slots * sizeof( struct berval ));
497         }
498         ber_dupbv( &pd->dn[pd->used], &rs->sr_entry->e_name );
499         ber_dupbv( &pd->ndn[pd->used], &rs->sr_entry->e_nname );
500         pd->used++;
501         return 0;
502 }
503
504 /* Periodically search for old entries in the log database and delete them */
505 static void *
506 accesslog_purge( void *ctx, void *arg )
507 {
508         struct re_s *rtask = arg;
509         struct log_info *li = rtask->arg;
510
511         Connection conn = {0};
512         OperationBuffer opbuf;
513         Operation *op = (Operation *) &opbuf;
514         SlapReply rs = {REP_RESULT};
515         slap_callback cb = { NULL, log_old_lookup, NULL, NULL };
516         Filter f;
517         AttributeAssertion ava = {0};
518         purge_data pd = {0};
519         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE];
520         time_t old = slap_get_time();
521
522         connection_fake_init( &conn, op, ctx );
523
524         f.f_choice = LDAP_FILTER_LE;
525         f.f_ava = &ava;
526         f.f_next = NULL;
527
528         ava.aa_desc = ad_reqStart;
529         ava.aa_value.bv_val = timebuf;
530         ava.aa_value.bv_len = sizeof(timebuf);
531
532         old -= li->li_age;
533         slap_timestamp( &old, &ava.aa_value );
534
535         op->o_tag = LDAP_REQ_SEARCH;
536         op->o_bd = li->li_db;
537         op->o_dn = li->li_db->be_rootdn;
538         op->o_ndn = li->li_db->be_rootndn;
539         op->o_req_dn = li->li_db->be_suffix[0];
540         op->o_req_ndn = li->li_db->be_nsuffix[0];
541         op->o_callback = &cb;
542         op->ors_scope = LDAP_SCOPE_ONELEVEL;
543         op->ors_deref = LDAP_DEREF_NEVER;
544         op->ors_tlimit = SLAP_NO_LIMIT;
545         op->ors_slimit = SLAP_NO_LIMIT;
546         op->ors_filter = &f;
547         filter2bv_x( op, &f, &op->ors_filterstr );
548         op->ors_attrs = slap_anlist_no_attrs;
549         op->ors_attrsonly = 1;
550         
551         cb.sc_private = &pd;
552
553         op->o_bd->be_search( op, &rs );
554         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
555
556         if ( pd.used ) {
557                 int i;
558
559                 op->o_tag = LDAP_REQ_DELETE;
560                 op->o_callback = &nullsc;
561
562                 for (i=0; i<pd.used; i++) {
563                         op->o_req_dn = pd.dn[i];
564                         op->o_req_ndn = pd.ndn[i];
565                         op->o_bd->be_delete( op, &rs );
566                         ch_free( pd.ndn[i].bv_val );
567                         ch_free( pd.dn[i].bv_val );
568                 }
569                 ch_free( pd.ndn );
570                 ch_free( pd.dn );
571         }
572
573         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
574         ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
575         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
576
577         return NULL;
578 }
579
580 static int
581 log_cf_gen(ConfigArgs *c)
582 {
583         slap_overinst *on = (slap_overinst *)c->bi;
584         struct log_info *li = on->on_bi.bi_private;
585         int rc = 0;
586         slap_mask_t tmask = 0;
587         char agebuf[2*STRLENOF("ddddd+hh:mm:ss  ")];
588         struct berval agebv, cyclebv;
589
590         switch( c->op ) {
591         case SLAP_CONFIG_EMIT:
592                 switch( c->type ) {
593                 case LOG_DB:
594                         value_add( &c->rvalue_vals, li->li_db->be_suffix );
595                         value_add( &c->rvalue_nvals, li->li_db->be_nsuffix );
596                         break;
597                 case LOG_OPS:
598                         rc = mask_to_verbs( logops, li->li_ops, &c->rvalue_vals );
599                         break;
600                 case LOG_PURGE:
601                         agebv.bv_val = agebuf;
602                         log_age_unparse( li->li_age, &agebv );
603                         agebv.bv_val[agebv.bv_len] = ' ';
604                         agebv.bv_len++;
605                         cyclebv.bv_val = agebv.bv_val + agebv.bv_len;
606                         log_age_unparse( li->li_cycle, &cyclebv );
607                         agebv.bv_len += cyclebv.bv_len;
608                         value_add_one( &c->rvalue_vals, &agebv );
609                         break;
610                 case LOG_SUCCESS:
611                         if ( li->li_success )
612                                 c->value_int = li->li_success;
613                         else
614                                 rc = 1;
615                         break;
616                 case LOG_FILTER:
617                         if ( li->li_filter ) {
618                                 filter2bv( li->li_filter, &agebv );
619                                 value_add_one( &c->rvalue_vals, &agebv );
620                         }
621                         else
622                                 rc = 1;
623                         break;
624                 }
625                 break;
626         case LDAP_MOD_DELETE:
627                 switch( c->type ) {
628                 case LOG_DB:
629                         /* noop. this should always be a valid backend. */
630                         break;
631                 case LOG_OPS:
632                         if ( c->valx < 0 ) {
633                                 li->li_ops = 0;
634                         } else {
635                                 rc = verbs_to_mask( 1, &c->line, logops, &tmask );
636                                 if ( rc == 0 )
637                                         li->li_ops &= ~tmask;
638                         }
639                         break;
640                 case LOG_PURGE:
641                         if ( li->li_task ) {
642                                 struct re_s *re = li->li_task;
643                                 li->li_task = NULL;
644                                 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ))
645                                         ldap_pvt_runqueue_stoptask( &slapd_rq, re );
646                                 ldap_pvt_runqueue_remove( &slapd_rq, re );
647                         }
648                         li->li_age = 0;
649                         li->li_cycle = 0;
650                         break;
651                 case LOG_SUCCESS:
652                         li->li_success = 0;
653                         break;
654                 case LOG_FILTER:
655                         if ( li->li_filter ) {
656                                 filter_free( li->li_filter );
657                                 li->li_filter = NULL;
658                         }
659                         break;
660                 }
661                 break;
662         default:
663                 switch( c->type ) {
664                 case LOG_DB:
665                         li->li_db = select_backend( &c->value_ndn, 0, 0 );
666                         if ( !li->li_db ) {
667                                 sprintf( c->msg, "<%s> no matching backend found for suffix",
668                                         c->argv[0] );
669                                 Debug( LDAP_DEBUG_ANY, "%s: %s \"%s\"\n",
670                                         c->log, c->msg, c->value_dn.bv_val );
671                                 rc = 1;
672                         }
673                         ch_free( c->value_dn.bv_val );
674                         ch_free( c->value_ndn.bv_val );
675                         break;
676                 case LOG_OPS:
677                         rc = verbs_to_mask( c->argc, c->argv, logops, &tmask );
678                         if ( rc == 0 )
679                                 li->li_ops |= tmask;
680                         break;
681                 case LOG_PURGE:
682                         li->li_age = log_age_parse( c->argv[1] );
683                         if ( li->li_age == -1 ) {
684                                 rc = 1;
685                         } else {
686                                 li->li_cycle = log_age_parse( c->argv[2] );
687                                 if ( li->li_cycle == -1 ) {
688                                         rc = 1;
689                                 } else if ( slapMode & SLAP_SERVER_MODE ) {
690                                         struct re_s *re = li->li_task;
691                                         if ( re )
692                                                 re->interval.tv_sec = li->li_cycle;
693                                         else
694                                                 li->li_task = ldap_pvt_runqueue_insert( &slapd_rq,
695                                                         li->li_cycle, accesslog_purge, li,
696                                                         "accesslog_purge", li->li_db ?
697                                                                 li->li_db->be_suffix[0].bv_val :
698                                                                 c->be->be_suffix[0].bv_val );
699                                 }
700                         }
701                         break;
702                 case LOG_SUCCESS:
703                         li->li_success = c->value_int;
704                         break;
705                 case LOG_FILTER:
706                         li->li_filter = str2filter( c->argv[1] );
707                         if ( !li->li_filter ) {
708                                 sprintf( c->msg, "bad filter!" );
709                                 rc = 1;
710                         }
711                 }
712                 break;
713         }
714         return rc;
715 }
716
717 static Entry *accesslog_entry( Operation *op, int logop,
718         Operation *op2 ) {
719         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
720         log_info *li = on->on_bi.bi_private;
721
722         char rdnbuf[STRLENOF(RDNEQ)+LDAP_LUTIL_GENTIME_BUFSIZE+8];
723         char nrdnbuf[STRLENOF(RDNEQ)+LDAP_LUTIL_GENTIME_BUFSIZE+8];
724
725         struct berval rdn, nrdn, timestamp, ntimestamp, bv;
726         slap_verbmasks *lo = logops+logop+EN_OFFSET;
727
728         Entry *e = ch_calloc( 1, sizeof(Entry) );
729
730         strcpy( rdnbuf, RDNEQ );
731         rdn.bv_val = rdnbuf;
732         strcpy( nrdnbuf, RDNEQ );
733         nrdn.bv_val = nrdnbuf;
734
735         timestamp.bv_val = rdnbuf+STRLENOF(RDNEQ);
736         timestamp.bv_len = sizeof(rdnbuf) - STRLENOF(RDNEQ);
737         slap_timestamp( &op->o_time, &timestamp );
738         sprintf( timestamp.bv_val + timestamp.bv_len-1, ".%06dZ", op->o_tincr );
739         timestamp.bv_len += 7;
740
741         rdn.bv_len = STRLENOF(RDNEQ)+timestamp.bv_len;
742         ad_reqStart->ad_type->sat_equality->smr_normalize(
743                 SLAP_MR_VALUE_OF_ASSERTION_SYNTAX, ad_reqStart->ad_type->sat_syntax,
744                 ad_reqStart->ad_type->sat_equality, &timestamp, &ntimestamp,
745                 op->o_tmpmemctx );
746
747         strcpy( nrdn.bv_val + STRLENOF(RDNEQ), ntimestamp.bv_val );
748         nrdn.bv_len = STRLENOF(RDNEQ)+ntimestamp.bv_len;
749         build_new_dn( &e->e_name, li->li_db->be_suffix, &rdn, NULL );
750         build_new_dn( &e->e_nname, li->li_db->be_nsuffix, &nrdn, NULL );
751
752         attr_merge_one( e, slap_schema.si_ad_objectClass,
753                 &log_ocs[logop]->soc_cname, NULL );
754         attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
755                 &log_ocs[logop]->soc_cname, NULL );
756         attr_merge_one( e, ad_reqStart, &timestamp, &ntimestamp );
757         op->o_tmpfree( ntimestamp.bv_val, op->o_tmpmemctx );
758
759         slap_op_time( &op2->o_time, &op2->o_tincr );
760
761         timestamp.bv_len = sizeof(rdnbuf) - STRLENOF(RDNEQ);
762         slap_timestamp( &op2->o_time, &timestamp );
763         sprintf( timestamp.bv_val + timestamp.bv_len-1, ".%06dZ", op2->o_tincr );
764         timestamp.bv_len += 7;
765
766         attr_merge_normalize_one( e, ad_reqEnd, &timestamp, op->o_tmpmemctx );
767
768         /* Exops have OID appended */
769         if ( logop == LOG_EN_EXTENDED ) {
770                 bv.bv_len = lo->word.bv_len + op->ore_reqoid.bv_len + 2;
771                 bv.bv_val = ch_malloc( bv.bv_len + 1 );
772                 AC_MEMCPY( bv.bv_val, lo->word.bv_val, lo->word.bv_len );
773                 bv.bv_val[lo->word.bv_len] = '{';
774                 AC_MEMCPY( bv.bv_val+lo->word.bv_len+1, op->ore_reqoid.bv_val,
775                         op->ore_reqoid.bv_len );
776                 bv.bv_val[bv.bv_len-1] = '}';
777                 bv.bv_val[bv.bv_len] = '\0';
778                 attr_merge_one( e, ad_reqType, &bv, NULL );
779         } else {
780                 attr_merge_one( e, ad_reqType, &lo->word, NULL );
781         }
782
783         rdn.bv_len = sprintf( rdn.bv_val, "%lu", op->o_connid );
784         attr_merge_one( e, ad_reqSession, &rdn, NULL );
785
786         if ( BER_BVISNULL( &op->o_dn )) 
787                 attr_merge_one( e, ad_reqAuthzID, (struct berval *)&slap_empty_bv,
788                         (struct berval *)&slap_empty_bv );
789         else
790                 attr_merge_one( e, ad_reqAuthzID, &op->o_dn, &op->o_ndn );
791
792         /* FIXME: need to add reqControls and reqRespControls */
793
794         return e;
795 }
796
797 static struct berval scopes[] = {
798         BER_BVC("base"),
799         BER_BVC("one"),
800         BER_BVC("sub"),
801         BER_BVC("subord")
802 };
803
804 static struct berval derefs[] = {
805         BER_BVC("never"),
806         BER_BVC("searching"),
807         BER_BVC("finding"),
808         BER_BVC("always")
809 };
810
811 static struct berval simple = BER_BVC("SIMPLE");
812
813 static void accesslog_val2val(AttributeDescription *ad, struct berval *val,
814         char c_op, struct berval *dst) {
815         char *ptr;
816
817         dst->bv_len = ad->ad_cname.bv_len + val->bv_len + 2;
818         if ( c_op ) dst->bv_len++;
819
820         dst->bv_val = ch_malloc( dst->bv_len+1 );
821
822         ptr = lutil_strcopy( dst->bv_val, ad->ad_cname.bv_val );
823         *ptr++ = ':';
824         if ( c_op )
825                 *ptr++ = c_op;
826         *ptr++ = ' ';
827         AC_MEMCPY( ptr, val->bv_val, val->bv_len );
828         dst->bv_val[dst->bv_len] = '\0';
829 }
830
831 static int accesslog_response(Operation *op, SlapReply *rs) {
832         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
833         log_info *li = on->on_bi.bi_private;
834         Attribute *a, *last_attr;
835         Modifications *m;
836         struct berval *b;
837         int i;
838         int logop;
839         slap_verbmasks *lo;
840         Entry *e, *old = NULL;
841         char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE+8];
842         struct berval bv;
843         char *ptr;
844         BerVarray vals;
845         Operation op2 = {0};
846         SlapReply rs2 = {REP_RESULT};
847
848         if ( rs->sr_type != REP_RESULT && rs->sr_type != REP_EXTENDED )
849                 return SLAP_CB_CONTINUE;
850
851         switch ( op->o_tag ) {
852         case LDAP_REQ_ADD:              logop = LOG_EN_ADD; break;
853         case LDAP_REQ_DELETE:   logop = LOG_EN_DELETE; break;
854         case LDAP_REQ_MODIFY:   logop = LOG_EN_MODIFY; break;
855         case LDAP_REQ_MODRDN:   logop = LOG_EN_MODRDN; break;
856         case LDAP_REQ_COMPARE:  logop = LOG_EN_COMPARE; break;
857         case LDAP_REQ_SEARCH:   logop = LOG_EN_SEARCH; break;
858         case LDAP_REQ_BIND:             logop = LOG_EN_BIND; break;
859         case LDAP_REQ_EXTENDED: logop = LOG_EN_EXTENDED; break;
860         default:        /* unknown operation type */
861                 logop = LOG_EN_UNKNOWN; break;
862         }       /* Unbind and Abandon never reach here */
863
864         lo = logops+logop+EN_OFFSET;
865         if ( !( li->li_ops & lo->mask ))
866                 return SLAP_CB_CONTINUE;
867
868         if ( lo->mask & LOG_OP_WRITES ) {
869                 ldap_pvt_thread_mutex_lock( &li->li_log_mutex );
870                 old = li->li_old;
871                 li->li_old = NULL;
872                 ldap_pvt_thread_mutex_unlock( &li->li_op_mutex );
873         }
874
875         if ( li->li_success && rs->sr_err != LDAP_SUCCESS )
876                 goto done;
877
878         e = accesslog_entry( op, logop, &op2 );
879
880         attr_merge_one( e, ad_reqDN, &op->o_req_dn, &op->o_req_ndn );
881
882         if ( rs->sr_text ) {
883                 ber_str2bv( rs->sr_text, 0, 0, &bv );
884                 attr_merge_one( e, ad_reqMessage, &bv, NULL );
885         }
886         bv.bv_len = sprintf( timebuf, "%d", rs->sr_err );
887         bv.bv_val = timebuf;
888
889         attr_merge_one( e, ad_reqResult, &bv, NULL );
890
891         last_attr = attr_find( e->e_attrs, ad_reqResult );
892
893         switch( logop ) {
894         case LOG_EN_ADD:
895         case LOG_EN_DELETE: {
896                 char c_op;
897                 Entry *e2;
898
899                 if ( logop == LOG_EN_ADD ) {
900                         e2 = op->ora_e;
901                         c_op = '+';
902                 } else {
903                         if ( !old )
904                                 break;
905                         e2 = old;
906                         c_op = 0;
907                 }
908                 /* count all the vals */
909                 i = 0;
910                 for ( a=e2->e_attrs; a; a=a->a_next ) {
911                         if ( a->a_vals ) {
912                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++) {
913                                         i++;
914                                 }
915                         }
916                 }
917                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
918                 i = 0;
919                 for ( a=e2->e_attrs; a; a=a->a_next ) {
920                         if ( a->a_vals ) {
921                                 for (b=a->a_vals; !BER_BVISNULL( b ); b++,i++) {
922                                         accesslog_val2val( a->a_desc, b, c_op, &vals[i] );
923                                 }
924                         }
925                 }
926                 vals[i].bv_val = NULL;
927                 vals[i].bv_len = 0;
928                 a = attr_alloc( logop == LOG_EN_ADD ? ad_reqMod : ad_reqOld );
929                 a->a_vals = vals;
930                 a->a_nvals = vals;
931                 last_attr->a_next = a;
932                 break;
933         }
934
935         case LOG_EN_MODIFY:
936                 /* count all the mods */
937                 i = 0;
938                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
939                         if ( m->sml_values ) {
940                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++) {
941                                         i++;
942                                 }
943                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
944                                 i++;
945                         }
946                 }
947                 vals = ch_malloc( (i+1) * sizeof( struct berval ));
948                 i = 0;
949
950                 /* Zero flags on old entry */
951                 if ( old ) {
952                         for ( a=old->e_attrs; a; a=a->a_next )
953                                 a->a_flags = 0;
954                 }
955
956                 for ( m=op->orm_modlist; m; m=m->sml_next ) {
957                         /* Mark this attribute as modified */
958                         if ( old ) {
959                                 a = attr_find( old->e_attrs, m->sml_desc );
960                                 if ( a )
961                                         a->a_flags = 1;
962                         }
963                         if ( m->sml_values ) {
964                                 for (b=m->sml_values; !BER_BVISNULL( b ); b++,i++) {
965                                         char c_op;
966
967                                         switch( m->sml_op ) {
968                                         case LDAP_MOD_ADD: c_op = '+'; break;
969                                         case LDAP_MOD_DELETE:   c_op = '-'; break;
970                                         case LDAP_MOD_REPLACE:  c_op = '='; break;
971                                         case LDAP_MOD_INCREMENT:        c_op = '#'; break;
972
973                                         /* unknown op. there shouldn't be any of these. we
974                                          * don't know what to do with it, but we shouldn't just
975                                          * ignore it.
976                                          */
977                                         default: c_op = '?'; break;
978                                         }
979                                         accesslog_val2val( m->sml_desc, b, c_op, &vals[i] );
980                                 }
981                         } else if ( m->sml_op == LDAP_MOD_DELETE ) {
982                                 vals[i].bv_len = m->sml_desc->ad_cname.bv_len + 2;
983                                 vals[i].bv_val = ch_malloc( vals[i].bv_len+1 );
984                                 ptr = lutil_strcopy( vals[i].bv_val,
985                                         m->sml_desc->ad_cname.bv_val );
986                                 *ptr++ = ':';
987                                 *ptr++ = '-';
988                                 *ptr = '\0';
989                                 i++;
990                         }
991                 }
992                 vals[i].bv_val = NULL;
993                 vals[i].bv_len = 0;
994                 a = attr_alloc( ad_reqMod );
995                 a->a_vals = vals;
996                 a->a_nvals = vals;
997                 last_attr->a_next = a;
998
999                 if ( old ) {
1000                         last_attr = a;
1001                         /* count all the vals */
1002                         i = 0;
1003                         for ( a=old->e_attrs; a; a=a->a_next ) {
1004                                 if ( a->a_vals && a->a_flags ) {
1005                                         for (b=a->a_vals; !BER_BVISNULL( b ); b++) {
1006                                         i++;
1007                                         }
1008                                 }
1009                         }
1010                         vals = ch_malloc( (i+1) * sizeof( struct berval ));
1011                         i = 0;
1012                         for ( a=old->e_attrs; a; a=a->a_next ) {
1013                                 if ( a->a_vals && a->a_flags ) {
1014                                         for (b=a->a_vals; !BER_BVISNULL( b ); b++,i++) {
1015                                                 accesslog_val2val( a->a_desc, b, 0, &vals[i] );
1016                                         }
1017                                 }
1018                         }
1019                         vals[i].bv_val = NULL;
1020                         vals[i].bv_len = 0;
1021                         a = attr_alloc( ad_reqOld );
1022                         a->a_vals = vals;
1023                         a->a_nvals = vals;
1024                         last_attr->a_next = a;
1025                 }
1026                 break;
1027
1028         case LOG_EN_MODRDN:
1029                 attr_merge_one( e, ad_reqNewRDN, &op->orr_newrdn, &op->orr_nnewrdn );
1030                 attr_merge_one( e, ad_reqDeleteOldRDN, op->orr_deleteoldrdn ?
1031                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
1032                         NULL );
1033                 if ( op->orr_newSup ) {
1034                         attr_merge_one( e, ad_reqNewSuperior, op->orr_newSup, op->orr_nnewSup );
1035                 }
1036                 break;
1037
1038         case LOG_EN_COMPARE:
1039                 bv.bv_len = op->orc_ava->aa_desc->ad_cname.bv_len + 1 +
1040                         op->orc_ava->aa_value.bv_len;
1041                 bv.bv_val = op->o_tmpalloc( bv.bv_len+1, op->o_tmpmemctx );
1042                 ptr = lutil_strcopy( bv.bv_val, op->orc_ava->aa_desc->ad_cname.bv_val );
1043                 *ptr++ = '=';
1044                 AC_MEMCPY( ptr, op->orc_ava->aa_value.bv_val, op->orc_ava->aa_value.bv_len );
1045                 bv.bv_val[bv.bv_len] = '\0';
1046                 attr_merge_one( e, ad_reqAssertion, &bv, NULL );
1047                 op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
1048                 break;
1049
1050         case LOG_EN_SEARCH:
1051                 attr_merge_one( e, ad_reqScope, &scopes[op->ors_scope], NULL );
1052                 attr_merge_one( e, ad_reqDerefAliases, &derefs[op->ors_deref], NULL );
1053                 attr_merge_one( e, ad_reqAttrsOnly, op->ors_attrsonly ?
1054                         (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv,
1055                         NULL );
1056                 if ( !BER_BVISEMPTY( &op->ors_filterstr ))
1057                         attr_merge_one( e, ad_reqFilter, &op->ors_filterstr, NULL );
1058                 if ( op->ors_attrs ) {
1059                         /* count them */
1060                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
1061                                 ;
1062                         vals = op->o_tmpalloc( (i+1) * sizeof(struct berval),
1063                                 op->o_tmpmemctx );
1064                         for (i=0; !BER_BVISNULL(&op->ors_attrs[i].an_name );i++)
1065                                 vals[i] = op->ors_attrs[i].an_name;
1066                         vals[i].bv_val = NULL;
1067                         vals[i].bv_len = 0;
1068                         attr_merge( e, ad_reqAttr, vals, NULL );
1069                         op->o_tmpfree( vals, op->o_tmpmemctx );
1070                 }
1071                 bv.bv_val = timebuf;
1072                 bv.bv_len = sprintf( bv.bv_val, "%d", rs->sr_nentries );
1073                 attr_merge_one( e, ad_reqEntries, &bv, NULL );
1074
1075                 bv.bv_len = sprintf( bv.bv_val, "%d", op->ors_tlimit );
1076                 attr_merge_one( e, ad_reqTimeLimit, &bv, NULL );
1077
1078                 bv.bv_len = sprintf( bv.bv_val, "%d", op->ors_slimit );
1079                 attr_merge_one( e, ad_reqSizeLimit, &bv, NULL );
1080                 break;
1081
1082         case LOG_EN_BIND:
1083                 bv.bv_val = timebuf;
1084                 bv.bv_len = sprintf( bv.bv_val, "%d", op->o_protocol );
1085                 attr_merge_one( e, ad_reqVersion, &bv, NULL );
1086                 if ( op->orb_method == LDAP_AUTH_SIMPLE ) {
1087                         attr_merge_one( e, ad_reqMethod, &simple, NULL );
1088                 } else {
1089                         bv.bv_len = STRLENOF("SASL()") + op->orb_tmp_mech.bv_len;
1090                         bv.bv_val = op->o_tmpalloc( bv.bv_len + 1, op->o_tmpmemctx );
1091                         ptr = lutil_strcopy( bv.bv_val, "SASL(" );
1092                         ptr = lutil_strcopy( ptr, op->orb_tmp_mech.bv_val );
1093                         *ptr++ = ')';
1094                         *ptr = '\0';
1095                         attr_merge_one( e, ad_reqMethod, &bv, NULL );
1096                         op->o_tmpfree( bv.bv_val, op->o_tmpmemctx );
1097                 }
1098
1099                 break;
1100
1101         case LOG_EN_EXTENDED:
1102                 if ( op->ore_reqdata ) {
1103                         attr_merge_one( e, ad_reqData, op->ore_reqdata, NULL );
1104                 }
1105                 break;
1106
1107         case LOG_EN_UNKNOWN:
1108                 /* we don't know its parameters, don't add any */
1109                 break;
1110         }
1111
1112         op2.o_hdr = op->o_hdr;
1113         op2.o_tag = LDAP_REQ_ADD;
1114         op2.o_bd = li->li_db;
1115         op2.o_dn = li->li_db->be_rootdn;
1116         op2.o_ndn = li->li_db->be_rootndn;
1117         op2.o_req_dn = e->e_name;
1118         op2.o_req_ndn = e->e_nname;
1119         op2.ora_e = e;
1120         op2.o_callback = &nullsc;
1121
1122         if (( lo->mask & LOG_OP_WRITES ) && !BER_BVISEMPTY( &op->o_csn )) {
1123                 slap_queue_csn( &op2, &op->o_csn );
1124         }
1125
1126         op2.o_bd->be_add( &op2, &rs2 );
1127         entry_free( e );
1128
1129 done:
1130         if ( old ) entry_free( old );
1131         ldap_pvt_thread_mutex_unlock( &li->li_log_mutex );
1132         return SLAP_CB_CONTINUE;
1133 }
1134
1135 /* Since Bind success is sent by the frontend, it won't normally enter
1136  * the overlay response callback. Add another callback to make sure it
1137  * gets here.
1138  */
1139 static int
1140 accesslog_bind_resp( Operation *op, SlapReply *rs )
1141 {
1142         BackendDB *be, db;
1143         int rc;
1144         slap_callback *sc;
1145
1146         be = op->o_bd;
1147         db = *be;
1148         op->o_bd = &db;
1149         db.bd_info = op->o_callback->sc_private;
1150         rc = accesslog_response( op, rs );
1151         op->o_bd = be;
1152         sc = op->o_callback;
1153         op->o_callback = sc->sc_next;
1154         op->o_tmpfree( sc, op->o_tmpmemctx );
1155         return rc;
1156 }
1157
1158 static int
1159 accesslog_op_bind( Operation *op, SlapReply *rs )
1160 {
1161         slap_callback *sc;
1162
1163         sc = op->o_tmpcalloc( 1, sizeof(slap_callback), op->o_tmpmemctx );
1164         sc->sc_response = accesslog_bind_resp;
1165         sc->sc_private = op->o_bd->bd_info;
1166
1167         if ( op->o_callback ) {
1168                 sc->sc_next = op->o_callback->sc_next;
1169                 op->o_callback->sc_next = sc;
1170         } else {
1171                 op->o_callback = sc;
1172         }
1173         return SLAP_CB_CONTINUE;
1174 }
1175
1176 static int
1177 accesslog_op_mod( Operation *op, SlapReply *rs )
1178 {
1179         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1180         log_info *li = on->on_bi.bi_private;
1181
1182         if ( li->li_ops & LOG_OP_WRITES ) {
1183                 /* FIXME: this needs to be a recursive mutex to allow
1184                  * overlays like refint to keep working.
1185                  */
1186                 ldap_pvt_thread_mutex_lock( &li->li_op_mutex );
1187                 if ( li->li_filter && ( op->o_tag == LDAP_REQ_DELETE ||
1188                         op->o_tag == LDAP_REQ_MODIFY )) {
1189                         int rc;
1190                         Entry *e;
1191
1192                         op->o_bd->bd_info = on->on_info->oi_orig;
1193                         rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
1194                         if ( e ) {
1195                                 if ( test_filter( op, e, li->li_filter ) == LDAP_COMPARE_TRUE )
1196                                         li->li_old = entry_dup( e );
1197                                 be_entry_release_rw( op, e, 0 );
1198                         }
1199                         op->o_bd->bd_info = (BackendInfo *)on;
1200                 }
1201         }
1202         return SLAP_CB_CONTINUE;
1203 }
1204
1205 /* unbinds are broadcast to all backends; we only log it if this
1206  * backend was used for the original bind.
1207  */
1208 static int
1209 accesslog_unbind( Operation *op, SlapReply *rs )
1210 {
1211         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1212         if ( op->o_conn->c_authz_backend == on->on_info->oi_origdb ) {
1213                 log_info *li = on->on_bi.bi_private;
1214                 Operation op2 = {0};
1215                 void *cids[SLAP_MAX_CIDS];
1216                 SlapReply rs2 = {REP_RESULT};
1217                 Entry *e;
1218
1219                 if ( !( li->li_ops & LOG_OP_UNBIND ))
1220                         return SLAP_CB_CONTINUE;
1221
1222                 e = accesslog_entry( op, LOG_EN_UNBIND, &op2 );
1223                 op2.o_hdr = op->o_hdr;
1224                 op2.o_tag = LDAP_REQ_ADD;
1225                 op2.o_bd = li->li_db;
1226                 op2.o_dn = li->li_db->be_rootdn;
1227                 op2.o_ndn = li->li_db->be_rootndn;
1228                 op2.o_req_dn = e->e_name;
1229                 op2.o_req_ndn = e->e_nname;
1230                 op2.ora_e = e;
1231                 op2.o_callback = &nullsc;
1232                 op2.o_controls = cids;
1233                 memset(cids, 0, sizeof( cids ));
1234
1235                 op2.o_bd->be_add( &op2, &rs2 );
1236                 entry_free( e );
1237         }
1238         return SLAP_CB_CONTINUE;
1239 }
1240
1241 static int
1242 accesslog_abandon( Operation *op, SlapReply *rs )
1243 {
1244         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
1245         log_info *li = on->on_bi.bi_private;
1246         Operation op2 = {0};
1247         void *cids[SLAP_MAX_CIDS];
1248         SlapReply rs2 = {REP_RESULT};
1249         Entry *e;
1250         char buf[64];
1251         struct berval bv;
1252
1253         if ( !op->o_time || !( li->li_ops & LOG_OP_ABANDON ))
1254                 return SLAP_CB_CONTINUE;
1255
1256         e = accesslog_entry( op, LOG_EN_ABANDON, &op2 );
1257         bv.bv_val = buf;
1258         bv.bv_len = sprintf( buf, "%d", op->orn_msgid );
1259         attr_merge_one( e, ad_reqId, &bv, NULL );
1260
1261         op2.o_hdr = op->o_hdr;
1262         op2.o_tag = LDAP_REQ_ADD;
1263         op2.o_bd = li->li_db;
1264         op2.o_dn = li->li_db->be_rootdn;
1265         op2.o_ndn = li->li_db->be_rootndn;
1266         op2.o_req_dn = e->e_name;
1267         op2.o_req_ndn = e->e_nname;
1268         op2.ora_e = e;
1269         op2.o_callback = &nullsc;
1270         op2.o_controls = cids;
1271         memset(cids, 0, sizeof( cids ));
1272
1273         op2.o_bd->be_add( &op2, &rs2 );
1274         entry_free( e );
1275
1276         return SLAP_CB_CONTINUE;
1277 }
1278
1279 static slap_overinst accesslog;
1280
1281 static int
1282 accesslog_db_init(
1283         BackendDB *be
1284 )
1285 {
1286         slap_overinst *on = (slap_overinst *)be->bd_info;
1287         log_info *li = ch_calloc(1, sizeof(log_info));
1288
1289         on->on_bi.bi_private = li;
1290         ldap_pvt_thread_mutex_init( &li->li_op_mutex );
1291         ldap_pvt_thread_mutex_init( &li->li_log_mutex );
1292         return 0;
1293 }
1294
1295 static int
1296 accesslog_db_destroy(
1297         BackendDB *be
1298 )
1299 {
1300         slap_overinst *on = (slap_overinst *)be->bd_info;
1301         log_info *li = on->on_bi.bi_private;
1302
1303         ldap_pvt_thread_mutex_destroy( &li->li_log_mutex );
1304         ldap_pvt_thread_mutex_destroy( &li->li_op_mutex );
1305         free( li );
1306         return LDAP_SUCCESS;
1307 }
1308
1309 static int
1310 accesslog_db_open(
1311         BackendDB *be
1312 )
1313 {
1314         slap_overinst *on = (slap_overinst *)be->bd_info;
1315         log_info *li = on->on_bi.bi_private;
1316
1317         Connection conn;
1318         OperationBuffer opbuf;
1319         Operation *op = (Operation *) &opbuf;
1320         Entry *e;
1321         int rc;
1322         void *thrctx;
1323
1324         if ( slapMode & SLAP_TOOL_MODE )
1325                 return 0;
1326
1327         thrctx = ldap_pvt_thread_pool_context();
1328         connection_fake_init( &conn, op, thrctx );
1329         op->o_bd = li->li_db;
1330         op->o_dn = li->li_db->be_rootdn;
1331         op->o_ndn = li->li_db->be_rootndn;
1332
1333         rc = be_entry_get_rw( op, li->li_db->be_nsuffix, NULL, NULL, 0, &e );
1334
1335         if ( e ) {
1336                 be_entry_release_rw( op, e, 0 );
1337         } else {
1338                 SlapReply rs = {REP_RESULT};
1339                 struct berval rdn, nrdn, attr;
1340                 char *ptr;
1341                 AttributeDescription *ad = NULL;
1342                 const char *text = NULL;
1343                 Entry *e_ctx;
1344
1345                 e = ch_calloc( 1, sizeof( Entry ));
1346                 e->e_name = *li->li_db->be_suffix;
1347                 e->e_nname = *li->li_db->be_nsuffix;
1348
1349                 attr_merge_one( e, slap_schema.si_ad_objectClass,
1350                         &log_container->soc_cname, NULL );
1351
1352                 dnRdn( &e->e_name, &rdn );
1353                 dnRdn( &e->e_nname, &nrdn );
1354                 ptr = ber_bvchr( &rdn, '=' );
1355
1356                 assert( ptr != NULL );
1357
1358                 attr.bv_val = rdn.bv_val;
1359                 attr.bv_len = ptr - rdn.bv_val;
1360
1361                 slap_bv2ad( &attr, &ad, &text );
1362
1363                 rdn.bv_val = ptr+1;
1364                 rdn.bv_len -= attr.bv_len + 1;
1365                 ptr = ber_bvchr( &nrdn, '=' );
1366                 nrdn.bv_len -= ptr - nrdn.bv_val + 1;
1367                 nrdn.bv_val = ptr+1;
1368                 attr_merge_one( e, ad, &rdn, &nrdn );
1369
1370                 /* Get contextCSN from main DB */
1371                 op->o_bd = be;
1372                 op->o_bd->bd_info = on->on_info->oi_orig;
1373                 rc = be_entry_get_rw( op, be->be_nsuffix, NULL,
1374                         slap_schema.si_ad_contextCSN, 0, &e_ctx );
1375
1376                 if ( e_ctx ) {
1377                         Attribute *a;
1378
1379                         a = attr_find( e_ctx->e_attrs, slap_schema.si_ad_contextCSN );
1380                         if ( a ) {
1381                                 attr_merge( e, slap_schema.si_ad_entryCSN, a->a_vals, NULL );
1382                                 attr_merge( e, a->a_desc, a->a_vals, NULL );
1383                         }
1384                         be_entry_release_rw( op, e_ctx, 0 );
1385                 }
1386                 op->o_bd->bd_info = (BackendInfo *)on;
1387                 op->o_bd = li->li_db;
1388
1389                 op->ora_e = e;
1390                 op->o_req_dn = e->e_name;
1391                 op->o_req_ndn = e->e_nname;
1392                 op->o_callback = &nullsc;
1393                 SLAP_DBFLAGS( op->o_bd ) |= SLAP_DBFLAG_NOLASTMOD;
1394                 rc = op->o_bd->be_add( op, &rs );
1395                 SLAP_DBFLAGS( op->o_bd ) ^= SLAP_DBFLAG_NOLASTMOD;
1396                 attrs_free( e->e_attrs );
1397                 ch_free( e );
1398         }
1399         ldap_pvt_thread_pool_context_reset( thrctx );
1400         return rc;
1401 }
1402
1403 int accesslog_initialize()
1404 {
1405         int i, rc;
1406
1407         accesslog.on_bi.bi_type = "accesslog";
1408         accesslog.on_bi.bi_db_init = accesslog_db_init;
1409         accesslog.on_bi.bi_db_destroy = accesslog_db_destroy;
1410         accesslog.on_bi.bi_db_open = accesslog_db_open;
1411
1412         accesslog.on_bi.bi_op_add = accesslog_op_mod;
1413         accesslog.on_bi.bi_op_bind = accesslog_op_bind;
1414         accesslog.on_bi.bi_op_delete = accesslog_op_mod;
1415         accesslog.on_bi.bi_op_modify = accesslog_op_mod;
1416         accesslog.on_bi.bi_op_modrdn = accesslog_op_mod;
1417         accesslog.on_bi.bi_op_unbind = accesslog_unbind;
1418         accesslog.on_bi.bi_op_abandon = accesslog_abandon;
1419         accesslog.on_response = accesslog_response;
1420
1421         accesslog.on_bi.bi_cf_ocs = log_cfocs;
1422
1423         nullsc.sc_response = slap_null_cb;
1424
1425         rc = config_register_schema( log_cfats, log_cfocs );
1426         if ( rc ) return rc;
1427
1428         /* log schema integration */
1429         for ( i=0; lattrs[i].at; i++ ) {
1430                 LDAPAttributeType *lat;
1431                 AttributeType *at;
1432                 int code;
1433                 const char *err;
1434
1435                 lat = ldap_str2attributetype( lattrs[i].at, &code, &err,
1436                         LDAP_SCHEMA_ALLOW_ALL );
1437                 if ( !lat ) {
1438                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1439                                 "ldap_str2attributetype failed on %d: %s, %s\n",
1440                                 i, ldap_scherr2str(code), err );
1441                         return -1;
1442                 }
1443                 code = at_add( lat, 0, &at, &err );
1444                 ldap_memfree( lat );
1445                 if ( code ) {
1446                         Debug( LDAP_DEBUG_ANY, "log_back_initialize: "
1447                                 "at_add failed on %d: %s\n",
1448                                 i, scherr2str(code), 0 );
1449                         return -1;
1450                 }
1451                 if ( slap_bv2ad( &at->sat_cname, lattrs[i].ad, &err )) {
1452                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1453                                 "slap_bv2ad failed on %d: %s\n",
1454                                 i, err, 0 );
1455                         return -1;
1456                 }
1457         }
1458         for ( i=0; locs[i].ot; i++ ) {
1459                 LDAPObjectClass *loc;
1460                 ObjectClass *oc;
1461                 int code;
1462                 const char *err;
1463
1464                 loc = ldap_str2objectclass( locs[i].ot, &code, &err,
1465                         LDAP_SCHEMA_ALLOW_ALL );
1466                 if ( !loc ) {
1467                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1468                                 "ldap_str2objectclass failed on %d: %s, %s\n",
1469                                 i, ldap_scherr2str(code), err );
1470                         return -1;
1471                 }
1472                 
1473                 code = oc_add( loc, 0, &oc, &err );
1474                 ldap_memfree( loc );
1475                 if ( code ) {
1476                         Debug( LDAP_DEBUG_ANY, "accesslog_init: "
1477                                 "oc_add failed on %d: %s\n",
1478                                 i, scherr2str(code), 0 );
1479                         return -1;
1480                 }
1481                 if ( locs[i].oc )
1482                         *locs[i].oc = oc;
1483         }
1484
1485         return overlay_register(&accesslog);
1486 }
1487
1488 #if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_DYNAMIC
1489 int
1490 init_module( int argc, char *argv[] )
1491 {
1492         return accesslog_initialize();
1493 }
1494 #endif
1495
1496 #endif /* SLAPD_OVER_ACCESSLOG */