]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/rwm.c
check for ee == NULL
[openldap] / servers / slapd / overlays / rwm.c
1 /* rwm.c - rewrite/remap operations */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2007 The OpenLDAP Foundation.
6  * Portions Copyright 2003 Pierangelo Masarati.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 #include "portable.h"
19
20 #ifdef SLAPD_OVER_RWM
21
22 #include <stdio.h>
23
24 #include <ac/string.h>
25
26 #include "slap.h"
27 #include "config.h"
28 #include "lutil.h"
29 #include "rwm.h"
30
31 typedef struct rwm_op_state {
32         ber_tag_t r_tag;
33         struct berval ro_dn;
34         struct berval ro_ndn;
35         struct berval r_dn;
36         struct berval r_ndn;
37         AttributeName *mapped_attrs;
38         OpRequest o_request;
39 } rwm_op_state;
40
41 static int
42 rwm_db_destroy( BackendDB *be, ConfigReply *cr );
43
44 typedef struct rwm_op_cb {
45         slap_callback cb;
46         rwm_op_state ros;
47 } rwm_op_cb;
48
49 static int
50 rwm_op_cleanup( Operation *op, SlapReply *rs )
51 {
52         slap_callback   *cb = op->o_callback;
53         rwm_op_state *ros = cb->sc_private;
54
55         if ( rs->sr_type == REP_RESULT || rs->sr_type == REP_EXTENDED ||
56                 op->o_abandon || rs->sr_err == SLAPD_ABANDON ) {
57
58                 op->o_req_dn = ros->ro_dn;
59                 op->o_req_ndn = ros->ro_ndn;
60
61                 if ( !BER_BVISNULL( &ros->r_dn )
62                         && ros->r_dn.bv_val != ros->r_ndn.bv_val )
63                 {
64                         ch_free( ros->r_dn.bv_val );
65                         BER_BVZERO( &ros->r_dn );
66                 }
67
68                 if ( !BER_BVISNULL( &ros->r_ndn ) ) {
69                         ch_free( ros->r_ndn.bv_val );
70                         BER_BVZERO( &ros->r_ndn );
71                 }
72
73                 switch( ros->r_tag ) {
74                 case LDAP_REQ_COMPARE:
75                         if ( op->orc_ava->aa_value.bv_val != ros->orc_ava->aa_value.bv_val )
76                                 op->o_tmpfree( op->orc_ava->aa_value.bv_val, op->o_tmpmemctx );
77                         op->orc_ava = ros->orc_ava;
78                         break;
79                 case LDAP_REQ_MODIFY:
80                         slap_mods_free( op->orm_modlist, 1 );
81                         op->orm_modlist = ros->orm_modlist;
82                         break;
83                 case LDAP_REQ_MODRDN:
84                         if ( op->orr_newSup != ros->orr_newSup ) {
85                                 ch_free( op->orr_newSup->bv_val );
86                                 ch_free( op->orr_nnewSup->bv_val );
87                                 op->o_tmpfree( op->orr_newSup, op->o_tmpmemctx );
88                                 op->o_tmpfree( op->orr_nnewSup, op->o_tmpmemctx );
89                                 op->orr_newSup = ros->orr_newSup;
90                                 op->orr_nnewSup = ros->orr_nnewSup;
91                         }
92                         break;
93                 case LDAP_REQ_SEARCH:
94                         ch_free( ros->mapped_attrs );
95                         filter_free_x( op, op->ors_filter );
96                         ch_free( op->ors_filterstr.bv_val );
97                         op->ors_attrs = ros->ors_attrs;
98                         op->ors_filter = ros->ors_filter;
99                         op->ors_filterstr = ros->ors_filterstr;
100                         break;
101                 case LDAP_REQ_EXTENDED:
102                         if ( op->ore_reqdata != ros->ore_reqdata ) {
103                                 ber_bvfree( op->ore_reqdata );
104                                 op->ore_reqdata = ros->ore_reqdata;
105                         }
106                         break;
107                 default:        break;
108                 }
109                 op->o_callback = op->o_callback->sc_next;
110                 op->o_tmpfree( cb, op->o_tmpmemctx );
111         }
112
113         return SLAP_CB_CONTINUE;
114 }
115
116 static rwm_op_cb *
117 rwm_callback_get( Operation *op, SlapReply *rs )
118 {
119         rwm_op_cb       *roc = NULL;
120
121         roc = op->o_tmpalloc( sizeof( struct rwm_op_cb ), op->o_tmpmemctx );
122         roc->cb.sc_cleanup = rwm_op_cleanup;
123         roc->cb.sc_response = NULL;
124         roc->cb.sc_next = op->o_callback;
125         roc->cb.sc_private = &roc->ros;
126         roc->ros.r_tag = op->o_tag;
127         roc->ros.ro_dn = op->o_req_dn;
128         roc->ros.ro_ndn = op->o_req_ndn;
129         roc->ros.o_request = op->o_request;
130         BER_BVZERO( &roc->ros.r_dn );
131         BER_BVZERO( &roc->ros.r_ndn );
132
133         return roc;
134 }
135
136
137 static int
138 rwm_op_dn_massage( Operation *op, SlapReply *rs, void *cookie,
139         rwm_op_state *ros )
140 {
141         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
142         struct ldaprwmap        *rwmap = 
143                         (struct ldaprwmap *)on->on_bi.bi_private;
144
145         struct berval           dn = BER_BVNULL,
146                                 ndn = BER_BVNULL;
147         int                     rc = 0;
148         dncookie                dc;
149
150         /*
151          * Rewrite the dn if needed
152          */
153         dc.rwmap = rwmap;
154         dc.conn = op->o_conn;
155         dc.rs = rs;
156         dc.ctx = (char *)cookie;
157
158         /* NOTE: in those cases where only the ndn is available,
159          * and the caller sets op->o_req_dn = op->o_req_ndn,
160          * only rewrite the op->o_req_ndn and use it as 
161          * op->o_req_dn as well */
162         ndn = op->o_req_ndn;
163         if ( op->o_req_dn.bv_val != op->o_req_ndn.bv_val ) {
164                 dn = op->o_req_dn;
165                 rc = rwm_dn_massage_pretty_normalize( &dc, &op->o_req_dn, &dn, &ndn );
166         } else {
167                 rc = rwm_dn_massage_normalize( &dc, &op->o_req_ndn, &ndn );
168         }
169
170         if ( rc != LDAP_SUCCESS ) {
171                 return rc;
172         }
173
174         if ( ( op->o_req_dn.bv_val != op->o_req_ndn.bv_val && dn.bv_val == op->o_req_dn.bv_val )
175                         || ndn.bv_val == op->o_req_ndn.bv_val )
176         {
177                 return LDAP_SUCCESS;
178         }
179
180         if ( op->o_req_dn.bv_val != op->o_req_ndn.bv_val ) {
181                 op->o_req_dn = dn;
182                 ros->r_dn = dn;
183         } else {
184                 op->o_req_dn = ndn;
185         }
186         op->o_req_ndn = ndn;
187         ros->r_ndn = ndn;
188
189         return LDAP_SUCCESS;
190 }
191
192 static int
193 rwm_op_add( Operation *op, SlapReply *rs )
194 {
195         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
196         struct ldaprwmap        *rwmap = 
197                         (struct ldaprwmap *)on->on_bi.bi_private;
198
199         int                     rc,
200                                 i;
201         Attribute               **ap = NULL;
202         char                    *olddn = op->o_req_dn.bv_val;
203         int                     isupdate;
204
205         rwm_op_cb               *roc = rwm_callback_get( op, rs );
206
207         rc = rwm_op_dn_massage( op, rs, "addDN", &roc->ros );
208         if ( rc != LDAP_SUCCESS ) {
209                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
210                 send_ldap_error( op, rs, rc, "addDN massage error" );
211                 return -1;
212         }
213
214         if ( olddn != op->o_req_dn.bv_val ) {
215                 ber_bvreplace( &op->ora_e->e_name, &op->o_req_dn );
216                 ber_bvreplace( &op->ora_e->e_nname, &op->o_req_ndn );
217         }
218
219         /* Count number of attributes in entry */ 
220         isupdate = be_shadow_update( op );
221         for ( i = 0, ap = &op->oq_add.rs_e->e_attrs; *ap; ) {
222                 Attribute       *a;
223
224                 if ( (*ap)->a_desc == slap_schema.si_ad_objectClass ||
225                                 (*ap)->a_desc == slap_schema.si_ad_structuralObjectClass )
226                 {
227                         int             j, last;
228
229                         last = (*ap)->a_numvals - 1;
230                         for ( j = 0; !BER_BVISNULL( &(*ap)->a_vals[ j ] ); j++ ) {
231                                 struct ldapmapping      *mapping = NULL;
232
233                                 ( void )rwm_mapping( &rwmap->rwm_oc, &(*ap)->a_vals[ j ],
234                                                 &mapping, RWM_MAP );
235                                 if ( mapping == NULL ) {
236                                         if ( rwmap->rwm_at.drop_missing ) {
237                                                 /* FIXME: we allow to remove objectClasses as well;
238                                                  * if the resulting entry is inconsistent, that's
239                                                  * the relayed database's business...
240                                                  */
241                                                 ch_free( (*ap)->a_vals[ j ].bv_val );
242                                                 if ( last > j ) {
243                                                         (*ap)->a_vals[ j ] = (*ap)->a_vals[ last ];
244                                                 }
245                                                 BER_BVZERO( &(*ap)->a_vals[ last ] );
246                                                 (*ap)->a_numvals--;
247                                                 last--;
248                                                 j--;
249                                         }
250
251                                 } else {
252                                         ch_free( (*ap)->a_vals[ j ].bv_val );
253                                         ber_dupbv( &(*ap)->a_vals[ j ], &mapping->m_dst );
254                                 }
255                         }
256
257                 } else if ( !isupdate && !get_relax( op ) && (*ap)->a_desc->ad_type->sat_no_user_mod )
258                 {
259                         goto next_attr;
260
261                 } else {
262                         struct ldapmapping      *mapping = NULL;
263
264                         ( void )rwm_mapping( &rwmap->rwm_at, &(*ap)->a_desc->ad_cname,
265                                         &mapping, RWM_MAP );
266                         if ( mapping == NULL ) {
267                                 if ( rwmap->rwm_at.drop_missing ) {
268                                         goto cleanup_attr;
269                                 }
270                         }
271
272                         if ( (*ap)->a_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName
273                                         || ( mapping != NULL && mapping->m_dst_ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) )
274                         {
275                                 /*
276                                  * FIXME: rewrite could fail; in this case
277                                  * the operation should give up, right?
278                                  */
279                                 rc = rwm_dnattr_rewrite( op, rs, "addAttrDN",
280                                                 (*ap)->a_vals,
281                                                 (*ap)->a_nvals ? &(*ap)->a_nvals : NULL );
282                                 if ( rc ) {
283                                         goto cleanup_attr;
284                                 }
285
286                         } else if ( (*ap)->a_desc == slap_schema.si_ad_ref ) {
287                                 rc = rwm_referral_rewrite( op, rs, "referralAttrDN",
288                                                 (*ap)->a_vals,
289                                                 (*ap)->a_nvals ? &(*ap)->a_nvals : NULL );
290                                 if ( rc != LDAP_SUCCESS ) {
291                                         goto cleanup_attr;
292                                 }
293                         }
294                 
295                         if ( mapping != NULL ) {
296                                 assert( mapping->m_dst_ad != NULL );
297                                 (*ap)->a_desc = mapping->m_dst_ad;
298                         }
299                 }
300
301 next_attr:;
302                 ap = &(*ap)->a_next;
303                 continue;
304
305 cleanup_attr:;
306                 /* FIXME: leaking attribute/values? */
307                 a = *ap;
308
309                 *ap = (*ap)->a_next;
310                 attr_free( a );
311         }
312
313         op->o_callback = &roc->cb;
314
315         return SLAP_CB_CONTINUE;
316 }
317
318 static int
319 rwm_conn_init( BackendDB *be, Connection *conn )
320 {
321         slap_overinst           *on = (slap_overinst *) be->bd_info;
322         struct ldaprwmap        *rwmap = 
323                         (struct ldaprwmap *)on->on_bi.bi_private;
324
325         ( void )rewrite_session_init( rwmap->rwm_rw, conn );
326
327         return SLAP_CB_CONTINUE;
328 }
329
330 static int
331 rwm_conn_destroy( BackendDB *be, Connection *conn )
332 {
333         slap_overinst           *on = (slap_overinst *) be->bd_info;
334         struct ldaprwmap        *rwmap = 
335                         (struct ldaprwmap *)on->on_bi.bi_private;
336
337         ( void )rewrite_session_delete( rwmap->rwm_rw, conn );
338
339         return SLAP_CB_CONTINUE;
340 }
341
342 static int
343 rwm_op_bind( Operation *op, SlapReply *rs )
344 {
345         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
346         int                     rc;
347
348         rwm_op_cb               *roc = rwm_callback_get( op, rs );
349
350         rc = rwm_op_dn_massage( op, rs, "bindDN", &roc->ros );
351         if ( rc != LDAP_SUCCESS ) {
352                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
353                 send_ldap_error( op, rs, rc, "bindDN massage error" );
354                 return -1;
355         }
356
357         op->o_callback = &roc->cb;
358
359         return SLAP_CB_CONTINUE;
360 }
361
362 static int
363 rwm_op_unbind( Operation *op, SlapReply *rs )
364 {
365         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
366         struct ldaprwmap        *rwmap = 
367                         (struct ldaprwmap *)on->on_bi.bi_private;
368
369         rewrite_session_delete( rwmap->rwm_rw, op->o_conn );
370
371         return SLAP_CB_CONTINUE;
372 }
373
374 static int
375 rwm_op_compare( Operation *op, SlapReply *rs )
376 {
377         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
378         struct ldaprwmap        *rwmap = 
379                         (struct ldaprwmap *)on->on_bi.bi_private;
380
381         int                     rc;
382         struct berval           mapped_vals[2] = { BER_BVNULL, BER_BVNULL };
383
384         rwm_op_cb               *roc = rwm_callback_get( op, rs );
385
386         rc = rwm_op_dn_massage( op, rs, "compareDN", &roc->ros );
387         if ( rc != LDAP_SUCCESS ) {
388                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
389                 send_ldap_error( op, rs, rc, "compareDN massage error" );
390                 return -1;
391         }
392
393         /* if the attribute is an objectClass, try to remap its value */
394         if ( op->orc_ava->aa_desc == slap_schema.si_ad_objectClass
395                         || op->orc_ava->aa_desc == slap_schema.si_ad_structuralObjectClass )
396         {
397                 rwm_map( &rwmap->rwm_oc, &op->orc_ava->aa_value,
398                                 &mapped_vals[0], RWM_MAP );
399                 if ( BER_BVISNULL( &mapped_vals[0] ) || BER_BVISEMPTY( &mapped_vals[0] ) )
400                 {
401                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
402                         send_ldap_error( op, rs, LDAP_OTHER, "compare objectClass map error" );
403                         return -1;
404
405                 } else if ( mapped_vals[0].bv_val != op->orc_ava->aa_value.bv_val ) {
406                         ber_dupbv_x( &op->orc_ava->aa_value, &mapped_vals[0],
407                                 op->o_tmpmemctx );
408                 }
409
410         } else {
411                 struct ldapmapping      *mapping = NULL;
412                 AttributeDescription    *ad = op->orc_ava->aa_desc;
413
414                 ( void )rwm_mapping( &rwmap->rwm_at, &op->orc_ava->aa_desc->ad_cname,
415                                 &mapping, RWM_MAP );
416                 if ( mapping == NULL ) {
417                         if ( rwmap->rwm_at.drop_missing ) {
418                                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
419                                 send_ldap_error( op, rs, LDAP_OTHER, "compare attributeType map error" );
420                                 return -1;
421                         }
422
423                 } else {
424                         assert( mapping->m_dst_ad != NULL );
425                         ad = mapping->m_dst_ad;
426                 }
427
428                 if ( op->orc_ava->aa_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName
429                                 || ( mapping != NULL && mapping->m_dst_ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) )
430                 {
431                         struct berval   *mapped_valsp[2];
432                         
433                         mapped_valsp[0] = &mapped_vals[0];
434                         mapped_valsp[1] = &mapped_vals[1];
435
436                         mapped_vals[0] = op->orc_ava->aa_value;
437
438                         rc = rwm_dnattr_rewrite( op, rs, "compareAttrDN", NULL, mapped_valsp );
439
440                         if ( rc != LDAP_SUCCESS ) {
441                                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
442                                 send_ldap_error( op, rs, rc, "compareAttrDN massage error" );
443                                 return -1;
444                         }
445
446                         if ( mapped_vals[ 0 ].bv_val != op->orc_ava->aa_value.bv_val ) {
447                                 /* NOTE: if we get here, rwm_dnattr_rewrite()
448                                  * already freed the old value, so now 
449                                  * it's invalid */
450                                 ber_dupbv_x( &op->orc_ava->aa_value, &mapped_vals[0],
451                                         op->o_tmpmemctx );
452                                 ber_memfree_x( mapped_vals[ 0 ].bv_val, NULL );
453                         }
454                 }
455                 op->orc_ava->aa_desc = ad;
456         }
457
458         op->o_callback = &roc->cb;
459
460         return SLAP_CB_CONTINUE;
461 }
462
463 static int
464 rwm_op_delete( Operation *op, SlapReply *rs )
465 {
466         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
467         int                     rc;
468
469         rwm_op_cb               *roc = rwm_callback_get( op, rs );
470
471         rc = rwm_op_dn_massage( op, rs, "deleteDN", &roc->ros );
472         if ( rc != LDAP_SUCCESS ) {
473                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
474                 send_ldap_error( op, rs, rc, "deleteDN massage error" );
475                 return -1;
476         }
477
478         op->o_callback = &roc->cb;
479
480         return SLAP_CB_CONTINUE;
481 }
482
483 static int
484 rwm_op_modify( Operation *op, SlapReply *rs )
485 {
486         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
487         struct ldaprwmap        *rwmap = 
488                         (struct ldaprwmap *)on->on_bi.bi_private;
489
490         int                     isupdate;
491         Modifications           **mlp;
492         int                     rc;
493
494         rwm_op_cb               *roc = rwm_callback_get( op, rs );
495
496         rc = rwm_op_dn_massage( op, rs, "modifyDN", &roc->ros );
497         if ( rc != LDAP_SUCCESS ) {
498                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
499                 send_ldap_error( op, rs, rc, "modifyDN massage error" );
500                 return -1;
501         }
502
503         isupdate = be_shadow_update( op );
504         for ( mlp = &op->orm_modlist; *mlp; ) {
505                 int                     is_oc = 0;
506                 Modifications           *ml = *mlp;
507                 struct ldapmapping      *mapping = NULL;
508
509                 /* ml points to a temporary mod until needs duplication */
510                 if ( ml->sml_desc == slap_schema.si_ad_objectClass 
511                                 || ml->sml_desc == slap_schema.si_ad_structuralObjectClass )
512                 {
513                         is_oc = 1;
514
515                 } else if ( !isupdate && !get_relax( op ) && ml->sml_desc->ad_type->sat_no_user_mod  )
516                 {
517                         ml = ch_malloc( sizeof( Modifications ) );
518                         *ml = **mlp;
519                         if ( (*mlp)->sml_values ) {
520                                 ber_bvarray_dup_x( &ml->sml_values, (*mlp)->sml_values, NULL );
521                                 if ( (*mlp)->sml_nvalues ) {
522                                         ber_bvarray_dup_x( &ml->sml_nvalues, (*mlp)->sml_nvalues, NULL );
523                                 }
524                         }
525                         *mlp = ml;
526                         goto next_mod;
527
528                 } else {
529                         int                     drop_missing;
530
531                         drop_missing = rwm_mapping( &rwmap->rwm_at,
532                                         &ml->sml_desc->ad_cname,
533                                         &mapping, RWM_MAP );
534                         if ( drop_missing || ( mapping != NULL && BER_BVISNULL( &mapping->m_dst ) ) )
535                         {
536                                 goto cleanup_mod;
537                         }
538                 }
539
540                 /* duplicate the modlist */
541                 ml = ch_malloc( sizeof( Modifications ));
542                 *ml = **mlp;
543                 *mlp = ml;
544
545                 if ( ml->sml_values != NULL ) {
546                         int i, num;
547                         struct berval *bva;
548
549                         for ( num = 0; !BER_BVISNULL( &ml->sml_values[ num ] ); num++ )
550                                 /* count values */ ;
551
552                         bva = ch_malloc( (num+1) * sizeof( struct berval ));
553                         for (i=0; i<num; i++)
554                                 ber_dupbv( &bva[i], &ml->sml_values[i] );
555                         BER_BVZERO( &bva[i] );
556                         ml->sml_values = bva;
557
558                         if ( ml->sml_nvalues ) {
559                                 bva = ch_malloc( (num+1) * sizeof( struct berval ));
560                                 for (i=0; i<num; i++)
561                                         ber_dupbv( &bva[i], &ml->sml_nvalues[i] );
562                                 BER_BVZERO( &bva[i] );
563                                 ml->sml_nvalues = bva;
564                         }
565
566                         if ( is_oc ) {
567                                 int     last, j;
568
569                                 last = num-1;
570
571                                 for ( j = 0; !BER_BVISNULL( &ml->sml_values[ j ] ); j++ ) {
572                                         struct ldapmapping      *oc_mapping = NULL;
573                 
574                                         ( void )rwm_mapping( &rwmap->rwm_oc, &ml->sml_values[ j ],
575                                                         &oc_mapping, RWM_MAP );
576                                         if ( oc_mapping == NULL ) {
577                                                 if ( rwmap->rwm_at.drop_missing ) {
578                                                         /* FIXME: we allow to remove objectClasses as well;
579                                                          * if the resulting entry is inconsistent, that's
580                                                          * the relayed database's business...
581                                                          */
582                                                         if ( last > j ) {
583                                                                 ch_free( ml->sml_values[ j ].bv_val );
584                                                                 ml->sml_values[ j ] = ml->sml_values[ last ];
585                                                         }
586                                                         BER_BVZERO( &ml->sml_values[ last ] );
587                                                         last--;
588                                                         j--;
589                                                 }
590         
591                                         } else {
592                                                 ch_free( ml->sml_values[ j ].bv_val );
593                                                 ber_dupbv( &ml->sml_values[ j ], &oc_mapping->m_dst );
594                                         }
595                                 }
596
597                         } else {
598                                 if ( ml->sml_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName
599                                                 || ( mapping != NULL && mapping->m_dst_ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) )
600                                 {
601                                         rc = rwm_dnattr_rewrite( op, rs, "modifyAttrDN",
602                                                         ml->sml_values,
603                                                         ml->sml_nvalues ? &ml->sml_nvalues : NULL );
604
605                                 } else if ( ml->sml_desc == slap_schema.si_ad_ref ) {
606                                         rc = rwm_referral_rewrite( op, rs,
607                                                         "referralAttrDN",
608                                                         ml->sml_values,
609                                                         ml->sml_nvalues ? &ml->sml_nvalues : NULL );
610                                         if ( rc != LDAP_SUCCESS ) {
611                                                 goto cleanup_mod;
612                                         }
613                                 }
614
615                                 if ( rc != LDAP_SUCCESS ) {
616                                         goto cleanup_mod;
617                                 }
618                         }
619                 }
620
621 next_mod:;
622                 if ( mapping != NULL ) {
623                         /* use new attribute description */
624                         assert( mapping->m_dst_ad != NULL );
625                         ml->sml_desc = mapping->m_dst_ad;
626                 }
627
628                 mlp = &ml->sml_next;
629                 continue;
630
631 cleanup_mod:;
632                 ml = *mlp;
633                 *mlp = (*mlp)->sml_next;
634                 slap_mod_free( &ml->sml_mod, 0 );
635                 free( ml );
636         }
637
638         op->o_callback = &roc->cb;
639
640         return SLAP_CB_CONTINUE;
641 }
642
643 static int
644 rwm_op_modrdn( Operation *op, SlapReply *rs )
645 {
646         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
647         struct ldaprwmap        *rwmap = 
648                         (struct ldaprwmap *)on->on_bi.bi_private;
649         
650         int                     rc;
651
652         rwm_op_cb               *roc = rwm_callback_get( op, rs );
653
654         if ( op->orr_newSup ) {
655                 dncookie        dc;
656                 struct berval   nnewSup = BER_BVNULL;
657                 struct berval   newSup = BER_BVNULL;
658
659                 /*
660                  * Rewrite the new superior, if defined and required
661                  */
662                 dc.rwmap = rwmap;
663                 dc.conn = op->o_conn;
664                 dc.rs = rs;
665                 dc.ctx = "newSuperiorDN";
666                 newSup = *op->orr_newSup;
667                 nnewSup = *op->orr_nnewSup;
668                 rc = rwm_dn_massage_pretty_normalize( &dc, op->orr_newSup, &newSup, &nnewSup );
669                 if ( rc != LDAP_SUCCESS ) {
670                         op->o_bd->bd_info = (BackendInfo *)on->on_info;
671                         send_ldap_error( op, rs, rc, "newSuperiorDN massage error" );
672                         return -1;
673                 }
674
675                 if ( op->orr_newSup->bv_val != newSup.bv_val ) {
676                         op->orr_newSup = op->o_tmpalloc( sizeof( struct berval ),
677                                 op->o_tmpmemctx );
678                         op->orr_nnewSup = op->o_tmpalloc( sizeof( struct berval ),
679                                 op->o_tmpmemctx );
680                         *op->orr_newSup = newSup;
681                         *op->orr_nnewSup = nnewSup;
682                 }
683         }
684
685         /*
686          * Rewrite the dn, if needed
687          */
688         rc = rwm_op_dn_massage( op, rs, "renameDN", &roc->ros );
689         if ( rc != LDAP_SUCCESS ) {
690                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
691                 send_ldap_error( op, rs, rc, "renameDN massage error" );
692                 if ( op->orr_newSup != roc->ros.orr_newSup ) {
693                         ch_free( op->orr_newSup->bv_val );
694                         ch_free( op->orr_nnewSup->bv_val );
695                         op->o_tmpfree( op->orr_newSup, op->o_tmpmemctx );
696                         op->o_tmpfree( op->orr_nnewSup, op->o_tmpmemctx );
697                         op->orr_newSup = roc->ros.orr_newSup;
698                         op->orr_nnewSup = roc->ros.orr_nnewSup;
699                 }
700                 return -1;
701         }
702
703         /* TODO: rewrite newRDN, attribute types, 
704          * values of DN-valued attributes ... */
705
706         op->o_callback = &roc->cb;
707
708         return SLAP_CB_CONTINUE;
709 }
710
711
712 static int
713 rwm_swap_attrs( Operation *op, SlapReply *rs )
714 {
715         slap_callback   *cb = op->o_callback;
716         rwm_op_state *ros = cb->sc_private;
717
718         rs->sr_attrs = ros->ors_attrs;
719
720         /* other overlays might have touched op->ors_attrs, 
721          * so we restore the original version here, otherwise
722          * attribute-mapping might fail */
723         op->ors_attrs = ros->mapped_attrs; 
724         
725         return SLAP_CB_CONTINUE;
726 }
727
728 static int
729 rwm_op_search( Operation *op, SlapReply *rs )
730 {
731         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
732         struct ldaprwmap        *rwmap = 
733                         (struct ldaprwmap *)on->on_bi.bi_private;
734
735         int                     rc;
736         dncookie                dc;
737
738         struct berval           fstr = BER_BVNULL;
739         Filter                  *f = NULL;
740
741         AttributeName           *an = NULL;
742
743         char                    *text = NULL;
744
745         rwm_op_cb               *roc = rwm_callback_get( op, rs );
746
747         rc = rewrite_session_var_set( rwmap->rwm_rw, op->o_conn,
748                 "searchFilter", op->ors_filterstr.bv_val );
749         if ( rc == LDAP_SUCCESS )
750                 rc = rwm_op_dn_massage( op, rs, "searchDN", &roc->ros );
751         if ( rc != LDAP_SUCCESS ) {
752                 text = "searchDN massage error";
753                 goto error_return;
754         }
755
756         /*
757          * Rewrite the dn if needed
758          */
759         dc.rwmap = rwmap;
760         dc.conn = op->o_conn;
761         dc.rs = rs;
762         dc.ctx = "searchFilterAttrDN";
763
764         rc = rwm_filter_map_rewrite( op, &dc, op->ors_filter, &fstr );
765         if ( rc != LDAP_SUCCESS ) {
766                 text = "searchFilter/searchFilterAttrDN massage error";
767                 goto error_return;
768         }
769
770         f = str2filter_x( op, fstr.bv_val );
771
772         if ( f == NULL ) {
773                 text = "massaged filter parse error";
774                 goto error_return;
775         }
776
777         op->ors_filter = f;
778         op->ors_filterstr = fstr;
779
780         rc = rwm_map_attrnames( &rwmap->rwm_at, &rwmap->rwm_oc,
781                         op->ors_attrs, &an, RWM_MAP );
782         if ( rc != LDAP_SUCCESS ) {
783                 text = "attribute list mapping error";
784                 goto error_return;
785         }
786
787         op->ors_attrs = an;
788         /* store the mapped Attributes for later usage, in
789          * the case that other overlays change op->ors_attrs */
790         roc->ros.mapped_attrs = an;
791         roc->cb.sc_response = rwm_swap_attrs;
792
793         op->o_callback = &roc->cb;
794
795         return SLAP_CB_CONTINUE;
796
797 error_return:;
798         if ( an != NULL ) {
799                 ch_free( an );
800         }
801
802         if ( f != NULL ) {
803                 filter_free_x( op, f );
804         }
805
806         if ( !BER_BVISNULL( &fstr ) ) {
807                 ch_free( fstr.bv_val );
808         }
809
810         op->oq_search = roc->ros.oq_search;
811
812         op->o_bd->bd_info = (BackendInfo *)on->on_info;
813         send_ldap_error( op, rs, rc, text );
814
815         return -1;
816
817 }
818
819 static int
820 rwm_exop_passwd( Operation *op, SlapReply *rs )
821 {
822         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
823         int                     rc;
824         rwm_op_cb *roc;
825
826         struct berval   id = BER_BVNULL,
827                         pwold = BER_BVNULL,
828                         pwnew = BER_BVNULL;
829         BerElement *ber = NULL;
830
831         if ( !BER_BVISNULL( &op->o_req_ndn ) ) {
832                 return LDAP_SUCCESS;
833         }
834
835         if ( !SLAP_ISGLOBALOVERLAY( op->o_bd ) ) {
836                 rs->sr_err = LDAP_OTHER;
837                 return rs->sr_err;
838         }
839
840         rs->sr_err = slap_passwd_parse( op->ore_reqdata, &id,
841                 &pwold, &pwnew, &rs->sr_text );
842         if ( rs->sr_err != LDAP_SUCCESS ) {
843                 return rs->sr_err;
844         }
845
846         if ( !BER_BVISNULL( &id ) ) {
847                 char idNul = id.bv_val[id.bv_len];
848                 id.bv_val[id.bv_len] = '\0';
849                 rs->sr_err = dnPrettyNormal( NULL, &id, &op->o_req_dn,
850                                 &op->o_req_ndn, op->o_tmpmemctx );
851                 id.bv_val[id.bv_len] = idNul;
852                 if ( rs->sr_err != LDAP_SUCCESS ) {
853                         rs->sr_text = "Invalid DN";
854                         return rs->sr_err;
855                 }
856
857         } else {
858                 ber_dupbv_x( &op->o_req_dn, &op->o_dn, op->o_tmpmemctx );
859                 ber_dupbv_x( &op->o_req_ndn, &op->o_ndn, op->o_tmpmemctx );
860         }
861
862         roc = rwm_callback_get( op, rs );
863
864         rc = rwm_op_dn_massage( op, rs, "extendedDN", &roc->ros );
865         if ( rc != LDAP_SUCCESS ) {
866                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
867                 send_ldap_error( op, rs, rc, "extendedDN massage error" );
868                 return -1;
869         }
870
871         ber = ber_alloc_t( LBER_USE_DER );
872         if ( !ber ) {
873                 rs->sr_err = LDAP_OTHER;
874                 rs->sr_text = "No memory";
875                 return rs->sr_err;
876         }
877         ber_printf( ber, "{" );
878         if ( !BER_BVISNULL( &id )) {
879                 ber_printf( ber, "tO", LDAP_TAG_EXOP_MODIFY_PASSWD_ID, 
880                         &op->o_req_dn );
881         }
882         if ( !BER_BVISNULL( &pwold )) {
883                 ber_printf( ber, "tO", LDAP_TAG_EXOP_MODIFY_PASSWD_OLD, &pwold );
884         }
885         if ( !BER_BVISNULL( &pwnew )) {
886                 ber_printf( ber, "tO", LDAP_TAG_EXOP_MODIFY_PASSWD_NEW, &pwnew );
887         }
888         ber_printf( ber, "N}" );
889         ber_flatten( ber, &op->ore_reqdata );
890         ber_free( ber, 1 );
891
892         op->o_callback = &roc->cb;
893
894         return SLAP_CB_CONTINUE;
895 }
896
897 static struct exop {
898         struct berval   oid;
899         BI_op_extended  *extended;
900 } exop_table[] = {
901         { BER_BVC(LDAP_EXOP_MODIFY_PASSWD),     rwm_exop_passwd },
902         { BER_BVNULL, NULL }
903 };
904
905 static int
906 rwm_extended( Operation *op, SlapReply *rs )
907 {
908         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
909         int                     rc;
910         rwm_op_cb *roc;
911
912         int     i;
913
914         for ( i = 0; exop_table[i].extended != NULL; i++ ) {
915                 if ( bvmatch( &exop_table[i].oid, &op->oq_extended.rs_reqoid ) )
916                 {
917                         rc = exop_table[i].extended( op, rs );
918                         switch ( rc ) {
919                         case LDAP_SUCCESS:
920                                 break;
921
922                         case SLAP_CB_CONTINUE:
923                         case SLAPD_ABANDON:
924                                 return rc;
925
926                         default:
927                                 send_ldap_result( op, rs );
928                                 return rc;
929                         }
930                         break;
931                 }
932         }
933
934         roc = rwm_callback_get( op, rs );
935
936         rc = rwm_op_dn_massage( op, rs, "extendedDN", &roc->ros );
937         if ( rc != LDAP_SUCCESS ) {
938                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
939                 send_ldap_error( op, rs, rc, "extendedDN massage error" );
940                 return -1;
941         }
942
943         /* TODO: rewrite/map extended data ? ... */
944         op->o_callback = &roc->cb;
945
946         return SLAP_CB_CONTINUE;
947 }
948
949 static int
950 rwm_matched( Operation *op, SlapReply *rs )
951 {
952         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
953         struct ldaprwmap        *rwmap = 
954                         (struct ldaprwmap *)on->on_bi.bi_private;
955
956         struct berval           dn, mdn;
957         dncookie                dc;
958         int                     rc;
959
960         if ( rs->sr_matched == NULL ) {
961                 return SLAP_CB_CONTINUE;
962         }
963
964         dc.rwmap = rwmap;
965         dc.conn = op->o_conn;
966         dc.rs = rs;
967         dc.ctx = "matchedDN";
968         ber_str2bv( rs->sr_matched, 0, 0, &dn );
969         mdn = dn;
970         rc = rwm_dn_massage_pretty( &dc, &dn, &mdn );
971         if ( rc != LDAP_SUCCESS ) {
972                 rs->sr_err = rc;
973                 rs->sr_text = "Rewrite error";
974                 return 1;
975         }
976
977         if ( mdn.bv_val != dn.bv_val ) {
978                 if ( rs->sr_flags & REP_MATCHED_MUSTBEFREED ) {
979                         ch_free( (void *)rs->sr_matched );
980
981                 } else {
982                         rs->sr_flags |= REP_MATCHED_MUSTBEFREED;
983                 }
984                 rs->sr_matched = mdn.bv_val;
985         }
986         
987         return SLAP_CB_CONTINUE;
988 }
989
990 static int
991 rwm_attrs( Operation *op, SlapReply *rs, Attribute** a_first, int stripEntryDN )
992 {
993         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
994         struct ldaprwmap        *rwmap = 
995                         (struct ldaprwmap *)on->on_bi.bi_private;
996
997         dncookie                dc;
998         int                     rc;
999         Attribute               **ap;
1000         int                     isupdate;
1001         int                     check_duplicate_attrs = 0;
1002
1003         /*
1004          * Rewrite the dn attrs, if needed
1005          */
1006         dc.rwmap = rwmap;
1007         dc.conn = op->o_conn;
1008         dc.rs = NULL; 
1009
1010         /* FIXME: the entries are in the remote mapping form;
1011          * so we need to select those attributes we are willing
1012          * to return, and remap them accordingly */
1013
1014         /* FIXME: in principle, one could map an attribute
1015          * on top of another, which already exists.
1016          * As such, in the end there might exist more than
1017          * one instance of an attribute.
1018          * We should at least check if this occurs, and issue
1019          * an error (because multiple instances of attrs in 
1020          * response are not valid), or merge the values (what
1021          * about duplicate values?) */
1022         isupdate = be_shadow_update( op );
1023         for ( ap = a_first; *ap; ) {
1024                 struct ldapmapping      *mapping = NULL;
1025                 int                     drop_missing;
1026                 int                     last = -1;
1027                 Attribute               *a;
1028
1029                 if ( SLAP_OPATTRS( rs->sr_attr_flags ) && is_at_operational( (*ap)->a_desc->ad_type ) )
1030                 {
1031                         /* go on */ ;
1032                         
1033                 } else {
1034                         if ( op->ors_attrs != NULL && 
1035                                         !SLAP_USERATTRS( rs->sr_attr_flags ) &&
1036                                         !ad_inlist( (*ap)->a_desc, op->ors_attrs ) )
1037                         {
1038                                 goto cleanup_attr;
1039                         }
1040
1041                         drop_missing = rwm_mapping( &rwmap->rwm_at,
1042                                         &(*ap)->a_desc->ad_cname, &mapping, RWM_REMAP );
1043                         if ( drop_missing || ( mapping != NULL && BER_BVISEMPTY( &mapping->m_dst ) ) )
1044                         {
1045                                 goto cleanup_attr;
1046                         }
1047                         if ( mapping != NULL ) {
1048                                 assert( mapping->m_dst_ad != NULL );
1049
1050                                 /* try to normalize mapped Attributes if the original 
1051                                  * AttributeType was not normalized */
1052                                 if ((rwmap->rwm_flags & RWM_F_NORMALIZE_MAPPED_ATTRS) && 
1053                                         (!(*ap)->a_desc->ad_type->sat_equality || 
1054                                         !(*ap)->a_desc->ad_type->sat_equality->smr_normalize) &&
1055                                         mapping->m_dst_ad->ad_type->sat_equality &&
1056                                         mapping->m_dst_ad->ad_type->sat_equality->smr_normalize )
1057                                 {
1058                                         int i = 0;
1059
1060                                         last = (*ap)->a_numvals;
1061                                         if ( last )
1062                                         {
1063                                                 (*ap)->a_nvals = ch_malloc( (last+1) * sizeof(struct berval) );
1064
1065                                                 for ( i = 0; !BER_BVISNULL( &(*ap)->a_vals[i]); i++ ) {
1066                                                         int             rc;
1067                                                         /*
1068                                                          * check that each value is valid per syntax
1069                                                          * and pretty if appropriate
1070                                                          */
1071                                                         rc = mapping->m_dst_ad->ad_type->sat_equality->smr_normalize(
1072                                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
1073                                                                 mapping->m_dst_ad->ad_type->sat_syntax,
1074                                                                 mapping->m_dst_ad->ad_type->sat_equality,
1075                                                                 &(*ap)->a_vals[i], &(*ap)->a_nvals[i],
1076                                                                 NULL );
1077
1078                                                         if ( rc != LDAP_SUCCESS ) {
1079                                                                 BER_BVZERO( &(*ap)->a_nvals[i] );
1080                                                         }
1081                                                 }
1082                                                 BER_BVZERO( &(*ap)->a_nvals[i] );
1083                                         }
1084                                 }
1085
1086                                 /* rewrite the attribute description */
1087                                 (*ap)->a_desc = mapping->m_dst_ad;
1088
1089                                 /* will need to check for duplicate attrs */
1090                                 check_duplicate_attrs++;
1091                         }
1092                 }
1093
1094                 if ( (*ap)->a_desc == slap_schema.si_ad_entryDN ) {
1095                         if ( stripEntryDN ) {
1096                                 /* will be generated by frontend */
1097                                 goto cleanup_attr;
1098                         }
1099                         
1100                 } else if ( !isupdate
1101                         && !get_relax( op )
1102                         && (*ap)->a_desc->ad_type->sat_no_user_mod 
1103                         && (*ap)->a_desc->ad_type != slap_schema.si_at_undefined )
1104                 {
1105                         goto next_attr;
1106                 }
1107
1108                 if ( last == -1 ) { /* not yet counted */ 
1109                         last = (*ap)->a_numvals;
1110                 }
1111
1112                 if ( last == 0 ) {
1113                         /* empty? leave it in place because of attrsonly and vlv */
1114                         goto next_attr;
1115                 }
1116                 last--;
1117
1118                 if ( (*ap)->a_desc == slap_schema.si_ad_objectClass
1119                                 || (*ap)->a_desc == slap_schema.si_ad_structuralObjectClass )
1120                 {
1121                         struct berval   *bv;
1122                         
1123                         for ( bv = (*ap)->a_vals; !BER_BVISNULL( bv ); bv++ ) {
1124                                 struct berval   mapped;
1125
1126                                 rwm_map( &rwmap->rwm_oc, &bv[0], &mapped, RWM_REMAP );
1127                                 if ( BER_BVISNULL( &mapped ) || BER_BVISEMPTY( &mapped ) ) {
1128 remove_oc:;
1129                                         ch_free( bv[0].bv_val );
1130                                         BER_BVZERO( &bv[0] );
1131                                         if ( &(*ap)->a_vals[last] > &bv[0] ) {
1132                                                 bv[0] = (*ap)->a_vals[last];
1133                                                 BER_BVZERO( &(*ap)->a_vals[last] );
1134                                         }
1135                                         last--;
1136                                         bv--;
1137
1138                                 } else if ( mapped.bv_val != bv[0].bv_val ) {
1139                                         int     i;
1140
1141                                         for ( i = 0; !BER_BVISNULL( &(*ap)->a_vals[ i ] ); i++ ) {
1142                                                 if ( &(*ap)->a_vals[ i ] == bv ) {
1143                                                         continue;
1144                                                 }
1145
1146                                                 if ( ber_bvstrcasecmp( &mapped, &(*ap)->a_vals[ i ] ) == 0 ) {
1147                                                         break;
1148                                                 }
1149                                         }
1150
1151                                         if ( !BER_BVISNULL( &(*ap)->a_vals[ i ] ) ) {
1152                                                 goto remove_oc;
1153                                         }
1154
1155                                         /*
1156                                          * FIXME: after LBER_FREEing
1157                                          * the value is replaced by
1158                                          * ch_alloc'ed memory
1159                                          */
1160                                         ber_bvreplace( &bv[0], &mapped );
1161
1162                                         /* FIXME: will need to check
1163                                          * if the structuralObjectClass
1164                                          * changed */
1165                                 }
1166                         }
1167
1168                 /*
1169                  * It is necessary to try to rewrite attributes with
1170                  * dn syntax because they might be used in ACLs as
1171                  * members of groups; since ACLs are applied to the
1172                  * rewritten stuff, no dn-based subject clause could
1173                  * be used at the ldap backend side (see
1174                  * http://www.OpenLDAP.org/faq/data/cache/452.html)
1175                  * The problem can be overcome by moving the dn-based
1176                  * ACLs to the target directory server, and letting
1177                  * everything pass thru the ldap backend. */
1178                 /* FIXME: handle distinguishedName-like syntaxes, like
1179                  * nameAndOptionalUID */
1180                 } else if ( (*ap)->a_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName
1181                                 || ( mapping != NULL && mapping->m_src_ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) )
1182                 {
1183                         dc.ctx = "searchAttrDN";
1184                         rc = rwm_dnattr_result_rewrite( &dc, (*ap)->a_vals );
1185                         if ( rc != LDAP_SUCCESS ) {
1186                                 goto cleanup_attr;
1187                         }
1188
1189                 } else if ( (*ap)->a_desc == slap_schema.si_ad_ref ) {
1190                         dc.ctx = "searchAttrDN";
1191                         rc = rwm_referral_result_rewrite( &dc, (*ap)->a_vals );
1192                         if ( rc != LDAP_SUCCESS ) {
1193                                 goto cleanup_attr;
1194                         }
1195                 }
1196
1197
1198 next_attr:;
1199                 ap = &(*ap)->a_next;
1200                 continue;
1201
1202 cleanup_attr:;
1203                 a = *ap;
1204                 *ap = (*ap)->a_next;
1205
1206                 attr_free( a );
1207         }
1208
1209         /* only check if some mapping occurred */
1210         if ( check_duplicate_attrs ) {
1211                 for ( ap = a_first; *ap != NULL; ap = &(*ap)->a_next ) {
1212                         Attribute       **tap;
1213
1214                         for ( tap = &(*ap)->a_next; *tap != NULL; ) {
1215                                 if ( (*tap)->a_desc == (*ap)->a_desc ) {
1216                                         Entry           e = { 0 };
1217                                         Modification    mod = { 0 };
1218                                         const char      *text = NULL;
1219                                         char            textbuf[ SLAP_TEXT_BUFLEN ];
1220                                         Attribute       *next = (*tap)->a_next;
1221
1222                                         BER_BVSTR( &e.e_name, "" );
1223                                         BER_BVSTR( &e.e_nname, "" );
1224                                         e.e_attrs = *ap;
1225                                         mod.sm_op = LDAP_MOD_ADD;
1226                                         mod.sm_desc = (*ap)->a_desc;
1227                                         mod.sm_type = mod.sm_desc->ad_cname;
1228                                         mod.sm_numvals = (*tap)->a_numvals;
1229                                         mod.sm_values = (*tap)->a_vals;
1230                                         mod.sm_nvalues = (*tap)->a_nvals;
1231
1232                                         (void)modify_add_values( &e, &mod,
1233                                                 /* permissive */ 1,
1234                                                 &text, textbuf, sizeof( textbuf ) );
1235
1236                                         /* should not insert new attrs! */
1237                                         assert( e.e_attrs == *ap );
1238
1239                                         attr_free( *tap );
1240                                         *tap = next;
1241
1242                                 } else {
1243                                         tap = &(*tap)->a_next;
1244                                 }
1245                         }
1246                 }
1247         }
1248
1249         return 0;
1250 }
1251
1252 static int
1253 rwm_send_entry( Operation *op, SlapReply *rs )
1254 {
1255         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
1256         struct ldaprwmap        *rwmap = 
1257                         (struct ldaprwmap *)on->on_bi.bi_private;
1258
1259         Entry                   *e = NULL;
1260         slap_mask_t             flags;
1261         struct berval           dn = BER_BVNULL,
1262                                 ndn = BER_BVNULL;
1263         dncookie                dc;
1264         int                     rc;
1265
1266         assert( rs->sr_entry != NULL );
1267
1268         /*
1269          * Rewrite the dn of the result, if needed
1270          */
1271         dc.rwmap = rwmap;
1272         dc.conn = op->o_conn;
1273         dc.rs = NULL; 
1274         dc.ctx = "searchEntryDN";
1275
1276         e = rs->sr_entry;
1277         flags = rs->sr_flags;
1278         if ( !( rs->sr_flags & REP_ENTRY_MODIFIABLE ) ) {
1279                 /* FIXME: all we need to duplicate are:
1280                  * - dn
1281                  * - ndn
1282                  * - attributes that are requested
1283                  * - no values if attrsonly is set
1284                  */
1285
1286                 e = entry_dup( e );
1287                 if ( e == NULL ) {
1288                         rc = LDAP_NO_MEMORY;
1289                         goto fail;
1290                 }
1291
1292                 flags &= ~REP_ENTRY_MUSTRELEASE;
1293                 flags |= ( REP_ENTRY_MODIFIABLE | REP_ENTRY_MUSTBEFREED );
1294         }
1295
1296         /*
1297          * Note: this may fail if the target host(s) schema differs
1298          * from the one known to the meta, and a DN with unknown
1299          * attributes is returned.
1300          */
1301         dn = e->e_name;
1302         ndn = e->e_nname;
1303         rc = rwm_dn_massage_pretty_normalize( &dc, &e->e_name, &dn, &ndn );
1304         if ( rc != LDAP_SUCCESS ) {
1305                 rc = 1;
1306                 goto fail;
1307         }
1308
1309         if ( e->e_name.bv_val != dn.bv_val ) {
1310                 ch_free( e->e_name.bv_val );
1311                 ch_free( e->e_nname.bv_val );
1312
1313                 e->e_name = dn;
1314                 e->e_nname = ndn;
1315         }
1316
1317         /* TODO: map entry attribute types, objectclasses 
1318          * and dn-valued attribute values */
1319
1320         /* FIXME: the entries are in the remote mapping form;
1321          * so we need to select those attributes we are willing
1322          * to return, and remap them accordingly */
1323         (void)rwm_attrs( op, rs, &e->e_attrs, 1 );
1324
1325         if ( rs->sr_flags & REP_ENTRY_MUSTRELEASE ) {
1326                 be_entry_release_rw( op, rs->sr_entry, 0 );
1327         }
1328
1329         rs->sr_entry = e;
1330         rs->sr_flags = flags;
1331
1332         return SLAP_CB_CONTINUE;
1333
1334 fail:;
1335         if ( e != NULL && e != rs->sr_entry ) {
1336                 if ( e->e_name.bv_val == dn.bv_val ) {
1337                         BER_BVZERO( &e->e_name );
1338                 }
1339
1340                 if ( e->e_nname.bv_val == ndn.bv_val ) {
1341                         BER_BVZERO( &e->e_nname );
1342                 }
1343
1344                 entry_free( e );
1345         }
1346
1347         if ( !BER_BVISNULL( &dn ) ) {
1348                 ch_free( dn.bv_val );
1349         }
1350
1351         if ( !BER_BVISNULL( &ndn ) ) {
1352                 ch_free( ndn.bv_val );
1353         }
1354
1355         return rc;
1356 }
1357
1358 static int
1359 rwm_operational( Operation *op, SlapReply *rs )
1360 {
1361         /* FIXME: the entries are in the remote mapping form;
1362          * so we need to select those attributes we are willing
1363          * to return, and remap them accordingly */
1364         if ( rs->sr_operational_attrs ) {
1365                 rwm_attrs( op, rs, &rs->sr_operational_attrs, 1 );
1366         }
1367
1368         return SLAP_CB_CONTINUE;
1369 }
1370
1371 #if 0
1372 /* don't use this; it cannot be reverted, and leaves op->o_req_dn
1373  * rewritten for subsequent operations; fine for plain suffixmassage,
1374  * but destroys everything else */
1375 static int
1376 rwm_chk_referrals( Operation *op, SlapReply *rs )
1377 {
1378         slap_overinst           *on = (slap_overinst *) op->o_bd->bd_info;
1379         int                     rc;
1380
1381         rc = rwm_op_dn_massage( op, rs, "referralCheckDN" );
1382         if ( rc != LDAP_SUCCESS ) {
1383                 op->o_bd->bd_info = (BackendInfo *)on->on_info;
1384                 send_ldap_error( op, rs, rc, "referralCheckDN massage error" );
1385                 return -1;
1386         }
1387
1388         return SLAP_CB_CONTINUE;
1389 }
1390 #endif
1391
1392 static int
1393 rwm_rw_config(
1394         BackendDB       *be,
1395         const char      *fname,
1396         int             lineno,
1397         int             argc,
1398         char            **argv )
1399 {
1400         slap_overinst           *on = (slap_overinst *) be->bd_info;
1401         struct ldaprwmap        *rwmap = 
1402                         (struct ldaprwmap *)on->on_bi.bi_private;
1403
1404         return rewrite_parse( rwmap->rwm_rw,
1405                                 fname, lineno, argc, argv );
1406
1407         return 0;
1408 }
1409
1410 static int
1411 rwm_suffixmassage_config(
1412         BackendDB       *be,
1413         const char      *fname,
1414         int             lineno,
1415         int             argc,
1416         char            **argv )
1417 {
1418         slap_overinst           *on = (slap_overinst *) be->bd_info;
1419         struct ldaprwmap        *rwmap = 
1420                         (struct ldaprwmap *)on->on_bi.bi_private;
1421
1422         struct berval           bvnc, nvnc, pvnc, brnc, nrnc, prnc;
1423         int                     massaged;
1424         int                     rc;
1425                 
1426         /*
1427          * syntax:
1428          * 
1429          *      suffixmassage [<suffix>] <massaged suffix>
1430          *
1431          * the [<suffix>] field must be defined as a valid suffix
1432          * for the current database;
1433          * the <massaged suffix> shouldn't have already been
1434          * defined as a valid suffix for the current server
1435          */
1436         if ( argc == 2 ) {
1437                 if ( be->be_suffix == NULL ) {
1438                         fprintf( stderr, "%s: line %d: "
1439                                        " \"suffixMassage [<suffix>]"
1440                                        " <massaged suffix>\" without "
1441                                        "<suffix> part requires database "
1442                                        "suffix be defined first.\n",
1443                                 fname, lineno );
1444                         return 1;
1445                 }
1446                 bvnc = be->be_suffix[ 0 ];
1447                 massaged = 1;
1448
1449         } else if ( argc == 3 ) {
1450                 ber_str2bv( argv[ 1 ], 0, 0, &bvnc );
1451                 massaged = 2;
1452
1453         } else  {
1454                 fprintf( stderr, "%s: line %d: syntax is"
1455                                " \"suffixMassage [<suffix>]"
1456                                " <massaged suffix>\"\n",
1457                         fname, lineno );
1458                 return 1;
1459         }
1460
1461         if ( dnPrettyNormal( NULL, &bvnc, &pvnc, &nvnc, NULL ) != LDAP_SUCCESS ) {
1462                 fprintf( stderr, "%s: line %d: suffix DN %s is invalid\n",
1463                         fname, lineno, bvnc.bv_val );
1464                 return 1;
1465         }
1466
1467         ber_str2bv( argv[ massaged ], 0, 0, &brnc );
1468         if ( dnPrettyNormal( NULL, &brnc, &prnc, &nrnc, NULL ) != LDAP_SUCCESS ) {
1469                 fprintf( stderr, "%s: line %d: suffix DN %s is invalid\n",
1470                                 fname, lineno, brnc.bv_val );
1471                 free( nvnc.bv_val );
1472                 free( pvnc.bv_val );
1473                 return 1;
1474         }
1475
1476         /*
1477          * The suffix massaging is emulated 
1478          * by means of the rewrite capabilities
1479          */
1480         rc = rwm_suffix_massage_config( rwmap->rwm_rw,
1481                         &pvnc, &nvnc, &prnc, &nrnc );
1482         free( nvnc.bv_val );
1483         free( pvnc.bv_val );
1484         free( nrnc.bv_val );
1485         free( prnc.bv_val );
1486
1487         return rc;
1488 }
1489
1490 static int
1491 rwm_m_config(
1492         BackendDB       *be,
1493         const char      *fname,
1494         int             lineno,
1495         int             argc,
1496         char            **argv )
1497 {
1498         slap_overinst           *on = (slap_overinst *) be->bd_info;
1499         struct ldaprwmap        *rwmap = 
1500                         (struct ldaprwmap *)on->on_bi.bi_private;
1501
1502         /* objectclass/attribute mapping */
1503         return rwm_map_config( &rwmap->rwm_oc,
1504                         &rwmap->rwm_at,
1505                         fname, lineno, argc, argv );
1506 }
1507
1508 static int
1509 rwm_response( Operation *op, SlapReply *rs )
1510 {
1511         slap_overinst           *on = (slap_overinst *)op->o_bd->bd_info;
1512         struct ldaprwmap        *rwmap = 
1513                         (struct ldaprwmap *)on->on_bi.bi_private;
1514
1515         int             rc;
1516
1517         if ( op->o_tag == LDAP_REQ_SEARCH && rs->sr_type == REP_SEARCH ) {
1518                 return rwm_send_entry( op, rs );
1519         }
1520
1521         switch( op->o_tag ) {
1522         case LDAP_REQ_SEARCH:
1523         case LDAP_REQ_BIND:
1524         case LDAP_REQ_ADD:
1525         case LDAP_REQ_DELETE:
1526         case LDAP_REQ_MODRDN:
1527         case LDAP_REQ_MODIFY:
1528         case LDAP_REQ_COMPARE:
1529         case LDAP_REQ_EXTENDED:
1530                 if ( rs->sr_ref ) {
1531                         dncookie                dc;
1532
1533                         /*
1534                          * Rewrite the dn of the referrals, if needed
1535                          */
1536                         dc.rwmap = rwmap;
1537                         dc.conn = op->o_conn;
1538                         dc.rs = NULL; 
1539                         dc.ctx = "referralDN";
1540                         rc = rwm_referral_result_rewrite( &dc, rs->sr_ref );
1541                         if ( rc != LDAP_SUCCESS ) {
1542                                 rc = 1;
1543                                 break;
1544                         }
1545                 }
1546                 rc = rwm_matched( op, rs );
1547                 break;
1548
1549         default:
1550                 rc = SLAP_CB_CONTINUE;
1551                 break;
1552         }
1553
1554         return rc;
1555 }
1556
1557 static int
1558 rwm_db_config(
1559         BackendDB       *be,
1560         const char      *fname,
1561         int             lineno,
1562         int             argc,
1563         char            **argv )
1564 {
1565         slap_overinst           *on = (slap_overinst *) be->bd_info;
1566         struct ldaprwmap        *rwmap = 
1567                         (struct ldaprwmap *)on->on_bi.bi_private;
1568
1569         int             rc = 0;
1570         char            *argv0 = NULL;
1571
1572         if ( strncasecmp( argv[ 0 ], "rwm-", STRLENOF( "rwm-" ) ) == 0 ) {
1573                 argv0 = argv[ 0 ];
1574                 argv[ 0 ] = &argv0[ STRLENOF( "rwm-" ) ];
1575         }
1576
1577         if ( strncasecmp( argv[0], "rewrite", STRLENOF("rewrite") ) == 0 ) {
1578                 rc = rwm_rw_config( be, fname, lineno, argc, argv );
1579
1580         } else if ( strcasecmp( argv[0], "map" ) == 0 ) {
1581                 rc = rwm_m_config( be, fname, lineno, argc, argv );
1582
1583         } else if ( strcasecmp( argv[0], "suffixmassage" ) == 0 ) {
1584                 rc = rwm_suffixmassage_config( be, fname, lineno, argc, argv );
1585
1586         } else if ( strcasecmp( argv[0], "t-f-support" ) == 0 ) {
1587                 if ( argc != 2 ) {
1588                         fprintf( stderr,
1589                 "%s: line %d: \"t-f-support {no|yes|discover}\" needs 1 argument.\n",
1590                                         fname, lineno );
1591                         return( 1 );
1592                 }
1593
1594                 if ( strcasecmp( argv[ 1 ], "no" ) == 0 ) {
1595                         rwmap->rwm_flags &= ~(RWM_F_SUPPORT_T_F_MASK2);
1596
1597                 } else if ( strcasecmp( argv[ 1 ], "yes" ) == 0 ) {
1598                         rwmap->rwm_flags |= RWM_F_SUPPORT_T_F;
1599
1600                 /* TODO: not implemented yet */
1601                 } else if ( strcasecmp( argv[ 1 ], "discover" ) == 0 ) {
1602                         fprintf( stderr,
1603                 "%s: line %d: \"discover\" not supported yet "
1604                 "in \"t-f-support {no|yes|discover}\".\n",
1605                                         fname, lineno );
1606                         return( 1 );
1607 #if 0
1608                         rwmap->rwm_flags |= RWM_F_SUPPORT_T_F_DISCOVER;
1609 #endif
1610
1611                 } else {
1612                         fprintf( stderr,
1613         "%s: line %d: unknown value \"%s\" for \"t-f-support {no|yes|discover}\".\n",
1614                                 fname, lineno, argv[ 1 ] );
1615                         return 1;
1616                 }
1617         } else if ( strcasecmp( argv[0], "normalize-mapped-attrs" ) ==  0 ) {
1618                 if ( argc !=2 ) { 
1619                         fprintf( stderr,
1620                 "%s: line %d: \"normalize-mapped-attrs {no|yes}\" needs 1 argument.\n",
1621                                         fname, lineno );
1622                         return( 1 );
1623                 }
1624
1625                 if ( strcasecmp( argv[ 1 ], "no" ) == 0 ) {
1626                         rwmap->rwm_flags &= ~(RWM_F_NORMALIZE_MAPPED_ATTRS);
1627
1628                 } else if ( strcasecmp( argv[ 1 ], "yes" ) == 0 ) {
1629                         rwmap->rwm_flags |= RWM_F_NORMALIZE_MAPPED_ATTRS;
1630                 }
1631
1632         } else {
1633                 rc = SLAP_CONF_UNKNOWN;
1634         }
1635
1636         if ( argv0 ) {
1637                 argv[ 0 ] = argv0;
1638         }
1639
1640         return rc;
1641 }
1642
1643 /*
1644  * dynamic configuration...
1645  */
1646
1647 enum {
1648         /* rewrite */
1649         RWM_CF_REWRITE = 1,
1650         RWM_CF_SUFFIXMASSAGE,
1651
1652         /* map */
1653         RWM_CF_MAP,
1654         RWM_CF_T_F_SUPPORT,
1655         RWM_CF_NORMALIZE_MAPPED,
1656
1657         RWM_CF_LAST
1658 };
1659
1660 static slap_verbmasks t_f_mode[] = {
1661         { BER_BVC( "yes" ),             RWM_F_SUPPORT_T_F },
1662         { BER_BVC( "discover" ),        RWM_F_SUPPORT_T_F_DISCOVER },
1663         { BER_BVC( "no" ),              RWM_F_NONE },
1664         { BER_BVNULL,                   0 }
1665 };
1666
1667 static ConfigDriver rwm_cf_gen;
1668
1669 static ConfigTable rwmcfg[] = {
1670         { "rwm-rewrite", "rewrite",
1671                 2, 0, STRLENOF("rwm-rewrite"),
1672                 ARG_MAGIC|ARG_QUOTE|RWM_CF_REWRITE, rwm_cf_gen,
1673                 "( OLcfgOvAt:16.1 NAME 'olcRwmRewrite' "
1674                         "DESC 'Rewrites strings' "
1675                         "EQUALITY caseIgnoreMatch "
1676                         "SYNTAX OMsDirectoryString "
1677                         "X-ORDERED 'VALUES' )",
1678                 NULL, NULL },
1679
1680         { "rwm-suffixmassage", "[virtual]> <real",
1681                 2, 3, 0, ARG_MAGIC|RWM_CF_SUFFIXMASSAGE, rwm_cf_gen,
1682                 NULL, NULL, NULL },
1683                 
1684         { "rwm-t-f-support", "true|false|discover",
1685                 2, 2, 0, ARG_MAGIC|RWM_CF_T_F_SUPPORT, rwm_cf_gen,
1686                 "( OLcfgOvAt:16.2 NAME 'olcRwmTFSupport' "
1687                         "DESC 'Absolute filters support' "
1688                         "SYNTAX OMsDirectoryString "
1689                         "SINGLE-VALUE )",
1690                 NULL, NULL },
1691
1692         { "rwm-map", "{objectClass|attribute}",
1693                 2, 4, 0, ARG_MAGIC|RWM_CF_MAP, rwm_cf_gen,
1694                 "( OLcfgOvAt:16.3 NAME 'olcRwmMap' "
1695                         "DESC 'maps attributes/objectClasses' "
1696                         "SYNTAX OMsDirectoryString "
1697                         "X-ORDERED 'VALUES' )",
1698                 NULL, NULL },
1699
1700         { "rwm-normalize-mapped-attrs", "true|false",
1701                 2, 2, 0, ARG_MAGIC|ARG_ON_OFF|RWM_CF_NORMALIZE_MAPPED, rwm_cf_gen,
1702                 "( OLcfgOvAt:16.4 NAME 'olcRwmNormalizeMapped' "
1703                         "DESC 'Normalize mapped attributes/objectClasses' "
1704                         "SYNTAX OMsBoolean "
1705                         "SINGLE-VALUE )",
1706                 NULL, NULL },
1707
1708         { NULL, NULL, 0, 0, 0, ARG_IGNORED }
1709 };
1710
1711 static ConfigOCs rwmocs[] = {
1712         { "( OLcfgOvOc:16.1 "
1713                 "NAME 'olcRwmConfig' "
1714                 "DESC 'Rewrite/remap configuration' "
1715                 "SUP olcOverlayConfig "
1716                 "MAY ( "
1717                         "olcRwmRewrite $ "
1718                         "olcRwmTFSupport $ "
1719                         "olcRwmMap $ "
1720                         "olcRwmNormalizeMapped "
1721                         ") )",
1722                 Cft_Overlay, rwmcfg, NULL, NULL },
1723         { NULL, 0, NULL }
1724 };
1725
1726 static void
1727 slap_rewrite_unparse( BerVarray in, BerVarray *out )
1728 {
1729         int             i;
1730         BerVarray       bva = NULL;
1731         char            ibuf[32], *ptr;
1732         struct berval   idx;
1733
1734         assert( in != NULL );
1735
1736         for ( i = 0; !BER_BVISNULL( &in[i] ); i++ )
1737                 /* count'em */ ;
1738
1739         if ( i == 0 ) {
1740                 return;
1741         }
1742
1743         idx.bv_val = ibuf;
1744
1745         bva = ch_malloc( ( i + 1 ) * sizeof(struct berval) );
1746         BER_BVZERO( &bva[ 0 ] );
1747
1748         for ( i = 0; !BER_BVISNULL( &in[i] ); i++ ) {
1749                 idx.bv_len = snprintf( idx.bv_val, sizeof( ibuf ), "{%d}", i );
1750                 if ( idx.bv_len >= sizeof( ibuf ) ) {
1751                         ber_bvarray_free( bva );
1752                         return;
1753                 }
1754
1755                 bva[i].bv_len = idx.bv_len + in[i].bv_len;
1756                 bva[i].bv_val = ch_malloc( bva[i].bv_len + 1 );
1757                 ptr = lutil_strcopy( bva[i].bv_val, ibuf );
1758                 ptr = lutil_strcopy( ptr, in[i].bv_val );
1759                 *ptr = '\0';
1760                 BER_BVZERO( &bva[ i + 1 ] );
1761         }
1762
1763         *out = bva;
1764 }
1765
1766 static int
1767 rwm_cf_gen( ConfigArgs *c )
1768 {
1769         slap_overinst           *on = (slap_overinst *)c->bi;
1770         struct ldaprwmap        *rwmap = 
1771                         (struct ldaprwmap *)on->on_bi.bi_private;
1772
1773         BackendDB               db;
1774         char                    *argv0;
1775         int                     rc = 0;
1776
1777         db = *c->be;
1778         db.bd_info = c->bi;
1779
1780         if ( c->op == SLAP_CONFIG_EMIT ) {
1781                 struct berval   bv = BER_BVNULL;
1782
1783                 switch ( c->type ) {
1784                 case RWM_CF_REWRITE:
1785                         if ( rwmap->rwm_bva_rewrite == NULL ) {
1786                                 rc = 1;
1787
1788                         } else {
1789                                 slap_rewrite_unparse( rwmap->rwm_bva_rewrite, &c->rvalue_vals );
1790                                 if ( !c->rvalue_vals ) {
1791                                         rc = 1;
1792                                 }
1793                         }
1794                         break;
1795
1796                 case RWM_CF_T_F_SUPPORT:
1797                         enum_to_verb( t_f_mode, (rwmap->rwm_flags & RWM_F_SUPPORT_T_F_MASK2), &bv );
1798                         if ( BER_BVISNULL( &bv ) ) {
1799                                 /* there's something wrong... */
1800                                 assert( 0 );
1801                                 rc = 1;
1802
1803                         } else {
1804                                 value_add_one( &c->rvalue_vals, &bv );
1805                         }
1806                         break;
1807
1808                 case RWM_CF_MAP:
1809                         if ( rwmap->rwm_bva_map == NULL ) {
1810                                 rc = 1;
1811
1812                         } else {
1813                                 value_add( &c->rvalue_vals, rwmap->rwm_bva_map );
1814                         }
1815                         break;
1816
1817                 case RWM_CF_NORMALIZE_MAPPED:
1818                         c->value_int = ( rwmap->rwm_flags & RWM_F_NORMALIZE_MAPPED_ATTRS );
1819                         break;
1820
1821                 default:
1822                         assert( 0 );
1823                         rc = 1;
1824                 }
1825
1826                 return rc;
1827
1828         } else if ( c->op == LDAP_MOD_DELETE ) {
1829                 switch ( c->type ) {
1830                 case RWM_CF_REWRITE:
1831                         if ( c->valx >= 0 ) {
1832                                 /* single modification is not allowed */
1833                                 rc = 1;
1834
1835                         } else if ( rwmap->rwm_rw != NULL ) {
1836                                 rewrite_info_delete( &rwmap->rwm_rw );
1837                                 assert( rwmap->rwm_rw == NULL );
1838
1839                                 ber_bvarray_free( rwmap->rwm_bva_rewrite );
1840                                 rwmap->rwm_bva_rewrite = NULL;
1841                         }
1842                         break;
1843
1844                 case RWM_CF_T_F_SUPPORT:
1845                         rwmap->rwm_flags &= ~RWM_F_SUPPORT_T_F_MASK2;
1846                         break;
1847
1848                 case RWM_CF_MAP:
1849                         if ( c->valx >= 0 ) {
1850                                 /* single modification is not allowed */
1851                                 rc = 1;
1852
1853                         } else {
1854                                 avl_free( rwmap->rwm_oc.remap, rwm_mapping_dst_free );
1855                                 avl_free( rwmap->rwm_oc.map, rwm_mapping_free );
1856                                 avl_free( rwmap->rwm_at.remap, rwm_mapping_dst_free );
1857                                 avl_free( rwmap->rwm_at.map, rwm_mapping_free );
1858
1859                                 rwmap->rwm_oc.remap = NULL;
1860                                 rwmap->rwm_oc.map = NULL;
1861                                 rwmap->rwm_at.remap = NULL;
1862                                 rwmap->rwm_at.map = NULL;
1863
1864                                 ber_bvarray_free( rwmap->rwm_bva_map );
1865                                 rwmap->rwm_bva_map = NULL;
1866                         }
1867                         break;
1868
1869                 case RWM_CF_NORMALIZE_MAPPED:
1870                         rwmap->rwm_flags &= ~RWM_F_NORMALIZE_MAPPED_ATTRS;
1871                         break;
1872
1873                 default:
1874                         return 1;
1875                 }
1876                 return rc;
1877         }
1878
1879         switch ( c->type ) {
1880         case RWM_CF_REWRITE:
1881                 argv0 = c->argv[ 0 ];
1882                 c->argv[ 0 ] += STRLENOF( "rwm-" );
1883                 rc = rwm_rw_config( &db, c->fname, c->lineno, c->argc, c->argv );
1884                 c->argv[ 0 ] = argv0;
1885                 if ( rc ) {
1886                         return 1;
1887
1888                 } else {
1889                         char            *line;
1890                         struct berval   bv;
1891
1892                         line = ldap_charray2str( c->argv, "\" \"" );
1893                         if ( line != NULL ) {
1894                                 int     len = strlen( c->argv[ 0 ] );
1895
1896                                 ber_str2bv( line, 0, 0, &bv );
1897                                 AC_MEMCPY( &bv.bv_val[ len ], &bv.bv_val[ len + 1 ],
1898                                         bv.bv_len - ( len + 1 ) );
1899                                 bv.bv_val[ bv.bv_len - 1 ] = '"';
1900                                 ber_bvarray_add( &rwmap->rwm_bva_rewrite, &bv );
1901                         }
1902                 }
1903                 break;
1904
1905         case RWM_CF_SUFFIXMASSAGE:
1906                 argv0 = c->argv[ 0 ];
1907                 c->argv[ 0 ] += STRLENOF( "rwm-" );
1908                 rc = rwm_suffixmassage_config( &db, c->fname, c->lineno, c->argc, c->argv );
1909                 c->argv[ 0 ] = argv0;
1910                 if ( rc ) {
1911                         return 1;
1912
1913                 } else {
1914                         char            *line;
1915                         struct berval   bv;
1916
1917                         /* FIXME: not optimal; in fact, this keeps track
1918                          * of the fact that a set of rules was added
1919                          * using the rwm-suffixmassage shortcut, but the
1920                          * rules are not clarified */
1921
1922                         line = ldap_charray2str( c->argv, "\" \"" );
1923                         if ( line != NULL ) {
1924                                 int     len = strlen( c->argv[ 0 ] );
1925
1926                                 ber_str2bv( line, 0, 0, &bv );
1927                                 AC_MEMCPY( &bv.bv_val[ len ], &bv.bv_val[ len + 1 ],
1928                                         bv.bv_len - ( len + 1 ) );
1929                                 bv.bv_val[ bv.bv_len - 1 ] = '"';
1930                                 ber_bvarray_add( &rwmap->rwm_bva_rewrite, &bv );
1931                         }
1932                 }
1933                 break;
1934
1935         case RWM_CF_T_F_SUPPORT:
1936                 rc = verb_to_mask( c->argv[ 1 ], t_f_mode );
1937                 if ( BER_BVISNULL( &t_f_mode[ rc ].word ) ) {
1938                         return 1;
1939                 }
1940
1941                 rwmap->rwm_flags &= ~RWM_F_SUPPORT_T_F_MASK2;
1942                 rwmap->rwm_flags |= t_f_mode[ rc ].mask;
1943                 rc = 0;
1944                 break;
1945
1946         case RWM_CF_MAP:
1947                 argv0 = c->argv[ 0 ];
1948                 c->argv[ 0 ] += STRLENOF( "rwm-" );
1949                 rc = rwm_m_config( &db, c->fname, c->lineno, c->argc, c->argv );
1950                 c->argv[ 0 ] = argv0;
1951                 if ( rc ) {
1952                         return 1;
1953
1954                 } else {
1955                         char            *line;
1956                         struct berval   bv;
1957
1958                         line = ldap_charray2str( &c->argv[ 1 ], " " );
1959                         if ( line != NULL ) {
1960                                 ber_str2bv( line, 0, 0, &bv );
1961                                 ber_bvarray_add( &rwmap->rwm_bva_map, &bv );
1962                         }
1963                 }
1964                 break;
1965
1966         case RWM_CF_NORMALIZE_MAPPED:
1967                 if ( c->value_int ) {
1968                         rwmap->rwm_flags |= RWM_F_NORMALIZE_MAPPED_ATTRS;
1969                 } else {
1970                         rwmap->rwm_flags &= ~RWM_F_NORMALIZE_MAPPED_ATTRS;
1971                 }
1972                 break;
1973
1974         default:
1975                 assert( 0 );
1976                 return 1;
1977         }
1978
1979         return rc;
1980 }
1981
1982 static int
1983 rwm_db_init(
1984         BackendDB       *be,
1985         ConfigReply     *cr )
1986 {
1987         slap_overinst           *on = (slap_overinst *) be->bd_info;
1988         struct ldaprwmap        *rwmap;
1989         char                    *rargv[ 3 ];
1990         int                     rc = 0;
1991
1992         rwmap = (struct ldaprwmap *)ch_calloc( 1, sizeof( struct ldaprwmap ) );
1993
1994         rwmap->rwm_rw = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
1995         if ( rwmap->rwm_rw == NULL ) {
1996                 rc = -1;
1997                 goto error_return;
1998         }
1999
2000         /* this rewriteContext by default must be null;
2001          * rules can be added if required */
2002         rargv[ 0 ] = "rewriteContext";
2003         rargv[ 1 ] = "searchFilter";
2004         rargv[ 2 ] = NULL;
2005         rewrite_parse( rwmap->rwm_rw, "<suffix massage>", 1, 2, rargv );
2006
2007         rargv[ 0 ] = "rewriteContext";
2008         rargv[ 1 ] = "default";
2009         rargv[ 2 ] = NULL;
2010         rewrite_parse( rwmap->rwm_rw, "<suffix massage>", 2, 2, rargv );
2011
2012 error_return:;
2013         on->on_bi.bi_private = (void *)rwmap;
2014
2015         if ( rc ) {
2016                 (void)rwm_db_destroy( be, NULL );
2017         }
2018
2019         return rc;
2020 }
2021
2022 static int
2023 rwm_db_destroy(
2024         BackendDB       *be,
2025         ConfigReply     *cr )
2026 {
2027         slap_overinst   *on = (slap_overinst *) be->bd_info;
2028         int             rc = 0;
2029
2030         if ( on->on_bi.bi_private ) {
2031                 struct ldaprwmap        *rwmap = 
2032                         (struct ldaprwmap *)on->on_bi.bi_private;
2033
2034                 if ( rwmap->rwm_rw ) {
2035                         rewrite_info_delete( &rwmap->rwm_rw );
2036                         ber_bvarray_free( rwmap->rwm_bva_rewrite );
2037                 }
2038
2039                 avl_free( rwmap->rwm_oc.remap, rwm_mapping_dst_free );
2040                 avl_free( rwmap->rwm_oc.map, rwm_mapping_free );
2041                 avl_free( rwmap->rwm_at.remap, rwm_mapping_dst_free );
2042                 avl_free( rwmap->rwm_at.map, rwm_mapping_free );
2043                 ber_bvarray_free( rwmap->rwm_bva_map );
2044
2045                 ch_free( rwmap );
2046         }
2047
2048         return rc;
2049 }
2050
2051 static slap_overinst rwm = { { NULL } };
2052
2053 #if SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC
2054 static
2055 #endif /* SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC */
2056 int
2057 rwm_initialize( void )
2058 {
2059         int             rc;
2060
2061         /* Make sure we don't exceed the bits reserved for userland */
2062         config_check_userland( RWM_CF_LAST );
2063
2064         memset( &rwm, 0, sizeof( slap_overinst ) );
2065
2066         rwm.on_bi.bi_type = "rwm";
2067         rwm.on_bi.bi_flags =
2068                 SLAPO_BFLAG_SINGLE |
2069                 0;
2070
2071         rwm.on_bi.bi_db_init = rwm_db_init;
2072         rwm.on_bi.bi_db_config = rwm_db_config;
2073         rwm.on_bi.bi_db_destroy = rwm_db_destroy;
2074
2075         rwm.on_bi.bi_op_bind = rwm_op_bind;
2076         rwm.on_bi.bi_op_search = rwm_op_search;
2077         rwm.on_bi.bi_op_compare = rwm_op_compare;
2078         rwm.on_bi.bi_op_modify = rwm_op_modify;
2079         rwm.on_bi.bi_op_modrdn = rwm_op_modrdn;
2080         rwm.on_bi.bi_op_add = rwm_op_add;
2081         rwm.on_bi.bi_op_delete = rwm_op_delete;
2082         rwm.on_bi.bi_op_unbind = rwm_op_unbind;
2083         rwm.on_bi.bi_extended = rwm_extended;
2084
2085         rwm.on_bi.bi_operational = rwm_operational;
2086         rwm.on_bi.bi_chk_referrals = 0 /* rwm_chk_referrals */ ;
2087
2088         rwm.on_bi.bi_connection_init = rwm_conn_init;
2089         rwm.on_bi.bi_connection_destroy = rwm_conn_destroy;
2090
2091         rwm.on_response = rwm_response;
2092
2093         rwm.on_bi.bi_cf_ocs = rwmocs;
2094
2095         rc = config_register_schema( rwmcfg, rwmocs );
2096         if ( rc ) {
2097                 return rc;
2098         }
2099
2100         return overlay_register( &rwm );
2101 }
2102
2103 #if SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC
2104 int
2105 init_module( int argc, char *argv[] )
2106 {
2107         return rwm_initialize();
2108 }
2109 #endif /* SLAPD_OVER_RWM == SLAPD_MOD_DYNAMIC */
2110
2111 #endif /* SLAPD_OVER_RWM */