]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/config.c
Changed conn->c_cdn to struct berval.
[openldap] / servers / slapd / back-ldap / config.c
1 /* config.c - ldap backend configuration file routine */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.
36  */
37
38 #include "portable.h"
39
40 #include <stdio.h>
41
42 #include <ac/string.h>
43 #include <ac/socket.h>
44
45 #include "slap.h"
46 #include "back-ldap.h"
47
48 int
49 ldap_back_db_config(
50     BackendDB   *be,
51     const char  *fname,
52     int         lineno,
53     int         argc,
54     char        **argv
55 )
56 {
57         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
58
59         if ( li == NULL ) {
60                 fprintf( stderr, "%s: line %d: ldap backend info is null!\n",
61                     fname, lineno );
62                 return( 1 );
63         }
64
65         /* server address to query (depricated, use "uri" directive) */
66         if ( strcasecmp( argv[0], "server" ) == 0 ) {
67                 if (argc != 2) {
68                         fprintf( stderr,
69         "%s: line %d: missing address in \"server <address>\" line\n",
70                             fname, lineno );
71                         return( 1 );
72                 }
73                 if (li->url != NULL)
74                         ch_free(li->url);
75                 li->url = ch_calloc(strlen(argv[1]) + 9, sizeof(char));
76                 if (li->url != NULL) {
77                         strcpy(li->url, "ldap://");
78                         strcat(li->url, argv[1]);
79                         strcat(li->url, "/");
80                 }
81
82         /* URI of server to query (preferred over "server" directive) */
83         } else if ( strcasecmp( argv[0], "uri" ) == 0 ) {
84                 if (argc != 2) {
85                         fprintf( stderr,
86         "%s: line %d: missing address in \"uri <address>\" line\n",
87                             fname, lineno );
88                         return( 1 );
89                 }
90                 if (li->url != NULL)
91                         ch_free(li->url);
92                 li->url = ch_strdup(argv[1]);
93
94         /* name to use for ldap_back_group */
95         } else if ( strcasecmp( argv[0], "binddn" ) == 0 ) {
96                 if (argc != 2) {
97                         fprintf( stderr,
98         "%s: line %d: missing name in \"binddn <name>\" line\n",
99                             fname, lineno );
100                         return( 1 );
101                 }
102                 li->binddn = ch_strdup(argv[1]);
103
104         /* password to use for ldap_back_group */
105         } else if ( strcasecmp( argv[0], "bindpw" ) == 0 ) {
106                 if (argc != 2) {
107                         fprintf( stderr,
108         "%s: line %d: missing password in \"bindpw <password>\" line\n",
109                             fname, lineno );
110                         return( 1 );
111                 }
112                 li->bindpw = ch_strdup(argv[1]);
113         
114         /* dn massaging */
115         } else if ( strcasecmp( argv[0], "suffixmassage" ) == 0 ) {
116 #ifndef ENABLE_REWRITE
117                 struct berval *bd2, *nd2;
118 #endif /* ENABLE_REWRITE */
119                 BackendDB *tmp_be;
120                 struct berval bdn, ndn;
121                 
122                 /*
123                  * syntax:
124                  * 
125                  *      suffixmassage <suffix> <massaged suffix>
126                  *
127                  * the <suffix> field must be defined as a valid suffix
128                  * (or suffixAlias?) for the current database;
129                  * the <massaged suffix> shouldn't have already been
130                  * defined as a valid suffix or suffixAlias for the 
131                  * current server
132                  */
133                 if ( argc != 3 ) {
134                         fprintf( stderr, "%s: line %d: syntax is"
135                                        " \"suffixMassage <suffix>"
136                                        " <massaged suffix>\"\n",
137                                 fname, lineno );
138                         return( 1 );
139                 }
140                 
141                 bdn.bv_val = argv[1];
142                 bdn.bv_len = strlen(bdn.bv_val);
143                 if ( dnNormalize2( NULL, &bdn, &ndn ) != LDAP_SUCCESS ) {
144                         fprintf( stderr, "%s: line %d: suffix DN %s is invalid\n",
145                                 fname, lineno, bdn.bv_val );
146                         return( 1 );
147                 }
148                 tmp_be = select_backend( &ndn, 0, 0 );
149                 free( ndn.bv_val );
150                 if ( tmp_be != NULL && tmp_be != be ) {
151                         fprintf( stderr, "%s: line %d: suffix already in use"
152                                        " by another backend in"
153                                        " \"suffixMassage <suffix>"
154                                        " <massaged suffix>\"\n",
155                                 fname, lineno );
156                         return( 1 );                                            
157                 }
158
159                 bdn.bv_val = argv[2];
160                 bdn.bv_len = strlen(bdn.bv_val);
161                 if ( dnNormalize2( NULL, &bdn, &ndn ) != LDAP_SUCCESS ) {
162                         fprintf( stderr, "%s: line %d: suffix DN %s is invalid\n",
163                                 fname, lineno, bdn.bv_val );
164                         return( 1 );
165                 }
166                 tmp_be = select_backend( &ndn, 0, 0 );
167                 free( ndn.bv_val );
168                 if ( tmp_be != NULL ) {
169                         fprintf( stderr, "%s: line %d: massaged suffix"
170                                        " already in use by another backend in" 
171                                        " \"suffixMassage <suffix>"
172                                        " <massaged suffix>\"\n",
173                                 fname, lineno );
174                         return( 1 );
175                 }
176
177 #ifdef ENABLE_REWRITE
178                 /*
179                  * The suffix massaging is emulated by means of the
180                  * rewrite capabilities
181                  * FIXME: no extra rewrite capabilities should be added
182                  * to the database
183                  */
184                 return suffix_massage_config( li->rwinfo, argc, argv );
185 #else /* !ENABLE_REWRITE */
186                 bd2 = ber_bvstrdup( argv[1] );
187                 ber_bvecadd( &li->suffix_massage, bd2 );
188                 nd2 = NULL;
189                 dnNormalize( NULL, bd2, &nd2 );
190                 ber_bvecadd( &li->suffix_massage, nd2 );
191                 
192                 bd2 = ber_bvstrdup( argv[2] );
193                 ber_bvecadd( &li->suffix_massage, bd2 );
194                 nd2 = NULL;
195                 dnNormalize( NULL, bd2, &nd2 );
196                 ber_bvecadd( &li->suffix_massage, nd2 );
197 #endif /* !ENABLE_REWRITE */
198
199 #ifdef ENABLE_REWRITE
200         /* rewrite stuff ... */
201         } else if ( strncasecmp( argv[0], "rewrite", 7 ) == 0 ) {
202                 return rewrite_parse( li->rwinfo, fname, lineno, argc, argv );
203 #endif /* ENABLE_REWRITE */
204                 
205         /* objectclass/attribute mapping */
206         } else if ( strcasecmp( argv[0], "map" ) == 0 ) {
207                 struct ldapmap *map;
208                 struct ldapmapping *mapping;
209                 char *src, *dst;
210
211                 if ( argc < 3 || argc > 4 ) {
212                         fprintf( stderr,
213         "%s: line %d: syntax is \"map {objectclass | attribute} {<source> | *} [<dest> | *]\"\n",
214                                 fname, lineno );
215                         return( 1 );
216                 }
217
218                 if ( strcasecmp( argv[1], "objectclass" ) == 0 ) {
219                         map = &li->oc_map;
220                 } else if ( strcasecmp( argv[1], "attribute" ) == 0 ) {
221                         map = &li->at_map;
222                 } else {
223                         fprintf( stderr, "%s: line %d: syntax is "
224                                 "\"map {objectclass | attribute} {<source> | *} "
225                                         "[<dest> | *]\"\n",
226                                 fname, lineno );
227                         return( 1 );
228                 }
229
230                 if ( strcasecmp( argv[2], "*" ) != 0 ) {
231                         src = argv[2];
232                         if ( argc < 4 )
233                                 dst = "";
234                         else if ( strcasecmp( argv[3], "*" ) == 0 )
235                                 dst = src;
236                         else
237                                 dst = argv[3];
238                 } else {
239                         if ( argc < 4 ) {
240                                 map->drop_missing = 1;
241                                 return 0;
242                         }
243                         if ( strcasecmp( argv[3], "*" ) == 0 ) {
244                                 map->drop_missing = 0;
245                                 return 0;
246                         }
247
248                         src = argv[3];
249                         dst = src;
250                 }
251
252                 if ( ( map == &li->at_map )
253                         && ( strcasecmp( src, "objectclass" ) == 0
254                                 || strcasecmp( dst, "objectclass" ) == 0 ) )
255                 {
256                         fprintf( stderr,
257                                 "%s: line %d: objectclass attribute cannot be mapped\n",
258                                 fname, lineno );
259                 }
260
261                 mapping = (struct ldapmapping *)ch_calloc( 2,
262                         sizeof(struct ldapmapping) );
263                 if ( mapping == NULL ) {
264                         fprintf( stderr,
265                                 "%s: line %d: out of memory\n",
266                                 fname, lineno );
267                         return( 1 );
268                 }
269                 ber_str2bv( src, 0, 1, &mapping->src );
270                 ber_str2bv( dst, 0, 1, &mapping->dst );
271                 if ( *dst != 0 ) {
272                         mapping[1].src = mapping->dst;
273                         mapping[1].dst = mapping->src;
274                 } else {
275                         mapping[1].src = mapping->src;
276                         mapping[1].dst = mapping->dst;
277                 }
278
279                 if ( avl_find( map->map, (caddr_t)mapping, mapping_cmp ) != NULL ||
280                         avl_find( map->remap, (caddr_t)&mapping[1], mapping_cmp ) != NULL)
281                 {
282                         fprintf( stderr,
283                                 "%s: line %d: duplicate mapping found (ignored)\n",
284                                 fname, lineno );
285                         return 0;
286                 }
287
288                 avl_insert( &map->map, (caddr_t)mapping,
289                                         mapping_cmp, mapping_dup );
290                 avl_insert( &map->remap, (caddr_t)&mapping[1],
291                                         mapping_cmp, mapping_dup );
292
293         /* anything else */
294         } else {
295                 fprintf( stderr, "%s: line %d: unknown directive \"%s\" "
296                         "in ldap database definition (ignored)\n",
297                     fname, lineno, argv[0] );
298         }
299         return 0;
300 }
301
302 #ifdef ENABLE_REWRITE
303 static char *
304 suffix_massage_regexize( const char *s )
305 {
306         char *res, *p, *r;
307         int i;
308
309         for ( i = 0, p = ( char * )s; 
310                         ( r = strchr( p, ',' ) ) != NULL; 
311                         p = r + 1, i++ )
312                 ;
313
314         res = ch_calloc( sizeof( char ), strlen( s ) + 4 + 4*i + 1 );
315
316         strcpy( res, "(.*)" );
317         for ( i = 0, p = ( char * )s;
318                         ( r = strchr( p, ',' ) ) != NULL;
319                         p = r + 1 , i++ ) {
320                 strncat( res, p, r - p + 1 );
321                 strcat( res, "[ ]?" );
322
323                 if ( r[ 1 ] == ' ' ) {
324                         r++;
325                 }
326         }
327         strcat( res, p );
328
329         return res;
330 }
331
332 static char *
333 suffix_massage_patternize( const char *s, int normalize )
334 {
335         char *res;
336
337         res = ch_calloc( sizeof( char ), strlen( s ) + sizeof("%1") );
338
339         sprintf( res, "%%1%s", s );
340
341         if ( normalize ) {
342                 char *out = dn_normalize( res + (sizeof("%1")-1) );
343                 if ( out != res + 2 ) {
344                         strcpy( res + 2, out );
345                         free( out );
346                 }
347         }
348
349         return res;
350 }
351
352 int
353 suffix_massage_config( 
354                 struct rewrite_info *info,
355                 int argc,
356                 char **argv
357 )
358 {
359         char *rargv[ 5 ];
360
361         rargv[ 0 ] = "rewriteEngine";
362         rargv[ 1 ] = "on";
363         rargv[ 2 ] = NULL;
364         rewrite_parse( info, "<suffix massage>", 1, 2, rargv );
365
366         rargv[ 0 ] = "rewriteContext";
367         rargv[ 1 ] = "default";
368         rargv[ 2 ] = NULL;
369         rewrite_parse( info, "<suffix massage>", 2, 2, rargv );
370
371         rargv[ 0 ] = "rewriteRule";
372         rargv[ 1 ] = suffix_massage_regexize( argv[ 1 ] );
373         rargv[ 2 ] = suffix_massage_patternize( argv[ 2 ], 0 );
374         rargv[ 3 ] = ":";
375         rargv[ 4 ] = NULL;
376         rewrite_parse( info, "<suffix massage>", 3, 4, rargv );
377         ch_free( rargv[ 1 ] );
378         ch_free( rargv[ 2 ] );
379         
380         rargv[ 0 ] = "rewriteContext";
381         rargv[ 1 ] = "searchResult";
382         rargv[ 2 ] = NULL;
383         rewrite_parse( info, "<suffix massage>", 4, 2, rargv );
384         
385         rargv[ 0 ] = "rewriteRule";
386         rargv[ 1 ] = suffix_massage_regexize( argv[ 2 ] );
387         rargv[ 2 ] = suffix_massage_patternize( argv[ 1 ], 0 );
388         rargv[ 3 ] = ":";
389         rargv[ 4 ] = NULL;
390         rewrite_parse( info, "<suffix massage>", 5, 4, rargv );
391         ch_free( rargv[ 1 ] );
392         ch_free( rargv[ 2 ] );
393
394         /*
395          * the filter should be rewritten as
396          * 
397          * rewriteRule
398          *      "(.*)member=([^)]+),o=Foo Bar,[ ]?c=US(.*)"
399          *      "%1member=%2,dc=example,dc=com%3"
400          *
401          * where "o=Foo Bar, c=US" is the virtual naming context,
402          * and "dc=example, dc=com" is the real naming context
403          */
404         rargv[ 0 ] = "rewriteContext";
405         rargv[ 1 ] = "searchFilter";
406         rargv[ 2 ] = NULL;
407         rewrite_parse( info, "<suffix massage>", 6, 2, rargv );
408
409 #if 0 /*  matched is not normalized */
410         rargv[ 0 ] = "rewriteContext";
411         rargv[ 1 ] = "matchedDn";
412         rargv[ 2 ] = "alias";
413         rargv[ 3 ] = "searchResult";
414         rargv[ 4 ] = NULL;
415         rewrite_parse( info, "<suffix massage>", 7, 4, rargv );
416 #else /* normalize matched */
417         rargv[ 0 ] = "rewriteContext";
418         rargv[ 1 ] = "matchedDn";
419         rargv[ 2 ] = NULL;
420         rewrite_parse( info, "<suffix massage>", 7, 2, rargv );
421
422         rargv[ 0 ] = "rewriteRule";
423         rargv[ 1 ] = suffix_massage_regexize( argv[ 2 ] );
424         rargv[ 2 ] = suffix_massage_patternize( argv[ 1 ], 1 );
425         rargv[ 3 ] = ":";
426         rargv[ 4 ] = NULL;
427         rewrite_parse( info, "<suffix massage>", 8, 4, rargv );
428         ch_free( rargv[ 1 ] );
429         ch_free( rargv[ 2 ] );
430 #endif /* normalize matched */
431
432         return 0;
433 }
434 #endif /* ENABLE_REWRITE */