]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/refint.c
312d40eb5f0a809e5f0c1fe8f0f58a90b9e3714c
[openldap] / servers / slapd / overlays / refint.c
1 /* refint.c - referential integrity module */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2004-2007 The OpenLDAP Foundation.
6  * Portions Copyright 2004 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 Symas Corp. for inclusion in
19  * OpenLDAP Software.  This work was sponsored by Hewlett-Packard.
20  */
21
22 #include "portable.h"
23
24 /* This module maintains referential integrity for a set of
25  * DN-valued attributes by searching for all references to a given
26  * DN whenever the DN is changed or its entry is deleted, and making
27  * the appropriate update.
28  *
29  * Updates are performed using the database rootdn, but the ModifiersName
30  * is always set to refint_dn.
31  */
32
33 #ifdef SLAPD_OVER_REFINT
34
35 #include <stdio.h>
36
37 #include <ac/string.h>
38 #include <ac/socket.h>
39
40 #include "slap.h"
41
42 static slap_overinst refint;
43
44 /* The DN to use in the ModifiersName for all refint updates */
45 static BerValue refint_dn = BER_BVC("cn=Referential Integrity Overlay");
46
47 typedef struct refint_attrs_s {
48         struct refint_attrs_s *next;
49         AttributeDescription *attr;
50 } refint_attrs;
51
52 typedef struct dependents_s {
53         struct dependents_s *next;
54         BerValue dn;                            /* target dn */
55         Modifications *mm;
56 } dependent_data;
57
58 typedef struct refint_data_s {
59         const char *message;                    /* breadcrumbs */
60         struct refint_attrs_s *attrs;   /* list of known attrs */
61         struct dependents_s *mods;              /* modifications returned from callback */
62         BerValue dn;                            /* basedn in parent, searchdn in call */
63         BerValue newdn;                         /* replacement value for modrdn callback */
64         BerValue nnewdn;                        /* normalized replacement value */
65         BerValue nothing;                       /* the nothing value, if needed */
66         BerValue nnothing;                      /* normalized nothingness */
67 } refint_data;
68
69 /*
70 ** allocate new refint_data;
71 ** initialize, copy basedn;
72 ** store in on_bi.bi_private;
73 **
74 */
75
76 static int
77 refint_db_init(
78         BackendDB       *be
79 )
80 {
81         slap_overinst *on = (slap_overinst *)be->bd_info;
82         refint_data *id = ch_malloc(sizeof(refint_data));
83
84         id->message = "_init";
85         id->attrs = NULL;
86         id->newdn.bv_val = NULL;
87         id->nothing.bv_val = NULL;
88         id->nnothing.bv_val = NULL;
89         ber_dupbv( &id->dn, &be->be_nsuffix[0] );
90         on->on_bi.bi_private = id;
91         return(0);
92 }
93
94
95 /*
96 ** if command = attributes:
97 **      foreach argument:
98 **              convert to attribute;
99 **              add to configured attribute list;
100 ** elseif command = basedn:
101 **      set our basedn to argument;
102 **
103 */
104
105 static int
106 refint_config(
107         BackendDB       *be,
108         const char      *fname,
109         int             lineno,
110         int             argc,
111         char            **argv
112 )
113 {
114         slap_overinst *on       = (slap_overinst *) be->bd_info;
115         refint_data *id = on->on_bi.bi_private;
116         refint_attrs *ip;
117         const char *text;
118         AttributeDescription *ad;
119         BerValue dn;
120         int i;
121
122         if(!strcasecmp(*argv, "refint_attributes")) {
123                 for(i = 1; i < argc; i++) {
124                         for(ip = id->attrs; ip; ip = ip->next)
125                             if(!strcmp(argv[i], ip->attr->ad_cname.bv_val)) {
126                                 Debug(LDAP_DEBUG_ANY,
127                                         "%s: line %d: duplicate attribute <s>, ignored\n",
128                                         fname, lineno, argv[i]);
129                                 continue;
130                         }
131                         ad = NULL;
132                         if(slap_str2ad(argv[i], &ad, &text) != LDAP_SUCCESS) {
133                                 Debug(LDAP_DEBUG_ANY,
134                                         "%s: line %d: bad attribute <%s>, ignored\n",
135                                         fname, lineno, text);
136                                 continue;               /* XXX */
137                         } else if(ad->ad_next) {
138                                 Debug(LDAP_DEBUG_ANY,
139                                         "%s: line %d: multiple attributes match <%s>, ignored\n",
140                                         fname, lineno, argv[i]);
141                                 continue;
142                         }
143                         ip = ch_malloc(sizeof(refint_attrs));
144                         ip->attr = ad;
145                         ip->next = id->attrs;
146                         id->attrs = ip;
147                         Debug(LDAP_DEBUG_CONFIG, "%s: line %d: new attribute <%s>\n",
148                                 fname, lineno, argv[i]);
149                 }
150         } else if(!strcasecmp(*argv, "refint_base")) {
151                 /* XXX only one basedn (yet) - need validate argument! */
152                 if(id->dn.bv_val) ch_free(id->dn.bv_val);
153                 ber_str2bv( argv[1], 0, 0, &dn );
154                 if(dnNormalize(0, NULL, NULL, &dn, &id->dn, NULL)) {
155                         Debug(LDAP_DEBUG_ANY, "%s: line %d: bad baseDN!\n", fname, lineno, 0);
156                         return(1);
157                 }
158                 Debug(LDAP_DEBUG_CONFIG, "%s: line %d: new baseDN <%s>\n",
159                         fname, lineno, argv[1]);
160         } else if(!strcasecmp(*argv, "refint_nothing")) {
161                 if(id->nothing.bv_val) ch_free(id->nothing.bv_val);
162                 if(id->nnothing.bv_val) ch_free(id->nnothing.bv_val);
163                 ber_str2bv( argv[1], 0, 1, &id->nothing );
164                 if(dnNormalize(0, NULL, NULL, &id->nothing, &id->nnothing, NULL)) {
165                         Debug(LDAP_DEBUG_ANY, "%s: line %d: bad nothingDN!\n", fname, lineno, 0);
166                         return(1);
167                 }
168                 Debug(LDAP_DEBUG_CONFIG, "%s: line %d: new nothingDN<%s>\n",
169                         fname, lineno, argv[1]);
170         } else {
171                 return(SLAP_CONF_UNKNOWN);
172         }
173
174         id->message = "_config";
175         return(0);
176 }
177
178
179 /*
180 ** nothing really happens here;
181 **
182 */
183
184 static int
185 refint_open(
186         BackendDB *be
187 )
188 {
189         slap_overinst *on       = (slap_overinst *)be->bd_info;
190         refint_data *id = on->on_bi.bi_private;
191         id->message             = "_open";
192         return(0);
193 }
194
195
196 /*
197 ** foreach configured attribute:
198 **      free it;
199 ** free our basedn;
200 ** (do not) free id->message;
201 ** reset on_bi.bi_private;
202 ** free our config data;
203 **
204 */
205
206 static int
207 refint_close(
208         BackendDB *be
209 )
210 {
211         slap_overinst *on       = (slap_overinst *) be->bd_info;
212         refint_data *id = on->on_bi.bi_private;
213         refint_attrs *ii, *ij;
214         id->message             = "_close";
215
216         for(ii = id->attrs; ii; ii = ij) {
217                 ij = ii->next;
218                 ch_free(ii);
219         }
220
221         ch_free(id->dn.bv_val);
222         ch_free(id->nothing.bv_val);
223         ch_free(id->nnothing.bv_val);
224
225         on->on_bi.bi_private = NULL;    /* XXX */
226
227         ch_free(id);
228
229         return(0);
230 }
231
232 /*
233 ** delete callback
234 ** generates a list of Modification* from search results
235 */
236
237 static int
238 refint_delete_cb(
239         Operation *op,
240         SlapReply *rs
241 )
242 {
243         Attribute *a;
244         BerVarray b = NULL;
245         refint_data *dd = op->o_callback->sc_private;
246         refint_attrs *ia, *da = dd->attrs;
247         dependent_data *ip;
248         Modifications *mp, *ma;
249         int i;
250
251         Debug(LDAP_DEBUG_TRACE, "refint_delete_cb <%s>\n",
252                 rs->sr_entry ? rs->sr_entry->e_name.bv_val : "NOTHING", 0, 0);
253
254         if (rs->sr_type != REP_SEARCH || !rs->sr_entry) return(0);
255         dd->message = "_delete_cb";
256
257         /*
258         ** foreach configured attribute type:
259         **      if this attr exists in the search result,
260         **      and it has a value matching the target:
261         **              allocate a Modification;
262         **              allocate its array of 2 BerValues;
263         **              if only one value, and we have a configured Nothing:
264         **                      allocate additional Modification
265         **                      type = MOD_ADD
266         **                      BerValues[] = { Nothing, NULL };
267         **                      add to list
268         **              type = MOD_DELETE
269         **              BerValues[] = { our target dn, NULL };
270         **      add this mod to the list of mods;
271         **
272         */
273
274         ip = ch_malloc(sizeof(dependent_data));
275         ip->dn.bv_val = NULL;
276         ip->next = NULL;
277         ip->mm = NULL;
278         ma = NULL;
279         for(ia = da; ia; ia = ia->next) {
280             if ( (a = attr_find(rs->sr_entry->e_attrs, ia->attr) ) )
281                 for(i = 0, b = a->a_nvals; b[i].bv_val; i++)
282                     if(bvmatch(&dd->dn, &b[i])) {
283                         if(!ip->dn.bv_val) ber_dupbv(&ip->dn, &rs->sr_entry->e_nname);
284                         if(!b[1].bv_val && dd->nothing.bv_val) {
285                                 mp = ch_malloc(sizeof(Modifications));
286                                 mp->sml_desc = ia->attr;                /* XXX */
287                                 mp->sml_type = a->a_desc->ad_cname;
288                                 mp->sml_values  = ch_malloc(2 * sizeof(BerValue));
289                                 mp->sml_nvalues = ch_malloc(2 * sizeof(BerValue));
290                                 mp->sml_values[1].bv_len = mp->sml_nvalues[1].bv_len = 0;
291                                 mp->sml_values[1].bv_val = mp->sml_nvalues[1].bv_val = NULL;
292
293                                 mp->sml_op = LDAP_MOD_ADD;
294                                 mp->sml_flags = 0;
295                                 ber_dupbv(&mp->sml_values[0],  &dd->nothing);
296                                 ber_dupbv(&mp->sml_nvalues[0], &dd->nnothing);
297                                 mp->sml_next = ma;
298                                 ma = mp;
299                         }
300                         /* this might violate the object class */
301                         mp = ch_malloc(sizeof(Modifications));
302                         mp->sml_desc = ia->attr;                /* XXX */
303                         mp->sml_type = a->a_desc->ad_cname;
304                         mp->sml_values  = ch_malloc(2 * sizeof(BerValue));
305                         mp->sml_nvalues = ch_malloc(2 * sizeof(BerValue));
306                         mp->sml_values[1].bv_len = mp->sml_nvalues[1].bv_len = 0;
307                         mp->sml_values[1].bv_val = mp->sml_nvalues[1].bv_val = NULL;
308                         mp->sml_op = LDAP_MOD_DELETE;
309                         mp->sml_flags = 0;
310                         ber_dupbv(&mp->sml_values[0], &dd->dn);
311                         ber_dupbv(&mp->sml_nvalues[0], &mp->sml_values[0]);
312                         mp->sml_next = ma;
313                         ma = mp;
314                         Debug(LDAP_DEBUG_TRACE, "refint_delete_cb: %s: %s\n",
315                                 a->a_desc->ad_cname.bv_val, dd->dn.bv_val, 0);
316                         break;
317             }
318         }
319         ip->mm = ma;
320         ip->next = dd->mods;
321         dd->mods = ip;
322
323         return(0);
324 }
325
326 /*
327 ** null callback
328 ** does nothing
329 */
330
331 static int
332 refint_null_cb(
333         Operation *op,
334         SlapReply *rs
335 )
336 {
337         ((refint_data *)op->o_callback->sc_private)->message = "_null_cb";
338         return(LDAP_SUCCESS);
339 }
340
341 /*
342 ** modrdn callback
343 ** generates a list of Modification* from search results
344 */
345
346 static int
347 refint_modrdn_cb(
348         Operation *op,
349         SlapReply *rs
350 )
351 {
352         Attribute *a;
353         BerVarray b = NULL;
354         refint_data *dd = op->o_callback->sc_private;
355         refint_attrs *ia, *da = dd->attrs;
356         dependent_data *ip = NULL;
357         Modifications *mp;
358         int i, fix;
359
360         Debug(LDAP_DEBUG_TRACE, "refint_modrdn_cb <%s>\n",
361                 rs->sr_entry ? rs->sr_entry->e_name.bv_val : "NOTHING", 0, 0);
362
363         if (rs->sr_type != REP_SEARCH || !rs->sr_entry) return(0);
364         dd->message = "_modrdn_cb";
365
366         /*
367         ** foreach configured attribute type:
368         **   if this attr exists in the search result,
369         **   and it has a value matching the target:
370         **      allocate a pair of Modifications;
371         **      make it MOD_ADD the new value and MOD_DELETE the old;
372         **      allocate its array of BerValues;
373         **      foreach value in the search result:
374         **         if it matches our target value, replace it;
375         **         otherwise, copy from the search result;
376         **      terminate the array of BerValues;
377         **   add these mods to the list of mods;
378         **
379         */
380
381         for(ia = da; ia; ia = ia->next) {
382             if((a = attr_find(rs->sr_entry->e_attrs, ia->attr))) {
383                     for(fix = 0, i = 0, b = a->a_nvals; b[i].bv_val; i++)
384                         if(bvmatch(&dd->dn, &b[i])) { fix++; break; }
385                     if(fix) {
386                         if (!ip) {
387                             ip = ch_malloc(sizeof(dependent_data));
388                             ip->next = NULL;
389                             ip->mm = NULL;
390                             ber_dupbv(&ip->dn, &rs->sr_entry->e_nname);
391                         }
392                         mp = ch_malloc(sizeof(Modifications));
393                         mp->sml_op = LDAP_MOD_ADD;
394                         mp->sml_flags = 0;
395                         mp->sml_desc = ia->attr;                /* XXX */
396                         mp->sml_type = ia->attr->ad_cname;
397                         mp->sml_values  = ch_malloc(2 * sizeof(BerValue));
398                         mp->sml_nvalues = ch_malloc(2 * sizeof(BerValue));
399                         ber_dupbv(&mp->sml_values[0], &dd->newdn);
400                         ber_dupbv(&mp->sml_nvalues[0], &dd->nnewdn);
401                         mp->sml_values[1].bv_len = mp->sml_nvalues[1].bv_len = 0;
402                         mp->sml_values[1].bv_val = mp->sml_nvalues[1].bv_val = NULL;
403                         mp->sml_next = ip->mm;
404                         ip->mm = mp;
405                         mp = ch_malloc(sizeof(Modifications));
406                         mp->sml_op = LDAP_MOD_DELETE;
407                         mp->sml_flags = 0;
408                         mp->sml_desc = ia->attr;                /* XXX */
409                         mp->sml_type = ia->attr->ad_cname;
410                         mp->sml_values  = ch_malloc(2 * sizeof(BerValue));
411                         mp->sml_nvalues = ch_malloc(2 * sizeof(BerValue));
412                         ber_dupbv(&mp->sml_values[0], &dd->dn);
413                         ber_dupbv(&mp->sml_nvalues[0], &dd->dn);
414                         mp->sml_values[1].bv_len = mp->sml_nvalues[1].bv_len = 0;
415                         mp->sml_values[1].bv_val = mp->sml_nvalues[1].bv_val = NULL;
416                         mp->sml_next = ip->mm;
417                         ip->mm = mp;
418                         Debug(LDAP_DEBUG_TRACE, "refint_modrdn_cb: %s: %s\n",
419                                 a->a_desc->ad_cname.bv_val, dd->dn.bv_val, 0);
420                 }
421             }
422         }
423         if (ip) {
424                 ip->next = dd->mods;
425                 dd->mods = ip;
426         }
427
428         return(0);
429 }
430
431
432 /*
433 ** refint_response
434 ** search for matching records and modify them
435 */
436
437 static int
438 refint_response(
439         Operation *op,
440         SlapReply *rs
441 )
442 {
443         Operation nop = *op;
444         SlapReply nrs = { REP_RESULT };
445         slap_callback cb = { NULL, NULL, NULL, NULL };
446         slap_callback cb2 = { NULL, slap_replog_cb, NULL, NULL };
447         slap_callback *cbo, *cbp;
448         slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
449         refint_data *id = on->on_bi.bi_private;
450         refint_data dd = *id;
451         refint_attrs *ip;
452         dependent_data *dp;
453         BerValue pdn;
454         int rc, ac;
455         Filter ftop, *fptr;
456
457         id->message = "_refint_response";
458
459         /* If the main op failed or is not a Delete or ModRdn, ignore it */
460         if (( op->o_tag != LDAP_REQ_DELETE && op->o_tag != LDAP_REQ_MODRDN ) ||
461                 rs->sr_err != LDAP_SUCCESS )
462                 return SLAP_CB_CONTINUE;
463
464         /*
465         ** validate (and count) the list of attrs;
466         **
467         */
468
469         for(ip = id->attrs, ac = 0; ip; ip = ip->next, ac++);
470         if(!ac) {
471                 Debug( LDAP_DEBUG_TRACE,
472                         "refint_response called without any attributes\n", 0, 0, 0 );
473                 return SLAP_CB_CONTINUE;
474         }
475
476         /*
477         ** find the backend that matches our configured basedn;
478         ** make sure it exists and has search and modify methods;
479         **
480         */
481
482         nop.o_bd = select_backend(&id->dn, 0, 1);
483
484         if(nop.o_bd) {
485                 if (!nop.o_bd->be_search || !nop.o_bd->be_modify) {
486                         Debug( LDAP_DEBUG_TRACE,
487                                 "refint_response: backend missing search and/or modify\n",
488                                 0, 0, 0 );
489                         return SLAP_CB_CONTINUE;
490                 }
491         } else {
492                 Debug( LDAP_DEBUG_TRACE,
493                         "refint_response: no backend for our baseDN %s??\n",
494                         id->dn.bv_val, 0, 0 );
495                 return SLAP_CB_CONTINUE;
496         }
497
498         cb2.sc_next = &cb;
499
500         /*
501         ** if delete: set delete callback;
502         ** else modrdn: create a newdn, set modify callback;
503         **
504         */
505
506         if(op->o_tag == LDAP_REQ_DELETE) {
507                 cb.sc_response = &refint_delete_cb;
508                 dd.newdn.bv_val = NULL;
509                 dd.nnewdn.bv_val = NULL;
510         } else {
511                 cb.sc_response = &refint_modrdn_cb;
512                 if ( op->oq_modrdn.rs_newSup ) {
513                         pdn = *op->oq_modrdn.rs_newSup;
514                 } else {
515                         dnParent( &op->o_req_dn, &pdn );
516                 }
517                 build_new_dn( &dd.newdn, &pdn, &op->orr_newrdn, NULL );
518                 if ( op->oq_modrdn.rs_nnewSup ) {
519                         pdn = *op->oq_modrdn.rs_nnewSup;
520                 } else {
521                         dnParent( &op->o_req_ndn, &pdn );
522                 }
523                 build_new_dn( &dd.nnewdn, &pdn, &op->orr_nnewrdn, NULL );
524         }
525
526         /*
527         ** build a search filter for all configured attributes;
528         ** populate our Operation;
529         ** pass our data (attr list, dn) to backend via sc_private;
530         ** call the backend search function;
531         ** nb: (|(one=thing)) is valid, but do smart formatting anyway;
532         ** nb: 16 is arbitrarily a dozen or so extra bytes;
533         **
534         */
535
536         ftop.f_choice = LDAP_FILTER_OR;
537         ftop.f_next = NULL;
538         ftop.f_or = NULL;
539         nop.ors_filter = &ftop;
540         for(ip = id->attrs; ip; ip = ip->next) {
541                 fptr = ch_malloc( sizeof(Filter) + sizeof(AttributeAssertion) );
542                 fptr->f_choice = LDAP_FILTER_EQUALITY;
543                 fptr->f_ava = (AttributeAssertion *)(fptr+1);
544                 fptr->f_ava->aa_desc = ip->attr;
545                 fptr->f_ava->aa_value = op->o_req_ndn;
546                 fptr->f_next = ftop.f_or;
547                 ftop.f_or = fptr;
548         }
549         filter2bv( nop.ors_filter, &nop.ors_filterstr );
550
551         /* callback gets the searched dn instead */
552         dd.dn = op->o_req_ndn;
553         dd.message      = "_dependent_search";
554         dd.mods         = NULL;
555         cb.sc_private   = &dd;
556         nop.o_callback  = &cb;
557         nop.o_tag       = LDAP_REQ_SEARCH;
558         nop.ors_scope   = LDAP_SCOPE_SUBTREE;
559         nop.ors_deref   = LDAP_DEREF_NEVER;
560         nop.ors_limit   = NULL;
561         nop.ors_slimit  = SLAP_NO_LIMIT;
562         nop.ors_tlimit  = SLAP_NO_LIMIT;
563
564         /* no attrs! */
565         nop.ors_attrs = slap_anlist_no_attrs;
566         nop.ors_attrsonly = 1;
567
568         nop.o_req_ndn = id->dn;
569         nop.o_req_dn = id->dn;
570
571         /* search */
572         rc = nop.o_bd->be_search(&nop, &nrs);
573
574         ch_free( nop.ors_filterstr.bv_val );
575         while ( (fptr = ftop.f_or) != NULL ) {
576                 ftop.f_or = fptr->f_next;
577                 ch_free( fptr );
578         }
579         ch_free(dd.nnewdn.bv_val);
580         ch_free(dd.newdn.bv_val);
581         dd.newdn.bv_val = NULL;
582         dd.nnewdn.bv_val = NULL;
583
584         if(rc != LDAP_SUCCESS) {
585                 Debug( LDAP_DEBUG_TRACE,
586                         "refint_response: search failed: %d\n",
587                         rc, 0, 0 );
588                 goto done;
589         }
590
591         /* safety? paranoid just in case */
592         if(!cb.sc_private) {
593                 Debug( LDAP_DEBUG_TRACE,
594                         "refint_response: callback wiped out sc_private?!\n",
595                         0, 0, 0 );
596                 goto done;
597         }
598
599         /* presto! now it's a modify request with null callback */
600         cb.sc_response  = &refint_null_cb;
601         nop.o_tag       = LDAP_REQ_MODIFY;
602         dd.message      = "_dependent_modify";
603
604         /* See if the parent operation is going into the replog */
605         for (cbo=op->o_callback, cbp = cbo->sc_next; cbp; cbo=cbp,cbp=cbp->sc_next) {
606                 if (cbp->sc_response == slap_replog_cb) {
607                         /* Invoke replog now, arrange for our
608                          * dependent mods to also be logged
609                          */
610                         cbo->sc_next = cbp->sc_next;
611                         replog( op );
612                         nop.o_callback = &cb2;
613                         break;
614                 }
615         }
616
617         /*
618         ** [our search callback builds a list of mods]
619         ** foreach mod:
620         **      make sure its dn has a backend;
621         **      connect Modification* chain to our op;
622         **      call the backend modify function;
623         **      pass any errors upstream;
624         **
625         */
626
627         for(dp = dd.mods; dp; dp = dp->next) {
628                 nop.o_req_dn    = dp->dn;
629                 nop.o_req_ndn   = dp->dn;
630                 nop.o_bd = select_backend(&dp->dn, 0, 1);
631                 if(!nop.o_bd) {
632                         Debug( LDAP_DEBUG_TRACE,
633                                 "refint_response: no backend for DN %s!\n",
634                                 dp->dn.bv_val, 0, 0 );
635                         goto done;
636                 }
637                 nrs.sr_type     = REP_RESULT;
638                 nop.orm_modlist = dp->mm;       /* callback did all the work */
639                 nop.o_dn = refint_dn;
640                 nop.o_ndn = refint_dn;
641                 nop.o_dn = nop.o_bd->be_rootdn;
642                 nop.o_ndn = nop.o_bd->be_rootndn;
643                 if(rs->sr_err != LDAP_SUCCESS) goto done;
644                 if((rc = nop.o_bd->be_modify(&nop, &nrs)) != LDAP_SUCCESS) {
645                         Debug( LDAP_DEBUG_TRACE,
646                                 "refint_response: dependent modify failed: %d\n",
647                                 nrs.sr_err, 0, 0 );
648                         goto done;
649                 }
650         }
651
652 done:
653         for(dp = dd.mods; dp; dp = dd.mods) {
654                 dd.mods = dp->next;
655                 ch_free(dp->dn.bv_val);
656                 slap_mods_free(dp->mm, 1);
657         }
658         dd.mods = NULL;
659
660         return(SLAP_CB_CONTINUE);
661 }
662
663 /*
664 ** init_module is last so the symbols resolve "for free" --
665 ** it expects to be called automagically during dynamic module initialization
666 */
667
668 int refint_initialize() {
669
670         /* statically declared just after the #includes at top */
671         refint.on_bi.bi_type = "refint";
672         refint.on_bi.bi_db_init = refint_db_init;
673         refint.on_bi.bi_db_config = refint_config;
674         refint.on_bi.bi_db_open = refint_open;
675         refint.on_bi.bi_db_close = refint_close;
676         refint.on_response = refint_response;
677
678         return(overlay_register(&refint));
679 }
680
681 #if SLAPD_OVER_REFINT == SLAPD_MOD_DYNAMIC && defined(PIC)
682 int init_module(int argc, char *argv[]) {
683         return refint_initialize();
684 }
685 #endif
686
687 #endif /* SLAPD_OVER_REFINT */