]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/config.c
Date: Thu, 2 May 2002 08:54:59 GMT
[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         /* save bind creds for referral rebinds? */
115         } else if ( strcasecmp( argv[0], "rebind-as-user" ) == 0 ) {
116                 if (argc != 1) {
117                         fprintf( stderr,
118         "%s: line %d: rebind-as-user takes no arguments\n",
119                             fname, lineno );
120                         return( 1 );
121                 }
122                 li->savecred = 1;
123         
124         /* dn massaging */
125         } else if ( strcasecmp( argv[0], "suffixmassage" ) == 0 ) {
126                 BackendDB *tmp_be;
127                 struct berval bvnc, nvnc, pvnc, brnc, nrnc, prnc;
128 #ifdef ENABLE_REWRITE
129                 int rc;
130 #endif /* ENABLE_REWRITE */
131                 
132                 /*
133                  * syntax:
134                  * 
135                  *      suffixmassage <suffix> <massaged suffix>
136                  *
137                  * the <suffix> field must be defined as a valid suffix
138                  * (or suffixAlias?) for the current database;
139                  * the <massaged suffix> shouldn't have already been
140                  * defined as a valid suffix or suffixAlias for the 
141                  * current server
142                  */
143                 if ( argc != 3 ) {
144                         fprintf( stderr, "%s: line %d: syntax is"
145                                        " \"suffixMassage <suffix>"
146                                        " <massaged suffix>\"\n",
147                                 fname, lineno );
148                         return( 1 );
149                 }
150                 
151                 ber_str2bv( argv[1], 0, 0, &bvnc );
152                 if ( dnPrettyNormal( NULL, &bvnc, &pvnc, &nvnc ) != LDAP_SUCCESS ) {
153                         fprintf( stderr, "%s: line %d: suffix DN %s is invalid\n",
154                                 fname, lineno, bvnc.bv_val );
155                         return( 1 );
156                 }
157                 tmp_be = select_backend( &nvnc, 0, 0 );
158                 if ( tmp_be != NULL && tmp_be != be ) {
159                         fprintf( stderr, "%s: line %d: suffix already in use"
160                                        " by another backend in"
161                                        " \"suffixMassage <suffix>"
162                                        " <massaged suffix>\"\n",
163                                 fname, lineno );
164                         free( nvnc.bv_val );
165                         free( pvnc.bv_val );
166                         return( 1 );
167                 }
168
169                 ber_str2bv( argv[2], 0, 0, &brnc );
170                 if ( dnPrettyNormal( NULL, &brnc, &prnc, &nrnc ) != LDAP_SUCCESS ) {
171                         fprintf( stderr, "%s: line %d: suffix DN %s is invalid\n",
172                                 fname, lineno, brnc.bv_val );
173                         free( nvnc.bv_val );
174                         free( pvnc.bv_val );
175                         return( 1 );
176                 }
177
178 #if 0
179                 tmp_be = select_backend( &nrnc, 0, 0 );
180                 if ( tmp_be != NULL ) {
181                         fprintf( stderr, "%s: line %d: massaged suffix"
182                                        " already in use by another backend in" 
183                                        " \"suffixMassage <suffix>"
184                                        " <massaged suffix>\"\n",
185                                 fname, lineno );
186                         free( nvnc.bv_val );
187                         free( pvnc.bv_val );
188                         free( nrnc.bv_val );
189                         free( prnc.bv_val );
190                         return( 1 );
191                 }
192 #endif
193
194 #ifdef ENABLE_REWRITE
195                 /*
196                  * The suffix massaging is emulated by means of the
197                  * rewrite capabilities
198                  * FIXME: no extra rewrite capabilities should be added
199                  * to the database
200                  */
201                 rc = suffix_massage_config( li->rwinfo, &pvnc, &nvnc, &prnc, &nrnc );
202                 free( nvnc.bv_val );
203                 free( pvnc.bv_val );
204                 free( nrnc.bv_val );
205                 free( prnc.bv_val );
206
207                 return( rc );
208
209 #else /* !ENABLE_REWRITE */
210                 ber_bvarray_add( &li->suffix_massage, &pvnc );
211                 ber_bvarray_add( &li->suffix_massage, &nvnc );
212                 
213                 ber_bvarray_add( &li->suffix_massage, &prnc );
214                 ber_bvarray_add( &li->suffix_massage, &nrnc );
215 #endif /* !ENABLE_REWRITE */
216
217         /* rewrite stuff ... */
218         } else if ( strncasecmp( argv[0], "rewrite", 7 ) == 0 ) {
219 #ifdef ENABLE_REWRITE
220                 return rewrite_parse( li->rwinfo, fname, lineno, argc, argv );
221
222 #else /* !ENABLE_REWRITE */
223                 fprintf( stderr, "%s: line %d: rewrite capabilities "
224                                 "are not enabled\n", fname, lineno );
225 #endif /* !ENABLE_REWRITE */
226                 
227         /* objectclass/attribute mapping */
228         } else if ( strcasecmp( argv[0], "map" ) == 0 ) {
229                 struct ldapmap *map;
230                 struct ldapmapping *mapping;
231                 char *src, *dst;
232
233                 if ( argc < 3 || argc > 4 ) {
234                         fprintf( stderr,
235         "%s: line %d: syntax is \"map {objectclass | attribute} [<local> | *] {<foreign> | *}\"\n",
236                                 fname, lineno );
237                         return( 1 );
238                 }
239
240                 if ( strcasecmp( argv[1], "objectclass" ) == 0 ) {
241                         map = &li->oc_map;
242                 } else if ( strcasecmp( argv[1], "attribute" ) == 0 ) {
243                         map = &li->at_map;
244                 } else {
245                         fprintf( stderr, "%s: line %d: syntax is "
246                                 "\"map {objectclass | attribute} [<local> | *] "
247                                 "{<foreign> | *}\"\n",
248                                 fname, lineno );
249                         return( 1 );
250                 }
251
252                 if ( strcmp( argv[2], "*" ) == 0 ) {
253                         if ( argc < 4 || strcmp( argv[3], "*" ) == 0 ) {
254                                 map->drop_missing = ( argc < 4 );
255                                 return 0;
256                         }
257                         src = dst = argv[3];
258                 } else if ( argc < 4 ) {
259                         src = "";
260                         dst = argv[2];
261                 } else {
262                         src = argv[2];
263                         dst = ( strcmp( argv[3], "*" ) == 0 ? src : argv[3] );
264                 }
265
266                 if ( ( map == &li->at_map )
267                         && ( strcasecmp( src, "objectclass" ) == 0
268                                 || strcasecmp( dst, "objectclass" ) == 0 ) )
269                 {
270                         fprintf( stderr,
271                                 "%s: line %d: objectclass attribute cannot be mapped\n",
272                                 fname, lineno );
273                 }
274
275                 mapping = (struct ldapmapping *)ch_calloc( 2,
276                         sizeof(struct ldapmapping) );
277                 if ( mapping == NULL ) {
278                         fprintf( stderr,
279                                 "%s: line %d: out of memory\n",
280                                 fname, lineno );
281                         return( 1 );
282                 }
283                 ber_str2bv( src, 0, 1, &mapping->src );
284                 ber_str2bv( dst, 0, 1, &mapping->dst );
285                 mapping[1].src = mapping->dst;
286                 mapping[1].dst = mapping->src;
287
288                 if ( (*src != '\0' &&
289                           avl_find( map->map, (caddr_t)mapping, mapping_cmp ) != NULL) ||
290                         avl_find( map->remap, (caddr_t)&mapping[1], mapping_cmp ) != NULL)
291                 {
292                         fprintf( stderr,
293                                 "%s: line %d: duplicate mapping found (ignored)\n",
294                                 fname, lineno );
295                         return 0;
296                 }
297
298                 if ( *src != '\0' )
299                         avl_insert( &map->map, (caddr_t)mapping,
300                                                 mapping_cmp, mapping_dup );
301                 avl_insert( &map->remap, (caddr_t)&mapping[1],
302                                         mapping_cmp, mapping_dup );
303
304         /* anything else */
305         } else {
306                 fprintf( stderr, "%s: line %d: unknown directive \"%s\" "
307                         "in ldap database definition (ignored)\n",
308                     fname, lineno, argv[0] );
309         }
310         return 0;
311 }
312
313 #ifdef ENABLE_REWRITE
314 static char *
315 suffix_massage_regexize( const char *s )
316 {
317         char *res, *ptr;
318         const char *p, *r;
319         int i;
320
321         for ( i = 0, p = s; 
322                         ( r = strchr( p, ',' ) ) != NULL; 
323                         p = r + 1, i++ )
324                 ;
325
326         res = ch_calloc( sizeof( char ), strlen( s ) + 4 + 4*i + 1 );
327
328         ptr = slap_strcopy( res, "(.*)" );
329         for ( i = 0, p = s;
330                         ( r = strchr( p, ',' ) ) != NULL;
331                         p = r + 1 , i++ ) {
332                 ptr = slap_strncopy( ptr, p, r - p + 1 );
333                 ptr = slap_strcopy( ptr, "[ ]?" );
334
335                 if ( r[ 1 ] == ' ' ) {
336                         r++;
337                 }
338         }
339         slap_strcopy( ptr, p );
340
341         return res;
342 }
343
344 static char *
345 suffix_massage_patternize( const char *s )
346 {
347         ber_len_t       len;
348         char            *res;
349
350         len = strlen( s );
351
352         res = ch_calloc( sizeof( char ), len + sizeof( "%1" ) );
353         if ( res == NULL ) {
354                 return NULL;
355         }
356
357         strcpy( res, "%1" );
358         strcpy( res + sizeof( "%1" ) - 1, s );
359
360         return res;
361 }
362
363 int
364 suffix_massage_config( 
365                 struct rewrite_info *info,
366                 struct berval *pvnc,
367                 struct berval *nvnc,
368                 struct berval *prnc,
369                 struct berval *nrnc
370 )
371 {
372         char *rargv[ 5 ];
373         int line = 0;
374
375         rargv[ 0 ] = "rewriteEngine";
376         rargv[ 1 ] = "on";
377         rargv[ 2 ] = NULL;
378         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
379
380         rargv[ 0 ] = "rewriteContext";
381         rargv[ 1 ] = "default";
382         rargv[ 2 ] = NULL;
383         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
384
385         rargv[ 0 ] = "rewriteRule";
386         rargv[ 1 ] = suffix_massage_regexize( pvnc->bv_val );
387         rargv[ 2 ] = suffix_massage_patternize( prnc->bv_val );
388         rargv[ 3 ] = ":";
389         rargv[ 4 ] = NULL;
390         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
391         ch_free( rargv[ 1 ] );
392         ch_free( rargv[ 2 ] );
393         
394         rargv[ 0 ] = "rewriteContext";
395         rargv[ 1 ] = "searchResult";
396         rargv[ 2 ] = NULL;
397         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
398         
399         rargv[ 0 ] = "rewriteRule";
400         rargv[ 1 ] = suffix_massage_regexize( prnc->bv_val );
401         rargv[ 2 ] = suffix_massage_patternize( pvnc->bv_val );
402         rargv[ 3 ] = ":";
403         rargv[ 4 ] = NULL;
404         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
405         ch_free( rargv[ 1 ] );
406         ch_free( rargv[ 2 ] );
407
408         /*
409          * the filter should be rewritten as
410          * 
411          * rewriteRule
412          *      "(.*)member=([^)]+),o=Foo Bar,[ ]?c=US(.*)"
413          *      "%1member=%2,dc=example,dc=com%3"
414          *
415          * where "o=Foo Bar, c=US" is the virtual naming context,
416          * and "dc=example, dc=com" is the real naming context
417          */
418         rargv[ 0 ] = "rewriteContext";
419         rargv[ 1 ] = "searchFilter";
420         rargv[ 2 ] = NULL;
421         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
422
423 #if 1 /* rewrite filters */
424         {
425                 /*
426                  * Note: this is far more optimistic than desirable:
427                  * for any AVA value ending with the virtual naming
428                  * context the terminal part will be replaced by the
429                  * real naming context; a better solution would be to
430                  * walk the filter looking for DN-valued attributes,
431                  * and only rewrite those that require rewriting
432                  */
433                 char vbuf[LDAP_FILT_MAXSIZ], rbuf[LDAP_FILT_MAXSIZ];
434
435                 snprintf( vbuf, sizeof( vbuf ), "(.*)%s\\)(.*)", nvnc->bv_val );
436                 snprintf( rbuf, sizeof( rbuf ), "%%1%s)%%2", nrnc->bv_val );
437                 
438                 rargv[ 0 ] = "rewriteRule";
439                 rargv[ 1 ] = vbuf;
440                 rargv[ 2 ] = rbuf;
441                 rargv[ 3 ] = ":";
442                 rargv[ 4 ] = NULL;
443                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
444         }
445 #endif /* rewrite filters */
446
447 #if 0 /*  "matched" is not normalized */
448         rargv[ 0 ] = "rewriteContext";
449         rargv[ 1 ] = "matchedDn";
450         rargv[ 2 ] = "alias";
451         rargv[ 3 ] = "searchResult";
452         rargv[ 4 ] = NULL;
453         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
454 #else /* normalize "matched" */
455         rargv[ 0 ] = "rewriteContext";
456         rargv[ 1 ] = "matchedDn";
457         rargv[ 2 ] = NULL;
458         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
459
460         rargv[ 0 ] = "rewriteRule";
461         rargv[ 1 ] = suffix_massage_regexize( prnc->bv_val );
462         rargv[ 2 ] = suffix_massage_patternize( nvnc->bv_val );
463         rargv[ 3 ] = ":";
464         rargv[ 4 ] = NULL;
465         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
466         ch_free( rargv[ 1 ] );
467         ch_free( rargv[ 2 ] );
468 #endif /* normalize "matched" */
469
470         return 0;
471 }
472 #endif /* ENABLE_REWRITE */