]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/config.c
plug leak
[openldap] / servers / slapd / back-meta / config.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2006 The OpenLDAP Foundation.
5  * Portions Copyright 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by the Howard Chu for inclusion
19  * in OpenLDAP Software and subsequently enhanced by Pierangelo
20  * Masarati.
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include <ac/string.h>
28 #include <ac/socket.h>
29
30 #include "slap.h"
31 #include "lutil.h"
32 #include "../back-ldap/back-ldap.h"
33 #undef ldap_debug       /* silence a warning in ldap-int.h */
34 #include "../../../libraries/libldap/ldap-int.h"
35 #include "back-meta.h"
36
37 static int
38 meta_back_new_target( 
39         metatarget_t    **mtp )
40 {
41         struct ldapmapping      *mapping;
42         char                    *rargv[ 3 ];
43         metatarget_t            *mt;
44
45         *mtp = NULL;
46
47         mt = ch_calloc( sizeof( metatarget_t ), 1 );
48
49         mt->mt_rwmap.rwm_rw = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
50         if ( mt->mt_rwmap.rwm_rw == NULL ) {
51                 ch_free( mt );
52                 return -1;
53         }
54
55
56         /*
57          * the filter rewrite as a string must be disabled
58          * by default; it can be re-enabled by adding rules;
59          * this creates an empty rewriteContext
60          */
61         rargv[ 0 ] = "rewriteContext";
62         rargv[ 1 ] = "searchFilter";
63         rargv[ 2 ] = NULL;
64         rewrite_parse( mt->mt_rwmap.rwm_rw, "<suffix massage>", 1, 2, rargv );
65
66         rargv[ 0 ] = "rewriteContext";
67         rargv[ 1 ] = "default";
68         rargv[ 2 ] = NULL;
69         rewrite_parse( mt->mt_rwmap.rwm_rw, "<suffix massage>", 1, 2, rargv );
70
71         ldap_back_map_init( &mt->mt_rwmap.rwm_at, &mapping );
72
73         ldap_pvt_thread_mutex_init( &mt->mt_uri_mutex );
74
75         *mtp = mt;
76
77         return 0;
78 }
79
80 static int
81 check_true_false( char *str )
82 {
83         if ( strcasecmp( str, "true" ) == 0 || strcasecmp( str, "yes" ) == 0 ) {
84                 return 1;
85         }
86
87         if ( strcasecmp( str, "false" ) == 0 || strcasecmp( str, "no" ) == 0 ) {
88                 return 0;
89         }
90
91         return -1;
92 }
93
94
95 int
96 meta_back_db_config(
97                 BackendDB       *be,
98                 const char      *fname,
99                 int             lineno,
100                 int             argc,
101                 char            **argv
102 )
103 {
104         metainfo_t      *mi = ( metainfo_t * )be->be_private;
105
106         assert( mi != NULL );
107
108         /* URI of server to query */
109         if ( strcasecmp( argv[ 0 ], "uri" ) == 0 ) {
110                 int             i = mi->mi_ntargets;
111 #if 0
112                 int             j;
113 #endif /* uncomment if uri MUST be a branch of suffix */
114                 LDAPURLDesc     *ludp, *tmpludp;
115                 struct berval   dn;
116                 int             rc;
117                 int             c;
118
119                 metatarget_t    *mt;
120                 
121                 switch ( argc ) {
122                 case 1:
123                         Debug( LDAP_DEBUG_ANY,
124         "%s: line %d: missing URI "
125         "in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
126                                 fname, lineno, 0 );
127                         return 1;
128
129                 case 2:
130                         break;
131
132                 default:
133                         Debug( LDAP_DEBUG_ANY,
134         "%s: line %d: too many args "
135         "in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
136                                 fname, lineno, 0 );
137                         return 1;
138                 }
139
140                 if ( be->be_nsuffix == NULL ) {
141                         Debug( LDAP_DEBUG_ANY,
142         "%s: line %d: the suffix must be defined before any target.\n",
143                                 fname, lineno, 0 );
144                         return 1;
145                 }
146                 
147                 ++mi->mi_ntargets;
148
149                 mi->mi_targets = ( metatarget_t ** )ch_realloc( mi->mi_targets, 
150                         sizeof( metatarget_t * ) * mi->mi_ntargets );
151                 if ( mi->mi_targets == NULL ) {
152                         Debug( LDAP_DEBUG_ANY,
153         "%s: line %d: out of memory while storing server name"
154         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
155                                 fname, lineno, 0 );
156                         return 1;
157                 }
158
159                 if ( meta_back_new_target( &mi->mi_targets[ i ] ) != 0 ) {
160                         Debug( LDAP_DEBUG_ANY,
161         "%s: line %d: unable to init server"
162         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
163                                 fname, lineno, 0 );
164                         return 1;
165                 }
166
167                 mt = mi->mi_targets[ i ];
168
169                 mt->mt_rebind_f = mi->mi_rebind_f;
170                 mt->mt_urllist_f = mi->mi_urllist_f;
171                 mt->mt_urllist_p = mt;
172
173                 mt->mt_nretries = mi->mi_nretries;
174                 mt->mt_flags = mi->mi_flags;
175                 mt->mt_version = mi->mi_version;
176                 mt->mt_network_timeout = mi->mi_network_timeout;
177                 mt->mt_bind_timeout = mi->mi_bind_timeout;
178                 for ( c = 0; c < LDAP_BACK_OP_LAST; c++ ) {
179                         mt->mt_timeout[ c ] = mi->mi_timeout[ c ];
180                 }
181
182                 /*
183                  * uri MUST be legal!
184                  */
185                 if ( ldap_url_parselist_ext( &ludp, argv[ 1 ], "\t",
186                         LDAP_PVT_URL_PARSE_NONE ) != LDAP_SUCCESS )
187                 {
188                         Debug( LDAP_DEBUG_ANY,
189         "%s: line %d: unable to parse URI"
190         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
191                                 fname, lineno, 0 );
192                         return 1;
193                 }
194
195                 /*
196                  * uri MUST have the <dn> part!
197                  */
198                 if ( ludp->lud_dn == NULL ) {
199                         Debug( LDAP_DEBUG_ANY,
200         "%s: line %d: missing <naming context> "
201         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
202                                 fname, lineno, 0 );
203                         return 1;
204
205                 } else if ( ludp->lud_dn[ 0 ] == '\0' ) {
206                         int     j = -1;
207
208                         for ( j = 0; !BER_BVISNULL( &be->be_nsuffix[ j ] ); j++ ) {
209                                 if ( BER_BVISEMPTY( &be->be_nsuffix[ j ] ) ) {
210                                         break;
211                                 }
212                         }
213
214                         if ( BER_BVISNULL( &be->be_nsuffix[ j ] ) ) {
215                                 Debug( LDAP_DEBUG_ANY,
216                 "%s: line %d: missing <naming context> "
217                 " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
218                                         fname, lineno, 0 );
219                                 return 1;
220                         }
221                 }
222
223                 /*
224                  * copies and stores uri and suffix
225                  */
226                 ber_str2bv( ludp->lud_dn, 0, 0, &dn );
227                 rc = dnPrettyNormal( NULL, &dn, &mt->mt_psuffix,
228                         &mt->mt_nsuffix, NULL );
229                 if( rc != LDAP_SUCCESS ) {
230                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
231                                 "target \"%s\" DN is invalid\n",
232                                 fname, lineno, argv[ 1 ] );
233                         return( 1 );
234                 }
235
236                 ludp->lud_dn[ 0 ] = '\0';
237
238                 switch ( ludp->lud_scope ) {
239                 case LDAP_SCOPE_DEFAULT:
240                         mt->mt_scope = LDAP_SCOPE_SUBTREE;
241                         break;
242
243                 case LDAP_SCOPE_SUBTREE:
244                 case LDAP_SCOPE_SUBORDINATE:
245                         mt->mt_scope = ludp->lud_scope;
246                         break;
247
248                 default:
249                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
250                                 "invalid scope for target \"%s\"\n",
251                                 fname, lineno, argv[ 1 ] );
252                         return( 1 );
253                 }
254
255                 /* check all, to apply the scope check on the first one */
256                 for ( tmpludp = ludp; tmpludp; tmpludp = tmpludp->lud_next ) {
257                         if ( tmpludp->lud_dn != NULL && tmpludp->lud_dn[ 0 ] != '\0' ) {
258                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
259                                         "multiple URIs must have "
260                                         "no DN part\n",
261                                         fname, lineno, 0 );
262                                 return( 1 );
263
264                         }
265                 }
266
267                 mt->mt_uri = ldap_url_list2urls( ludp );
268                 ldap_free_urllist( ludp );
269                 if ( mt->mt_uri == NULL) {
270                         Debug( LDAP_DEBUG_ANY, "%s: line %d: no memory?\n",
271                                 fname, lineno, 0 );
272                         return( 1 );
273                 }
274                 
275                 /*
276                  * uri MUST be a branch of suffix!
277                  */
278 #if 0 /* too strict a constraint */
279                 if ( select_backend( &mt->mt_nsuffix, 0, 0 ) != be ) {
280                         Debug( LDAP_DEBUG_ANY,
281         "%s: line %d: <naming context> of URI does not refer to current backend"
282         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
283                                 fname, lineno, 0 );
284                         return 1;
285                 }
286 #else
287                 /*
288                  * uri MUST be a branch of a suffix!
289                  */
290                 if ( select_backend( &mt->mt_nsuffix, 0, 0 ) == NULL ) {
291                         Debug( LDAP_DEBUG_ANY,
292         "%s: line %d: <naming context> of URI does not resolve to a backend"
293         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
294                                 fname, lineno, 0 );
295                         return 1;
296                 }
297 #endif
298
299         /* subtree-exclude */
300         } else if ( strcasecmp( argv[ 0 ], "subtree-exclude" ) == 0 ) {
301                 int             i = mi->mi_ntargets - 1;
302                 struct berval   dn, ndn;
303
304                 if ( i < 0 ) {
305                         Debug( LDAP_DEBUG_ANY,
306         "%s: line %d: need \"uri\" directive first\n",
307                                 fname, lineno, 0 );
308                         return 1;
309                 }
310                 
311                 switch ( argc ) {
312                 case 1:
313                         Debug( LDAP_DEBUG_ANY,
314         "%s: line %d: missing DN in \"subtree-exclude <DN>\" line\n",
315                             fname, lineno, 0 );
316                         return 1;
317
318                 case 2:
319                         break;
320
321                 default:
322                         Debug( LDAP_DEBUG_ANY,
323         "%s: line %d: too many args in \"subtree-exclude <DN>\" line\n",
324                             fname, lineno, 0 );
325                         return 1;
326                 }
327
328                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
329                 if ( dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL )
330                         != LDAP_SUCCESS )
331                 {
332                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
333                                         "subtree-exclude DN=\"%s\" is invalid\n",
334                                         fname, lineno, argv[ 1 ] );
335                         return( 1 );
336                 }
337
338                 if ( !dnIsSuffix( &ndn, &mi->mi_targets[ i ]->mt_nsuffix ) ) {
339                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
340                                         "subtree-exclude DN=\"%s\" "
341                                         "must be subtree of target\n",
342                                         fname, lineno, argv[ 1 ] );
343                         ber_memfree( ndn.bv_val );
344                         return( 1 );
345                 }
346
347                 if ( mi->mi_targets[ i ]->mt_subtree_exclude != NULL ) {
348                         int             j;
349
350                         for ( j = 0; !BER_BVISNULL( &mi->mi_targets[ i ]->mt_subtree_exclude[ j ] ); j++ )
351                         {
352                                 if ( dnIsSuffix( &mi->mi_targets[ i ]->mt_subtree_exclude[ j ], &ndn ) ) {
353                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
354                                                         "subtree-exclude DN=\"%s\" "
355                                                         "is suffix of another subtree-exclude\n",
356                                                         fname, lineno, argv[ 1 ] );
357                                         /* reject, because it might be superior
358                                          * to more than one subtree-exclude */
359                                         ber_memfree( ndn.bv_val );
360                                         return( 1 );
361
362                                 } else if ( dnIsSuffix( &ndn, &mi->mi_targets[ i ]->mt_subtree_exclude[ j ] ) ) {
363                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
364                                                         "another subtree-exclude is suffix of "
365                                                         "subtree-exclude DN=\"%s\"\n",
366                                                         fname, lineno, argv[ 1 ] );
367                                         ber_memfree( ndn.bv_val );
368                                         return( 0 );
369                                 }
370                         }
371                 }
372
373                 ber_bvarray_add( &mi->mi_targets[ i ]->mt_subtree_exclude, &ndn );
374
375         /* default target directive */
376         } else if ( strcasecmp( argv[ 0 ], "default-target" ) == 0 ) {
377                 int             i = mi->mi_ntargets - 1;
378                 
379                 if ( argc == 1 ) {
380                         if ( i < 0 ) {
381                                 Debug( LDAP_DEBUG_ANY,
382         "%s: line %d: \"default-target\" alone need be"
383         " inside a \"uri\" directive\n",
384                                         fname, lineno, 0 );
385                                 return 1;
386                         }
387                         mi->mi_defaulttarget = i;
388
389                 } else {
390                         if ( strcasecmp( argv[ 1 ], "none" ) == 0 ) {
391                                 if ( i >= 0 ) {
392                                         Debug( LDAP_DEBUG_ANY,
393         "%s: line %d: \"default-target none\""
394         " should go before uri definitions\n",
395                                                 fname, lineno, 0 );
396                                 }
397                                 mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
398
399                         } else {
400                                 
401                                 if ( lutil_atoi( &mi->mi_defaulttarget, argv[ 1 ] ) != 0
402                                         || mi->mi_defaulttarget < 0
403                                         || mi->mi_defaulttarget >= i - 1 )
404                                 {
405                                         Debug( LDAP_DEBUG_ANY,
406         "%s: line %d: illegal target number %d\n",
407                                                 fname, lineno, mi->mi_defaulttarget );
408                                         return 1;
409                                 }
410                         }
411                 }
412                 
413         /* ttl of dn cache */
414         } else if ( strcasecmp( argv[ 0 ], "dncache-ttl" ) == 0 ) {
415                 if ( argc != 2 ) {
416                         Debug( LDAP_DEBUG_ANY,
417         "%s: line %d: missing ttl in \"dncache-ttl <ttl>\" line\n",
418                                 fname, lineno, 0 );
419                         return 1;
420                 }
421                 
422                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
423                         mi->mi_cache.ttl = META_DNCACHE_FOREVER;
424
425                 } else if ( strcasecmp( argv[ 1 ], "disabled" ) == 0 ) {
426                         mi->mi_cache.ttl = META_DNCACHE_DISABLED;
427
428                 } else {
429                         unsigned long   t;
430
431                         if ( lutil_parse_time( argv[ 1 ], &t ) != 0 ) {
432                                 Debug( LDAP_DEBUG_ANY,
433         "%s: line %d: unable to parse ttl \"%s\" in \"dncache-ttl <ttl>\" line\n",
434                                         fname, lineno, argv[ 1 ] );
435                                 return 1;
436                         }
437                         mi->mi_cache.ttl = (time_t)t;
438                 }
439
440         /* network timeout when connecting to ldap servers */
441         } else if ( strcasecmp( argv[ 0 ], "network-timeout" ) == 0 ) {
442                 unsigned long   t;
443                 time_t          *tp = mi->mi_ntargets ?
444                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_network_timeout
445                                 : &mi->mi_network_timeout;
446
447                 if ( argc != 2 ) {
448                         Debug( LDAP_DEBUG_ANY,
449         "%s: line %d: missing network timeout in \"network-timeout <seconds>\" line\n",
450                                 fname, lineno, 0 );
451                         return 1;
452                 }
453
454                 if ( lutil_parse_time( argv[ 1 ], &t ) ) {
455                         Debug( LDAP_DEBUG_ANY,
456         "%s: line %d: unable to parse timeout \"%s\" in \"network-timeout <seconds>\" line\n",
457                                 fname, lineno, argv[ 1 ] );
458                         return 1;
459
460                 }
461
462                 *tp = (time_t)t;
463
464         /* idle timeout when connecting to ldap servers */
465         } else if ( strcasecmp( argv[ 0 ], "idle-timeout" ) == 0 ) {
466                 unsigned long   t;
467
468                 switch ( argc ) {
469                 case 1:
470                         Debug( LDAP_DEBUG_ANY,
471         "%s: line %d: missing timeout value in \"idle-timeout <seconds>\" line\n",
472                                 fname, lineno, 0 );
473                         return 1;
474                 case 2:
475                         break;
476                 default:
477                         Debug( LDAP_DEBUG_ANY,
478         "%s: line %d: extra cruft after timeout value in \"idle-timeout <seconds>\" line\n",
479                                 fname, lineno, 0 );
480                         return 1;
481                 }
482
483                 if ( lutil_parse_time( argv[ 1 ], &t ) ) {
484                         Debug( LDAP_DEBUG_ANY,
485         "%s: line %d: unable to parse timeout \"%s\" in \"idle-timeout <seconds>\" line\n",
486                                 fname, lineno, argv[ 1 ] );
487                         return 1;
488
489                 }
490
491                 mi->mi_idle_timeout = (time_t)t;
492
493         /* conn ttl */
494         } else if ( strcasecmp( argv[ 0 ], "conn-ttl" ) == 0 ) {
495                 unsigned long   t;
496
497                 switch ( argc ) {
498                 case 1:
499                         Debug( LDAP_DEBUG_ANY,
500         "%s: line %d: missing ttl value in \"conn-ttl <seconds>\" line\n",
501                                 fname, lineno, 0 );
502                         return 1;
503                 case 2:
504                         break;
505                 default:
506                         Debug( LDAP_DEBUG_ANY,
507         "%s: line %d: extra cruft after ttl value in \"conn-ttl <seconds>\" line\n",
508                                 fname, lineno, 0 );
509                         return 1;
510                 }
511
512                 if ( lutil_parse_time( argv[ 1 ], &t ) ) {
513                         Debug( LDAP_DEBUG_ANY,
514         "%s: line %d: unable to parse ttl \"%s\" in \"conn-ttl <seconds>\" line\n",
515                                 fname, lineno, argv[ 1 ] );
516                         return 1;
517
518                 }
519
520                 mi->mi_conn_ttl = (time_t)t;
521
522         /* bind timeout when connecting to ldap servers */
523         } else if ( strcasecmp( argv[ 0 ], "bind-timeout" ) == 0 ) {
524                 unsigned long   t;
525                 struct timeval  *tp = mi->mi_ntargets ?
526                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_bind_timeout
527                                 : &mi->mi_bind_timeout;
528
529                 switch ( argc ) {
530                 case 1:
531                         Debug( LDAP_DEBUG_ANY,
532         "%s: line %d: missing timeout value in \"bind-timeout <microseconds>\" line\n",
533                                 fname, lineno, 0 );
534                         return 1;
535                 case 2:
536                         break;
537                 default:
538                         Debug( LDAP_DEBUG_ANY,
539         "%s: line %d: extra cruft after timeout value in \"bind-timeout <microseconds>\" line\n",
540                                 fname, lineno, 0 );
541                         return 1;
542                 }
543
544                 if ( lutil_atoul( &t, argv[ 1 ] ) != 0 ) {
545                         Debug( LDAP_DEBUG_ANY,
546         "%s: line %d: unable to parse timeout \"%s\" in \"bind-timeout <microseconds>\" line\n",
547                                 fname, lineno, argv[ 1 ] );
548                         return 1;
549
550                 }
551
552                 tp->tv_sec = t/1000000;
553                 tp->tv_usec = t%1000000;
554
555         /* name to use for meta_back_group */
556         } else if ( strcasecmp( argv[ 0 ], "acl-authcDN" ) == 0
557                         || strcasecmp( argv[ 0 ], "binddn" ) == 0 )
558         {
559                 int             i = mi->mi_ntargets - 1;
560                 struct berval   dn;
561
562                 if ( i < 0 ) {
563                         Debug( LDAP_DEBUG_ANY,
564         "%s: line %d: need \"uri\" directive first\n",
565                                 fname, lineno, 0 );
566                         return 1;
567                 }
568                 
569                 if ( argc != 2 ) {
570                         Debug( LDAP_DEBUG_ANY,
571         "%s: line %d: missing name in \"binddn <name>\" line\n",
572                                 fname, lineno, 0 );
573                         return 1;
574                 }
575
576                 if ( strcasecmp( argv[ 0 ], "binddn" ) == 0 ) {
577                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
578                                 "\"binddn\" statement is deprecated; "
579                                 "use \"acl-authcDN\" instead\n",
580                                 fname, lineno, 0 );
581                         /* FIXME: some day we'll need to throw an error */
582                 }
583
584                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
585                 if ( dnNormalize( 0, NULL, NULL, &dn, &mi->mi_targets[ i ]->mt_binddn,
586                         NULL ) != LDAP_SUCCESS )
587                 {
588                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
589                                         "bind DN '%s' is invalid\n",
590                                         fname, lineno, argv[ 1 ] );
591                         return( 1 );
592                 }
593
594         /* password to use for meta_back_group */
595         } else if ( strcasecmp( argv[ 0 ], "acl-passwd" ) == 0
596                         || strcasecmp( argv[ 0 ], "bindpw" ) == 0 )
597         {
598                 int             i = mi->mi_ntargets - 1;
599
600                 if ( i < 0 ) {
601                         Debug( LDAP_DEBUG_ANY,
602         "%s: line %d: need \"uri\" directive first\n",
603                                 fname, lineno, 0 );
604                         return 1;
605                 }
606                 
607                 if ( argc != 2 ) {
608                         Debug( LDAP_DEBUG_ANY,
609         "%s: line %d: missing password in \"bindpw <password>\" line\n",
610                             fname, lineno, 0 );
611                         return 1;
612                 }
613
614                 if ( strcasecmp( argv[ 0 ], "bindpw" ) == 0 ) {
615                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
616                                 "\"bindpw\" statement is deprecated; "
617                                 "use \"acl-passwd\" instead\n",
618                                 fname, lineno, 0 );
619                         /* FIXME: some day we'll need to throw an error */
620                 }
621
622                 ber_str2bv( argv[ 1 ], 0L, 1, &mi->mi_targets[ i ]->mt_bindpw );
623                 
624         /* save bind creds for referral rebinds? */
625         } else if ( strcasecmp( argv[ 0 ], "rebind-as-user" ) == 0 ) {
626                 if ( argc > 2 ) {
627                         Debug( LDAP_DEBUG_ANY,
628         "%s: line %d: \"rebind-as-user {NO|yes}\" takes 1 argument.\n",
629                             fname, lineno, 0 );
630                         return( 1 );
631                 }
632
633                 if ( argc == 1 ) {
634                         Debug( LDAP_DEBUG_ANY,
635         "%s: line %d: deprecated use of \"rebind-as-user {FALSE|true}\" with no arguments.\n",
636                             fname, lineno, 0 );
637                         mi->mi_flags |= LDAP_BACK_F_SAVECRED;
638
639                 } else {
640                         switch ( check_true_false( argv[ 1 ] ) ) {
641                         case 0:
642                                 mi->mi_flags &= ~LDAP_BACK_F_SAVECRED;
643                                 break;
644
645                         case 1:
646                                 mi->mi_flags |= LDAP_BACK_F_SAVECRED;
647                                 break;
648
649                         default:
650                                 Debug( LDAP_DEBUG_ANY,
651         "%s: line %d: \"rebind-as-user {FALSE|true}\" unknown argument \"%s\".\n",
652                                     fname, lineno, argv[ 1 ] );
653                                 return 1;
654                         }
655                 }
656
657         } else if ( strcasecmp( argv[ 0 ], "chase-referrals" ) == 0 ) {
658                 unsigned        *flagsp = mi->mi_ntargets ?
659                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
660                                 : &mi->mi_flags;
661
662                 if ( argc != 2 ) {
663                         Debug( LDAP_DEBUG_ANY,
664         "%s: line %d: \"chase-referrals {TRUE|false}\" needs 1 argument.\n",
665                                 fname, lineno, 0 );
666                         return( 1 );
667                 }
668
669                 /* this is the default; we add it because the default might change... */
670                 switch ( check_true_false( argv[ 1 ] ) ) {
671                 case 1:
672                         *flagsp |= LDAP_BACK_F_CHASE_REFERRALS;
673                         break;
674
675                 case 0:
676                         *flagsp &= ~LDAP_BACK_F_CHASE_REFERRALS;
677                         break;
678
679                 default:
680                         Debug( LDAP_DEBUG_ANY,
681                 "%s: line %d: \"chase-referrals {TRUE|false}\": unknown argument \"%s\".\n",
682                                 fname, lineno, argv[ 1 ] );
683                         return( 1 );
684                 }
685         
686         } else if ( strcasecmp( argv[ 0 ], "tls" ) == 0 ) {
687                 unsigned        *flagsp = mi->mi_ntargets ?
688                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
689                                 : &mi->mi_flags;
690
691                 if ( argc != 2 ) {
692                         Debug( LDAP_DEBUG_ANY,
693                 "%s: line %d: \"tls <what>\" needs 1 argument.\n",
694                                 fname, lineno, 0 );
695                         return( 1 );
696                 }
697
698                 /* start */
699                 if ( strcasecmp( argv[ 1 ], "start" ) == 0 ) {
700                         *flagsp |= ( LDAP_BACK_F_USE_TLS | LDAP_BACK_F_TLS_CRITICAL );
701         
702                 /* try start tls */
703                 } else if ( strcasecmp( argv[ 1 ], "try-start" ) == 0 ) {
704                         *flagsp &= ~LDAP_BACK_F_TLS_CRITICAL;
705                         *flagsp |= LDAP_BACK_F_USE_TLS;
706         
707                 /* propagate start tls */
708                 } else if ( strcasecmp( argv[ 1 ], "propagate" ) == 0 ) {
709                         *flagsp |= ( LDAP_BACK_F_PROPAGATE_TLS | LDAP_BACK_F_TLS_CRITICAL );
710                 
711                 /* try start tls */
712                 } else if ( strcasecmp( argv[ 1 ], "try-propagate" ) == 0 ) {
713                         *flagsp &= ~LDAP_BACK_F_TLS_CRITICAL;
714                         *flagsp |= LDAP_BACK_F_PROPAGATE_TLS;
715
716                 } else {
717                         Debug( LDAP_DEBUG_ANY,
718                 "%s: line %d: \"tls <what>\": unknown argument \"%s\".\n",
719                                 fname, lineno, argv[ 1 ] );
720                         return( 1 );
721                 }
722
723         } else if ( strcasecmp( argv[ 0 ], "t-f-support" ) == 0 ) {
724                 unsigned        *flagsp = mi->mi_ntargets ?
725                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
726                                 : &mi->mi_flags;
727
728                 if ( argc != 2 ) {
729                         Debug( LDAP_DEBUG_ANY,
730                 "%s: line %d: \"t-f-support {FALSE|true|discover}\" needs 1 argument.\n",
731                                 fname, lineno, 0 );
732                         return( 1 );
733                 }
734
735                 switch ( check_true_false( argv[ 1 ] ) ) {
736                 case 0:
737                         *flagsp &= ~(LDAP_BACK_F_SUPPORT_T_F|LDAP_BACK_F_SUPPORT_T_F_DISCOVER);
738                         break;
739
740                 case 1:
741                         *flagsp |= LDAP_BACK_F_SUPPORT_T_F;
742                         break;
743
744                 default:
745                         if ( strcasecmp( argv[ 1 ], "discover" ) == 0 ) {
746                                 *flagsp |= LDAP_BACK_F_SUPPORT_T_F_DISCOVER;
747
748                         } else {
749                                 Debug( LDAP_DEBUG_ANY,
750         "%s: line %d: unknown value \"%s\" for \"t-f-support {no|yes|discover}\".\n",
751                                         fname, lineno, argv[ 1 ] );
752                                 return 1;
753                         }
754                         break;
755                 }
756
757         /* onerr? */
758         } else if ( strcasecmp( argv[ 0 ], "onerr" ) == 0 ) {
759                 if ( argc != 2 ) {
760                         Debug( LDAP_DEBUG_ANY,
761         "%s: line %d: \"onerr {CONTINUE|stop}\" takes 1 argument\n",
762                                 fname, lineno, 0 );
763                         return( 1 );
764                 }
765
766                 if ( strcasecmp( argv[ 1 ], "continue" ) == 0 ) {
767                         mi->mi_flags &= ~META_BACK_F_ONERR_STOP;
768
769                 } else if ( strcasecmp( argv[ 1 ], "stop" ) == 0 ) {
770                         mi->mi_flags |= META_BACK_F_ONERR_STOP;
771
772                 } else {
773                         Debug( LDAP_DEBUG_ANY,
774         "%s: line %d: \"onerr {CONTINUE|stop}\": invalid arg \"%s\".\n",
775                                 fname, lineno, argv[ 1 ] );
776                         return 1;
777                 }
778
779         /* bind-defer? */
780         } else if ( strcasecmp( argv[ 0 ], "pseudoroot-bind-defer" ) == 0 ) {
781                 if ( argc != 2 ) {
782                         Debug( LDAP_DEBUG_ANY,
783         "%s: line %d: \"pseudoroot-bind-defer {FALSE|true}\" takes 1 argument\n",
784                                 fname, lineno, 0 );
785                         return( 1 );
786                 }
787
788                 switch ( check_true_false( argv[ 1 ] ) ) {
789                 case 0:
790                         mi->mi_flags &= ~META_BACK_F_DEFER_ROOTDN_BIND;
791                         break;
792
793                 case 1:
794                         mi->mi_flags |= META_BACK_F_DEFER_ROOTDN_BIND;
795                         break;
796
797                 default:
798                         Debug( LDAP_DEBUG_ANY,
799         "%s: line %d: \"pseudoroot-bind-defer {FALSE|true}\": invalid arg \"%s\".\n",
800                                 fname, lineno, argv[ 1 ] );
801                         return 1;
802                 }
803
804         } else if ( strcasecmp( argv[ 0 ], "timeout" ) == 0 ) {
805                 char    *sep;
806                 time_t  *tv = mi->mi_ntargets ?
807                                 mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_timeout
808                                 : mi->mi_timeout;
809                 int     c;
810
811                 if ( argc < 2 ) {
812                         Debug( LDAP_DEBUG_ANY,
813         "%s: line %d: \"timeout [{add|delete|modify|modrdn}=]<val> [...]\" takes at least 1 argument\n",
814                                 fname, lineno, 0 );
815                         return( 1 );
816                 }
817
818                 for ( c = 1; c < argc; c++ ) {
819                         time_t          *t = NULL;
820                         unsigned long   val;
821
822                         sep = strchr( argv[ c ], '=' );
823                         if ( sep != NULL ) {
824                                 size_t  len = sep - argv[ c ];
825
826                                 if ( strncasecmp( argv[ c ], "add", len ) == 0 ) {
827                                         t = &tv[ LDAP_BACK_OP_ADD ];
828                                 } else if ( strncasecmp( argv[ c ], "delete", len ) == 0 ) {
829                                         t = &tv[ LDAP_BACK_OP_DELETE ];
830                                 } else if ( strncasecmp( argv[ c ], "modify", len ) == 0 ) {
831                                         t = &tv[ LDAP_BACK_OP_MODIFY ];
832                                 } else if ( strncasecmp( argv[ c ], "modrdn", len ) == 0 ) {
833                                         t = &tv[ LDAP_BACK_OP_MODRDN ];
834                                 } else {
835                                         char    buf[ SLAP_TEXT_BUFLEN ];
836                                         snprintf( buf, sizeof( buf ),
837                                                 "unknown operation \"%s\" for timeout #%d",
838                                                 argv[ c ], c );
839                                         Debug( LDAP_DEBUG_ANY,
840                                                 "%s: line %d: %s.\n",
841                                                 fname, lineno, buf );
842                                         return 1;
843                                 }
844                                 sep++;
845         
846                         } else {
847                                 sep = argv[ c ];
848                         }
849         
850                         if ( lutil_parse_time( sep, &val ) != 0 ) {
851                                 Debug( LDAP_DEBUG_ANY,
852                 "%s: line %d: unable to parse value \"%s\" for timeout.\n",
853                                         fname, lineno, sep );
854                                 return 1;
855                         }
856                 
857                         if ( t ) {
858                                 *t = (time_t)val;
859         
860                         } else {
861                                 int     i;
862         
863                                 for ( i = 0; i < LDAP_BACK_OP_LAST; i++ ) {
864                                         tv[ i ] = (time_t)val;
865                                 }
866                         }
867                 }
868         
869         /* name to use as pseudo-root dn */
870         } else if ( strcasecmp( argv[ 0 ], "pseudorootdn" ) == 0 ) {
871                 int             i = mi->mi_ntargets - 1;
872                 struct berval   dn;
873
874                 if ( i < 0 ) {
875                         Debug( LDAP_DEBUG_ANY,
876         "%s: line %d: need \"uri\" directive first\n",
877                                 fname, lineno, 0 );
878                         return 1;
879                 }
880                 
881                 if ( argc != 2 ) {
882                         Debug( LDAP_DEBUG_ANY,
883         "%s: line %d: missing name in \"pseudorootdn <name>\" line\n",
884                                 fname, lineno, 0 );
885                         return 1;
886                 }
887
888                 dn.bv_val = argv[ 1 ];
889                 dn.bv_len = strlen( argv[ 1 ] );
890                 if ( dnNormalize( 0, NULL, NULL, &dn,
891                         &mi->mi_targets[ i ]->mt_pseudorootdn, NULL ) != LDAP_SUCCESS )
892                 {
893                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
894                                         "pseudoroot DN '%s' is invalid\n",
895                                         fname, lineno, argv[ 1 ] );
896                         return( 1 );
897                 }
898
899         /* password to use as pseudo-root */
900         } else if ( strcasecmp( argv[ 0 ], "pseudorootpw" ) == 0 ) {
901                 int             i = mi->mi_ntargets - 1;
902
903                 if ( i < 0 ) {
904                         Debug( LDAP_DEBUG_ANY,
905         "%s: line %d: need \"uri\" directive first\n",
906                                 fname, lineno, 0 );
907                         return 1;
908                 }
909                 
910                 if ( argc != 2 ) {
911                         Debug( LDAP_DEBUG_ANY,
912         "%s: line %d: missing password in \"pseudorootpw <password>\" line\n",
913                             fname, lineno, 0 );
914                         return 1;
915                 }
916                 ber_str2bv( argv[ 1 ], 0L, 1, &mi->mi_targets[ i ]->mt_pseudorootpw );
917         
918         /* dn massaging */
919         } else if ( strcasecmp( argv[ 0 ], "suffixmassage" ) == 0 ) {
920                 BackendDB       *tmp_be;
921                 int             i = mi->mi_ntargets - 1, rc;
922                 struct berval   dn, nvnc, pvnc, nrnc, prnc;
923
924                 if ( i < 0 ) {
925                         Debug( LDAP_DEBUG_ANY,
926         "%s: line %d: need \"uri\" directive first\n",
927                                 fname, lineno, 0 );
928                         return 1;
929                 }
930                 
931                 /*
932                  * syntax:
933                  * 
934                  *      suffixmassage <suffix> <massaged suffix>
935                  *
936                  * the <suffix> field must be defined as a valid suffix
937                  * (or suffixAlias?) for the current database;
938                  * the <massaged suffix> shouldn't have already been
939                  * defined as a valid suffix or suffixAlias for the 
940                  * current server
941                  */
942                 if ( argc != 3 ) {
943                         Debug( LDAP_DEBUG_ANY,
944         "%s: line %d: syntax is \"suffixMassage <suffix> <massaged suffix>\"\n",
945                                 fname, lineno, 0 );
946                         return 1;
947                 }
948
949                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
950                 if ( dnPrettyNormal( NULL, &dn, &pvnc, &nvnc, NULL ) != LDAP_SUCCESS ) {
951                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
952                                         "suffix '%s' is invalid\n",
953                                         fname, lineno, argv[ 1 ] );
954                         return 1;
955                 }
956                 
957                 tmp_be = select_backend( &nvnc, 0, 0 );
958                 if ( tmp_be != NULL && tmp_be != be ) {
959                         Debug( LDAP_DEBUG_ANY, 
960         "%s: line %d: suffix already in use by another backend in"
961         " \"suffixMassage <suffix> <massaged suffix>\"\n",
962                                 fname, lineno, 0 );
963                         free( pvnc.bv_val );
964                         free( nvnc.bv_val );
965                         return 1;                                               
966                 }
967
968                 ber_str2bv( argv[ 2 ], 0, 0, &dn );
969                 if ( dnPrettyNormal( NULL, &dn, &prnc, &nrnc, NULL ) != LDAP_SUCCESS ) {
970                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
971                                 "massaged suffix '%s' is invalid\n",
972                                 fname, lineno, argv[ 2 ] );
973                         free( pvnc.bv_val );
974                         free( nvnc.bv_val );
975                         return 1;
976                 }
977         
978 #if 0   
979                 tmp_be = select_backend( &nrnc, 0, 0 );
980                 if ( tmp_be != NULL ) {
981                         Debug( LDAP_DEBUG_ANY,
982         "%s: line %d: massaged suffix already in use by another backend in" 
983         " \"suffixMassage <suffix> <massaged suffix>\"\n",
984                                 fname, lineno, 0 );
985                         free( pvnc.bv_val );
986                         free( nvnc.bv_val );
987                         free( prnc.bv_val );
988                         free( nrnc.bv_val );
989                         return 1;
990                 }
991 #endif
992                 
993                 /*
994                  * The suffix massaging is emulated by means of the
995                  * rewrite capabilities
996                  * FIXME: no extra rewrite capabilities should be added
997                  * to the database
998                  */
999                 rc = suffix_massage_config( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
1000                                 &pvnc, &nvnc, &prnc, &nrnc );
1001
1002                 free( pvnc.bv_val );
1003                 free( nvnc.bv_val );
1004                 free( prnc.bv_val );
1005                 free( nrnc.bv_val );
1006
1007                 return rc;
1008                 
1009         /* rewrite stuff ... */
1010         } else if ( strncasecmp( argv[ 0 ], "rewrite", 7 ) == 0 ) {
1011                 int             i = mi->mi_ntargets - 1;
1012
1013                 if ( i < 0 ) {
1014                         Debug( LDAP_DEBUG_ANY, "%s: line %d: \"rewrite\" "
1015                                 "statement outside target definition.\n",
1016                                 fname, lineno, 0 );
1017                         return 1;
1018                 }
1019                 
1020                 return rewrite_parse( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
1021                                 fname, lineno, argc, argv );
1022
1023         /* objectclass/attribute mapping */
1024         } else if ( strcasecmp( argv[ 0 ], "map" ) == 0 ) {
1025                 int             i = mi->mi_ntargets - 1;
1026
1027                 if ( i < 0 ) {
1028                         Debug( LDAP_DEBUG_ANY,
1029         "%s: line %d: need \"uri\" directive first\n",
1030                                 fname, lineno, 0 );
1031                         return 1;
1032                 }
1033
1034                 return ldap_back_map_config( &mi->mi_targets[ i ]->mt_rwmap.rwm_oc, 
1035                                 &mi->mi_targets[ i ]->mt_rwmap.rwm_at,
1036                                 fname, lineno, argc, argv );
1037
1038         } else if ( strcasecmp( argv[ 0 ], "nretries" ) == 0 ) {
1039                 int             i = mi->mi_ntargets - 1;
1040                 int             nretries = META_RETRY_UNDEFINED;
1041
1042                 if ( argc != 2 ) {
1043                         Debug( LDAP_DEBUG_ANY,
1044         "%s: line %d: need value in \"nretries <value>\"\n",
1045                                 fname, lineno, 0 );
1046                         return 1;
1047                 }
1048
1049                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
1050                         nretries = META_RETRY_FOREVER;
1051
1052                 } else if ( strcasecmp( argv[ 1 ], "never" ) == 0 ) {
1053                         nretries = META_RETRY_NEVER;
1054
1055                 } else {
1056                         if ( lutil_atoi( &nretries, argv[ 1 ] ) != 0 ) {
1057                                 Debug( LDAP_DEBUG_ANY,
1058         "%s: line %d: unable to parse value \"%s\" in \"nretries <value>\"\n",
1059                                         fname, lineno, argv[ 1 ] );
1060                                 return 1;
1061                         }
1062                 }
1063
1064                 if ( i < 0 ) {
1065                         mi->mi_nretries = nretries;
1066
1067                 } else {
1068                         mi->mi_targets[ i ]->mt_nretries = nretries;
1069                 }
1070
1071         } else if ( strcasecmp( argv[ 0 ], "protocol-version" ) == 0 ) {
1072                 int     *version = mi->mi_ntargets ?
1073                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_version
1074                                 : &mi->mi_version;
1075
1076                 if ( argc != 2 ) {
1077                         Debug( LDAP_DEBUG_ANY,
1078         "%s: line %d: need value in \"protocol-version <version>\"\n",
1079                                 fname, lineno, 0 );
1080                         return 1;
1081                 }
1082
1083                 if ( lutil_atoi( version, argv[ 1 ] ) != 0 ) {
1084                         Debug( LDAP_DEBUG_ANY,
1085         "%s: line %d: unable to parse version \"%s\" in \"protocol-version <version>\"\n",
1086                                 fname, lineno, argv[ 1 ] );
1087                         return 1;
1088                 }
1089
1090                 if ( *version != 0 && ( *version < LDAP_VERSION_MIN || *version > LDAP_VERSION_MAX ) ) {
1091                         Debug( LDAP_DEBUG_ANY,
1092         "%s: line %d: unsupported version \"%s\" in \"protocol-version <version>\"\n",
1093                                 fname, lineno, argv[ 1 ] );
1094                         return 1;
1095                 }
1096
1097         /* anything else */
1098         } else {
1099                 return SLAP_CONF_UNKNOWN;
1100         }
1101         return 0;
1102 }
1103
1104 int
1105 ldap_back_map_config(
1106                 struct ldapmap  *oc_map,
1107                 struct ldapmap  *at_map,
1108                 const char      *fname,
1109                 int             lineno,
1110                 int             argc,
1111                 char            **argv )
1112 {
1113         struct ldapmap          *map;
1114         struct ldapmapping      *mapping;
1115         char                    *src, *dst;
1116         int                     is_oc = 0;
1117
1118         if ( argc < 3 || argc > 4 ) {
1119                 Debug( LDAP_DEBUG_ANY,
1120         "%s: line %d: syntax is \"map {objectclass | attribute} [<local> | *] {<foreign> | *}\"\n",
1121                         fname, lineno, 0 );
1122                 return 1;
1123         }
1124
1125         if ( strcasecmp( argv[ 1 ], "objectclass" ) == 0 ) {
1126                 map = oc_map;
1127                 is_oc = 1;
1128
1129         } else if ( strcasecmp( argv[ 1 ], "attribute" ) == 0 ) {
1130                 map = at_map;
1131
1132         } else {
1133                 Debug( LDAP_DEBUG_ANY, "%s: line %d: syntax is "
1134                         "\"map {objectclass | attribute} [<local> | *] "
1135                         "{<foreign> | *}\"\n",
1136                         fname, lineno, 0 );
1137                 return 1;
1138         }
1139
1140         if ( strcmp( argv[ 2 ], "*" ) == 0 ) {
1141                 if ( argc < 4 || strcmp( argv[ 3 ], "*" ) == 0 ) {
1142                         map->drop_missing = ( argc < 4 );
1143                         return 0;
1144                 }
1145                 src = dst = argv[ 3 ];
1146
1147         } else if ( argc < 4 ) {
1148                 src = "";
1149                 dst = argv[ 2 ];
1150
1151         } else {
1152                 src = argv[ 2 ];
1153                 dst = ( strcmp( argv[ 3 ], "*" ) == 0 ? src : argv[ 3 ] );
1154         }
1155
1156         if ( ( map == at_map )
1157                         && ( strcasecmp( src, "objectclass" ) == 0
1158                         || strcasecmp( dst, "objectclass" ) == 0 ) )
1159         {
1160                 Debug( LDAP_DEBUG_ANY,
1161                         "%s: line %d: objectclass attribute cannot be mapped\n",
1162                         fname, lineno, 0 );
1163         }
1164
1165         mapping = (struct ldapmapping *)ch_calloc( 2,
1166                 sizeof(struct ldapmapping) );
1167         if ( mapping == NULL ) {
1168                 Debug( LDAP_DEBUG_ANY,
1169                         "%s: line %d: out of memory\n",
1170                         fname, lineno, 0 );
1171                 return 1;
1172         }
1173         ber_str2bv( src, 0, 1, &mapping[ 0 ].src );
1174         ber_str2bv( dst, 0, 1, &mapping[ 0 ].dst );
1175         mapping[ 1 ].src = mapping[ 0 ].dst;
1176         mapping[ 1 ].dst = mapping[ 0 ].src;
1177
1178         /*
1179          * schema check
1180          */
1181         if ( is_oc ) {
1182                 if ( src[ 0 ] != '\0' ) {
1183                         if ( oc_bvfind( &mapping[ 0 ].src ) == NULL ) {
1184                                 Debug( LDAP_DEBUG_ANY,
1185         "%s: line %d: warning, source objectClass '%s' "
1186         "should be defined in schema\n",
1187                                         fname, lineno, src );
1188
1189                                 /*
1190                                  * FIXME: this should become an err
1191                                  */
1192                                 goto error_return;
1193                         }
1194                 }
1195
1196                 if ( oc_bvfind( &mapping[ 0 ].dst ) == NULL ) {
1197                         Debug( LDAP_DEBUG_ANY,
1198         "%s: line %d: warning, destination objectClass '%s' "
1199         "is not defined in schema\n",
1200                                 fname, lineno, dst );
1201                 }
1202         } else {
1203                 int                     rc;
1204                 const char              *text = NULL;
1205                 AttributeDescription    *ad = NULL;
1206
1207                 if ( src[ 0 ] != '\0' ) {
1208                         rc = slap_bv2ad( &mapping[ 0 ].src, &ad, &text );
1209                         if ( rc != LDAP_SUCCESS ) {
1210                                 Debug( LDAP_DEBUG_ANY,
1211         "%s: line %d: warning, source attributeType '%s' "
1212         "should be defined in schema\n",
1213                                         fname, lineno, src );
1214
1215                                 /*
1216                                  * FIXME: this should become an err
1217                                  */
1218                                 /*
1219                                  * we create a fake "proxied" ad 
1220                                  * and add it here.
1221                                  */
1222
1223                                 rc = slap_bv2undef_ad( &mapping[ 0 ].src,
1224                                                 &ad, &text, SLAP_AD_PROXIED );
1225                                 if ( rc != LDAP_SUCCESS ) {
1226                                         char    buf[ SLAP_TEXT_BUFLEN ];
1227
1228                                         snprintf( buf, sizeof( buf ),
1229                                                 "source attributeType \"%s\": %d (%s)",
1230                                                 src, rc, text ? text : "" );
1231                                         Debug( LDAP_DEBUG_ANY,
1232                                                 "%s: line %d: %s\n",
1233                                                 fname, lineno, buf );
1234                                         goto error_return;
1235                                 }
1236                         }
1237
1238                         ad = NULL;
1239                 }
1240
1241                 rc = slap_bv2ad( &mapping[ 0 ].dst, &ad, &text );
1242                 if ( rc != LDAP_SUCCESS ) {
1243                         Debug( LDAP_DEBUG_ANY,
1244         "%s: line %d: warning, destination attributeType '%s' "
1245         "is not defined in schema\n",
1246                                 fname, lineno, dst );
1247
1248                         /*
1249                          * we create a fake "proxied" ad 
1250                          * and add it here.
1251                          */
1252
1253                         rc = slap_bv2undef_ad( &mapping[ 0 ].dst,
1254                                         &ad, &text, SLAP_AD_PROXIED );
1255                         if ( rc != LDAP_SUCCESS ) {
1256                                 char    buf[ SLAP_TEXT_BUFLEN ];
1257
1258                                 snprintf( buf, sizeof( buf ),
1259                                         "source attributeType \"%s\": %d (%s)\n",
1260                                         dst, rc, text ? text : "" );
1261                                 Debug( LDAP_DEBUG_ANY,
1262                                         "%s: line %d: %s\n",
1263                                         fname, lineno, buf );
1264                                 return 1;
1265                         }
1266                 }
1267         }
1268
1269         if ( (src[ 0 ] != '\0' && avl_find( map->map, (caddr_t)&mapping[ 0 ], mapping_cmp ) != NULL)
1270                         || avl_find( map->remap, (caddr_t)&mapping[ 1 ], mapping_cmp ) != NULL)
1271         {
1272                 Debug( LDAP_DEBUG_ANY,
1273                         "%s: line %d: duplicate mapping found.\n",
1274                         fname, lineno, 0 );
1275                 goto error_return;
1276         }
1277
1278         if ( src[ 0 ] != '\0' ) {
1279                 avl_insert( &map->map, (caddr_t)&mapping[ 0 ],
1280                                         mapping_cmp, mapping_dup );
1281         }
1282         avl_insert( &map->remap, (caddr_t)&mapping[ 1 ],
1283                                 mapping_cmp, mapping_dup );
1284
1285         return 0;
1286
1287 error_return:;
1288         if ( mapping ) {
1289                 ch_free( mapping[ 0 ].src.bv_val );
1290                 ch_free( mapping[ 0 ].dst.bv_val );
1291                 ch_free( mapping );
1292         }
1293
1294         return 1;
1295 }
1296
1297
1298 #ifdef ENABLE_REWRITE
1299 static char *
1300 suffix_massage_regexize( const char *s )
1301 {
1302         char *res, *ptr;
1303         const char *p, *r;
1304         int i;
1305
1306         if ( s[ 0 ] == '\0' ) {
1307                 return ch_strdup( "^(.+)$" );
1308         }
1309
1310         for ( i = 0, p = s; 
1311                         ( r = strchr( p, ',' ) ) != NULL; 
1312                         p = r + 1, i++ )
1313                 ;
1314
1315         res = ch_calloc( sizeof( char ),
1316                         strlen( s )
1317                         + STRLENOF( "((.+),)?" )
1318                         + STRLENOF( "[ ]?" ) * i
1319                         + STRLENOF( "$" ) + 1 );
1320
1321         ptr = lutil_strcopy( res, "((.+),)?" );
1322         for ( i = 0, p = s;
1323                         ( r = strchr( p, ',' ) ) != NULL;
1324                         p = r + 1 , i++ ) {
1325                 ptr = lutil_strncopy( ptr, p, r - p + 1 );
1326                 ptr = lutil_strcopy( ptr, "[ ]?" );
1327
1328                 if ( r[ 1 ] == ' ' ) {
1329                         r++;
1330                 }
1331         }
1332         ptr = lutil_strcopy( ptr, p );
1333         ptr[ 0 ] = '$';
1334         ptr++;
1335         ptr[ 0 ] = '\0';
1336
1337         return res;
1338 }
1339
1340 static char *
1341 suffix_massage_patternize( const char *s, const char *p )
1342 {
1343         ber_len_t       len;
1344         char            *res, *ptr;
1345
1346         len = strlen( p );
1347
1348         if ( s[ 0 ] == '\0' ) {
1349                 len++;
1350         }
1351
1352         res = ch_calloc( sizeof( char ), len + STRLENOF( "%1" ) + 1 );
1353         if ( res == NULL ) {
1354                 return NULL;
1355         }
1356
1357         ptr = lutil_strcopy( res, ( p[ 0 ] == '\0' ? "%2" : "%1" ) );
1358         if ( s[ 0 ] == '\0' ) {
1359                 ptr[ 0 ] = ',';
1360                 ptr++;
1361         }
1362         lutil_strcopy( ptr, p );
1363
1364         return res;
1365 }
1366
1367 int
1368 suffix_massage_config( 
1369                 struct rewrite_info *info,
1370                 struct berval *pvnc,
1371                 struct berval *nvnc,
1372                 struct berval *prnc,
1373                 struct berval *nrnc
1374 )
1375 {
1376         char *rargv[ 5 ];
1377         int line = 0;
1378
1379         rargv[ 0 ] = "rewriteEngine";
1380         rargv[ 1 ] = "on";
1381         rargv[ 2 ] = NULL;
1382         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1383
1384         rargv[ 0 ] = "rewriteContext";
1385         rargv[ 1 ] = "default";
1386         rargv[ 2 ] = NULL;
1387         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1388
1389         rargv[ 0 ] = "rewriteRule";
1390         rargv[ 1 ] = suffix_massage_regexize( pvnc->bv_val );
1391         rargv[ 2 ] = suffix_massage_patternize( pvnc->bv_val, prnc->bv_val );
1392         rargv[ 3 ] = ":";
1393         rargv[ 4 ] = NULL;
1394         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1395         ch_free( rargv[ 1 ] );
1396         ch_free( rargv[ 2 ] );
1397
1398         if ( BER_BVISEMPTY( pvnc ) ) {
1399                 rargv[ 0 ] = "rewriteRule";
1400                 rargv[ 1 ] = "^$";
1401                 rargv[ 2 ] = prnc->bv_val;
1402                 rargv[ 3 ] = ":";
1403                 rargv[ 4 ] = NULL;
1404                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1405         }
1406         
1407         rargv[ 0 ] = "rewriteContext";
1408         rargv[ 1 ] = "searchEntryDN";
1409         rargv[ 2 ] = NULL;
1410         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1411
1412         rargv[ 0 ] = "rewriteRule";
1413         rargv[ 1 ] = suffix_massage_regexize( prnc->bv_val );
1414         rargv[ 2 ] = suffix_massage_patternize( prnc->bv_val, pvnc->bv_val );
1415         rargv[ 3 ] = ":";
1416         rargv[ 4 ] = NULL;
1417         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1418         ch_free( rargv[ 1 ] );
1419         ch_free( rargv[ 2 ] );
1420
1421         if ( BER_BVISEMPTY( prnc ) ) {
1422                 rargv[ 0 ] = "rewriteRule";
1423                 rargv[ 1 ] = "^$";
1424                 rargv[ 2 ] = pvnc->bv_val;
1425                 rargv[ 3 ] = ":";
1426                 rargv[ 4 ] = NULL;
1427                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1428         }
1429         
1430         /* backward compatibility */
1431         rargv[ 0 ] = "rewriteContext";
1432         rargv[ 1 ] = "searchResult";
1433         rargv[ 2 ] = "alias";
1434         rargv[ 3 ] = "searchEntryDN";
1435         rargv[ 4 ] = NULL;
1436         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1437         
1438         rargv[ 0 ] = "rewriteContext";
1439         rargv[ 1 ] = "matchedDN";
1440         rargv[ 2 ] = "alias";
1441         rargv[ 3 ] = "searchEntryDN";
1442         rargv[ 4 ] = NULL;
1443         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1444
1445         rargv[ 0 ] = "rewriteContext";
1446         rargv[ 1 ] = "searchAttrDN";
1447         rargv[ 2 ] = "alias";
1448         rargv[ 3 ] = "searchEntryDN";
1449         rargv[ 4 ] = NULL;
1450         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1451
1452         /* NOTE: this corresponds to #undef'ining RWM_REFERRAL_REWRITE;
1453          * see servers/slapd/overlays/rwm.h for details */
1454         rargv[ 0 ] = "rewriteContext";
1455         rargv[ 1 ] = "referralAttrDN";
1456         rargv[ 2 ] = NULL;
1457         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1458
1459         rargv[ 0 ] = "rewriteContext";
1460         rargv[ 1 ] = "referralDN";
1461         rargv[ 2 ] = NULL;
1462         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1463         
1464         return 0;
1465 }
1466 #endif /* ENABLE_REWRITE */
1467