]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/refint.c
5333da6062dd99fc596263eaf057d86319a6d756
[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-2005 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_ANY, "%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                 Debug(LDAP_DEBUG_ANY, "%s: line %d: new baseDN <%s>\n",
155                         fname, lineno, argv[1]);
156                 if(dnNormalize(0, NULL, NULL, &dn, &id->dn, NULL)) {
157                         Debug(LDAP_DEBUG_ANY, "%s: line %d: bad baseDN!\n", fname, lineno, 0);
158                         return(1);
159                 }
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_ANY, "%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                 rs->sr_err = LDAP_OTHER;
472                 rs->sr_text = "refint_response called without any attributes";
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                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
487                         rs->sr_text = "backend missing search and/or modify";
488                         return SLAP_CB_CONTINUE;
489                 }
490         } else {
491                 rs->sr_err = LDAP_OTHER;
492                 rs->sr_text = "no known backend? this shouldn't be happening!";
493                 return SLAP_CB_CONTINUE;
494         }
495
496         cb2.sc_next = &cb;
497
498         /*
499         ** if delete: set delete callback;
500         ** else modrdn: create a newdn, set modify callback;
501         **
502         */
503
504         if(op->o_tag == LDAP_REQ_DELETE) {
505                 cb.sc_response = &refint_delete_cb;
506                 dd.newdn.bv_val = NULL;
507                 dd.nnewdn.bv_val = NULL;
508         } else {
509                 cb.sc_response = &refint_modrdn_cb;
510                 if ( op->oq_modrdn.rs_newSup ) {
511                         pdn = *op->oq_modrdn.rs_newSup;
512                 } else {
513                         dnParent( &op->o_req_dn, &pdn );
514                 }
515                 build_new_dn( &dd.newdn, &pdn, &op->orr_newrdn, NULL );
516                 if ( op->oq_modrdn.rs_nnewSup ) {
517                         pdn = *op->oq_modrdn.rs_nnewSup;
518                 } else {
519                         dnParent( &op->o_req_ndn, &pdn );
520                 }
521                 build_new_dn( &dd.nnewdn, &pdn, &op->orr_nnewrdn, NULL );
522         }
523
524         /*
525         ** build a search filter for all configured attributes;
526         ** populate our Operation;
527         ** pass our data (attr list, dn) to backend via sc_private;
528         ** call the backend search function;
529         ** nb: (|(one=thing)) is valid, but do smart formatting anyway;
530         ** nb: 16 is arbitrarily a dozen or so extra bytes;
531         **
532         */
533
534         ftop.f_choice = LDAP_FILTER_OR;
535         ftop.f_next = NULL;
536         ftop.f_or = NULL;
537         nop.ors_filter = &ftop;
538         for(ip = id->attrs; ip; ip = ip->next) {
539                 fptr = ch_malloc( sizeof(Filter) + sizeof(AttributeAssertion) );
540                 fptr->f_choice = LDAP_FILTER_EQUALITY;
541                 fptr->f_ava = (AttributeAssertion *)(fptr+1);
542                 fptr->f_ava->aa_desc = ip->attr;
543                 fptr->f_ava->aa_value = op->o_req_ndn;
544                 fptr->f_next = ftop.f_or;
545                 ftop.f_or = fptr;
546         }
547         filter2bv( nop.ors_filter, &nop.ors_filterstr );
548
549         /* callback gets the searched dn instead */
550         dd.dn = op->o_req_ndn;
551         dd.message      = "_dependent_search";
552         dd.mods         = NULL;
553         cb.sc_private   = &dd;
554         nop.o_callback  = &cb;
555         nop.o_tag       = LDAP_REQ_SEARCH;
556         nop.ors_scope   = LDAP_SCOPE_SUBTREE;
557         nop.ors_deref   = LDAP_DEREF_NEVER;
558         nop.ors_limit   = NULL;
559         nop.ors_slimit  = SLAP_NO_LIMIT;
560         nop.ors_tlimit  = SLAP_NO_LIMIT;
561
562         /* no attrs! */
563         nop.ors_attrs = slap_anlist_no_attrs;
564         nop.ors_attrsonly = 1;
565
566         nop.o_req_ndn = id->dn;
567         nop.o_req_dn = id->dn;
568
569         /* search */
570         rc = nop.o_bd->be_search(&nop, &nrs);
571
572         ch_free( nop.ors_filterstr.bv_val );
573         while ( (fptr = ftop.f_or) != NULL ) {
574                 ftop.f_or = fptr->f_next;
575                 ch_free( fptr );
576         }
577         ch_free(dd.nnewdn.bv_val);
578         ch_free(dd.newdn.bv_val);
579         dd.newdn.bv_val = NULL;
580         dd.nnewdn.bv_val = NULL;
581
582         if(rc != LDAP_SUCCESS) {
583                 rs->sr_err = nrs.sr_err;
584                 rs->sr_text = "refint_response search failed";
585                 goto done;
586         }
587
588         /* safety? paranoid just in case */
589         if(!cb.sc_private) {
590                 rs->sr_err = LDAP_OTHER;
591                 rs->sr_text = "whoa! refint_response callback wiped out sc_private?!";
592                 goto done;
593         }
594
595         /* presto! now it's a modify request with null callback */
596         cb.sc_response  = &refint_null_cb;
597         nop.o_tag       = LDAP_REQ_MODIFY;
598         dd.message      = "_dependent_modify";
599
600         /* See if the parent operation is going into the replog */
601         for (cbo=op->o_callback, cbp = cbo->sc_next; cbp; cbo=cbp,cbp=cbp->sc_next) {
602                 if (cbp->sc_response == slap_replog_cb) {
603                         /* Invoke replog now, arrange for our
604                          * dependent mods to also be logged
605                          */
606                         cbo->sc_next = cbp->sc_next;
607                         replog( op );
608                         nop.o_callback = &cb2;
609                         break;
610                 }
611         }
612
613         /*
614         ** [our search callback builds a list of mods]
615         ** foreach mod:
616         **      make sure its dn has a backend;
617         **      connect Modification* chain to our op;
618         **      call the backend modify function;
619         **      pass any errors upstream;
620         **
621         */
622
623         for(dp = dd.mods; dp; dp = dp->next) {
624                 nop.o_req_dn    = dp->dn;
625                 nop.o_req_ndn   = dp->dn;
626                 nop.o_bd = select_backend(&dp->dn, 0, 1);
627                 if(!nop.o_bd) {
628                         rs->sr_err = LDAP_OTHER;
629                         rs->sr_text = "this should never happen either!";
630                         goto done;
631                 }
632                 nrs.sr_type     = REP_RESULT;
633                 nop.orm_modlist = dp->mm;       /* callback did all the work */
634                 nop.o_dn = refint_dn;
635                 nop.o_ndn = refint_dn;
636                 nop.o_dn = nop.o_bd->be_rootdn;
637                 nop.o_ndn = nop.o_bd->be_rootndn;
638                 if(rs->sr_err != LDAP_SUCCESS) goto done;
639                 if((rc = nop.o_bd->be_modify(&nop, &nrs)) != LDAP_SUCCESS) {
640                         rs->sr_err = nrs.sr_err;
641                         rs->sr_text = "dependent modify failed";
642                         goto done;
643                 }
644         }
645
646 done:
647         for(dp = dd.mods; dp; dp = dd.mods) {
648                 dd.mods = dp->next;
649                 ch_free(dp->dn.bv_val);
650                 slap_mods_free(dp->mm, 1);
651         }
652         dd.mods = NULL;
653
654         return(SLAP_CB_CONTINUE);
655 }
656
657 /*
658 ** init_module is last so the symbols resolve "for free" --
659 ** it expects to be called automagically during dynamic module initialization
660 */
661
662 int refint_initialize() {
663
664         /* statically declared just after the #includes at top */
665         refint.on_bi.bi_type = "refint";
666         refint.on_bi.bi_db_init = refint_db_init;
667         refint.on_bi.bi_db_config = refint_config;
668         refint.on_bi.bi_db_open = refint_open;
669         refint.on_bi.bi_db_close = refint_close;
670         refint.on_response = refint_response;
671
672         return(overlay_register(&refint));
673 }
674
675 #if SLAPD_OVER_REFINT == SLAPD_MOD_DYNAMIC && defined(PIC)
676 int init_module(int argc, char *argv[]) {
677         return refint_initialize();
678 }
679 #endif
680
681 #endif /* SLAPD_OVER_REFINT */