1 /* rwmmap.c - rewrite/mapping routines */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1999-2005 The OpenLDAP Foundation.
6 * Portions Copyright 1999-2003 Howard Chu.
7 * Portions Copyright 2000-2003 Pierangelo Masarati.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
14 * A copy of this license is available in the file LICENSE in the
15 * top-level directory of the distribution or, alternatively, at
16 * <http://www.OpenLDAP.org/license.html>.
19 * This work was initially developed by the Howard Chu for inclusion
20 * in OpenLDAP Software and subsequently enhanced by Pierangelo
30 #include <ac/string.h>
31 #include <ac/socket.h>
36 #undef ldap_debug /* silence a warning in ldap-int.h */
37 #include "../../../libraries/libldap/ldap-int.h"
40 rwm_mapping_cmp( const void *c1, const void *c2 )
42 struct ldapmapping *map1 = (struct ldapmapping *)c1;
43 struct ldapmapping *map2 = (struct ldapmapping *)c2;
44 int rc = map1->m_src.bv_len - map2->m_src.bv_len;
50 return strcasecmp( map1->m_src.bv_val, map2->m_src.bv_val );
54 rwm_mapping_dup( void *c1, void *c2 )
56 struct ldapmapping *map1 = (struct ldapmapping *)c1;
57 struct ldapmapping *map2 = (struct ldapmapping *)c2;
58 int rc = map1->m_src.bv_len - map2->m_src.bv_len;
64 return ( ( strcasecmp( map1->m_src.bv_val, map2->m_src.bv_val ) == 0 ) ? -1 : 0 );
68 rwm_map_init( struct ldapmap *lm, struct ldapmapping **m )
70 struct ldapmapping *mapping;
78 mapping = (struct ldapmapping *)ch_calloc( 2,
79 sizeof( struct ldapmapping ) );
80 if ( mapping == NULL ) {
81 return LDAP_NO_MEMORY;
84 /* FIXME: I don't think this is needed any more... */
85 rc = slap_str2ad( "objectClass", &mapping->m_src_ad, &text );
86 if ( rc != LDAP_SUCCESS ) {
90 mapping->m_dst_ad = mapping->m_src_ad;
91 ber_dupbv( &mapping->m_dst, &mapping->m_src_ad->ad_cname );
92 ber_dupbv( &mapping->m_dst, &mapping->m_src );
94 mapping[1].m_src = mapping->m_src;
95 mapping[1].m_dst = mapping->m_dst;
97 avl_insert( &lm->map, (caddr_t)mapping,
98 rwm_mapping_cmp, rwm_mapping_dup );
99 avl_insert( &lm->remap, (caddr_t)&mapping[1],
100 rwm_mapping_cmp, rwm_mapping_dup );
108 rwm_mapping( struct ldapmap *map, struct berval *s, struct ldapmapping **m, int remap )
111 struct ldapmapping fmapping;
115 if ( remap == RWM_REMAP ) {
123 *m = (struct ldapmapping *)avl_find( tree, (caddr_t)&fmapping,
127 return map->drop_missing;
134 rwm_map( struct ldapmap *map, struct berval *s, struct berval *bv, int remap )
136 struct ldapmapping *mapping;
139 ( void )rwm_mapping( map, s, &mapping, remap );
140 if ( mapping != NULL ) {
141 if ( !BER_BVISNULL( &mapping->m_dst ) ) {
142 *bv = mapping->m_dst;
147 if ( !map->drop_missing ) {
153 * Map attribute names in place
157 struct ldapmap *at_map,
158 struct ldapmap *oc_map,
174 for ( i = 0; !BER_BVISNULL( &an[i].an_name ); i++ )
176 *anp = ch_malloc( ( i + 1 )* sizeof( AttributeName ) );
177 if ( *anp == NULL ) {
178 return LDAP_NO_MEMORY;
181 for ( i = 0, j = 0; !BER_BVISNULL( &an[i].an_name ); i++ ) {
182 struct ldapmapping *m;
183 int at_drop_missing = 0,
186 if ( an[i].an_desc ) {
188 /* FIXME: better leave as is? */
192 at_drop_missing = rwm_mapping( at_map, &an[i].an_name, &m, remap );
193 if ( at_drop_missing || ( m && BER_BVISNULL( &m->m_dst ) ) ) {
204 if ( remap == RWM_MAP ) {
205 (*anp)[j].an_name = m->m_dst;
206 (*anp)[j].an_desc = m->m_dst_ad;
208 (*anp)[j].an_name = m->m_src;
209 (*anp)[j].an_desc = m->m_src_ad;
216 } else if ( an[i].an_oc ) {
218 /* FIXME: better leave as is? */
222 oc_drop_missing = rwm_mapping( oc_map, &an[i].an_name, &m, remap );
224 if ( oc_drop_missing || ( m && BER_BVISNULL( &m->m_dst ) ) ) {
235 if ( remap == RWM_MAP ) {
236 (*anp)[j].an_name = m->m_dst;
237 (*anp)[j].an_oc = m->m_dst_oc;
239 (*anp)[j].an_name = m->m_src;
240 (*anp)[j].an_oc = m->m_src_oc;
244 at_drop_missing = rwm_mapping( at_map, &an[i].an_name, &m, remap );
246 if ( at_drop_missing || !m ) {
248 oc_drop_missing = rwm_mapping( oc_map, &an[i].an_name, &m, remap );
250 /* if both at_map and oc_map required to drop missing,
252 if ( oc_drop_missing && at_drop_missing ) {
256 /* if no oc_map mapping was found and at_map required
257 * to drop missing, then do it; otherwise, at_map wins
258 * and an is considered an attr and is left unchanged */
260 if ( at_drop_missing ) {
268 if ( BER_BVISNULL( &m->m_dst ) ) {
273 if ( remap == RWM_MAP ) {
274 (*anp)[j].an_name = m->m_dst;
275 (*anp)[j].an_oc = m->m_dst_oc;
277 (*anp)[j].an_name = m->m_src;
278 (*anp)[j].an_oc = m->m_src_oc;
284 if ( !BER_BVISNULL( &m->m_dst ) ) {
286 if ( remap == RWM_MAP ) {
287 (*anp)[j].an_name = m->m_dst;
288 (*anp)[j].an_desc = m->m_dst_ad;
290 (*anp)[j].an_name = m->m_src;
291 (*anp)[j].an_desc = m->m_src_ad;
299 if ( j == 0 && i != 0 ) {
300 memset( &(*anp)[0], 0, sizeof( AttributeName ) );
301 BER_BVSTR( &(*anp)[0].an_name, LDAP_NO_ATTRS );
303 memset( &(*anp)[j], 0, sizeof( AttributeName ) );
310 struct ldapmap *at_map,
320 *mapped_attrs = NULL;
324 for ( i = 0; !BER_BVISNULL( &an[ i ].an_name ); i++ ) {
328 na = (char **)ch_calloc( i + 1, sizeof( char * ) );
330 *mapped_attrs = NULL;
331 return LDAP_NO_MEMORY;
334 for ( i = j = 0; !BER_BVISNULL( &an[i].an_name ); i++ ) {
335 struct ldapmapping *mapping;
337 if ( rwm_mapping( at_map, &an[i].an_name, &mapping, remap ) ) {
342 na[ j++ ] = an[ i ].an_name.bv_val;
344 } else if ( !BER_BVISNULL( &mapping->m_dst ) ) {
345 na[ j++ ] = mapping->m_dst.bv_val;
349 if ( j == 0 && i != 0 ) {
350 na[ j++ ] = LDAP_NO_ATTRS;
363 AttributeDescription **adp,
364 struct berval *mapped_attr,
365 struct berval *value,
366 struct berval *mapped_value,
369 struct berval vtmp = BER_BVNULL;
371 AttributeDescription *ad = *adp;
372 struct ldapmapping *mapping = NULL;
374 rwm_mapping( &dc->rwmap->rwm_at, &ad->ad_cname, &mapping, remap );
375 if ( mapping == NULL ) {
376 if ( dc->rwmap->rwm_at.drop_missing ) {
380 *mapped_attr = ad->ad_cname;
383 *mapped_attr = mapping->m_dst;
386 if ( value != NULL ) {
387 assert( mapped_value != NULL );
389 if ( ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName
390 || ( mapping != NULL && mapping->m_dst_ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) )
395 #ifdef ENABLE_REWRITE
396 fdc.ctx = "searchFilterAttrDN";
397 #endif /* ENABLE_REWRITE */
400 rc = rwm_dn_massage_normalize( &fdc, value, &vtmp );
403 if ( vtmp.bv_val != value->bv_val ) {
408 case LDAP_UNWILLING_TO_PERFORM:
414 } else if ( ad == slap_schema.si_ad_objectClass
415 || ad == slap_schema.si_ad_structuralObjectClass )
417 rwm_map( &dc->rwmap->rwm_oc, value, &vtmp, remap );
418 if ( BER_BVISNULL( &vtmp ) || BER_BVISEMPTY( &vtmp ) ) {
426 filter_escape_value( &vtmp, mapped_value );
429 ch_free( vtmp.bv_val );
433 if ( mapping != NULL ) {
434 assert( mapping->m_dst_ad != NULL );
435 *adp = mapping->m_dst_ad;
442 rwm_int_filter_map_rewrite(
445 struct berval *fstr )
454 ber_bvfalse = BER_BVC( "(?=false)" ),
456 /* better than nothing... */
457 ber_bvfalse = BER_BVC( "(!(objectClass=*))" ),
458 ber_bvtf_false = BER_BVC( "(|)" ),
460 ber_bvtrue = BER_BVC( "(?=true)" ),
462 /* better than nothing... */
463 ber_bvtrue = BER_BVC( "(objectClass=*)" ),
464 ber_bvtf_true = BER_BVC( "(&)" ),
465 ber_bvundefined = BER_BVC( "(?=undefined)" ),
466 ber_bverror = BER_BVC( "(?=error)" ),
467 ber_bvunknown = BER_BVC( "(?=unknown)" ),
468 ber_bvnone = BER_BVC( "(?=none)" );
472 ber_dupbv( fstr, &ber_bvnone );
476 switch ( f->f_choice ) {
477 case LDAP_FILTER_EQUALITY:
478 if ( map_attr_value( dc, &f->f_av_desc, &atmp,
479 &f->f_av_value, &vtmp, RWM_MAP ) )
484 fstr->bv_len = atmp.bv_len + vtmp.bv_len + STRLENOF( "(=)" );
485 fstr->bv_val = ch_malloc( fstr->bv_len + 1 );
487 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s=%s)",
488 atmp.bv_val, vtmp.bv_val );
490 ch_free( vtmp.bv_val );
494 if ( map_attr_value( dc, &f->f_av_desc, &atmp,
495 &f->f_av_value, &vtmp, RWM_MAP ) )
500 fstr->bv_len = atmp.bv_len + vtmp.bv_len + STRLENOF( "(>=)" );
501 fstr->bv_val = ch_malloc( fstr->bv_len + 1 );
503 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s>=%s)",
504 atmp.bv_val, vtmp.bv_val );
506 ch_free( vtmp.bv_val );
510 if ( map_attr_value( dc, &f->f_av_desc, &atmp,
511 &f->f_av_value, &vtmp, RWM_MAP ) )
516 fstr->bv_len = atmp.bv_len + vtmp.bv_len + STRLENOF( "(<=)" );
517 fstr->bv_val = ch_malloc( fstr->bv_len + 1 );
519 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s<=%s)",
520 atmp.bv_val, vtmp.bv_val );
522 ch_free( vtmp.bv_val );
525 case LDAP_FILTER_APPROX:
526 if ( map_attr_value( dc, &f->f_av_desc, &atmp,
527 &f->f_av_value, &vtmp, RWM_MAP ) )
532 fstr->bv_len = atmp.bv_len + vtmp.bv_len + STRLENOF( "(~=)" );
533 fstr->bv_val = ch_malloc( fstr->bv_len + 1 );
535 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s~=%s)",
536 atmp.bv_val, vtmp.bv_val );
538 ch_free( vtmp.bv_val );
541 case LDAP_FILTER_SUBSTRINGS:
542 if ( map_attr_value( dc, &f->f_sub_desc, &atmp,
543 NULL, NULL, RWM_MAP ) )
548 /* cannot be a DN ... */
550 fstr->bv_len = atmp.bv_len + STRLENOF( "(=*)" );
551 fstr->bv_val = ch_malloc( fstr->bv_len + 128 );
553 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s=*)",
556 if ( !BER_BVISNULL( &f->f_sub_initial ) ) {
559 filter_escape_value( &f->f_sub_initial, &vtmp );
561 fstr->bv_len += vtmp.bv_len;
562 fstr->bv_val = ch_realloc( fstr->bv_val, fstr->bv_len + 1 );
564 snprintf( &fstr->bv_val[len - 2], vtmp.bv_len + 3,
565 /* "(attr=" */ "%s*)",
568 ch_free( vtmp.bv_val );
571 if ( f->f_sub_any != NULL ) {
572 for ( i = 0; !BER_BVISNULL( &f->f_sub_any[i] ); i++ ) {
574 filter_escape_value( &f->f_sub_any[i], &vtmp );
576 fstr->bv_len += vtmp.bv_len + 1;
577 fstr->bv_val = ch_realloc( fstr->bv_val, fstr->bv_len + 1 );
579 snprintf( &fstr->bv_val[len - 1], vtmp.bv_len + 3,
580 /* "(attr=[init]*[any*]" */ "%s*)",
582 ch_free( vtmp.bv_val );
586 if ( !BER_BVISNULL( &f->f_sub_final ) ) {
589 filter_escape_value( &f->f_sub_final, &vtmp );
591 fstr->bv_len += vtmp.bv_len;
592 fstr->bv_val = ch_realloc( fstr->bv_val, fstr->bv_len + 1 );
594 snprintf( &fstr->bv_val[len - 1], vtmp.bv_len + 3,
595 /* "(attr=[init*][any*]" */ "%s)",
598 ch_free( vtmp.bv_val );
603 case LDAP_FILTER_PRESENT:
604 if ( map_attr_value( dc, &f->f_desc, &atmp,
605 NULL, NULL, RWM_MAP ) )
610 fstr->bv_len = atmp.bv_len + STRLENOF( "(=*)" );
611 fstr->bv_val = ch_malloc( fstr->bv_len + 1 );
613 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s=*)",
617 case LDAP_FILTER_AND:
619 case LDAP_FILTER_NOT:
620 fstr->bv_len = STRLENOF( "(%)" );
621 fstr->bv_val = ch_malloc( fstr->bv_len + 128 );
623 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%c)",
624 f->f_choice == LDAP_FILTER_AND ? '&' :
625 f->f_choice == LDAP_FILTER_OR ? '|' : '!' );
627 for ( p = f->f_list; p != NULL; p = p->f_next ) {
630 if ( rwm_int_filter_map_rewrite( dc, p, &vtmp ) )
635 fstr->bv_len += vtmp.bv_len;
636 fstr->bv_val = ch_realloc( fstr->bv_val, fstr->bv_len + 1 );
638 snprintf( &fstr->bv_val[len-1], vtmp.bv_len + 2,
639 /*"("*/ "%s)", vtmp.bv_val );
641 ch_free( vtmp.bv_val );
646 case LDAP_FILTER_EXT: {
647 if ( f->f_mr_desc ) {
648 if ( map_attr_value( dc, &f->f_mr_desc, &atmp,
649 &f->f_mr_value, &vtmp, RWM_MAP ) )
655 BER_BVSTR( &atmp, "" );
656 filter_escape_value( &f->f_mr_value, &vtmp );
660 fstr->bv_len = atmp.bv_len +
661 ( f->f_mr_dnattrs ? STRLENOF( ":dn" ) : 0 ) +
662 ( f->f_mr_rule_text.bv_len ? f->f_mr_rule_text.bv_len + 1 : 0 ) +
663 vtmp.bv_len + STRLENOF( "(:=)" );
664 fstr->bv_val = ch_malloc( fstr->bv_len + 1 );
666 snprintf( fstr->bv_val, fstr->bv_len + 1, "(%s%s%s%s:=%s)",
668 f->f_mr_dnattrs ? ":dn" : "",
669 !BER_BVISEMPTY( &f->f_mr_rule_text ) ? ":" : "",
670 !BER_BVISEMPTY( &f->f_mr_rule_text ) ? f->f_mr_rule_text.bv_val : "",
672 ch_free( vtmp.bv_val );
676 case SLAPD_FILTER_COMPUTED:
677 switch ( f->f_result ) {
678 case LDAP_COMPARE_FALSE:
679 if ( dc->rwmap->rwm_flags & RWM_F_SUPPORT_T_F ) {
680 tmp = ber_bvtf_false;
686 case LDAP_COMPARE_TRUE:
687 if ( dc->rwmap->rwm_flags & RWM_F_SUPPORT_T_F ) {
694 case SLAPD_COMPARE_UNDEFINED:
695 tmp = ber_bvundefined;
703 ber_dupbv( fstr, &tmp );
707 ber_dupbv( fstr, &ber_bvunknown );
715 rwm_filter_map_rewrite(
718 struct berval *fstr )
724 rc = rwm_int_filter_map_rewrite( dc, f, fstr );
726 #ifdef ENABLE_REWRITE
727 if ( rc != LDAP_SUCCESS ) {
734 fdc.ctx = "searchFilter";
736 switch ( rewrite_session( fdc.rwmap->rwm_rw, fdc.ctx,
737 ( !BER_BVISEMPTY( &ftmp ) ? ftmp.bv_val : "" ),
738 fdc.conn, &fstr->bv_val ) )
740 case REWRITE_REGEXEC_OK:
741 if ( !BER_BVISNULL( fstr ) ) {
742 fstr->bv_len = strlen( fstr->bv_val );
743 ch_free( ftmp.bv_val );
749 Debug( LDAP_DEBUG_ARGS,
750 "[rw] %s: \"%s\" -> \"%s\"\n",
751 fdc.ctx, ftmp.bv_val, fstr->bv_val );
755 case REWRITE_REGEXEC_UNWILLING:
757 fdc.rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
758 fdc.rs->sr_text = "Operation not allowed";
760 rc = LDAP_UNWILLING_TO_PERFORM;
763 case REWRITE_REGEXEC_ERR:
765 fdc.rs->sr_err = LDAP_OTHER;
766 fdc.rs->sr_text = "Rewrite error";
772 #endif /* ENABLE_REWRITE */
777 * I don't like this much, but we need two different
778 * functions because different heap managers may be
779 * in use in back-ldap/meta to reduce the amount of
780 * calls to malloc routines, and some of the free()
781 * routines may be macros with args
784 rwm_referral_rewrite(
789 BerVarray *pa_nvals )
791 slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
792 struct ldaprwmap *rwmap =
793 (struct ldaprwmap *)on->on_bi.bi_private;
798 struct berval dn = BER_BVNULL,
804 * Rewrite the dn if needed
807 #ifdef ENABLE_REWRITE
808 dc.conn = op->o_conn;
810 dc.ctx = (char *)cookie;
811 #else /* ! ENABLE_REWRITE */
812 dc.tofrom = ((int *)cookie)[0];
814 #endif /* ! ENABLE_REWRITE */
816 for ( last = 0; !BER_BVISNULL( &a_vals[last] ); last++ )
820 if ( pa_nvals != NULL ) {
821 if ( *pa_nvals == NULL ) {
822 *pa_nvals = ch_malloc( ( last + 2 ) * sizeof(struct berval) );
823 memset( *pa_nvals, 0, ( last + 2 ) * sizeof(struct berval) );
827 for ( i = 0; !BER_BVISNULL( &a_vals[i] ); i++ ) {
828 struct berval olddn = BER_BVNULL,
834 rc = ldap_url_parse( oldval.bv_val, &ludp );
835 if ( rc != LDAP_URL_SUCCESS ) {
836 /* leave attr untouched if massage failed */
837 if ( pa_nvals && BER_BVISNULL( &(*pa_nvals)[i] ) ) {
838 ber_dupbv( &(*pa_nvals)[i], &oldval );
843 /* FIXME: URLs like "ldap:///dc=suffix" if passed
844 * thru ldap_url_parse() and ldap_url_desc2str()
845 * get rewritten as "ldap:///dc=suffix??base";
846 * we don't want this to occur... */
847 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
848 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
851 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
856 rc = rwm_dn_massage_pretty_normalize( &dc, &olddn,
859 rc = rwm_dn_massage_pretty( &dc, &olddn, &dn );
863 case LDAP_UNWILLING_TO_PERFORM:
865 * FIXME: need to check if it may be considered
866 * legal to trim values when adding/modifying;
867 * it should be when searching (e.g. ACLs).
869 ch_free( a_vals[i].bv_val );
871 a_vals[i] = a_vals[last];
873 (*pa_nvals)[i] = (*pa_nvals)[last];
876 BER_BVZERO( &a_vals[last] );
878 BER_BVZERO( &(*pa_nvals)[last] );
884 if ( !BER_BVISNULL( &dn ) && dn.bv_val != olddn.bv_val ) {
887 ludp->lud_dn = dn.bv_val;
888 newurl = ldap_url_desc2str( ludp );
889 ludp->lud_dn = olddn.bv_val;
890 ch_free( dn.bv_val );
891 if ( newurl == NULL ) {
892 /* FIXME: leave attr untouched
893 * even if ldap_url_desc2str failed...
898 ber_str2bv( newurl, 0, 1, &a_vals[i] );
902 ludp->lud_dn = ndn.bv_val;
903 newurl = ldap_url_desc2str( ludp );
904 ludp->lud_dn = olddn.bv_val;
905 ch_free( ndn.bv_val );
906 if ( newurl == NULL ) {
907 /* FIXME: leave attr untouched
908 * even if ldap_url_desc2str failed...
910 ch_free( a_vals[i].bv_val );
915 if ( !BER_BVISNULL( &(*pa_nvals)[i] ) ) {
916 ch_free( (*pa_nvals)[i].bv_val );
918 ber_str2bv( newurl, 0, 1, &(*pa_nvals)[i] );
922 ch_free( oldval.bv_val );
923 ludp->lud_dn = olddn.bv_val;
928 /* leave attr untouched if massage failed */
929 if ( pa_nvals && BER_BVISNULL( &(*pa_nvals)[i] ) ) {
930 ber_dupbv( &(*pa_nvals)[i], &a_vals[i] );
934 ldap_free_urldesc( ludp );
941 * I don't like this much, but we need two different
942 * functions because different heap managers may be
943 * in use in back-ldap/meta to reduce the amount of
944 * calls to malloc routines, and some of the free()
945 * routines may be macros with args
953 BerVarray *pa_nvals )
955 slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
956 struct ldaprwmap *rwmap =
957 (struct ldaprwmap *)on->on_bi.bi_private;
962 struct berval dn = BER_BVNULL,
970 if ( pa_nvals == NULL || *pa_nvals == NULL ) {
977 * Rewrite the dn if needed
980 #ifdef ENABLE_REWRITE
981 dc.conn = op->o_conn;
983 dc.ctx = (char *)cookie;
984 #else /* ! ENABLE_REWRITE */
985 dc.tofrom = ((int *)cookie)[0];
987 #endif /* ! ENABLE_REWRITE */
989 for ( last = 0; !BER_BVISNULL( &in[last] ); last++ );
991 if ( pa_nvals != NULL ) {
992 if ( *pa_nvals == NULL ) {
993 *pa_nvals = ch_malloc( ( last + 2 ) * sizeof(struct berval) );
994 memset( *pa_nvals, 0, ( last + 2 ) * sizeof(struct berval) );
998 for ( i = 0; !BER_BVISNULL( &in[i] ); i++ ) {
1004 ndn = (*pa_nvals)[i];
1005 rc = rwm_dn_massage_pretty_normalize( &dc, &in[i], &dn, &ndn );
1007 rc = rwm_dn_massage_pretty( &dc, &in[i], &dn );
1011 rc = rwm_dn_massage_normalize( &dc, &in[i], &ndn );
1015 case LDAP_UNWILLING_TO_PERFORM:
1017 * FIXME: need to check if it may be considered
1018 * legal to trim values when adding/modifying;
1019 * it should be when searching (e.g. ACLs).
1021 ch_free( in[i].bv_val );
1024 if ( a_vals && pa_nvals ) {
1025 (*pa_nvals)[i] = (*pa_nvals)[last];
1028 BER_BVZERO( &in[last] );
1029 if ( a_vals && pa_nvals ) {
1030 BER_BVZERO( &(*pa_nvals)[last] );
1037 if ( !BER_BVISNULL( &dn ) && dn.bv_val != a_vals[i].bv_val ) {
1038 ch_free( a_vals[i].bv_val );
1042 if ( !BER_BVISNULL( &(*pa_nvals)[i] ) ) {
1043 ch_free( (*pa_nvals)[i].bv_val );
1045 (*pa_nvals)[i] = ndn;
1050 if ( !BER_BVISNULL( &ndn ) && ndn.bv_val != (*pa_nvals)[i].bv_val ) {
1051 ch_free( (*pa_nvals)[i].bv_val );
1052 (*pa_nvals)[i] = ndn;
1058 /* leave attr untouched if massage failed */
1059 if ( a_vals && pa_nvals && BER_BVISNULL( &(*pa_nvals)[i] ) ) {
1060 dnNormalize( 0, NULL, NULL, &a_vals[i], &(*pa_nvals)[i], NULL );
1070 rwm_referral_result_rewrite(
1077 for ( last = 0; !BER_BVISNULL( &a_vals[last] ); last++ );
1080 for ( i = 0; !BER_BVISNULL( &a_vals[i] ); i++ ) {
1086 rc = ldap_url_parse( a_vals[i].bv_val, &ludp );
1087 if ( rc != LDAP_URL_SUCCESS ) {
1088 /* leave attr untouched if massage failed */
1092 /* FIXME: URLs like "ldap:///dc=suffix" if passed
1093 * thru ldap_url_parse() and ldap_url_desc2str()
1094 * get rewritten as "ldap:///dc=suffix??base";
1095 * we don't want this to occur... */
1096 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
1097 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
1100 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
1103 rc = rwm_dn_massage_pretty( dc, &olddn, &dn );
1105 case LDAP_UNWILLING_TO_PERFORM:
1107 * FIXME: need to check if it may be considered
1108 * legal to trim values when adding/modifying;
1109 * it should be when searching (e.g. ACLs).
1111 ch_free( a_vals[i].bv_val );
1113 a_vals[i] = a_vals[last];
1115 BER_BVZERO( &a_vals[last] );
1121 /* leave attr untouched if massage failed */
1122 if ( !BER_BVISNULL( &dn ) && olddn.bv_val != dn.bv_val ) {
1125 ludp->lud_dn = dn.bv_val;
1126 newurl = ldap_url_desc2str( ludp );
1127 if ( newurl == NULL ) {
1128 /* FIXME: leave attr untouched
1129 * even if ldap_url_desc2str failed...
1134 ch_free( a_vals[i].bv_val );
1135 ber_str2bv( newurl, 0, 1, &a_vals[i] );
1136 LDAP_FREE( newurl );
1137 ludp->lud_dn = olddn.bv_val;
1142 ldap_free_urldesc( ludp );
1149 rwm_dnattr_result_rewrite(
1156 for ( last = 0; !BER_BVISNULL( &a_vals[last] ); last++ );
1159 for ( i = 0; !BER_BVISNULL( &a_vals[i] ); i++ ) {
1164 rc = rwm_dn_massage_pretty( dc, &a_vals[i], &dn );
1166 case LDAP_UNWILLING_TO_PERFORM:
1168 * FIXME: need to check if it may be considered
1169 * legal to trim values when adding/modifying;
1170 * it should be when searching (e.g. ACLs).
1172 ch_free( a_vals[i].bv_val );
1174 a_vals[i] = a_vals[last];
1176 BER_BVZERO( &a_vals[last] );
1181 /* leave attr untouched if massage failed */
1182 if ( !BER_BVISNULL( &dn ) && a_vals[i].bv_val != dn.bv_val ) {
1183 ch_free( a_vals[i].bv_val );
1194 rwm_mapping_free( void *v_mapping )
1196 struct ldapmapping *mapping = v_mapping;
1198 if ( !BER_BVISNULL( &mapping[0].m_src ) ) {
1199 ch_free( mapping[0].m_src.bv_val );
1202 if ( mapping[0].m_flags & RWMMAP_F_FREE_SRC ) {
1203 if ( mapping[0].m_flags & RWMMAP_F_IS_OC ) {
1204 if ( mapping[0].m_src_oc ) {
1205 ch_free( mapping[0].m_src_oc );
1209 if ( mapping[0].m_src_ad ) {
1210 ch_free( mapping[0].m_src_ad );
1215 if ( !BER_BVISNULL( &mapping[0].m_dst ) ) {
1216 ch_free( mapping[0].m_dst.bv_val );
1219 if ( mapping[0].m_flags & RWMMAP_F_FREE_DST ) {
1220 if ( mapping[0].m_flags & RWMMAP_F_IS_OC ) {
1221 if ( mapping[0].m_dst_oc ) {
1222 ch_free( mapping[0].m_dst_oc );
1226 if ( mapping[0].m_dst_ad ) {
1227 ch_free( mapping[0].m_dst_ad );
1236 #endif /* SLAPD_OVER_RWM */