]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/rwmdn.c
703a50641f5fe2b94336a42b3ea7a1064a18288f
[openldap] / servers / slapd / overlays / rwmdn.c
1 /* rwmdn.c - massages dns */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by the Howard Chu for inclusion
18  * in OpenLDAP Software and subsequently enhanced by Pierangelo
19  * Masarati.
20  */
21 /* This is an altered version */
22
23 /* 
24  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
25  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
26  * 
27  * Module back-ldap, originally developed by Howard Chu
28  *
29  * has been modified by Pierangelo Masarati. The original copyright
30  * notice has been maintained.
31  * 
32  * Permission is granted to anyone to use this software for any purpose
33  * on any computer system, and to alter it and redistribute it, subject
34  * to the following restrictions:
35  * 
36  * 1. The author is not responsible for the consequences of use of this
37  *    software, no matter how awful, even if they arise from flaws in it.
38  * 
39  * 2. The origin of this software must not be misrepresented, either by
40  *    explicit claim or by omission.  Since few users ever read sources,
41  *    credits should appear in the documentation.
42  * 
43  * 3. Altered versions must be plainly marked as such, and must not be
44  *    misrepresented as being the original software.  Since few users
45  *    ever read sources, credits should appear in the documentation.
46  * 
47  * 4. This notice may not be removed or altered.
48  */
49
50 #include "portable.h"
51
52 #include <stdio.h>
53
54 #include <ac/string.h>
55 #include <ac/socket.h>
56
57 #include "slap.h"
58 #include "rwm.h"
59
60 /* FIXME: after rewriting, we should also remap attributes ...  */
61
62 #ifdef ENABLE_REWRITE
63 int
64 rwm_dn_massage(
65         dncookie *dc,
66         struct berval *dn,
67         struct berval *res
68 )
69 {
70         int rc = 0;
71
72         switch ( rewrite_session( dc->rwmap->rwm_rw, dc->ctx,
73                                 (dn->bv_len ? dn->bv_val : ""), 
74                                 dc->conn, &res->bv_val ) )
75         {
76         case REWRITE_REGEXEC_OK:
77                 if ( res->bv_val != NULL ) {
78                         res->bv_len = strlen( res->bv_val );
79                 } else {
80                         *res = *dn;
81                 }
82 #ifdef NEW_LOGGING
83                 LDAP_LOG( BACK_LDAP, DETAIL1, 
84                         "[rw] %s: \"%s\" -> \"%s\"\n", dc->ctx, dn->bv_val, res->bv_val );              
85 #else /* !NEW_LOGGING */
86                 Debug( LDAP_DEBUG_ARGS,
87                         "[rw] %s: \"%s\" -> \"%s\"\n", dc->ctx, dn->bv_val, res->bv_val );              
88 #endif /* !NEW_LOGGING */
89                 rc = LDAP_SUCCESS;
90                 break;
91                 
92         case REWRITE_REGEXEC_UNWILLING:
93                 if ( dc->rs ) {
94                         dc->rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
95                         dc->rs->sr_text = "Operation not allowed";
96                 }
97                 rc = LDAP_UNWILLING_TO_PERFORM;
98                 break;
99                 
100         case REWRITE_REGEXEC_ERR:
101                 if ( dc->rs ) {
102                         dc->rs->sr_err = LDAP_OTHER;
103                         dc->rs->sr_text = "Rewrite error";
104                 }
105                 rc = LDAP_OTHER;
106                 break;
107         }
108         return rc;
109 }
110
111 #else
112 /*
113  * rwm_dn_massage
114  * 
115  * Aliases the suffix; based on suffix_alias (servers/slapd/suffixalias.c).
116  */
117 int
118 rwm_dn_massage(
119         dncookie *dc,
120         struct berval *odn,
121         struct berval *res
122 )
123 {
124         int     i, src, dst;
125         struct berval pretty = {0,NULL}, *dn = odn;
126
127         assert( res );
128
129         if ( dn == NULL ) {
130                 res->bv_val = NULL;
131                 res->bv_len = 0;
132                 return 0;
133         }
134         if ( dc->rwmap == NULL || dc->rwmap->rwm_suffix_massage == NULL ) {
135                 *res = *dn;
136                 return 0;
137         }
138
139         if ( dc->tofrom ) {
140                 src = 0 + dc->normalized;
141                 dst = 2 + dc->normalized;
142         } else {
143                 src = 2 + dc->normalized;
144                 dst = 0 + dc->normalized;
145                 /* DN from remote server may be in arbitrary form.
146                  * Pretty it so we can parse reliably.
147                  */
148                 dnPretty( NULL, dn, &pretty, NULL );
149                 if (pretty.bv_val) dn = &pretty;
150         }
151
152         for ( i = 0;
153                 dc->rwmap->rwm_suffix_massage[i].bv_val != NULL;
154                 i += 4 ) {
155                 int aliasLength = dc->rwmap->rwm_suffix_massage[i+src].bv_len;
156                 int diff = dn->bv_len - aliasLength;
157
158                 if ( diff < 0 ) {
159                         /* alias is longer than dn */
160                         continue;
161                 } else if ( diff > 0 && ( !DN_SEPARATOR(dn->bv_val[diff-1]))) {
162                         /* boundary is not at a DN separator */
163                         continue;
164                         /* At a DN Separator */
165                 }
166
167                 if ( !strcmp( dc->rwmap->rwm_suffix_massage[i+src].bv_val, &dn->bv_val[diff] ) ) {
168                         res->bv_len = diff + dc->rwmap->rwm_suffix_massage[i+dst].bv_len;
169                         res->bv_val = ch_malloc( res->bv_len + 1 );
170                         strncpy( res->bv_val, dn->bv_val, diff );
171                         strcpy( &res->bv_val[diff], dc->rwmap->rwm_suffix_massage[i+dst].bv_val );
172 #ifdef NEW_LOGGING
173                         LDAP_LOG ( BACK_LDAP, ARGS, 
174                                 "rwm_dn_massage: converted \"%s\" to \"%s\"\n",
175                                 dn->bv_val, res->bv_val, 0 );
176 #else
177                         Debug( LDAP_DEBUG_ARGS,
178                                 "rwm_dn_massage:"
179                                 " converted \"%s\" to \"%s\"\n",
180                                 dn->bv_val, res->bv_val, 0 );
181 #endif
182                         break;
183                 }
184         }
185         if (pretty.bv_val) {
186                 ch_free(pretty.bv_val);
187                 dn = odn;
188         }
189         /* Nothing matched, just return the original DN */
190         if (res->bv_val == NULL) {
191                 *res = *dn;
192         }
193
194         return 0;
195 }
196 #endif /* !ENABLE_REWRITE */