]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/config.c
6c0f88a92eb748dba512ad28a9b11995156c79f6
[openldap] / servers / slapd / back-meta / config.c
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  *
5  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
6  *
7  * This work has been developed to fulfill the requirements
8  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
9  * to the OpenLDAP Foundation in the hope that it may be useful
10  * to the Open Source community, but WITHOUT ANY WARRANTY.
11  *
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  *
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from 
18  *    flaws in it.
19  *
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  *
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  *
30  * 4. This notice may not be removed or altered.
31  *
32  *
33  * This software is based on the backend back-ldap, implemented
34  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
35  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
36  * contributors. The contribution of the original software to the present
37  * implementation is acknowledged in this copyright statement.
38  *
39  * A special acknowledgement goes to Howard for the overall architecture
40  * (and for borrowing large pieces of code), and to Mark, who implemented
41  * from scratch the attribute/objectclass mapping.
42  *
43  * The original copyright statement follows.
44  *
45  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
46  *
47  * Permission is granted to anyone to use this software for any purpose
48  * on any computer system, and to alter it and redistribute it, subject
49  * to the following restrictions:
50  *
51  * 1. The author is not responsible for the consequences of use of this
52  *    software, no matter how awful, even if they arise from flaws in it.
53  *
54  * 2. The origin of this software must not be misrepresented, either by
55  *    explicit claim or by omission.  Since few users ever read sources,
56  *    credits should appear in the documentation.
57  *
58  * 3. Altered versions must be plainly marked as such, and must not be
59  *    misrepresented as being the original software.  Since few users
60  *    ever read sources, credits should appear in the
61  *    documentation.
62  *
63  * 4. This notice may not be removed or altered.
64  *
65  */
66
67 #include "portable.h"
68
69 #include <stdio.h>
70
71 #include <ac/string.h>
72 #include <ac/socket.h>
73
74 #include "slap.h"
75 #include "../back-ldap/back-ldap.h"
76 #undef ldap_debug       /* silence a warning in ldap-int.h */
77 #include "../../../libraries/libldap/ldap-int.h"
78 #include "back-meta.h"
79
80 static struct metatarget *
81 new_target( void )
82 {
83         struct metatarget *lt;
84         struct ldapmapping *mapping;
85
86         lt = ch_calloc( sizeof( struct metatarget ), 1 );
87         if ( lt == NULL ) {
88                 return NULL;
89         }
90
91         lt->rwmap.rwm_rw = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
92         if ( lt->rwmap.rwm_rw == NULL ) {
93                 free( lt );
94                 return NULL;
95         }
96
97         ldap_back_map_init( &lt->rwmap.rwm_at, &mapping );
98
99         return lt;
100 }
101
102 int
103 meta_back_db_config(
104                 BackendDB       *be,
105                 const char      *fname,
106                 int             lineno,
107                 int             argc,
108                 char            **argv
109 )
110 {
111         struct metainfo *li = ( struct metainfo * )be->be_private;
112
113         if ( li == NULL ) {
114                 fprintf( stderr, 
115         "%s: line %d: meta backend info is null!\n",
116                     fname, lineno );
117                 return 1;
118         }
119
120         /* URI of server to query */
121         if ( strcasecmp( argv[ 0 ], "uri" ) == 0 ) {
122                 int             i = li->ntargets;
123 #if 0
124                 int             j;
125 #endif /* uncomment if uri MUST be a branch of suffix */
126                 LDAPURLDesc     *ludp, *tmpludp;
127                 struct berval   dn;
128                 int             rc;
129                 
130                 if ( argc != 2 ) {
131                         fprintf( stderr,
132         "%s: line %d: missing address"
133         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
134                                 fname, lineno );
135                         return 1;
136                 }
137                 
138                 ++li->ntargets;
139
140                 li->targets = ch_realloc( li->targets, 
141                         sizeof( struct metatarget *)*li->ntargets );
142                 if ( li->targets == NULL ) {
143                         fprintf( stderr,
144         "%s: line %d: out of memory while storing server name"
145         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
146                                 fname, lineno );
147                         return 1;
148                 }
149
150                 if ( ( li->targets[ i ] = new_target() ) == NULL ) {
151                         fprintf( stderr,
152         "%s: line %d: unable to init server"
153         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
154                                 fname, lineno );
155                         return 1;
156                 }
157
158                 /*
159                  * uri MUST be legal!
160                  */
161                 if ( ldap_url_parselist_ext( &ludp, argv[ 1 ], "\t" ) != LDAP_SUCCESS ) {
162                         fprintf( stderr,
163         "%s: line %d: unable to parse URI"
164         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
165                                 fname, lineno );
166                         return 1;
167                 }
168
169                 /*
170                  * uri MUST have the <dn> part!
171                  */
172                 if ( ludp->lud_dn == NULL || ludp->lud_dn[ 0 ] == '\0' ) {
173                         fprintf( stderr,
174         "%s: line %d: missing <naming context> "
175         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
176                                 fname, lineno );
177                         return 1;
178                 }
179
180                 /*
181                  * copies and stores uri and suffix
182                  */
183                 dn.bv_val = ludp->lud_dn;
184                 dn.bv_len = strlen( ludp->lud_dn );
185
186                 rc = dnPrettyNormal( NULL, &dn, &li->targets[ i ]->psuffix,
187                         &li->targets[ i ]->suffix, NULL );
188                 if( rc != LDAP_SUCCESS ) {
189                         fprintf( stderr, "%s: line %d: "
190                                         "target '%s' DN is invalid\n",
191                                         fname, lineno, argv[ 1 ] );
192                         return( 1 );
193                 }
194
195                 ludp->lud_dn[ 0 ] = '\0';
196
197                 for ( tmpludp = ludp->lud_next; tmpludp; tmpludp = tmpludp->lud_next ) {
198                         if ( tmpludp->lud_dn != NULL && tmpludp->lud_dn[ 0 ] != '\0' ) {
199                                 fprintf( stderr, "%s: line %d: "
200                                                 "multiple URIs must have no DN part\n",
201                                         fname, lineno, argv[ 1 ] );
202                                 return( 1 );
203
204                         }
205                 }
206
207                 li->targets[ i ]->uri = ldap_url_list2urls( ludp );
208                 ldap_free_urllist( ludp );
209                 if ( li->targets[ i ]->uri == NULL) {
210                         fprintf( stderr, "%s: line %d: no memory?\n",
211                                         fname, lineno );
212                         return( 1 );
213                 }
214                 
215                 /*
216                  * uri MUST be a branch of suffix!
217                  */
218 #if 0 /* too strict a constraint */
219                 if ( select_backend( &li->targets[ i ]->suffix, 0, 0 ) != be ) {
220                         fprintf( stderr,
221         "%s: line %d: <naming context> of URI does not refer to current backend"
222         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
223                                 fname, lineno );
224                         return 1;
225                 }
226 #else
227                 /*
228                  * uri MUST be a branch of a suffix!
229                  */
230                 if ( select_backend( &li->targets[ i ]->suffix, 0, 0 ) == NULL ) {
231                         fprintf( stderr,
232         "%s: line %d: <naming context> of URI does not resolve to a backend"
233         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
234                                 fname, lineno );
235                         return 1;
236                 }
237 #endif
238
239 #if 0
240                 /*
241                  * uri MUST not be used by other URIs!
242                  *
243                  * FIXME: this limitation may be removed,
244                  * or worked out, at least, in some manner
245                  */
246                 for ( j = 0; j < i-1; j++ ) {
247                         if ( dn_match( &li->targets[ i ]->suffix,
248                                         &li->targets[ j ]->suffix ) ) {
249                                 fprintf( stderr,
250         "%s: line %d: naming context \"%s\" already used"
251         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
252                                         fname, lineno, last+1 );
253                                 return 1;
254                         }
255                 }
256 #endif
257
258 #if 0
259                 fprintf(stderr, "%s: line %d: URI \"%s\", suffix \"%s\"\n",
260                         fname, lineno, li->targets[ i ]->uri, 
261                         li->targets[ i ]->psuffix.bv_val );
262 #endif
263                 
264         /* default target directive */
265         } else if ( strcasecmp( argv[ 0 ], "default-target" ) == 0 ) {
266                 int             i = li->ntargets-1;
267                 
268                 if ( argc == 1 ) {
269                         if ( i < 0 ) {
270                                 fprintf( stderr,
271         "%s: line %d: \"default-target\" alone need be"
272         " inside a \"uri\" directive\n",
273                                         fname, lineno );
274                                 return 1;
275                         }
276                         li->defaulttarget = i;
277                 } else {
278                         if ( strcasecmp( argv[ 1 ], "none" ) == 0 ) {
279                                 if ( i >= 0 ) {
280                                         fprintf( stderr,
281         "%s: line %d: \"default-target none\""
282         " should go before uri definitions\n",
283                                                 fname, lineno );
284                                 }
285                                 li->defaulttarget = META_DEFAULT_TARGET_NONE;
286                         } else {
287                                 int n = atoi( argv[ 1 ] );
288                                 if ( n < 1 || n >= i ) {
289                                         fprintf( stderr,
290         "%s: line %d: illegal target number %d\n",
291                                                 fname, lineno, n );
292                                         return 1;
293                                 }
294                                 li->defaulttarget = n-1;
295                         }
296                 }
297                 
298         /* ttl of dn cache */
299         } else if ( strcasecmp( argv[ 0 ], "dncache-ttl" ) == 0 ) {
300                 if ( argc != 2 ) {
301                         fprintf( stderr,
302         "%s: line %d: missing ttl in \"dncache-ttl <ttl>\" line\n",
303                                 fname, lineno );
304                         return 1;
305                 }
306                 
307                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
308                         li->cache.ttl = META_DNCACHE_FOREVER;
309                 } else if ( strcasecmp( argv[ 1 ], "disabled" ) == 0 ) {
310                         li->cache.ttl = META_DNCACHE_DISABLED;
311                 } else {
312                         li->cache.ttl = atol( argv[ 1 ] );
313                 }
314
315         /* name to use for meta_back_group */
316         } else if ( strcasecmp( argv[ 0 ], "binddn" ) == 0 ) {
317                 int             i = li->ntargets-1;
318                 struct berval   dn;
319
320                 if ( i < 0 ) {
321                         fprintf( stderr,
322         "%s: line %d: need \"uri\" directive first\n",
323                                 fname, lineno );
324                         return 1;
325                 }
326                 
327                 if ( argc != 2 ) {
328                         fprintf( stderr,
329         "%s: line %d: missing name in \"binddn <name>\" line\n",
330                                 fname, lineno );
331                         return 1;
332                 }
333
334                 dn.bv_val = argv[ 1 ];
335                 dn.bv_len = strlen( argv[ 1 ] );
336                 if ( dnNormalize( 0, NULL, NULL, &dn, &li->targets[ i ]->binddn,
337                         NULL ) != LDAP_SUCCESS )
338                 {
339                         fprintf( stderr, "%s: line %d: "
340                                         "bind DN '%s' is invalid\n",
341                                         fname, lineno, argv[ 1 ] );
342                         return( 1 );
343                 }
344
345         /* password to use for meta_back_group */
346         } else if ( strcasecmp( argv[ 0 ], "bindpw" ) == 0 ) {
347                 int             i = li->ntargets-1;
348
349                 if ( i < 0 ) {
350                         fprintf( stderr,
351         "%s: line %d: need \"uri\" directive first\n",
352                                 fname, lineno );
353                         return 1;
354                 }
355                 
356                 if ( argc != 2 ) {
357                         fprintf( stderr,
358         "%s: line %d: missing password in \"bindpw <password>\" line\n",
359                             fname, lineno );
360                         return 1;
361                 }
362                 ber_str2bv( argv[ 1 ], 0L, 1, &li->targets[ i ]->bindpw );
363                 
364         /* save bind creds for referral rebinds? */
365         } else if ( strcasecmp( argv[0], "rebind-as-user" ) == 0 ) {
366                 if (argc != 1) {
367                         fprintf( stderr,
368         "%s: line %d: rebind-as-user takes no arguments\n",
369                             fname, lineno );
370                         return( 1 );
371                 }
372                 li->savecred = 1;
373         
374         /* name to use as pseudo-root dn */
375         } else if ( strcasecmp( argv[ 0 ], "pseudorootdn" ) == 0 ) {
376                 int             i = li->ntargets-1;
377                 struct berval   dn;
378
379                 if ( i < 0 ) {
380                         fprintf( stderr,
381         "%s: line %d: need \"uri\" directive first\n",
382                                 fname, lineno );
383                         return 1;
384                 }
385                 
386                 if ( argc != 2 ) {
387                         fprintf( stderr,
388         "%s: line %d: missing name in \"pseudorootdn <name>\" line\n",
389                                 fname, lineno );
390                         return 1;
391                 }
392
393                 dn.bv_val = argv[ 1 ];
394                 dn.bv_len = strlen( argv[ 1 ] );
395                 if ( dnNormalize( 0, NULL, NULL, &dn,
396                         &li->targets[ i ]->pseudorootdn, NULL ) != LDAP_SUCCESS )
397                 {
398                         fprintf( stderr, "%s: line %d: "
399                                         "pseudoroot DN '%s' is invalid\n",
400                                         fname, lineno, argv[ 1 ] );
401                         return( 1 );
402                 }
403
404         /* password to use as pseudo-root */
405         } else if ( strcasecmp( argv[ 0 ], "pseudorootpw" ) == 0 ) {
406                 int             i = li->ntargets-1;
407
408                 if ( i < 0 ) {
409                         fprintf( stderr,
410         "%s: line %d: need \"uri\" directive first\n",
411                                 fname, lineno );
412                         return 1;
413                 }
414                 
415                 if ( argc != 2 ) {
416                         fprintf( stderr,
417         "%s: line %d: missing password in \"pseudorootpw <password>\" line\n",
418                             fname, lineno );
419                         return 1;
420                 }
421                 ber_str2bv( argv[ 1 ], 0L, 1, &li->targets[ i ]->pseudorootpw );
422         
423         /* dn massaging */
424         } else if ( strcasecmp( argv[ 0 ], "suffixmassage" ) == 0 ) {
425                 BackendDB       *tmp_be;
426                 int             i = li->ntargets-1;
427                 struct berval   dn, nvnc, pvnc, nrnc, prnc;
428
429                 if ( i < 0 ) {
430                         fprintf( stderr,
431         "%s: line %d: need \"uri\" directive first\n",
432                                 fname, lineno );
433                         return 1;
434                 }
435                 
436                 /*
437                  * syntax:
438                  * 
439                  *      suffixmassage <suffix> <massaged suffix>
440                  *
441                  * the <suffix> field must be defined as a valid suffix
442                  * (or suffixAlias?) for the current database;
443                  * the <massaged suffix> shouldn't have already been
444                  * defined as a valid suffix or suffixAlias for the 
445                  * current server
446                  */
447                 if ( argc != 3 ) {
448                         fprintf( stderr,
449         "%s: line %d: syntax is \"suffixMassage <suffix> <massaged suffix>\"\n",
450                                 fname, lineno );
451                         return 1;
452                 }
453
454                 dn.bv_val = argv[ 1 ];
455                 dn.bv_len = strlen( argv[ 1 ] );
456                 if ( dnPrettyNormal( NULL, &dn, &pvnc, &nvnc, NULL ) != LDAP_SUCCESS ) {
457                         fprintf( stderr, "%s: line %d: "
458                                         "suffix '%s' is invalid\n",
459                                         fname, lineno, argv[ 1 ] );
460                         return 1;
461                 }
462                 
463                 tmp_be = select_backend( &nvnc, 0, 0 );
464                 if ( tmp_be != NULL && tmp_be != be ) {
465                         fprintf( stderr, 
466         "%s: line %d: suffix already in use by another backend in"
467         " \"suffixMassage <suffix> <massaged suffix>\"\n",
468                                 fname, lineno );
469                         free( pvnc.bv_val );
470                         free( nvnc.bv_val );
471                         return 1;                                               
472                 }
473
474                 dn.bv_val = argv[ 2 ];
475                 dn.bv_len = strlen( argv[ 2 ] );
476                 if ( dnPrettyNormal( NULL, &dn, &prnc, &nrnc, NULL ) != LDAP_SUCCESS ) {
477                         fprintf( stderr, "%s: line %d: "
478                                         "massaged suffix '%s' is invalid\n",
479                                         fname, lineno, argv[ 2 ] );
480                         free( pvnc.bv_val );
481                         free( nvnc.bv_val );
482                         return 1;
483                 }
484         
485 #if 0   
486                 tmp_be = select_backend( &nrnc, 0, 0 );
487                 if ( tmp_be != NULL ) {
488                         fprintf( stderr,
489         "%s: line %d: massaged suffix already in use by another backend in" 
490         " \"suffixMassage <suffix> <massaged suffix>\"\n",
491                                 fname, lineno );
492                         free( pvnc.bv_val );
493                         free( nvnc.bv_val );
494                         free( prnc.bv_val );
495                         free( nrnc.bv_val );
496                         return 1;
497                 }
498 #endif
499                 
500                 /*
501                  * The suffix massaging is emulated by means of the
502                  * rewrite capabilities
503                  * FIXME: no extra rewrite capabilities should be added
504                  * to the database
505                  */
506                 return suffix_massage_config( li->targets[ i ]->rwmap.rwm_rw,
507                                 &pvnc, &nvnc, &prnc, &nrnc );
508                 
509         /* rewrite stuff ... */
510         } else if ( strncasecmp( argv[ 0 ], "rewrite", 7 ) == 0 ) {
511                 int             i = li->ntargets-1;
512
513                 if ( i < 0 ) {
514 #ifndef LDAP_CACHING
515                         fprintf( stderr,
516         "%s: line %d: need \"uri\" directive first\n",
517                                 fname, lineno );
518 #else /* LDAP_CACHING */
519                         if ( strcasecmp( argv[0], "rewriteEngine" ) == 0 ) {
520                                 li->rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
521                         }
522                         return rewrite_parse(li->rwinfo, fname, lineno,
523                                         argc, argv); 
524 #endif /* LDAP_CACHING */
525                 }
526                 
527                 return rewrite_parse( li->targets[ i ]->rwmap.rwm_rw, fname, lineno,
528                                 argc, argv );
529
530         /* objectclass/attribute mapping */
531         } else if ( strcasecmp( argv[ 0 ], "map" ) == 0 ) {
532                 int             i = li->ntargets-1;
533
534                 if ( i < 0 ) {
535                         fprintf( stderr,
536         "%s: line %d: need \"uri\" directive first\n",
537                                 fname, lineno );
538                         return 1;
539                 }
540
541                 return ldap_back_map_config( &li->targets[ i ]->rwmap.rwm_oc, 
542                                 &li->targets[ i ]->rwmap.rwm_at,
543                                 fname, lineno, argc, argv );
544         /* anything else */
545         } else {
546 #ifdef LDAP_CACHING
547                 if ( meta_back_cache_config( be, fname, lineno, argc, argv ) == 0 ) {
548                         return 0;
549                 }
550 #endif /* LDAP_CACHING */
551
552                 fprintf( stderr,
553         "%s: line %d: unknown directive \"%s\" in meta database definition"
554         " (ignored)\n",
555                     fname, lineno, argv[0] );
556         }
557         return 0;
558 }
559