]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/memberof.c
ITS#6700
[openldap] / servers / slapd / overlays / memberof.c
1 /* memberof.c - back-reference for group membership */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2005-2007 Pierangelo Masarati <ando@sys-net.it>
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGMENTS:
17  * This work was initially developed by Pierangelo Masarati for inclusion
18  * in OpenLDAP Software, sponsored by SysNet s.r.l.
19  */
20
21 #include "portable.h"
22
23 #ifdef SLAPD_OVER_MEMBEROF
24
25 #include <stdio.h>
26
27 #include "ac/string.h"
28 #include "ac/socket.h"
29
30 #include "slap.h"
31 #include "config.h"
32 #include "lutil.h"
33
34 /*
35  *      Glossary:
36  *
37  *              GROUP           a group object (an entry with GROUP_OC
38  *                              objectClass)
39  *              MEMBER          a member object (an entry whose DN is
40  *                              listed as MEMBER_AT value of a GROUP)
41  *              GROUP_OC        the objectClass of the group object
42  *                              (default: groupOfNames)
43  *              MEMBER_AT       the membership attribute, DN-valued;
44  *                              note: nameAndOptionalUID is tolerated
45  *                              as soon as the optionalUID is absent
46  *                              (default: member)
47  *              MEMBER_OF       reverse membership attribute
48  *                              (default: memberOf)
49  *
50  *      - add:
51  *              - if the entry that is being added is a GROUP,
52  *                the MEMBER_AT defined as values of the add operation
53  *                get the MEMBER_OF value directly from the request.
54  *
55  *                if configured to do so, the MEMBER objects do not exist,
56  *                and no relax control is issued, either:
57  *                      - fail
58  *                      - drop non-existing members
59  *                (by default: don't muck with values)
60  *
61  *              - if (configured to do so,) the referenced GROUP exists,
62  *                the relax control is set and the user has
63  *                "manage" privileges, allow to add MEMBER_OF values to
64  *                generic entries.
65  *
66  *      - modify:
67  *              - if the entry being modified is a GROUP_OC and the 
68  *                MEMBER_AT attribute is modified, the MEMBER_OF value
69  *                of the (existing) MEMBER_AT entries that are affected
70  *                is modified according to the request:
71  *                      - if a MEMBER is removed from the group,
72  *                        delete the corresponding MEMBER_OF
73  *                      - if a MEMBER is added to a group,
74  *                        add the corresponding MEMBER_OF
75  *
76  *                We need to determine, from the database, if it is
77  *                a GROUP_OC, and we need to check, from the
78  *                modification list, if the MEMBER_AT attribute is being
79  *                affected, and what MEMBER_AT values are affected.
80  *
81  *                if configured to do so, the entries corresponding to
82  *                the MEMBER_AT values do not exist, and no relax control
83  *                is issued, either:
84  *                      - fail
85  *                      - drop non-existing members
86  *                (by default: don't muck with values)
87  *
88  *              - if configured to do so, the referenced GROUP exists,
89  *                (the relax control is set) and the user has
90  *                "manage" privileges, allow to add MEMBER_OF values to
91  *                generic entries; the change is NOT automatically reflected
92  *                in the MEMBER attribute of the GROUP referenced
93  *                by the value of MEMBER_OF; a separate modification,
94  *                with or without relax control, needs to be performed.
95  *
96  *      - modrdn:
97  *              - if the entry being renamed is a GROUP, the MEMBER_OF
98  *                value of the (existing) MEMBER objects is modified
99  *                accordingly based on the newDN of the GROUP.
100  *
101  *                We need to determine, from the database, if it is
102  *                a GROUP; the list of MEMBER objects is obtained from
103  *                the database.
104  *
105  *                Non-existing MEMBER objects are ignored, since the
106  *                MEMBER_AT is not being addressed by the operation.
107  *
108  *              - if the entry being renamed has the MEMBER_OF attribute,
109  *                the corresponding MEMBER value must be modified in the
110  *                respective group entries.
111  *              
112  *
113  *      - delete:
114  *              - if the entry being deleted is a GROUP, the (existing)
115  *                MEMBER objects are modified accordingly; a copy of the 
116  *                values of the MEMBER_AT is saved and, if the delete 
117  *                succeeds, the MEMBER_OF value of the (existing) MEMBER
118  *                objects is deleted.
119  *
120  *                We need to determine, from the database, if it is
121  *                a GROUP.
122  *
123  *                Non-existing MEMBER objects are ignored, since the entry
124  *                is being deleted.
125  *
126  *              - if the entry being deleted has the MEMBER_OF attribute,
127  *                the corresponding value of the MEMBER_AT must be deleted
128  *                from the respective GROUP entries.
129  */
130
131 #define SLAPD_MEMBEROF_ATTR     "memberOf"
132
133 static slap_overinst            memberof;
134
135 typedef struct memberof_t {
136         struct berval           mo_dn;
137         struct berval           mo_ndn;
138
139         ObjectClass             *mo_oc_group;
140         AttributeDescription    *mo_ad_member;
141         AttributeDescription    *mo_ad_memberof;
142         
143         struct berval           mo_groupFilterstr;
144         AttributeAssertion      mo_groupAVA;
145         Filter                  mo_groupFilter;
146
147         struct berval           mo_memberFilterstr;
148         Filter                  mo_memberFilter;
149
150         unsigned                mo_flags;
151 #define MEMBEROF_NONE           0x00U
152 #define MEMBEROF_FDANGLING_DROP 0x01U
153 #define MEMBEROF_FDANGLING_ERROR        0x02U
154 #define MEMBEROF_FDANGLING_MASK (MEMBEROF_FDANGLING_DROP|MEMBEROF_FDANGLING_ERROR)
155 #define MEMBEROF_FREFINT        0x04U
156 #define MEMBEROF_FREVERSE       0x08U
157
158         ber_int_t               mo_dangling_err;
159
160 #define MEMBEROF_CHK(mo,f) \
161         (((mo)->mo_flags & (f)) == (f))
162 #define MEMBEROF_DANGLING_CHECK(mo) \
163         ((mo)->mo_flags & MEMBEROF_FDANGLING_MASK)
164 #define MEMBEROF_DANGLING_DROP(mo) \
165         MEMBEROF_CHK((mo),MEMBEROF_FDANGLING_DROP)
166 #define MEMBEROF_DANGLING_ERROR(mo) \
167         MEMBEROF_CHK((mo),MEMBEROF_FDANGLING_ERROR)
168 #define MEMBEROF_REFINT(mo) \
169         MEMBEROF_CHK((mo),MEMBEROF_FREFINT)
170 #define MEMBEROF_REVERSE(mo) \
171         MEMBEROF_CHK((mo),MEMBEROF_FREVERSE)
172 } memberof_t;
173
174 typedef enum memberof_is_t {
175         MEMBEROF_IS_NONE = 0x00,
176         MEMBEROF_IS_GROUP = 0x01,
177         MEMBEROF_IS_MEMBER = 0x02,
178         MEMBEROF_IS_BOTH = (MEMBEROF_IS_GROUP|MEMBEROF_IS_MEMBER)
179 } memberof_is_t;
180
181 typedef struct memberof_cookie_t {
182         AttributeDescription    *ad;
183         BerVarray               vals;
184         int                     foundit;
185 } memberof_cookie_t;
186
187 typedef struct memberof_cbinfo_t {
188         slap_overinst *on;
189         BerVarray member;
190         BerVarray memberof;
191         memberof_is_t what;
192 } memberof_cbinfo_t;
193         
194 static int
195 memberof_isGroupOrMember_cb( Operation *op, SlapReply *rs )
196 {
197         if ( rs->sr_type == REP_SEARCH ) {
198                 memberof_cookie_t       *mc;
199
200                 mc = (memberof_cookie_t *)op->o_callback->sc_private;
201                 mc->foundit = 1;
202         }
203
204         return 0;
205 }
206
207 /*
208  * callback for internal search that saves the member attribute values
209  * of groups being deleted.
210  */
211 static int
212 memberof_saveMember_cb( Operation *op, SlapReply *rs )
213 {
214         if ( rs->sr_type == REP_SEARCH ) {
215                 memberof_cookie_t       *mc;
216                 Attribute               *a;
217
218                 mc = (memberof_cookie_t *)op->o_callback->sc_private;
219                 mc->foundit = 1;
220
221                 assert( rs->sr_entry != NULL );
222                 assert( rs->sr_entry->e_attrs != NULL );
223
224                 a = attr_find( rs->sr_entry->e_attrs, mc->ad );
225                 if ( a != NULL ) {
226                         ber_bvarray_dup_x( &mc->vals, a->a_nvals, op->o_tmpmemctx );
227
228                         assert( attr_find( a->a_next, mc->ad ) == NULL );
229                 }
230         }
231
232         return 0;
233 }
234
235 /*
236  * the delete hook performs an internal search that saves the member
237  * attribute values of groups being deleted.
238  */
239 static int
240 memberof_isGroupOrMember( Operation *op, memberof_cbinfo_t *mci )
241 {
242         slap_overinst           *on = mci->on;
243         memberof_t              *mo = (memberof_t *)on->on_bi.bi_private;
244
245         Operation               op2 = *op;
246         SlapReply               rs2 = { REP_RESULT };
247         slap_callback           cb = { 0 };
248         BackendInfo     *bi = op->o_bd->bd_info;
249         AttributeName           an[ 2 ];
250
251         memberof_is_t           iswhat = MEMBEROF_IS_NONE;
252         memberof_cookie_t       mc;
253
254         assert( mci->what != MEMBEROF_IS_NONE );
255
256         cb.sc_private = &mc;
257         if ( op->o_tag == LDAP_REQ_DELETE ) {
258                 cb.sc_response = memberof_saveMember_cb;
259
260         } else {
261                 cb.sc_response = memberof_isGroupOrMember_cb;
262         }
263
264         op2.o_tag = LDAP_REQ_SEARCH;
265         op2.o_callback = &cb;
266         op2.o_dn = op->o_bd->be_rootdn;
267         op2.o_ndn = op->o_bd->be_rootndn;
268
269         op2.ors_scope = LDAP_SCOPE_BASE;
270         op2.ors_deref = LDAP_DEREF_NEVER;
271         BER_BVZERO( &an[ 1 ].an_name );
272         op2.ors_attrs = an;
273         op2.ors_attrsonly = 0;
274         op2.ors_limit = NULL;
275         op2.ors_slimit = 1;
276         op2.ors_tlimit = SLAP_NO_LIMIT;
277
278         if ( mci->what & MEMBEROF_IS_GROUP ) {
279                 mc.ad = mo->mo_ad_member;
280                 mc.foundit = 0;
281                 mc.vals = NULL;
282                 an[ 0 ].an_desc = mo->mo_ad_member;
283                 an[ 0 ].an_name = an[ 0 ].an_desc->ad_cname;
284                 op2.ors_filterstr = mo->mo_groupFilterstr;
285                 op2.ors_filter = &mo->mo_groupFilter;
286
287                 op2.o_bd->bd_info = (BackendInfo *)on->on_info;
288                 (void)op->o_bd->be_search( &op2, &rs2 );
289                 op2.o_bd->bd_info = bi;
290
291                 if ( mc.foundit ) {
292                         iswhat |= MEMBEROF_IS_GROUP;
293                         if ( mc.vals ) mci->member = mc.vals;
294
295                 }
296         }
297
298         if ( mci->what & MEMBEROF_IS_MEMBER ) {
299                 mc.ad = mo->mo_ad_memberof;
300                 mc.foundit = 0;
301                 mc.vals = NULL;
302                 an[ 0 ].an_desc = mo->mo_ad_memberof;
303                 an[ 0 ].an_name = an[ 0 ].an_desc->ad_cname;
304                 op2.ors_filterstr = mo->mo_memberFilterstr;
305                 op2.ors_filter = &mo->mo_memberFilter;
306
307                 op2.o_bd->bd_info = (BackendInfo *)on->on_info;
308                 (void)op->o_bd->be_search( &op2, &rs2 );
309                 op2.o_bd->bd_info = bi;
310
311                 if ( mc.foundit ) {
312                         iswhat |= MEMBEROF_IS_MEMBER;
313                         if ( mc.vals ) mci->memberof = mc.vals;
314
315                 }
316         }
317
318         mci->what = iswhat;
319
320         return LDAP_SUCCESS;
321 }
322
323 /*
324  * response callback that adds memberof values when a group is modified.
325  */
326 static int
327 memberof_value_modify(
328         Operation               *op,
329         SlapReply               *rs,
330         struct berval           *ndn,
331         AttributeDescription    *ad,
332         struct berval           *old_dn,
333         struct berval           *old_ndn,
334         struct berval           *new_dn,
335         struct berval           *new_ndn )
336 {
337         memberof_cbinfo_t *mci = op->o_callback->sc_private;
338         slap_overinst   *on = mci->on;
339         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
340
341         Operation       op2 = *op;
342         SlapReply       rs2 = { REP_RESULT };
343         slap_callback   cb = { NULL, slap_null_cb, NULL, NULL };
344         Modifications   mod[ 2 ] = { { { 0 } } }, *ml;
345         struct berval   values[ 4 ], nvalues[ 4 ];
346         int             mcnt = 0;
347
348         op2.o_tag = LDAP_REQ_MODIFY;
349
350         op2.o_req_dn = *ndn;
351         op2.o_req_ndn = *ndn;
352
353         op2.o_callback = &cb;
354         op2.o_dn = op->o_bd->be_rootdn;
355         op2.o_ndn = op->o_bd->be_rootndn;
356         op2.orm_modlist = NULL;
357
358         if ( !BER_BVISNULL( &mo->mo_ndn ) ) {
359                 ml = &mod[ mcnt ];
360                 ml->sml_numvals = 1;
361                 ml->sml_values = &values[ 0 ];
362                 ml->sml_values[ 0 ] = mo->mo_dn;
363                 BER_BVZERO( &ml->sml_values[ 1 ] );
364                 ml->sml_nvalues = &nvalues[ 0 ];
365                 ml->sml_nvalues[ 0 ] = mo->mo_ndn;
366                 BER_BVZERO( &ml->sml_nvalues[ 1 ] );
367                 ml->sml_desc = slap_schema.si_ad_modifiersName;
368                 ml->sml_type = ml->sml_desc->ad_cname;
369                 ml->sml_op = LDAP_MOD_REPLACE;
370                 ml->sml_flags = SLAP_MOD_INTERNAL;
371                 ml->sml_next = op2.orm_modlist;
372                 op2.orm_modlist = ml;
373
374                 mcnt++;
375         }
376
377         ml = &mod[ mcnt ];
378         ml->sml_numvals = 1;
379         ml->sml_values = &values[ 2 ];
380         BER_BVZERO( &ml->sml_values[ 1 ] );
381         ml->sml_nvalues = &nvalues[ 2 ];
382         BER_BVZERO( &ml->sml_nvalues[ 1 ] );
383         ml->sml_desc = ad;
384         ml->sml_type = ml->sml_desc->ad_cname;
385         ml->sml_flags = SLAP_MOD_INTERNAL;
386         ml->sml_next = op2.orm_modlist;
387         op2.orm_modlist = ml;
388         op2.orm_no_opattrs = 0;
389
390         if ( new_ndn != NULL ) {
391                 BackendInfo *bi = op2.o_bd->bd_info;
392                 OpExtra oex;
393
394                 assert( !BER_BVISNULL( new_dn ) );
395                 assert( !BER_BVISNULL( new_ndn ) );
396
397                 ml = &mod[ mcnt ];
398                 ml->sml_op = LDAP_MOD_ADD;
399
400                 ml->sml_values[ 0 ] = *new_dn;
401                 ml->sml_nvalues[ 0 ] = *new_ndn;
402
403                 oex.oe_key = (void *)&memberof;
404                 LDAP_SLIST_INSERT_HEAD(&op2.o_extra, &oex, oe_next);
405                 op2.o_bd->bd_info = (BackendInfo *)on->on_info;
406                 (void)op->o_bd->be_modify( &op2, &rs2 );
407                 op2.o_bd->bd_info = bi;
408                 LDAP_SLIST_REMOVE(&op2.o_extra, &oex, OpExtra, oe_next);
409                 if ( rs2.sr_err != LDAP_SUCCESS ) {
410                         char buf[ SLAP_TEXT_BUFLEN ];
411                         snprintf( buf, sizeof( buf ),
412                                 "memberof_value_modify DN=\"%s\" add %s=\"%s\" failed err=%d",
413                                 op2.o_req_dn.bv_val, ad->ad_cname.bv_val, new_dn->bv_val, rs2.sr_err );
414                         Debug( LDAP_DEBUG_ANY, "%s: %s\n",
415                                 op->o_log_prefix, buf, 0 );
416                 }
417
418                 assert( op2.orm_modlist == &mod[ mcnt ] );
419                 assert( mcnt == 0 || op2.orm_modlist->sml_next == &mod[ 0 ] );
420                 ml = op2.orm_modlist->sml_next;
421                 if ( mcnt == 1 ) {
422                         assert( ml == &mod[ 0 ] );
423                         ml = ml->sml_next;
424                 }
425                 if ( ml != NULL ) {
426                         slap_mods_free( ml, 1 );
427                 }
428
429                 mod[ 0 ].sml_next = NULL;
430         }
431
432         if ( old_ndn != NULL ) {
433                 BackendInfo *bi = op2.o_bd->bd_info;
434                 OpExtra oex;
435
436                 assert( !BER_BVISNULL( old_dn ) );
437                 assert( !BER_BVISNULL( old_ndn ) );
438
439                 ml = &mod[ mcnt ];
440                 ml->sml_op = LDAP_MOD_DELETE;
441
442                 ml->sml_values[ 0 ] = *old_dn;
443                 ml->sml_nvalues[ 0 ] = *old_ndn;
444
445                 oex.oe_key = (void *)&memberof;
446                 LDAP_SLIST_INSERT_HEAD(&op2.o_extra, &oex, oe_next);
447                 op2.o_bd->bd_info = (BackendInfo *)on->on_info;
448                 (void)op->o_bd->be_modify( &op2, &rs2 );
449                 op2.o_bd->bd_info = bi;
450                 LDAP_SLIST_REMOVE(&op2.o_extra, &oex, OpExtra, oe_next);
451                 if ( rs2.sr_err != LDAP_SUCCESS ) {
452                         char buf[ SLAP_TEXT_BUFLEN ];
453                         snprintf( buf, sizeof( buf ),
454                                 "memberof_value_modify DN=\"%s\" delete %s=\"%s\" failed err=%d",
455                                 op2.o_req_dn.bv_val, ad->ad_cname.bv_val, old_dn->bv_val, rs2.sr_err );
456                         Debug( LDAP_DEBUG_ANY, "%s: %s\n",
457                                 op->o_log_prefix, buf, 0 );
458                 }
459
460                 assert( op2.orm_modlist == &mod[ mcnt ] );
461                 ml = op2.orm_modlist->sml_next;
462                 if ( mcnt == 1 ) {
463                         assert( ml == &mod[ 0 ] );
464                         ml = ml->sml_next;
465                 }
466                 if ( ml != NULL ) {
467                         slap_mods_free( ml, 1 );
468                 }
469         }
470
471         /* FIXME: if old_group_ndn doesn't exist, both delete __and__
472          * add will fail; better split in two operations, although
473          * not optimal in terms of performance.  At least it would
474          * move towards self-repairing capabilities. */
475
476         return rs2.sr_err;
477 }
478
479 static int
480 memberof_cleanup( Operation *op, SlapReply *rs )
481 {
482         slap_callback *sc = op->o_callback;
483         memberof_cbinfo_t *mci = sc->sc_private;
484
485         op->o_callback = sc->sc_next;
486         if ( mci->memberof )
487                 ber_bvarray_free_x( mci->memberof, op->o_tmpmemctx );
488         if ( mci->member )
489                 ber_bvarray_free_x( mci->member, op->o_tmpmemctx );
490         op->o_tmpfree( sc, op->o_tmpmemctx );
491         return 0;
492 }
493
494 static int memberof_res_add( Operation *op, SlapReply *rs );
495 static int memberof_res_delete( Operation *op, SlapReply *rs );
496 static int memberof_res_modify( Operation *op, SlapReply *rs );
497 static int memberof_res_modrdn( Operation *op, SlapReply *rs );
498
499 static int
500 memberof_op_add( Operation *op, SlapReply *rs )
501 {
502         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
503         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
504
505         Attribute       **ap, **map = NULL;
506         int             rc = SLAP_CB_CONTINUE;
507         int             i;
508         struct berval   save_dn, save_ndn;
509         slap_callback *sc;
510         memberof_cbinfo_t *mci;
511         OpExtra         *oex;
512
513         LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
514                 if ( oex->oe_key == (void *)&memberof )
515                         return SLAP_CB_CONTINUE;
516         }
517
518         if ( op->ora_e->e_attrs == NULL ) {
519                 /* FIXME: global overlay; need to deal with */
520                 Debug( LDAP_DEBUG_ANY, "%s: memberof_op_add(\"%s\"): "
521                         "consistency checks not implemented when overlay "
522                         "is instantiated as global.\n",
523                         op->o_log_prefix, op->o_req_dn.bv_val, 0 );
524                 return SLAP_CB_CONTINUE;
525         }
526
527         if ( MEMBEROF_REVERSE( mo ) ) {
528                 for ( ap = &op->ora_e->e_attrs; *ap; ap = &(*ap)->a_next ) {
529                         Attribute       *a = *ap;
530
531                         if ( a->a_desc == mo->mo_ad_memberof ) {
532                                 map = ap;
533                                 break;
534                         }
535                 }
536         }
537
538         save_dn = op->o_dn;
539         save_ndn = op->o_ndn;
540
541         if ( MEMBEROF_DANGLING_CHECK( mo )
542                         && !get_relax( op )
543                         && is_entry_objectclass_or_sub( op->ora_e, mo->mo_oc_group ) )
544         {
545                 op->o_dn = op->o_bd->be_rootdn;
546                 op->o_ndn = op->o_bd->be_rootndn;
547                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
548
549                 for ( ap = &op->ora_e->e_attrs; *ap; ) {
550                         Attribute       *a = *ap;
551
552                         if ( !is_ad_subtype( a->a_desc, mo->mo_ad_member ) ) {
553                                 ap = &a->a_next;
554                                 continue;
555                         }
556
557                         assert( a->a_nvals != NULL );
558
559                         for ( i = 0; !BER_BVISNULL( &a->a_nvals[ i ] ); i++ ) {
560                                 Entry           *e = NULL;
561
562                                 /* ITS#6670 Ignore member pointing to this entry */
563                                 if ( dn_match( &a->a_nvals[i], &save_ndn ))
564                                         continue;
565
566                                 rc = be_entry_get_rw( op, &a->a_nvals[ i ],
567                                                 NULL, NULL, 0, &e );
568                                 if ( rc == LDAP_SUCCESS ) {
569                                         be_entry_release_r( op, e );
570                                         continue;
571                                 }
572
573                                 if ( MEMBEROF_DANGLING_ERROR( mo ) ) {
574                                         rc = rs->sr_err = mo->mo_dangling_err;
575                                         rs->sr_text = "adding non-existing object "
576                                                 "as group member";
577                                         send_ldap_result( op, rs );
578                                         goto done;
579                                 }
580
581                                 if ( MEMBEROF_DANGLING_DROP( mo ) ) {
582                                         int     j;
583         
584                                         Debug( LDAP_DEBUG_ANY, "%s: memberof_op_add(\"%s\"): "
585                                                 "member=\"%s\" does not exist (stripping...)\n",
586                                                 op->o_log_prefix, op->ora_e->e_name.bv_val,
587                                                 a->a_vals[ i ].bv_val );
588         
589                                         for ( j = i + 1; !BER_BVISNULL( &a->a_nvals[ j ] ); j++ );
590                                         ber_memfree( a->a_vals[ i ].bv_val );
591                                         BER_BVZERO( &a->a_vals[ i ] );
592                                         if ( a->a_nvals != a->a_vals ) {
593                                                 ber_memfree( a->a_nvals[ i ].bv_val );
594                                                 BER_BVZERO( &a->a_nvals[ i ] );
595                                         }
596                                         if ( j - i == 1 ) {
597                                                 break;
598                                         }
599                 
600                                         AC_MEMCPY( &a->a_vals[ i ], &a->a_vals[ i + 1 ],
601                                                 sizeof( struct berval ) * ( j - i ) );
602                                         if ( a->a_nvals != a->a_vals ) {
603                                                 AC_MEMCPY( &a->a_nvals[ i ], &a->a_nvals[ i + 1 ],
604                                                         sizeof( struct berval ) * ( j - i ) );
605                                         }
606                                         i--;
607                                         a->a_numvals--;
608                                 }
609                         }
610
611                         /* If all values have been removed,
612                          * remove the attribute itself. */
613                         if ( BER_BVISNULL( &a->a_nvals[ 0 ] ) ) {
614                                 *ap = a->a_next;
615                                 attr_free( a );
616         
617                         } else {
618                                 ap = &a->a_next;
619                         }
620                 }
621                 op->o_dn = save_dn;
622                 op->o_ndn = save_ndn;
623                 op->o_bd->bd_info = (BackendInfo *)on;
624         }
625
626         if ( map != NULL ) {
627                 Attribute               *a = *map;
628                 AccessControlState      acl_state = ACL_STATE_INIT;
629
630                 for ( i = 0; !BER_BVISNULL( &a->a_nvals[ i ] ); i++ ) {
631                         Entry           *e;
632
633                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
634                         /* access is checked with the original identity */
635                         rc = access_allowed( op, op->ora_e, mo->mo_ad_memberof,
636                                         &a->a_nvals[ i ], ACL_WADD,
637                                         &acl_state );
638                         if ( rc == 0 ) {
639                                 rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
640                                 rs->sr_text = NULL;
641                                 send_ldap_result( op, rs );
642                                 goto done;
643                         }
644                         /* ITS#6670 Ignore member pointing to this entry */
645                         if ( dn_match( &a->a_nvals[i], &save_ndn ))
646                                 continue;
647
648                         rc = be_entry_get_rw( op, &a->a_nvals[ i ],
649                                         NULL, NULL, 0, &e );
650                         op->o_bd->bd_info = (BackendInfo *)on;
651                         if ( rc != LDAP_SUCCESS ) {
652                                 if ( get_relax( op ) ) {
653                                         continue;
654                                 }
655
656                                 if ( MEMBEROF_DANGLING_ERROR( mo ) ) {
657                                         rc = rs->sr_err = mo->mo_dangling_err;
658                                         rs->sr_text = "adding non-existing object "
659                                                 "as memberof";
660                                         send_ldap_result( op, rs );
661                                         goto done;
662                                 }
663
664                                 if ( MEMBEROF_DANGLING_DROP( mo ) ) {
665                                         int     j;
666         
667                                         Debug( LDAP_DEBUG_ANY, "%s: memberof_op_add(\"%s\"): "
668                                                 "memberof=\"%s\" does not exist (stripping...)\n",
669                                                 op->o_log_prefix, op->ora_e->e_name.bv_val,
670                                                 a->a_nvals[ i ].bv_val );
671         
672                                         for ( j = i + 1; !BER_BVISNULL( &a->a_nvals[ j ] ); j++ );
673                                         ber_memfree( a->a_vals[ i ].bv_val );
674                                         BER_BVZERO( &a->a_vals[ i ] );
675                                         if ( a->a_nvals != a->a_vals ) {
676                                                 ber_memfree( a->a_nvals[ i ].bv_val );
677                                                 BER_BVZERO( &a->a_nvals[ i ] );
678                                         }
679                                         if ( j - i == 1 ) {
680                                                 break;
681                                         }
682                 
683                                         AC_MEMCPY( &a->a_vals[ i ], &a->a_vals[ i + 1 ],
684                                                 sizeof( struct berval ) * ( j - i ) );
685                                         if ( a->a_nvals != a->a_vals ) {
686                                                 AC_MEMCPY( &a->a_nvals[ i ], &a->a_nvals[ i + 1 ],
687                                                         sizeof( struct berval ) * ( j - i ) );
688                                         }
689                                         i--;
690                                 }
691                                 
692                                 continue;
693                         }
694
695                         /* access is checked with the original identity */
696                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
697                         rc = access_allowed( op, e, mo->mo_ad_member,
698                                         &op->o_req_ndn, ACL_WADD, NULL );
699                         be_entry_release_r( op, e );
700                         op->o_bd->bd_info = (BackendInfo *)on;
701
702                         if ( !rc ) {
703                                 rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
704                                 rs->sr_text = "insufficient access to object referenced by memberof";
705                                 send_ldap_result( op, rs );
706                                 goto done;
707                         }
708                 }
709
710                 if ( BER_BVISNULL( &a->a_nvals[ 0 ] ) ) {
711                         *map = a->a_next;
712                         attr_free( a );
713                 }
714         }
715
716         rc = SLAP_CB_CONTINUE;
717
718         sc = op->o_tmpalloc( sizeof(slap_callback)+sizeof(*mci), op->o_tmpmemctx );
719         sc->sc_private = sc+1;
720         sc->sc_response = memberof_res_add;
721         sc->sc_cleanup = memberof_cleanup;
722         mci = sc->sc_private;
723         mci->on = on;
724         mci->member = NULL;
725         mci->memberof = NULL;
726         sc->sc_next = op->o_callback;
727         op->o_callback = sc;
728
729 done:;
730         op->o_dn = save_dn;
731         op->o_ndn = save_ndn;
732         op->o_bd->bd_info = (BackendInfo *)on;
733
734         return rc;
735 }
736
737 static int
738 memberof_op_delete( Operation *op, SlapReply *rs )
739 {
740         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
741         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
742
743         slap_callback *sc;
744         memberof_cbinfo_t *mci;
745         OpExtra         *oex;
746
747         LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
748                 if ( oex->oe_key == (void *)&memberof )
749                         return SLAP_CB_CONTINUE;
750         }
751
752         sc = op->o_tmpalloc( sizeof(slap_callback)+sizeof(*mci), op->o_tmpmemctx );
753         sc->sc_private = sc+1;
754         sc->sc_response = memberof_res_delete;
755         sc->sc_cleanup = memberof_cleanup;
756         mci = sc->sc_private;
757         mci->on = on;
758         mci->member = NULL;
759         mci->memberof = NULL;
760         mci->what = MEMBEROF_IS_GROUP;
761         if ( MEMBEROF_REFINT( mo ) ) {
762                 mci->what = MEMBEROF_IS_BOTH;
763         }
764
765         memberof_isGroupOrMember( op, mci );
766
767         sc->sc_next = op->o_callback;
768         op->o_callback = sc;
769
770         return SLAP_CB_CONTINUE;
771 }
772
773 static int
774 memberof_op_modify( Operation *op, SlapReply *rs )
775 {
776         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
777         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
778
779         Modifications   **mlp, **mmlp = NULL;
780         int             rc = SLAP_CB_CONTINUE, save_member = 0;
781         struct berval   save_dn, save_ndn;
782         slap_callback *sc;
783         memberof_cbinfo_t *mci, mcis;
784         OpExtra         *oex;
785
786         LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
787                 if ( oex->oe_key == (void *)&memberof )
788                         return SLAP_CB_CONTINUE;
789         }
790
791         if ( MEMBEROF_REVERSE( mo ) ) {
792                 for ( mlp = &op->orm_modlist; *mlp; mlp = &(*mlp)->sml_next ) {
793                         Modifications   *ml = *mlp;
794
795                         if ( ml->sml_desc == mo->mo_ad_memberof ) {
796                                 mmlp = mlp;
797                                 break;
798                         }
799                 }
800         }
801
802         save_dn = op->o_dn;
803         save_ndn = op->o_ndn;
804         mcis.on = on;
805         mcis.what = MEMBEROF_IS_GROUP;
806
807         if ( memberof_isGroupOrMember( op, &mcis ) == LDAP_SUCCESS
808                 && ( mcis.what & MEMBEROF_IS_GROUP ) )
809         {
810                 Modifications *ml;
811
812                 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
813                         if ( ml->sml_desc == mo->mo_ad_member ) {
814                                 switch ( ml->sml_op ) {
815                                 case LDAP_MOD_DELETE:
816                                 case LDAP_MOD_REPLACE:
817                                         save_member = 1;
818                                         break;
819                                 }
820                         }
821                 }
822
823
824                 if ( MEMBEROF_DANGLING_CHECK( mo )
825                                 && !get_relax( op ) )
826                 {
827                         op->o_dn = op->o_bd->be_rootdn;
828                         op->o_ndn = op->o_bd->be_rootndn;
829                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
830                 
831                         assert( op->orm_modlist != NULL );
832                 
833                         for ( mlp = &op->orm_modlist; *mlp; ) {
834                                 Modifications   *ml = *mlp;
835                                 int             i;
836                 
837                                 if ( !is_ad_subtype( ml->sml_desc, mo->mo_ad_member ) ) {
838                                         mlp = &ml->sml_next;
839                                         continue;
840                                 }
841                 
842                                 switch ( ml->sml_op ) {
843                                 case LDAP_MOD_DELETE:
844                                         /* we don't care about cancellations: if the value
845                                          * exists, fine; if it doesn't, we let the underlying
846                                          * database fail as appropriate; */
847                                         mlp = &ml->sml_next;
848                                         break;
849                 
850                                 case LDAP_MOD_REPLACE:
851                                         /* Handle this just like a delete (see above) */
852                                         if ( !ml->sml_values ) {
853                                                 mlp = &ml->sml_next;
854                                                 break;
855                                         }
856  
857                                 case LDAP_MOD_ADD:
858                                         /* NOTE: right now, the attributeType we use
859                                          * for member must have a normalized value */
860                                         assert( ml->sml_nvalues != NULL );
861                 
862                                         for ( i = 0; !BER_BVISNULL( &ml->sml_nvalues[ i ] ); i++ ) {
863                                                 int             rc;
864                                                 Entry           *e;
865                 
866                                                 /* ITS#6670 Ignore member pointing to this entry */
867                                                 if ( dn_match( &ml->sml_nvalues[i], &save_ndn ))
868                                                         continue;
869
870                                                 if ( be_entry_get_rw( op, &ml->sml_nvalues[ i ],
871                                                                 NULL, NULL, 0, &e ) == LDAP_SUCCESS )
872                                                 {
873                                                         be_entry_release_r( op, e );
874                                                         continue;
875                                                 }
876                 
877                                                 if ( MEMBEROF_DANGLING_ERROR( mo ) ) {
878                                                         rc = rs->sr_err = mo->mo_dangling_err;
879                                                         rs->sr_text = "adding non-existing object "
880                                                                 "as group member";
881                                                         send_ldap_result( op, rs );
882                                                         goto done;
883                                                 }
884                 
885                                                 if ( MEMBEROF_DANGLING_DROP( mo ) ) {
886                                                         int     j;
887                 
888                                                         Debug( LDAP_DEBUG_ANY, "%s: memberof_op_modify(\"%s\"): "
889                                                                 "member=\"%s\" does not exist (stripping...)\n",
890                                                                 op->o_log_prefix, op->o_req_dn.bv_val,
891                                                                 ml->sml_nvalues[ i ].bv_val );
892                 
893                                                         for ( j = i + 1; !BER_BVISNULL( &ml->sml_nvalues[ j ] ); j++ );
894                                                         ber_memfree( ml->sml_values[ i ].bv_val );
895                                                         BER_BVZERO( &ml->sml_values[ i ] );
896                                                         ber_memfree( ml->sml_nvalues[ i ].bv_val );
897                                                         BER_BVZERO( &ml->sml_nvalues[ i ] );
898                                                         ml->sml_numvals--;
899                                                         if ( j - i == 1 ) {
900                                                                 break;
901                                                         }
902                 
903                                                         AC_MEMCPY( &ml->sml_values[ i ], &ml->sml_values[ i + 1 ],
904                                                                 sizeof( struct berval ) * ( j - i ) );
905                                                         AC_MEMCPY( &ml->sml_nvalues[ i ], &ml->sml_nvalues[ i + 1 ],
906                                                                 sizeof( struct berval ) * ( j - i ) );
907                                                         i--;
908                                                 }
909                                         }
910                 
911                                         if ( BER_BVISNULL( &ml->sml_nvalues[ 0 ] ) ) {
912                                                 *mlp = ml->sml_next;
913                                                 slap_mod_free( &ml->sml_mod, 0 );
914                                                 free( ml );
915                 
916                                         } else {
917                                                 mlp = &ml->sml_next;
918                                         }
919                 
920                                         break;
921                 
922                                 default:
923                                         assert( 0 );
924                                 }
925                         }
926                 }
927         }
928         
929         if ( mmlp != NULL ) {
930                 Modifications   *ml = *mmlp;
931                 int             i;
932                 Entry           *target;
933
934                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
935                 rc = be_entry_get_rw( op, &op->o_req_ndn,
936                                 NULL, NULL, 0, &target );
937                 op->o_bd->bd_info = (BackendInfo *)on;
938                 if ( rc != LDAP_SUCCESS ) {
939                         rc = rs->sr_err = LDAP_NO_SUCH_OBJECT;
940                         send_ldap_result( op, rs );
941                         goto done;
942                 }
943
944                 switch ( ml->sml_op ) {
945                 case LDAP_MOD_DELETE:
946                         if ( ml->sml_nvalues != NULL ) {
947                                 AccessControlState      acl_state = ACL_STATE_INIT;
948
949                                 for ( i = 0; !BER_BVISNULL( &ml->sml_nvalues[ i ] ); i++ ) {
950                                         Entry           *e;
951
952                                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
953                                         /* access is checked with the original identity */
954                                         rc = access_allowed( op, target,
955                                                         mo->mo_ad_memberof,
956                                                         &ml->sml_nvalues[ i ],
957                                                         ACL_WDEL,
958                                                         &acl_state );
959                                         if ( rc == 0 ) {
960                                                 rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
961                                                 rs->sr_text = NULL;
962                                                 send_ldap_result( op, rs );
963                                                 goto done2;
964                                         }
965
966                                         rc = be_entry_get_rw( op, &ml->sml_nvalues[ i ],
967                                                         NULL, NULL, 0, &e );
968                                         op->o_bd->bd_info = (BackendInfo *)on;
969                                         if ( rc != LDAP_SUCCESS ) {
970                                                 if ( get_relax( op ) ) {
971                                                         continue;
972                                                 }
973
974                                                 if ( MEMBEROF_DANGLING_ERROR( mo ) ) {
975                                                         rc = rs->sr_err = mo->mo_dangling_err;
976                                                         rs->sr_text = "deleting non-existing object "
977                                                                 "as memberof";
978                                                         send_ldap_result( op, rs );
979                                                         goto done2;
980                                                 }
981
982                                                 if ( MEMBEROF_DANGLING_DROP( mo ) ) {
983                                                         int     j;
984         
985                                                         Debug( LDAP_DEBUG_ANY, "%s: memberof_op_modify(\"%s\"): "
986                                                                 "memberof=\"%s\" does not exist (stripping...)\n",
987                                                                 op->o_log_prefix, op->o_req_ndn.bv_val,
988                                                                 ml->sml_nvalues[ i ].bv_val );
989         
990                                                         for ( j = i + 1; !BER_BVISNULL( &ml->sml_nvalues[ j ] ); j++ );
991                                                         ber_memfree( ml->sml_values[ i ].bv_val );
992                                                         BER_BVZERO( &ml->sml_values[ i ] );
993                                                         if ( ml->sml_nvalues != ml->sml_values ) {
994                                                                 ber_memfree( ml->sml_nvalues[ i ].bv_val );
995                                                                 BER_BVZERO( &ml->sml_nvalues[ i ] );
996                                                         }
997                                                         ml->sml_numvals--;
998                                                         if ( j - i == 1 ) {
999                                                                 break;
1000                                                         }
1001                 
1002                                                         AC_MEMCPY( &ml->sml_values[ i ], &ml->sml_values[ i + 1 ],
1003                                                                 sizeof( struct berval ) * ( j - i ) );
1004                                                         if ( ml->sml_nvalues != ml->sml_values ) {
1005                                                                 AC_MEMCPY( &ml->sml_nvalues[ i ], &ml->sml_nvalues[ i + 1 ],
1006                                                                         sizeof( struct berval ) * ( j - i ) );
1007                                                         }
1008                                                         i--;
1009                                                 }
1010
1011                                                 continue;
1012                                         }
1013
1014                                         /* access is checked with the original identity */
1015                                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
1016                                         rc = access_allowed( op, e, mo->mo_ad_member,
1017                                                         &op->o_req_ndn,
1018                                                         ACL_WDEL, NULL );
1019                                         be_entry_release_r( op, e );
1020                                         op->o_bd->bd_info = (BackendInfo *)on;
1021
1022                                         if ( !rc ) {
1023                                                 rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1024                                                 rs->sr_text = "insufficient access to object referenced by memberof";
1025                                                 send_ldap_result( op, rs );
1026                                                 goto done;
1027                                         }
1028                                 }
1029
1030                                 if ( BER_BVISNULL( &ml->sml_nvalues[ 0 ] ) ) {
1031                                         *mmlp = ml->sml_next;
1032                                         slap_mod_free( &ml->sml_mod, 0 );
1033                                         free( ml );
1034                                 }
1035
1036                                 break;
1037                         }
1038                         /* fall thru */
1039
1040                 case LDAP_MOD_REPLACE:
1041
1042                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
1043                         /* access is checked with the original identity */
1044                         rc = access_allowed( op, target,
1045                                         mo->mo_ad_memberof,
1046                                         NULL,
1047                                         ACL_WDEL, NULL );
1048                         op->o_bd->bd_info = (BackendInfo *)on;
1049                         if ( rc == 0 ) {
1050                                 rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1051                                 rs->sr_text = NULL;
1052                                 send_ldap_result( op, rs );
1053                                 goto done2;
1054                         }
1055
1056                         if ( ml->sml_op == LDAP_MOD_DELETE || !ml->sml_values ) {
1057                                 break;
1058                         }
1059                         /* fall thru */
1060
1061                 case LDAP_MOD_ADD: {
1062                         AccessControlState      acl_state = ACL_STATE_INIT;
1063
1064                         for ( i = 0; !BER_BVISNULL( &ml->sml_nvalues[ i ] ); i++ ) {
1065                                 Entry           *e;
1066
1067                                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1068                                 /* access is checked with the original identity */
1069                                 rc = access_allowed( op, target,
1070                                                 mo->mo_ad_memberof,
1071                                                 &ml->sml_nvalues[ i ],
1072                                                 ACL_WADD,
1073                                                 &acl_state );
1074                                 if ( rc == 0 ) {
1075                                         rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1076                                         rs->sr_text = NULL;
1077                                         send_ldap_result( op, rs );
1078                                         goto done2;
1079                                 }
1080
1081                                 /* ITS#6670 Ignore member pointing to this entry */
1082                                 if ( dn_match( &ml->sml_nvalues[i], &save_ndn ))
1083                                         continue;
1084
1085                                 rc = be_entry_get_rw( op, &ml->sml_nvalues[ i ],
1086                                                 NULL, NULL, 0, &e );
1087                                 op->o_bd->bd_info = (BackendInfo *)on;
1088                                 if ( rc != LDAP_SUCCESS ) {
1089                                         if ( MEMBEROF_DANGLING_ERROR( mo ) ) {
1090                                                 rc = rs->sr_err = mo->mo_dangling_err;
1091                                                 rs->sr_text = "adding non-existing object "
1092                                                         "as memberof";
1093                                                 send_ldap_result( op, rs );
1094                                                 goto done2;
1095                                         }
1096
1097                                         if ( MEMBEROF_DANGLING_DROP( mo ) ) {
1098                                                 int     j;
1099
1100                                                 Debug( LDAP_DEBUG_ANY, "%s: memberof_op_modify(\"%s\"): "
1101                                                         "memberof=\"%s\" does not exist (stripping...)\n",
1102                                                         op->o_log_prefix, op->o_req_ndn.bv_val,
1103                                                         ml->sml_nvalues[ i ].bv_val );
1104
1105                                                 for ( j = i + 1; !BER_BVISNULL( &ml->sml_nvalues[ j ] ); j++ );
1106                                                 ber_memfree( ml->sml_values[ i ].bv_val );
1107                                                 BER_BVZERO( &ml->sml_values[ i ] );
1108                                                 if ( ml->sml_nvalues != ml->sml_values ) {
1109                                                         ber_memfree( ml->sml_nvalues[ i ].bv_val );
1110                                                         BER_BVZERO( &ml->sml_nvalues[ i ] );
1111                                                 }
1112                                                 ml->sml_numvals--;
1113                                                 if ( j - i == 1 ) {
1114                                                         break;
1115                                                 }
1116         
1117                                                 AC_MEMCPY( &ml->sml_values[ i ], &ml->sml_values[ i + 1 ],
1118                                                         sizeof( struct berval ) * ( j - i ) );
1119                                                 if ( ml->sml_nvalues != ml->sml_values ) {
1120                                                         AC_MEMCPY( &ml->sml_nvalues[ i ], &ml->sml_nvalues[ i + 1 ],
1121                                                                 sizeof( struct berval ) * ( j - i ) );
1122                                                 }
1123                                                 i--;
1124                                         }
1125
1126                                         continue;
1127                                 }
1128
1129                                 /* access is checked with the original identity */
1130                                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1131                                 rc = access_allowed( op, e, mo->mo_ad_member,
1132                                                 &op->o_req_ndn,
1133                                                 ACL_WDEL, NULL );
1134                                 be_entry_release_r( op, e );
1135                                 op->o_bd->bd_info = (BackendInfo *)on;
1136
1137                                 if ( !rc ) {
1138                                         rc = rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
1139                                         rs->sr_text = "insufficient access to object referenced by memberof";
1140                                         send_ldap_result( op, rs );
1141                                         goto done;
1142                                 }
1143                         }
1144
1145                         if ( BER_BVISNULL( &ml->sml_nvalues[ 0 ] ) ) {
1146                                 *mmlp = ml->sml_next;
1147                                 slap_mod_free( &ml->sml_mod, 0 );
1148                                 free( ml );
1149                         }
1150
1151                         } break;
1152
1153                 default:
1154                         assert( 0 );
1155                 }
1156
1157 done2:;
1158                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1159                 be_entry_release_r( op, target );
1160                 op->o_bd->bd_info = (BackendInfo *)on;
1161         }
1162
1163         sc = op->o_tmpalloc( sizeof(slap_callback)+sizeof(*mci), op->o_tmpmemctx );
1164         sc->sc_private = sc+1;
1165         sc->sc_response = memberof_res_modify;
1166         sc->sc_cleanup = memberof_cleanup;
1167         mci = sc->sc_private;
1168         mci->on = on;
1169         mci->member = NULL;
1170         mci->memberof = NULL;
1171         mci->what = mcis.what;
1172
1173         if ( save_member ) {
1174                 op->o_dn = op->o_bd->be_rootdn;
1175                 op->o_ndn = op->o_bd->be_rootndn;
1176                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1177                 rc = backend_attribute( op, NULL, &op->o_req_ndn,
1178                                 mo->mo_ad_member, &mci->member, ACL_READ );
1179                 op->o_bd->bd_info = (BackendInfo *)on;
1180         }
1181
1182         sc->sc_next = op->o_callback;
1183         op->o_callback = sc;
1184
1185         rc = SLAP_CB_CONTINUE;
1186
1187 done:;
1188         op->o_dn = save_dn;
1189         op->o_ndn = save_ndn;
1190         op->o_bd->bd_info = (BackendInfo *)on;
1191
1192         return rc;
1193 }
1194
1195 static int
1196 memberof_op_modrdn( Operation *op, SlapReply *rs )
1197 {
1198         slap_overinst   *on = (slap_overinst *)op->o_bd->bd_info;
1199         slap_callback *sc;
1200         memberof_cbinfo_t *mci;
1201         OpExtra         *oex;
1202
1203         LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
1204                 if ( oex->oe_key == (void *)&memberof )
1205                         return SLAP_CB_CONTINUE;
1206         }
1207
1208         sc = op->o_tmpalloc( sizeof(slap_callback)+sizeof(*mci), op->o_tmpmemctx );
1209         sc->sc_private = sc+1;
1210         sc->sc_response = memberof_res_modrdn;
1211         sc->sc_cleanup = memberof_cleanup;
1212         mci = sc->sc_private;
1213         mci->on = on;
1214         mci->member = NULL;
1215         mci->memberof = NULL;
1216
1217         sc->sc_next = op->o_callback;
1218         op->o_callback = sc;
1219
1220         return SLAP_CB_CONTINUE;
1221 }
1222
1223 /*
1224  * response callback that adds memberof values when a group is added.
1225  */
1226 static int
1227 memberof_res_add( Operation *op, SlapReply *rs )
1228 {
1229         memberof_cbinfo_t *mci = op->o_callback->sc_private;
1230         slap_overinst   *on = mci->on;
1231         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
1232
1233         int             i;
1234
1235         if ( rs->sr_err != LDAP_SUCCESS ) {
1236                 return SLAP_CB_CONTINUE;
1237         }
1238
1239         if ( MEMBEROF_REVERSE( mo ) ) {
1240                 Attribute       *ma;
1241
1242                 ma = attr_find( op->ora_e->e_attrs, mo->mo_ad_memberof );
1243                 if ( ma != NULL ) {
1244                         char relax = op->o_relax;
1245
1246                         /* relax is required to allow to add
1247                          * a non-existing member */
1248                         op->o_relax = SLAP_CONTROL_CRITICAL;
1249
1250                         for ( i = 0; !BER_BVISNULL( &ma->a_nvals[ i ] ); i++ ) {
1251                 
1252                                 /* ITS#6670 Ignore member pointing to this entry */
1253                                 if ( dn_match( &ma->a_nvals[i], &op->o_req_ndn ))
1254                                         continue;
1255
1256                                 /* the modification is attempted
1257                                  * with the original identity */
1258                                 (void)memberof_value_modify( op, rs,
1259                                         &ma->a_nvals[ i ], mo->mo_ad_member,
1260                                         NULL, NULL, &op->o_req_dn, &op->o_req_ndn );
1261                         }
1262                 }
1263         }
1264
1265         if ( is_entry_objectclass_or_sub( op->ora_e, mo->mo_oc_group ) ) {
1266                 Attribute       *a;
1267
1268                 for ( a = attrs_find( op->ora_e->e_attrs, mo->mo_ad_member );
1269                                 a != NULL;
1270                                 a = attrs_find( a->a_next, mo->mo_ad_member ) )
1271                 {
1272                         for ( i = 0; !BER_BVISNULL( &a->a_nvals[ i ] ); i++ ) {
1273                                 /* ITS#6670 Ignore member pointing to this entry */
1274                                 if ( dn_match( &a->a_nvals[i], &op->o_req_ndn ))
1275                                         continue;
1276
1277                                 (void)memberof_value_modify( op, rs,
1278                                                 &a->a_nvals[ i ],
1279                                                 mo->mo_ad_memberof,
1280                                                 NULL, NULL,
1281                                                 &op->o_req_dn,
1282                                                 &op->o_req_ndn );
1283                         }
1284                 }
1285         }
1286
1287         return SLAP_CB_CONTINUE;
1288 }
1289
1290 /*
1291  * response callback that deletes memberof values when a group is deleted.
1292  */
1293 static int
1294 memberof_res_delete( Operation *op, SlapReply *rs )
1295 {
1296         memberof_cbinfo_t *mci = op->o_callback->sc_private;
1297         slap_overinst   *on = mci->on;
1298         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
1299
1300         BerVarray       vals;
1301         int             i;
1302
1303         if ( rs->sr_err != LDAP_SUCCESS ) {
1304                 return SLAP_CB_CONTINUE;
1305         }
1306
1307         vals = mci->member;
1308         if ( vals != NULL ) {
1309                 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1310                         (void)memberof_value_modify( op, rs,
1311                                         &vals[ i ], mo->mo_ad_memberof,
1312                                         &op->o_req_dn, &op->o_req_ndn,
1313                                         NULL, NULL );
1314                 }
1315         }
1316
1317         if ( MEMBEROF_REFINT( mo ) ) {
1318                 vals = mci->memberof;
1319                 if ( vals != NULL ) {
1320                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1321                                 (void)memberof_value_modify( op, rs,
1322                                                 &vals[ i ], mo->mo_ad_member,
1323                                                 &op->o_req_dn, &op->o_req_ndn,
1324                                                 NULL, NULL );
1325                         }
1326                 }
1327         }
1328
1329         return SLAP_CB_CONTINUE;
1330 }
1331
1332 /*
1333  * response callback that adds/deletes memberof values when a group
1334  * is modified.
1335  */
1336 static int
1337 memberof_res_modify( Operation *op, SlapReply *rs )
1338 {
1339         memberof_cbinfo_t *mci = op->o_callback->sc_private;
1340         slap_overinst   *on = mci->on;
1341         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
1342
1343         int             i, rc;
1344         Modifications   *ml, *mml = NULL;
1345         BerVarray       vals;
1346
1347         if ( rs->sr_err != LDAP_SUCCESS ) {
1348                 return SLAP_CB_CONTINUE;
1349         }
1350
1351         if ( MEMBEROF_REVERSE( mo ) ) {
1352                 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
1353                         if ( ml->sml_desc == mo->mo_ad_memberof ) {
1354                                 mml = ml;
1355                                 break;
1356                         }
1357                 }
1358         }
1359
1360         if ( mml != NULL ) {
1361                 BerVarray       vals = mml->sml_nvalues;
1362
1363                 switch ( mml->sml_op ) {
1364                 case LDAP_MOD_DELETE:
1365                         if ( vals != NULL ) {
1366                                 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1367                                         memberof_value_modify( op, rs,
1368                                                         &vals[ i ], mo->mo_ad_member,
1369                                                         &op->o_req_dn, &op->o_req_ndn,
1370                                                         NULL, NULL );
1371                                 }
1372                                 break;
1373                         }
1374                         /* fall thru */
1375
1376                 case LDAP_MOD_REPLACE:
1377                         /* delete all ... */
1378                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
1379                         rc = backend_attribute( op, NULL, &op->o_req_ndn,
1380                                         mo->mo_ad_memberof, &vals, ACL_READ );
1381                         op->o_bd->bd_info = (BackendInfo *)on;
1382                         if ( rc == LDAP_SUCCESS ) {
1383                                 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1384                                         (void)memberof_value_modify( op, rs,
1385                                                         &vals[ i ], mo->mo_ad_member,
1386                                                         &op->o_req_dn, &op->o_req_ndn,
1387                                                         NULL, NULL );
1388                                 }
1389                                 ber_bvarray_free_x( vals, op->o_tmpmemctx );
1390                         }
1391
1392                         if ( ml->sml_op == LDAP_MOD_DELETE || !mml->sml_values ) {
1393                                 break;
1394                         }
1395                         /* fall thru */
1396
1397                 case LDAP_MOD_ADD:
1398                         assert( vals != NULL );
1399
1400                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1401                                 memberof_value_modify( op, rs,
1402                                                 &vals[ i ], mo->mo_ad_member,
1403                                                 NULL, NULL,
1404                                                 &op->o_req_dn, &op->o_req_ndn );
1405                         }
1406                         break;
1407
1408                 default:
1409                         assert( 0 );
1410                 }
1411         }
1412
1413         if ( mci->what & MEMBEROF_IS_GROUP )
1414         {
1415                 for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
1416                         if ( ml->sml_desc != mo->mo_ad_member ) {
1417                                 continue;
1418                         }
1419
1420                         switch ( ml->sml_op ) {
1421                         case LDAP_MOD_DELETE:
1422                                 vals = ml->sml_nvalues;
1423                                 if ( vals != NULL ) {
1424                                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1425                                                 memberof_value_modify( op, rs,
1426                                                                 &vals[ i ], mo->mo_ad_memberof,
1427                                                                 &op->o_req_dn, &op->o_req_ndn,
1428                                                                 NULL, NULL );
1429                                         }
1430                                         break;
1431                                 }
1432                                 /* fall thru */
1433         
1434                         case LDAP_MOD_REPLACE:
1435                                 vals = mci->member;
1436
1437                                 /* delete all ... */
1438                                 if ( vals != NULL ) {
1439                                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1440                                                 (void)memberof_value_modify( op, rs,
1441                                                                 &vals[ i ], mo->mo_ad_memberof,
1442                                                                 &op->o_req_dn, &op->o_req_ndn,
1443                                                                 NULL, NULL );
1444                                         }
1445                                 }
1446         
1447                                 if ( ml->sml_op == LDAP_MOD_DELETE || !ml->sml_values ) {
1448                                         break;
1449                                 }
1450                                 /* fall thru */
1451         
1452                         case LDAP_MOD_ADD:
1453                                 assert( ml->sml_nvalues != NULL );
1454                                 vals = ml->sml_nvalues;
1455                                 for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1456                                         memberof_value_modify( op, rs,
1457                                                         &vals[ i ], mo->mo_ad_memberof,
1458                                                         NULL, NULL,
1459                                                         &op->o_req_dn, &op->o_req_ndn );
1460                                 }
1461                                 break;
1462         
1463                         default:
1464                                 assert( 0 );
1465                         }
1466                 }
1467         }
1468
1469         return SLAP_CB_CONTINUE;
1470 }
1471
1472 /*
1473  * response callback that adds/deletes member values when a group member
1474  * is renamed.
1475  */
1476 static int
1477 memberof_res_modrdn( Operation *op, SlapReply *rs )
1478 {
1479         memberof_cbinfo_t *mci = op->o_callback->sc_private;
1480         slap_overinst   *on = mci->on;
1481         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
1482
1483         struct berval   newPDN, newDN = BER_BVNULL, newPNDN, newNDN;
1484         int             i, rc;
1485         BerVarray       vals;
1486
1487         struct berval   save_dn, save_ndn;
1488
1489         if ( rs->sr_err != LDAP_SUCCESS ) {
1490                 return SLAP_CB_CONTINUE;
1491         }
1492
1493         mci->what = MEMBEROF_IS_GROUP;
1494         if ( MEMBEROF_REFINT( mo ) ) {
1495                 mci->what |= MEMBEROF_IS_MEMBER;
1496         }
1497
1498         if ( op->orr_nnewSup ) {
1499                 newPNDN = *op->orr_nnewSup;
1500
1501         } else {
1502                 dnParent( &op->o_req_ndn, &newPNDN );
1503         }
1504
1505         build_new_dn( &newNDN, &newPNDN, &op->orr_nnewrdn, op->o_tmpmemctx ); 
1506
1507         save_dn = op->o_req_dn;
1508         save_ndn = op->o_req_ndn;
1509
1510         op->o_req_dn = newNDN;
1511         op->o_req_ndn = newNDN;
1512         rc = memberof_isGroupOrMember( op, mci );
1513         op->o_req_dn = save_dn;
1514         op->o_req_ndn = save_ndn;
1515
1516         if ( rc != LDAP_SUCCESS || mci->what == MEMBEROF_IS_NONE ) {
1517                 goto done;
1518         }
1519
1520         if ( op->orr_newSup ) {
1521                 newPDN = *op->orr_newSup;
1522
1523         } else {
1524                 dnParent( &op->o_req_dn, &newPDN );
1525         }
1526
1527         build_new_dn( &newDN, &newPDN, &op->orr_newrdn, op->o_tmpmemctx ); 
1528
1529         if ( mci->what & MEMBEROF_IS_GROUP ) {
1530                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1531                 rc = backend_attribute( op, NULL, &newNDN,
1532                                 mo->mo_ad_member, &vals, ACL_READ );
1533                 op->o_bd->bd_info = (BackendInfo *)on;
1534
1535                 if ( rc == LDAP_SUCCESS ) {
1536                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1537                                 (void)memberof_value_modify( op, rs,
1538                                                 &vals[ i ], mo->mo_ad_memberof,
1539                                                 &op->o_req_dn, &op->o_req_ndn,
1540                                                 &newDN, &newNDN );
1541                         }
1542                         ber_bvarray_free_x( vals, op->o_tmpmemctx );
1543                 }
1544         }
1545
1546         if ( MEMBEROF_REFINT( mo ) && ( mci->what & MEMBEROF_IS_MEMBER ) ) {
1547                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1548                 rc = backend_attribute( op, NULL, &newNDN,
1549                                 mo->mo_ad_memberof, &vals, ACL_READ );
1550                 op->o_bd->bd_info = (BackendInfo *)on;
1551
1552                 if ( rc == LDAP_SUCCESS ) {
1553                         for ( i = 0; !BER_BVISNULL( &vals[ i ] ); i++ ) {
1554                                 (void)memberof_value_modify( op, rs,
1555                                                 &vals[ i ], mo->mo_ad_member,
1556                                                 &op->o_req_dn, &op->o_req_ndn,
1557                                                 &newDN, &newNDN );
1558                         }
1559                         ber_bvarray_free_x( vals, op->o_tmpmemctx );
1560                 }
1561         }
1562
1563 done:;
1564         if ( !BER_BVISNULL( &newDN ) ) {
1565                 op->o_tmpfree( newDN.bv_val, op->o_tmpmemctx );
1566         }
1567         op->o_tmpfree( newNDN.bv_val, op->o_tmpmemctx );
1568
1569         return SLAP_CB_CONTINUE;
1570 }
1571
1572
1573 static int
1574 memberof_db_init(
1575         BackendDB       *be,
1576         ConfigReply     *cr )
1577 {
1578         slap_overinst   *on = (slap_overinst *)be->bd_info;
1579         memberof_t              *mo;
1580
1581         mo = (memberof_t *)ch_calloc( 1, sizeof( memberof_t ) );
1582
1583         /* safe default */
1584         mo->mo_dangling_err = LDAP_CONSTRAINT_VIOLATION;
1585
1586         on->on_bi.bi_private = (void *)mo;
1587
1588         return 0;
1589 }
1590
1591 enum {
1592         MO_DN = 1,
1593         MO_DANGLING,
1594         MO_REFINT,
1595         MO_GROUP_OC,
1596         MO_MEMBER_AD,
1597         MO_MEMBER_OF_AD,
1598 #if 0
1599         MO_REVERSE,
1600 #endif
1601
1602         MO_DANGLING_ERROR,
1603
1604         MO_LAST
1605 };
1606
1607 static ConfigDriver mo_cf_gen;
1608
1609 #define OID             "1.3.6.1.4.1.7136.2.666.4"
1610 #define OIDAT           OID ".1.1"
1611 #define OIDCFGAT        OID ".1.2"
1612 #define OIDOC           OID ".2.1"
1613 #define OIDCFGOC        OID ".2.2"
1614
1615
1616 static ConfigTable mo_cfg[] = {
1617         { "memberof-dn", "modifiersName",
1618                 2, 2, 0, ARG_MAGIC|ARG_DN|MO_DN, mo_cf_gen,
1619                 "( OLcfgOvAt:18.0 NAME 'olcMemberOfDN' "
1620                         "DESC 'DN to be used as modifiersName' "
1621                         "SYNTAX OMsDN SINGLE-VALUE )",
1622                 NULL, NULL },
1623
1624         { "memberof-dangling", "ignore|drop|error",
1625                 2, 2, 0, ARG_MAGIC|MO_DANGLING, mo_cf_gen,
1626                 "( OLcfgOvAt:18.1 NAME 'olcMemberOfDangling' "
1627                         "DESC 'Behavior with respect to dangling members, "
1628                                 "constrained to ignore, drop, error' "
1629                         "SYNTAX OMsDirectoryString SINGLE-VALUE )",
1630                 NULL, NULL },
1631
1632         { "memberof-refint", "true|FALSE",
1633                 2, 2, 0, ARG_MAGIC|ARG_ON_OFF|MO_REFINT, mo_cf_gen,
1634                 "( OLcfgOvAt:18.2 NAME 'olcMemberOfRefInt' "
1635                         "DESC 'Take care of referential integrity' "
1636                         "SYNTAX OMsBoolean SINGLE-VALUE )",
1637                 NULL, NULL },
1638
1639         { "memberof-group-oc", "objectClass",
1640                 2, 2, 0, ARG_MAGIC|MO_GROUP_OC, mo_cf_gen,
1641                 "( OLcfgOvAt:18.3 NAME 'olcMemberOfGroupOC' "
1642                         "DESC 'Group objectClass' "
1643                         "SYNTAX OMsDirectoryString SINGLE-VALUE )",
1644                 NULL, NULL },
1645
1646         { "memberof-member-ad", "member attribute",
1647                 2, 2, 0, ARG_MAGIC|MO_MEMBER_AD, mo_cf_gen,
1648                 "( OLcfgOvAt:18.4 NAME 'olcMemberOfMemberAD' "
1649                         "DESC 'member attribute' "
1650                         "SYNTAX OMsDirectoryString SINGLE-VALUE )",
1651                 NULL, NULL },
1652
1653         { "memberof-memberof-ad", "memberOf attribute",
1654                 2, 2, 0, ARG_MAGIC|MO_MEMBER_OF_AD, mo_cf_gen,
1655                 "( OLcfgOvAt:18.5 NAME 'olcMemberOfMemberOfAD' "
1656                         "DESC 'memberOf attribute' "
1657                         "SYNTAX OMsDirectoryString SINGLE-VALUE )",
1658                 NULL, NULL },
1659
1660 #if 0
1661         { "memberof-reverse", "true|FALSE",
1662                 2, 2, 0, ARG_MAGIC|ARG_ON_OFF|MO_REVERSE, mo_cf_gen,
1663                 "( OLcfgOvAt:18.6 NAME 'olcMemberOfReverse' "
1664                         "DESC 'Take care of referential integrity "
1665                                 "also when directly modifying memberOf' "
1666                         "SYNTAX OMsBoolean SINGLE-VALUE )",
1667                 NULL, NULL },
1668 #endif
1669
1670         { "memberof-dangling-error", "error code",
1671                 2, 2, 0, ARG_MAGIC|MO_DANGLING_ERROR, mo_cf_gen,
1672                 "( OLcfgOvAt:18.7 NAME 'olcMemberOfDanglingError' "
1673                         "DESC 'Error code returned in case of dangling back reference' "
1674                         "SYNTAX OMsDirectoryString SINGLE-VALUE )",
1675                 NULL, NULL },
1676
1677         { NULL, NULL, 0, 0, 0, ARG_IGNORED }
1678 };
1679
1680 static ConfigOCs mo_ocs[] = {
1681         { "( OLcfgOvOc:18.1 "
1682                 "NAME 'olcMemberOf' "
1683                 "DESC 'Member-of configuration' "
1684                 "SUP olcOverlayConfig "
1685                 "MAY ( "
1686                         "olcMemberOfDN "
1687                         "$ olcMemberOfDangling "
1688                         "$ olcMemberOfDanglingError"
1689                         "$ olcMemberOfRefInt "
1690                         "$ olcMemberOfGroupOC "
1691                         "$ olcMemberOfMemberAD "
1692                         "$ olcMemberOfMemberOfAD "
1693 #if 0
1694                         "$ olcMemberOfReverse "
1695 #endif
1696                         ") "
1697                 ")",
1698                 Cft_Overlay, mo_cfg, NULL, NULL },
1699         { NULL, 0, NULL }
1700 };
1701
1702 static slap_verbmasks dangling_mode[] = {
1703         { BER_BVC( "ignore" ),          MEMBEROF_NONE },
1704         { BER_BVC( "drop" ),            MEMBEROF_FDANGLING_DROP },
1705         { BER_BVC( "error" ),           MEMBEROF_FDANGLING_ERROR },
1706         { BER_BVNULL,                   0 }
1707 };
1708
1709 static int
1710 memberof_make_group_filter( memberof_t *mo )
1711 {
1712         char            *ptr;
1713
1714         if ( !BER_BVISNULL( &mo->mo_groupFilterstr ) ) {
1715                 ch_free( mo->mo_groupFilterstr.bv_val );
1716         }
1717
1718         mo->mo_groupFilter.f_choice = LDAP_FILTER_EQUALITY;
1719         mo->mo_groupFilter.f_ava = &mo->mo_groupAVA;
1720         
1721         mo->mo_groupFilter.f_av_desc = slap_schema.si_ad_objectClass;
1722         mo->mo_groupFilter.f_av_value = mo->mo_oc_group->soc_cname;
1723
1724         mo->mo_groupFilterstr.bv_len = STRLENOF( "(=)" )
1725                 + slap_schema.si_ad_objectClass->ad_cname.bv_len
1726                 + mo->mo_oc_group->soc_cname.bv_len;
1727         ptr = mo->mo_groupFilterstr.bv_val = ch_malloc( mo->mo_groupFilterstr.bv_len + 1 );
1728         *ptr++ = '(';
1729         ptr = lutil_strcopy( ptr, slap_schema.si_ad_objectClass->ad_cname.bv_val );
1730         *ptr++ = '=';
1731         ptr = lutil_strcopy( ptr, mo->mo_oc_group->soc_cname.bv_val );
1732         *ptr++ = ')';
1733         *ptr = '\0';
1734
1735         return 0;
1736 }
1737
1738 static int
1739 memberof_make_member_filter( memberof_t *mo )
1740 {
1741         char            *ptr;
1742
1743         if ( !BER_BVISNULL( &mo->mo_memberFilterstr ) ) {
1744                 ch_free( mo->mo_memberFilterstr.bv_val );
1745         }
1746
1747         mo->mo_memberFilter.f_choice = LDAP_FILTER_PRESENT;
1748         mo->mo_memberFilter.f_desc = mo->mo_ad_memberof;
1749
1750         mo->mo_memberFilterstr.bv_len = STRLENOF( "(=*)" )
1751                 + mo->mo_ad_memberof->ad_cname.bv_len;
1752         ptr = mo->mo_memberFilterstr.bv_val = ch_malloc( mo->mo_memberFilterstr.bv_len + 1 );
1753         *ptr++ = '(';
1754         ptr = lutil_strcopy( ptr, mo->mo_ad_memberof->ad_cname.bv_val );
1755         ptr = lutil_strcopy( ptr, "=*)" );
1756
1757         return 0;
1758 }
1759
1760 static int
1761 mo_cf_gen( ConfigArgs *c )
1762 {
1763         slap_overinst   *on = (slap_overinst *)c->bi;
1764         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
1765
1766         int             i, rc = 0;
1767
1768         if ( c->op == SLAP_CONFIG_EMIT ) {
1769                 struct berval bv = BER_BVNULL;
1770
1771                 switch( c->type ) {
1772                 case MO_DN:
1773                         if ( mo->mo_dn.bv_val != NULL) {
1774                                 value_add_one( &c->rvalue_vals, &mo->mo_dn );
1775                                 value_add_one( &c->rvalue_nvals, &mo->mo_ndn );
1776                         }
1777                         break;
1778
1779                 case MO_DANGLING:
1780                         enum_to_verb( dangling_mode, (mo->mo_flags & MEMBEROF_FDANGLING_MASK), &bv );
1781                         if ( BER_BVISNULL( &bv ) ) {
1782                                 /* there's something wrong... */
1783                                 assert( 0 );
1784                                 rc = 1;
1785
1786                         } else {
1787                                 value_add_one( &c->rvalue_vals, &bv );
1788                         }
1789                         break;
1790
1791                 case MO_DANGLING_ERROR:
1792                         if ( mo->mo_flags & MEMBEROF_FDANGLING_ERROR ) {
1793                                 char buf[ SLAP_TEXT_BUFLEN ];
1794                                 enum_to_verb( slap_ldap_response_code, mo->mo_dangling_err, &bv );
1795                                 if ( BER_BVISNULL( &bv ) ) {
1796                                         bv.bv_len = snprintf( buf, sizeof( buf ), "0x%x", mo->mo_dangling_err );
1797                                         if ( bv.bv_len < sizeof( buf ) ) {
1798                                                 bv.bv_val = buf;
1799                                         } else {
1800                                                 rc = 1;
1801                                                 break;
1802                                         }
1803                                 }
1804                                 value_add_one( &c->rvalue_vals, &bv );
1805                         } else {
1806                                 rc = 1;
1807                         }
1808                         break;
1809
1810                 case MO_REFINT:
1811                         c->value_int = MEMBEROF_REFINT( mo );
1812                         break;
1813
1814 #if 0
1815                 case MO_REVERSE:
1816                         c->value_int = MEMBEROF_REVERSE( mo );
1817                         break;
1818 #endif
1819
1820                 case MO_GROUP_OC:
1821                         if ( mo->mo_oc_group != NULL ){
1822                                 value_add_one( &c->rvalue_vals, &mo->mo_oc_group->soc_cname );
1823                         }
1824                         break;
1825
1826                 case MO_MEMBER_AD:
1827                         if ( mo->mo_ad_member != NULL ){
1828                                 value_add_one( &c->rvalue_vals, &mo->mo_ad_member->ad_cname );
1829                         }
1830                         break;
1831
1832                 case MO_MEMBER_OF_AD:
1833                         if ( mo->mo_ad_memberof != NULL ){
1834                                 value_add_one( &c->rvalue_vals, &mo->mo_ad_memberof->ad_cname );
1835                         }
1836                         break;
1837
1838                 default:
1839                         assert( 0 );
1840                         return 1;
1841                 }
1842
1843                 return rc;
1844
1845         } else if ( c->op == LDAP_MOD_DELETE ) {
1846                 return 1;       /* FIXME */
1847
1848         } else {
1849                 switch( c->type ) {
1850                 case MO_DN:
1851                         if ( !BER_BVISNULL( &mo->mo_dn ) ) {
1852                                 ber_memfree( mo->mo_dn.bv_val );
1853                                 ber_memfree( mo->mo_ndn.bv_val );
1854                         }
1855                         mo->mo_dn = c->value_dn;
1856                         mo->mo_ndn = c->value_ndn;
1857                         break;
1858
1859                 case MO_DANGLING:
1860                         i = verb_to_mask( c->argv[ 1 ], dangling_mode );
1861                         if ( BER_BVISNULL( &dangling_mode[ i ].word ) ) {
1862                                 return 1;
1863                         }
1864
1865                         mo->mo_flags &= ~MEMBEROF_FDANGLING_MASK;
1866                         mo->mo_flags |= dangling_mode[ i ].mask;
1867                         break;
1868
1869                 case MO_DANGLING_ERROR:
1870                         i = verb_to_mask( c->argv[ 1 ], slap_ldap_response_code );
1871                         if ( !BER_BVISNULL( &slap_ldap_response_code[ i ].word ) ) {
1872                                 mo->mo_dangling_err = slap_ldap_response_code[ i ].mask;
1873                         } else if ( lutil_atoix( &mo->mo_dangling_err, c->argv[ 1 ], 0 ) ) {
1874                                 return 1;
1875                         }
1876                         break;
1877
1878                 case MO_REFINT:
1879                         if ( c->value_int ) {
1880                                 mo->mo_flags |= MEMBEROF_FREFINT;
1881
1882                         } else {
1883                                 mo->mo_flags &= ~MEMBEROF_FREFINT;
1884                         }
1885                         break;
1886
1887 #if 0
1888                 case MO_REVERSE:
1889                         if ( c->value_int ) {
1890                                 mo->mo_flags |= MEMBEROF_FREVERSE;
1891
1892                         } else {
1893                                 mo->mo_flags &= ~MEMBEROF_FREVERSE;
1894                         }
1895                         break;
1896 #endif
1897
1898                 case MO_GROUP_OC: {
1899                         ObjectClass     *oc = NULL;
1900
1901                         oc = oc_find( c->argv[ 1 ] );
1902                         if ( oc == NULL ) {
1903                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1904                                         "unable to find group objectClass=\"%s\"",
1905                                         c->argv[ 1 ] );
1906                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n",
1907                                         c->log, c->cr_msg, 0 );
1908                                 return 1;
1909                         }
1910
1911                         mo->mo_oc_group = oc;
1912                         memberof_make_group_filter( mo );
1913                         } break;
1914
1915                 case MO_MEMBER_AD: {
1916                         AttributeDescription    *ad = NULL;
1917                         const char              *text = NULL;
1918
1919
1920                         rc = slap_str2ad( c->argv[ 1 ], &ad, &text );
1921                         if ( rc != LDAP_SUCCESS ) {
1922                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1923                                         "unable to find member attribute=\"%s\": %s (%d)",
1924                                         c->argv[ 1 ], text, rc );
1925                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n",
1926                                         c->log, c->cr_msg, 0 );
1927                                 return 1;
1928                         }
1929
1930                         if ( !is_at_syntax( ad->ad_type, SLAPD_DN_SYNTAX )              /* e.g. "member" */
1931                                 && !is_at_syntax( ad->ad_type, SLAPD_NAMEUID_SYNTAX ) ) /* e.g. "uniqueMember" */
1932                         {
1933                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1934                                         "member attribute=\"%s\" must either "
1935                                         "have DN (%s) or nameUID (%s) syntax",
1936                                         c->argv[ 1 ], SLAPD_DN_SYNTAX, SLAPD_NAMEUID_SYNTAX );
1937                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n",
1938                                         c->log, c->cr_msg, 0 );
1939                                 return 1;
1940                         }
1941
1942                         mo->mo_ad_member = ad;
1943                         } break;
1944
1945                 case MO_MEMBER_OF_AD: {
1946                         AttributeDescription    *ad = NULL;
1947                         const char              *text = NULL;
1948
1949
1950                         rc = slap_str2ad( c->argv[ 1 ], &ad, &text );
1951                         if ( rc != LDAP_SUCCESS ) {
1952                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1953                                         "unable to find memberof attribute=\"%s\": %s (%d)",
1954                                         c->argv[ 1 ], text, rc );
1955                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n",
1956                                         c->log, c->cr_msg, 0 );
1957                                 return 1;
1958                         }
1959
1960                         if ( !is_at_syntax( ad->ad_type, SLAPD_DN_SYNTAX )              /* e.g. "member" */
1961                                 && !is_at_syntax( ad->ad_type, SLAPD_NAMEUID_SYNTAX ) ) /* e.g. "uniqueMember" */
1962                         {
1963                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
1964                                         "memberof attribute=\"%s\" must either "
1965                                         "have DN (%s) or nameUID (%s) syntax",
1966                                         c->argv[ 1 ], SLAPD_DN_SYNTAX, SLAPD_NAMEUID_SYNTAX );
1967                                 Debug( LDAP_DEBUG_CONFIG, "%s: %s.\n",
1968                                         c->log, c->cr_msg, 0 );
1969                                 return 1;
1970                         }
1971
1972                         mo->mo_ad_memberof = ad;
1973                         memberof_make_member_filter( mo );
1974                         } break;
1975
1976                 default:
1977                         assert( 0 );
1978                         return 1;
1979                 }
1980         }
1981
1982         return 0;
1983 }
1984
1985 static int
1986 memberof_db_open(
1987         BackendDB       *be,
1988         ConfigReply     *cr )
1989 {
1990         slap_overinst   *on = (slap_overinst *)be->bd_info;
1991         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
1992         
1993         int             rc;
1994         const char      *text = NULL;
1995
1996         if( ! mo->mo_ad_memberof ){
1997                 rc = slap_str2ad( SLAPD_MEMBEROF_ATTR, &mo->mo_ad_memberof, &text );
1998                 if ( rc != LDAP_SUCCESS ) {
1999                         Debug( LDAP_DEBUG_ANY, "memberof_db_open: "
2000                                         "unable to find attribute=\"%s\": %s (%d)\n",
2001                                         SLAPD_MEMBEROF_ATTR, text, rc );
2002                         return rc;
2003                 }
2004         }
2005
2006         if( ! mo->mo_ad_member ){
2007                 rc = slap_str2ad( SLAPD_GROUP_ATTR, &mo->mo_ad_member, &text );
2008                 if ( rc != LDAP_SUCCESS ) {
2009                         Debug( LDAP_DEBUG_ANY, "memberof_db_open: "
2010                                         "unable to find attribute=\"%s\": %s (%d)\n",
2011                                         SLAPD_GROUP_ATTR, text, rc );
2012                         return rc;
2013                 }
2014         }
2015
2016         if( ! mo->mo_oc_group ){
2017                 mo->mo_oc_group = oc_find( SLAPD_GROUP_CLASS );
2018                 if ( mo->mo_oc_group == NULL ) {
2019                         Debug( LDAP_DEBUG_ANY,
2020                                         "memberof_db_open: "
2021                                         "unable to find objectClass=\"%s\"\n",
2022                                         SLAPD_GROUP_CLASS, 0, 0 );
2023                         return 1;
2024                 }
2025         }
2026
2027         if ( BER_BVISNULL( &mo->mo_dn ) && !BER_BVISNULL( &be->be_rootdn ) ) {
2028                 ber_dupbv( &mo->mo_dn, &be->be_rootdn );
2029                 ber_dupbv( &mo->mo_ndn, &be->be_rootndn );
2030         }
2031
2032         if ( BER_BVISNULL( &mo->mo_groupFilterstr ) ) {
2033                 memberof_make_group_filter( mo );
2034         }
2035
2036         if ( BER_BVISNULL( &mo->mo_memberFilterstr ) ) {
2037                 memberof_make_member_filter( mo );
2038         }
2039
2040         return 0;
2041 }
2042
2043 static int
2044 memberof_db_destroy(
2045         BackendDB       *be,
2046         ConfigReply     *cr )
2047 {
2048         slap_overinst   *on = (slap_overinst *)be->bd_info;
2049         memberof_t      *mo = (memberof_t *)on->on_bi.bi_private;
2050
2051         if ( mo ) {
2052                 if ( !BER_BVISNULL( &mo->mo_dn ) ) {
2053                         ber_memfree( mo->mo_dn.bv_val );
2054                         ber_memfree( mo->mo_ndn.bv_val );
2055                 }
2056
2057                 if ( !BER_BVISNULL( &mo->mo_groupFilterstr ) ) {
2058                         ber_memfree( mo->mo_groupFilterstr.bv_val );
2059                 }
2060
2061                 if ( !BER_BVISNULL( &mo->mo_memberFilterstr ) ) {
2062                         ber_memfree( mo->mo_memberFilterstr.bv_val );
2063                 }
2064
2065                 ber_memfree( mo );
2066         }
2067
2068         return 0;
2069 }
2070
2071 /* unused */
2072 static AttributeDescription     *ad_memberOf;
2073
2074 static struct {
2075         char    *desc;
2076         AttributeDescription **adp;
2077 } as[] = {
2078         { "( 1.2.840.113556.1.2.102 "
2079                 "NAME 'memberOf' "
2080                 "DESC 'Group that the entry belongs to' "
2081                 "SYNTAX '1.3.6.1.4.1.1466.115.121.1.12' "
2082                 "EQUALITY distinguishedNameMatch "      /* added */
2083                 "USAGE dSAOperation "                   /* added; questioned */
2084                 /* "NO-USER-MODIFICATION " */           /* add? */
2085                 "X-ORIGIN 'iPlanet Delegated Administrator' )",
2086                 &ad_memberOf },
2087         { NULL }
2088 };
2089
2090 #if SLAPD_OVER_MEMBEROF == SLAPD_MOD_DYNAMIC
2091 static
2092 #endif /* SLAPD_OVER_MEMBEROF == SLAPD_MOD_DYNAMIC */
2093 int
2094 memberof_initialize( void )
2095 {
2096         int                     code, i;
2097
2098         for ( i = 0; as[ i ].desc != NULL; i++ ) {
2099                 code = register_at( as[ i ].desc, as[ i ].adp, 0 );
2100                 if ( code ) {
2101                         Debug( LDAP_DEBUG_ANY,
2102                                 "memberof_initialize: register_at #%d failed\n",
2103                                 i, 0, 0 );
2104                         return code;
2105                 }
2106         }
2107
2108         memberof.on_bi.bi_type = "memberof";
2109
2110         memberof.on_bi.bi_db_init = memberof_db_init;
2111         memberof.on_bi.bi_db_open = memberof_db_open;
2112         memberof.on_bi.bi_db_destroy = memberof_db_destroy;
2113
2114         memberof.on_bi.bi_op_add = memberof_op_add;
2115         memberof.on_bi.bi_op_delete = memberof_op_delete;
2116         memberof.on_bi.bi_op_modify = memberof_op_modify;
2117         memberof.on_bi.bi_op_modrdn = memberof_op_modrdn;
2118
2119         memberof.on_bi.bi_cf_ocs = mo_ocs;
2120
2121         code = config_register_schema( mo_cfg, mo_ocs );
2122         if ( code ) return code;
2123
2124         return overlay_register( &memberof );
2125 }
2126
2127 #if SLAPD_OVER_MEMBEROF == SLAPD_MOD_DYNAMIC
2128 int
2129 init_module( int argc, char *argv[] )
2130 {
2131         return memberof_initialize();
2132 }
2133 #endif /* SLAPD_OVER_MEMBEROF == SLAPD_MOD_DYNAMIC */
2134
2135 #endif /* SLAPD_OVER_MEMBEROF */