]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/config.c
7c449b200ecc81c2b9ee31a32227d84ad95018fa
[openldap] / servers / slapd / back-meta / config.c
1 /*
2  * Copyright 1998-2001 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 #include "back-meta.h"
77
78 extern int
79 suffix_massage_config(
80                 struct rewrite_info *info,
81                 int argc,
82                 char **argv
83 );
84
85 static struct metatarget *
86 new_target( void )
87 {
88         struct metatarget *lt;
89         struct ldapmapping *mapping;
90
91         lt = ch_calloc( sizeof( struct metatarget ), 1 );
92         if ( lt == NULL ) {
93                 return NULL;
94         }
95
96         lt->rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
97         if ( lt->rwinfo == NULL ) {
98                 free( lt );
99                 return NULL;
100         }
101
102         mapping = ch_calloc( 2, sizeof( struct ldapmapping ) );
103         if ( mapping == NULL ) {
104                 free( lt );
105                 return NULL;
106         }
107         mapping->src = ch_strdup( "objectClass" );
108         mapping->dst = ch_strdup( "objectClass" );
109         mapping[ 1 ].src = mapping->src;
110         mapping[ 1 ].dst = mapping->dst;
111
112         avl_insert( &lt->at_map.map, ( caddr_t )mapping, 
113                         mapping_cmp, mapping_dup );
114         avl_insert( &lt->at_map.remap, ( caddr_t )&mapping[ 1 ],
115                         mapping_cmp, mapping_dup );
116
117         return lt;
118 }
119
120 int
121 meta_back_db_config(
122                 BackendDB       *be,
123                 const char      *fname,
124                 int             lineno,
125                 int             argc,
126                 char            **argv
127 )
128 {
129         struct metainfo *li = ( struct metainfo * )be->be_private;
130
131         if ( li == NULL ) {
132                 fprintf( stderr, 
133         "%s: line %d: meta backend info is null!\n",
134                     fname, lineno );
135                 return 1;
136         }
137
138         /* URI of server to query */
139         if ( strcasecmp( argv[ 0 ], "uri" ) == 0 ) {
140                 int j, i = li->ntargets;
141                 LDAPURLDesc *ludp;
142                 char *last;
143                 
144                 if ( argc != 2 ) {
145                         fprintf( stderr,
146         "%s: line %d: missing address"
147         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
148                                 fname, lineno );
149                         return 1;
150                 }
151                 
152                 ++li->ntargets;
153
154                 li->targets = ch_realloc( li->targets, 
155                         sizeof( struct metatarget *)*li->ntargets );
156                 if ( li->targets == NULL ) {
157                         fprintf( stderr,
158         "%s: line %d: out of memory while storing server name"
159         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
160                                 fname, lineno );
161                         return 1;
162                 }
163
164                 if ( ( li->targets[ i ] = new_target() ) == NULL ) {
165                         fprintf( stderr,
166         "%s: line %d: unable to init server"
167         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
168                                 fname, lineno );
169                         return 1;
170                 }
171
172                 /*
173                  * uri MUST be legal!
174                  */
175                 if ( ldap_url_parse( argv[ 1 ], &ludp ) != LDAP_SUCCESS ) {
176                         fprintf( stderr,
177         "%s: line %d: unable to parse URI"
178         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
179                                 fname, lineno );
180                         return 1;
181                 }
182
183                 /*
184                  * uri MUST have the <dn> part!
185                  */
186                 if ( ludp->lud_dn == NULL || ludp->lud_dn[ 0 ] == '\0' ) {
187                         fprintf( stderr,
188         "%s: line %d: missing <naming context> "
189         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
190                                 fname, lineno );
191                         return 1;
192                 }
193
194                 /*
195                  * copies and stores uri and suffix
196                  */
197                 li->targets[ i ]->suffix = ch_strdup( ludp->lud_dn );
198                 li->targets[ i ]->uri = ch_strdup( argv[ 1 ] );
199                 last = strstr( li->targets[ i ]->uri,
200                                 li->targets[ i ]->suffix );
201                 assert( last != NULL );
202                 last[ 0 ] = '\0'; /* wasting memory ... */
203                 
204                 /*
205                  * Need to store the suffix in normalized form
206                  */
207                 (void) dn_normalize( li->targets[ i ]->suffix );
208                 
209                 /*
210                  * uri MUST be a branch of suffix!
211                  */
212 #if 0 /* too strict a constraint */
213                 if ( select_backend( li->targets[ i ]->suffix, 0 ) != be ) {
214                         fprintf( stderr,
215         "%s: line %d: <naming context> of URI does not refer to current backend"
216         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
217                                 fname, lineno );
218                         return 1;
219                 }
220 #else
221                 /*
222                  * uri MUST be a branch of a suffix!
223                  */
224                 if ( select_backend( li->targets[ i ]->suffix, 0 ) == NULL ) {
225                         fprintf( stderr,
226         "%s: line %d: <naming context> of URI does not resolve to a backend"
227         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
228                                 fname, lineno );
229                         return 1;
230                 }
231 #endif
232
233 #if 0
234                 /*
235                  * uri MUST not be used by other URIs!
236                  *
237                  * FIXME: this limitation may be removed,
238                  * or worked out, at least, in some manner
239                  */
240                 for ( j = 0; j < i-1; j++ ) {
241                         if ( strcmp( li->targets[ i ]->suffix,
242                                         li->targets[ j ]->suffix ) == 0 ) {
243                                 fprintf( stderr,
244         "%s: line %d: naming context \"%s\" already used"
245         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
246                                         fname, lineno, last+1 );
247                                 return 1;
248                         }
249                 }
250 #endif
251                 
252                 ldap_free_urldesc( ludp );
253
254                 Debug( LDAP_DEBUG_CONFIG,
255         "==>meta_back_db_config: URI \"%s\", suffix \"%s\"%s\n",
256                         li->targets[ i ]->uri, li->targets[ i ]->suffix, "" );
257
258         /* default target directive */
259         } else if ( strcasecmp( argv[ 0 ], "default-target" ) == 0 ) {
260                 int i = li->ntargets-1;
261                 
262                 if ( argc == 1 ) {
263                         if ( i < 0 ) {
264                                 fprintf( stderr,
265         "%s: line %d: \"default-target\" alone need be"
266         " inside a \"uri\" directive\n",
267                                         fname, lineno );
268                                 return 1;
269                         }
270                         li->defaulttarget = i;
271                 } else {
272                         if ( strcasecmp( argv[ 1 ], "none" ) == 0 ) {
273                                 if ( i >= 0 ) {
274                                         fprintf( stderr,
275         "%s: line %d: \"default-target none\""
276         " should go before uri definitions\n",
277                                                 fname, lineno );
278                                 }
279                                 li->defaulttarget = META_DEFAULT_TARGET_NONE;
280                         } else {
281                                 int n = atoi( argv[ 1 ] );
282                                 if ( n < 1 || n >= i ) {
283                                         fprintf( stderr,
284         "%s: line %d: illegal target number %d\n",
285                                                 fname, lineno, n );
286                                         return 1;
287                                 }
288                                 li->defaulttarget = n-1;
289                         }
290                 }
291                 
292         /* ttl of dn cache */
293         } else if ( strcasecmp( argv[ 0 ], "dncache-ttl" ) == 0 ) {
294                 if ( argc != 2 ) {
295                         fprintf( stderr,
296         "%s: line %d: missing ttl in \"dncache-ttl <ttl>\" line\n",
297                                 fname, lineno );
298                         return 1;
299                 }
300                 
301                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
302                         li->cache.ttl = META_DNCACHE_FOREVER;
303                 } else if ( strcasecmp( argv[ 1 ], "disabled" ) == 0 ) {
304                         li->cache.ttl = META_DNCACHE_DISABLED;
305                 } else {
306                         li->cache.ttl = atol( argv[ 1 ] );
307                 }
308
309         /* name to use for meta_back_group */
310         } else if ( strcasecmp( argv[ 0 ], "binddn" ) == 0 ) {
311                 int i = li->ntargets-1;
312
313                 if ( i < 0 ) {
314                         fprintf( stderr,
315         "%s: line %d: need \"uri\" directive first\n",
316                                 fname, lineno );
317                 }
318                 
319                 if ( argc != 2 ) {
320                         fprintf( stderr,
321         "%s: line %d: missing name in \"binddn <name>\" line\n",
322                                 fname, lineno );
323                         return 1;
324                 }
325                 li->targets[ i ]->binddn = ch_strdup( argv[ 1 ] );
326
327         /* password to use for meta_back_group */
328         } else if ( strcasecmp( argv[ 0 ], "bindpw" ) == 0 ) {
329                 int i = li->ntargets-1;
330
331                 if ( i < 0 ) {
332                         fprintf( stderr,
333         "%s: line %d: need \"uri\" directive first\n",
334                                 fname, lineno );
335                 }
336                 
337                 if ( argc != 2 ) {
338                         fprintf( stderr,
339         "%s: line %d: missing password in \"bindpw <password>\" line\n",
340                             fname, lineno );
341                         return 1;
342                 }
343                 li->targets[ i ]->bindpw = ch_strdup( argv[ 1 ] );
344         
345         /* dn massaging */
346         } else if ( strcasecmp( argv[ 0 ], "suffixmassage" ) == 0 ) {
347                 BackendDB *tmp_be;
348                 int i = li->ntargets-1;
349
350                 if ( i < 0 ) {
351                         fprintf( stderr,
352         "%s: line %d: need \"uri\" directive first\n",
353                                 fname, lineno );
354                         return 1;
355                 }
356                 
357                 /*
358                  * syntax:
359                  * 
360                  *      suffixmassage <suffix> <massaged suffix>
361                  *
362                  * the <suffix> field must be defined as a valid suffix
363                  * (or suffixAlias?) for the current database;
364                  * the <massaged suffix> shouldn't have already been
365                  * defined as a valid suffix or suffixAlias for the 
366                  * current server
367                  */
368                 if ( argc != 3 ) {
369                         fprintf( stderr,
370         "%s: line %d: syntax is \"suffixMassage <suffix> <massaged suffix>\"\n",
371                                 fname, lineno );
372                         return 1;
373                 }
374                 
375                 tmp_be = select_backend( argv[ 1 ], 0 );
376                 if ( tmp_be != NULL && tmp_be != be ) {
377                         fprintf( stderr, 
378         "%s: line %d: suffix already in use by another backend in"
379         " \"suffixMassage <suffix> <massaged suffix>\"\n",
380                                 fname, lineno );
381                         return 1;                                               
382                 }
383
384                 tmp_be = select_backend( argv[ 2 ], 0 );
385                 if ( tmp_be != NULL ) {
386                         fprintf( stderr,
387         "%s: line %d: massaged suffix already in use by another backend in" 
388         " \"suffixMassage <suffix> <massaged suffix>\"\n",
389                                 fname, lineno );
390                         return 1;
391                 }
392                 
393                 /*
394                  * The suffix massaging is emulated by means of the
395                  * rewrite capabilities
396                  * FIXME: no extra rewrite capabilities should be added
397                  * to the database
398                  */
399                 return suffix_massage_config( li->targets[ i ]->rwinfo,
400                                 argc, argv );
401                 
402         /* rewrite stuff ... */
403         } else if ( strncasecmp( argv[ 0 ], "rewrite", 7 ) == 0 ) {
404                 int i = li->ntargets-1;
405
406                 if ( i < 0 ) {
407                         fprintf( stderr,
408         "%s: line %d: need \"uri\" directive first\n",
409                                 fname, lineno );
410                 }
411                 
412                 return rewrite_parse( li->targets[ i ]->rwinfo, fname, lineno,
413                                 argc, argv );
414
415         /* objectclass/attribute mapping */
416         } else if ( strcasecmp( argv[ 0 ], "map" ) == 0 ) {
417                 struct ldapmap *map;
418                 struct ldapmapping *mapping;
419                 char *src, *dst;
420                 int i = li->ntargets-1;
421
422                 if ( i < 0 ) {
423                         fprintf( stderr,
424         "%s: line %d: need \"uri\" directive first\n",
425                                 fname, lineno );
426                 }
427                 
428
429                 if ( argc < 3 || argc > 4 ) {
430                         fprintf( stderr,
431         "%s: line %d: syntax is \"map {objectclass | attribute} {<source> | *} [<dest> | *]\"\n",
432                                 fname, lineno );
433                         return 1;
434                 }
435
436                 if ( strcasecmp( argv[ 1 ], "objectClass" ) == 0 ) {
437                         map = &li->targets[ i ]->oc_map;
438                 } else if ( strcasecmp( argv[ 1 ], "attribute" ) == 0 ) {
439                         map = &li->targets[ i ]->at_map;
440                 } else {
441                         fprintf( stderr,
442         "%s: line %d: syntax is \"map {objectclass | attribute} {<source> | *} [<dest> | *]\"\n",
443                                 fname, lineno );
444                         return 1;
445                 }
446
447                 if ( strcasecmp( argv[ 2 ], "*" ) != 0 ) {
448                         src = argv[ 2 ];
449                         if ( argc < 4 ) {
450                                 dst = "";
451                         } else if ( strcasecmp( argv[ 3 ], "*" ) == 0 ) {
452                                 dst = src;
453                         } else {
454                                 dst = argv[ 3 ];
455                         }
456                 } else {
457                         if ( argc < 4 ) {
458                                 map->drop_missing = 1;
459                                 return 0;
460                         }
461                         if ( strcasecmp( argv[ 3 ], "*" ) == 0 ) {
462                                 map->drop_missing = 0;
463                                 return 0;
464                         }
465
466                         src = argv[ 3 ];
467                         dst = src;
468                 }
469
470                 if ( ( map == &li->targets[ i ]->at_map )
471                         && ( strcasecmp( src, "objectclass" ) == 0
472                                 || strcasecmp( dst, "objectclass" ) == 0 ) ) {
473                         fprintf( stderr,
474         "%s: line %d: objectclass attribute cannot be mapped\n",
475                                 fname, lineno );
476                 }
477
478                 mapping = ch_calloc( 2, sizeof( struct ldapmapping ) );
479                 if ( mapping == NULL ) {
480                         fprintf( stderr,
481                                 "%s: line %d: out of memory\n",
482                                 fname, lineno );
483                         return 1;
484                 }
485                 mapping->src = ch_strdup( src );
486                 mapping->dst = ch_strdup( dst );
487                 if ( *dst != 0 ) {
488                         mapping[ 1 ].src = mapping->dst;
489                         mapping[ 1 ].dst = mapping->src;
490                 } else {
491                         mapping[ 1 ].src = mapping->src;
492                         mapping[ 1 ].dst = mapping->dst;
493                 }
494
495                 if ( avl_find( map->map, ( caddr_t )mapping,
496                                 mapping_cmp ) != NULL
497                         || avl_find( map->remap, ( caddr_t )&mapping[ 1 ],
498                                 mapping_cmp ) != NULL) {
499                         fprintf( stderr,
500         "%s: line %d: duplicate mapping found (ignored)\n",
501                                 fname, lineno );
502                         return 0;
503                 }
504
505                 avl_insert( &map->map, ( caddr_t )mapping,
506                                         mapping_cmp, mapping_dup );
507                 avl_insert( &map->remap, ( caddr_t )&mapping[ 1 ],
508                                         mapping_cmp, mapping_dup );
509
510         /* anything else */
511         } else {
512                 fprintf( stderr,
513         "%s: line %d: unknown directive \"%s\" in meta database definition"
514         " (ignored)\n",
515                     fname, lineno, argv[0] );
516         }
517         return 0;
518 }
519