]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/config.c
minor fixes
[openldap] / servers / slapd / back-ldap / config.c
1 /* config.c - ldap backend configuration file routine */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 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 int
303 mapping_cmp ( const void *c1, const void *c2 )
304 {
305         struct ldapmapping *map1 = (struct ldapmapping *)c1;
306         struct ldapmapping *map2 = (struct ldapmapping *)c2;
307         int rc = map1->src.bv_len - map2->src.bv_len;
308         if (rc) return rc;
309         return ( strcasecmp(map1->src.bv_val, map2->src.bv_val) );
310 }
311
312 int
313 mapping_dup ( void *c1, void *c2 )
314 {
315         struct ldapmapping *map1 = (struct ldapmapping *)c1;
316         struct ldapmapping *map2 = (struct ldapmapping *)c2;
317
318         return( ( strcasecmp(map1->src.bv_val, map2->src.bv_val) == 0 ) ? -1 : 0 );
319 }
320
321 void
322 ldap_back_map ( struct ldapmap *map, struct berval *s, struct berval *bv,
323         int remap )
324 {
325         Avlnode *tree;
326         struct ldapmapping *mapping, fmapping;
327
328         if (remap)
329                 tree = map->remap;
330         else
331                 tree = map->map;
332
333         bv->bv_len = 0;
334         bv->bv_val = NULL;
335         fmapping.src = *s;
336         mapping = (struct ldapmapping *)avl_find( tree, (caddr_t)&fmapping, mapping_cmp );
337         if (mapping != NULL) {
338                 if ( mapping->dst.bv_val )
339                         *bv = mapping->dst;
340                 return;
341         }
342
343         if (!map->drop_missing)
344                 *bv = *s;
345
346         return;
347 }
348
349 char *
350 ldap_back_map_filter(
351                 struct ldapmap *at_map,
352                 struct ldapmap *oc_map,
353                 struct berval *f,
354                 int remap
355 )
356 {
357         char *nf, *p, *q, *s, c;
358         int len, extra, plen, in_quote;
359         struct berval m, tmp;
360
361         if (f == NULL)
362                 return(NULL);
363
364         len = f->bv_len;
365         extra = len;
366         len *= 2;
367         nf = ch_malloc( len + 1 );
368         if (nf == NULL)
369                 return(NULL);
370
371         /* this loop assumes the filter ends with one
372          * of the delimiter chars -- probably ')'.
373          */
374
375         s = nf;
376         q = NULL;
377         in_quote = 0;
378         for (p = f->bv_val; (c = *p); p++) {
379                 if (c == '"') {
380                         in_quote = !in_quote;
381                         if (q != NULL) {
382                                 plen = p - q;
383                                 AC_MEMCPY(s, q, plen);
384                                 s += plen;
385                                 q = NULL;
386                         }
387                         *s++ = c;
388                 } else if (in_quote) {
389                         /* ignore everything in quotes --
390                          * what about attrs in DNs?
391                          */
392                         *s++ = c;
393                 } else if (c != '(' && c != ')'
394                         && c != '=' && c != '>' && c != '<'
395                         && c != '|' && c != '&')
396                 {
397                         if (q == NULL)
398                                 q = p;
399                 } else {
400                         if (q != NULL) {
401                                 *p = 0;
402                                 tmp.bv_len = p - q;
403                                 tmp.bv_val = q;
404                                 ldap_back_map(at_map, &tmp, &m, remap);
405                                 if (m.bv_val == NULL)
406                                         ldap_back_map(oc_map, &tmp, &m, remap);
407                                 if (m.bv_val == NULL) {
408                                         m = tmp;
409                                 }
410                                 extra += p - q;
411                                 plen = m.bv_len;
412                                 extra -= plen;
413                                 if (extra < 0) {
414                                         while (extra < 0) {
415                                                 extra += len;
416                                                 len *= 2;
417                                         }
418                                         s -= (long)nf;
419                                         nf = ch_realloc(nf, len + 1);
420                                         if (nf == NULL) {
421                                                 free(nf);
422                                                 return(NULL);
423                                         }
424                                         s += (long)nf;
425                                 }
426                                 AC_MEMCPY(s, m.bv_val, plen);
427                                 s += plen;
428                                 *p = c;
429                                 q = NULL;
430                         }
431                         *s++ = c;
432                 }
433         }
434         *s = 0;
435         return(nf);
436 }
437
438 char **
439 ldap_back_map_attrs(
440                 struct ldapmap *at_map,
441                 AttributeName *a,
442                 int remap
443 )
444 {
445         int i;
446         char **na;
447         AttributeName *an;
448         struct berval mapped;
449
450         if (a == NULL)
451                 return(NULL);
452
453         for (i = 0, an=a; an; an=an->an_next, i++) {
454                 /*  */
455         }
456
457         na = (char **)ch_calloc( i + 1, sizeof(char *) );
458         if (na == NULL)
459                 return(NULL);
460
461         for (i = 0, an=a; an; an=an->an_next) {
462                 ldap_back_map(at_map, &an->an_name, &mapped, remap);
463                 if (mapped.bv_val != NULL) {
464                         na[i] = mapped.bv_val;
465                         i++;
466                 }
467         }
468         return(na);
469 }
470
471 #ifdef ENABLE_REWRITE
472 static char *
473 suffix_massage_regexize( const char *s )
474 {
475         char *res, *p, *r;
476         int i;
477
478         for ( i = 0, p = ( char * )s; 
479                         ( r = strchr( p, ',' ) ) != NULL; 
480                         p = r + 1, i++ )
481                 ;
482
483         res = ch_calloc( sizeof( char ), strlen( s ) + 4 + 4*i + 1 );
484
485         strcpy( res, "(.*)" );
486         for ( i = 0, p = ( char * )s;
487                         ( r = strchr( p, ',' ) ) != NULL;
488                         p = r + 1 , i++ ) {
489                 strncat( res, p, r - p + 1 );
490                 strcat( res, "[ ]?" );
491
492                 if ( r[ 1 ] == ' ' ) {
493                         r++;
494                 }
495         }
496         strcat( res, p );
497
498         return res;
499 }
500
501 static char *
502 suffix_massage_patternize( const char *s, int normalize )
503 {
504         char *res;
505
506         res = ch_calloc( sizeof( char ), strlen( s ) + sizeof("%1") );
507
508         sprintf( res, "%%1%s", s );
509
510         if ( normalize ) {
511                 char *out = dn_normalize( res + (sizeof("%1")-1) );
512                 if ( out != res + 2 ) {
513                         strcpy( res + 2, out );
514                         free( out );
515                 }
516         }
517
518         return res;
519 }
520
521 int
522 suffix_massage_config( 
523                 struct rewrite_info *info,
524                 int argc,
525                 char **argv
526 )
527 {
528         char *rargv[ 5 ];
529
530         rargv[ 0 ] = "rewriteEngine";
531         rargv[ 1 ] = "on";
532         rargv[ 2 ] = NULL;
533         rewrite_parse( info, "<suffix massage>", 1, 2, rargv );
534
535         rargv[ 0 ] = "rewriteContext";
536         rargv[ 1 ] = "default";
537         rargv[ 2 ] = NULL;
538         rewrite_parse( info, "<suffix massage>", 2, 2, rargv );
539
540         rargv[ 0 ] = "rewriteRule";
541         rargv[ 1 ] = suffix_massage_regexize( argv[ 1 ] );
542         rargv[ 2 ] = suffix_massage_patternize( argv[ 2 ], 0 );
543         rargv[ 3 ] = ":";
544         rargv[ 4 ] = NULL;
545         rewrite_parse( info, "<suffix massage>", 3, 4, rargv );
546         ch_free( rargv[ 1 ] );
547         ch_free( rargv[ 2 ] );
548         
549         rargv[ 0 ] = "rewriteContext";
550         rargv[ 1 ] = "searchResult";
551         rargv[ 2 ] = NULL;
552         rewrite_parse( info, "<suffix massage>", 4, 2, rargv );
553         
554         rargv[ 0 ] = "rewriteRule";
555         rargv[ 1 ] = suffix_massage_regexize( argv[ 2 ] );
556         rargv[ 2 ] = suffix_massage_patternize( argv[ 1 ], 0 );
557         rargv[ 3 ] = ":";
558         rargv[ 4 ] = NULL;
559         rewrite_parse( info, "<suffix massage>", 5, 4, rargv );
560         ch_free( rargv[ 1 ] );
561         ch_free( rargv[ 2 ] );
562
563         /*
564          * the filter should be rewritten as
565          * 
566          * rewriteRule
567          *      "(.*)member=([^)]+),o=Foo Bar,[ ]?c=US(.*)"
568          *      "%1member=%2,dc=example,dc=com%3"
569          *
570          * where "o=Foo Bar, c=US" is the virtual naming context,
571          * and "dc=example, dc=com" is the real naming context
572          */
573         rargv[ 0 ] = "rewriteContext";
574         rargv[ 1 ] = "searchFilter";
575         rargv[ 2 ] = NULL;
576         rewrite_parse( info, "<suffix massage>", 6, 2, rargv );
577
578 #if 0 /*  matched is not normalized */
579         rargv[ 0 ] = "rewriteContext";
580         rargv[ 1 ] = "matchedDn";
581         rargv[ 2 ] = "alias";
582         rargv[ 3 ] = "searchResult";
583         rargv[ 4 ] = NULL;
584         rewrite_parse( info, "<suffix massage>", 7, 4, rargv );
585 #else /* normalize matched */
586         rargv[ 0 ] = "rewriteContext";
587         rargv[ 1 ] = "matchedDn";
588         rargv[ 2 ] = NULL;
589         rewrite_parse( info, "<suffix massage>", 7, 2, rargv );
590
591         rargv[ 0 ] = "rewriteRule";
592         rargv[ 1 ] = suffix_massage_regexize( argv[ 2 ] );
593         rargv[ 2 ] = suffix_massage_patternize( argv[ 1 ], 1 );
594         rargv[ 3 ] = ":";
595         rargv[ 4 ] = NULL;
596         rewrite_parse( info, "<suffix massage>", 8, 4, rargv );
597         ch_free( rargv[ 1 ] );
598         ch_free( rargv[ 2 ] );
599 #endif /* normalize matched */
600
601         return 0;
602 }
603 #endif /* ENABLE_REWRITE */