]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/config.c
ITS#4550 don't overwrite remote server's err msg
[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         /* single-conn? */
805         } else if ( strcasecmp( argv[ 0 ], "single-conn" ) == 0 ) {
806                 if ( argc != 2 ) {
807                         Debug( LDAP_DEBUG_ANY,
808         "%s: line %d: \"single-conn {FALSE|true}\" takes 1 argument\n",
809                                 fname, lineno, 0 );
810                         return( 1 );
811                 }
812
813                 if ( mi->mi_ntargets > 0 ) {
814                         Debug( LDAP_DEBUG_ANY,
815         "%s: line %d: \"single-conn\" must appear before target definitions\n",
816                                 fname, lineno, 0 );
817                         return( 1 );
818                 }
819
820                 switch ( check_true_false( argv[ 1 ] ) ) {
821                 case 0:
822                         mi->mi_flags &= ~LDAP_BACK_F_SINGLECONN;
823                         break;
824
825                 case 1:
826                         mi->mi_flags |= LDAP_BACK_F_SINGLECONN;
827                         break;
828
829                 default:
830                         Debug( LDAP_DEBUG_ANY,
831         "%s: line %d: \"single-conn {FALSE|true}\": invalid arg \"%s\".\n",
832                                 fname, lineno, argv[ 1 ] );
833                         return 1;
834                 }
835
836         } else if ( strcasecmp( argv[ 0 ], "timeout" ) == 0 ) {
837                 char    *sep;
838                 time_t  *tv = mi->mi_ntargets ?
839                                 mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_timeout
840                                 : mi->mi_timeout;
841                 int     c;
842
843                 if ( argc < 2 ) {
844                         Debug( LDAP_DEBUG_ANY,
845         "%s: line %d: \"timeout [{add|delete|modify|modrdn}=]<val> [...]\" takes at least 1 argument\n",
846                                 fname, lineno, 0 );
847                         return( 1 );
848                 }
849
850                 for ( c = 1; c < argc; c++ ) {
851                         time_t          *t = NULL;
852                         unsigned long   val;
853
854                         sep = strchr( argv[ c ], '=' );
855                         if ( sep != NULL ) {
856                                 size_t  len = sep - argv[ c ];
857
858                                 if ( strncasecmp( argv[ c ], "add", len ) == 0 ) {
859                                         t = &tv[ LDAP_BACK_OP_ADD ];
860                                 } else if ( strncasecmp( argv[ c ], "delete", len ) == 0 ) {
861                                         t = &tv[ LDAP_BACK_OP_DELETE ];
862                                 } else if ( strncasecmp( argv[ c ], "modify", len ) == 0 ) {
863                                         t = &tv[ LDAP_BACK_OP_MODIFY ];
864                                 } else if ( strncasecmp( argv[ c ], "modrdn", len ) == 0 ) {
865                                         t = &tv[ LDAP_BACK_OP_MODRDN ];
866                                 } else {
867                                         char    buf[ SLAP_TEXT_BUFLEN ];
868                                         snprintf( buf, sizeof( buf ),
869                                                 "unknown operation \"%s\" for timeout #%d",
870                                                 argv[ c ], c );
871                                         Debug( LDAP_DEBUG_ANY,
872                                                 "%s: line %d: %s.\n",
873                                                 fname, lineno, buf );
874                                         return 1;
875                                 }
876                                 sep++;
877         
878                         } else {
879                                 sep = argv[ c ];
880                         }
881         
882                         if ( lutil_parse_time( sep, &val ) != 0 ) {
883                                 Debug( LDAP_DEBUG_ANY,
884                 "%s: line %d: unable to parse value \"%s\" for timeout.\n",
885                                         fname, lineno, sep );
886                                 return 1;
887                         }
888                 
889                         if ( t ) {
890                                 *t = (time_t)val;
891         
892                         } else {
893                                 int     i;
894         
895                                 for ( i = 0; i < LDAP_BACK_OP_LAST; i++ ) {
896                                         tv[ i ] = (time_t)val;
897                                 }
898                         }
899                 }
900         
901         /* name to use as pseudo-root dn */
902         } else if ( strcasecmp( argv[ 0 ], "pseudorootdn" ) == 0 ) {
903                 int             i = mi->mi_ntargets - 1;
904                 struct berval   dn;
905
906                 if ( i < 0 ) {
907                         Debug( LDAP_DEBUG_ANY,
908         "%s: line %d: need \"uri\" directive first\n",
909                                 fname, lineno, 0 );
910                         return 1;
911                 }
912                 
913                 if ( argc != 2 ) {
914                         Debug( LDAP_DEBUG_ANY,
915         "%s: line %d: missing name in \"pseudorootdn <name>\" line\n",
916                                 fname, lineno, 0 );
917                         return 1;
918                 }
919
920                 dn.bv_val = argv[ 1 ];
921                 dn.bv_len = strlen( argv[ 1 ] );
922                 if ( dnNormalize( 0, NULL, NULL, &dn,
923                         &mi->mi_targets[ i ]->mt_pseudorootdn, NULL ) != LDAP_SUCCESS )
924                 {
925                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
926                                         "pseudoroot DN '%s' is invalid\n",
927                                         fname, lineno, argv[ 1 ] );
928                         return( 1 );
929                 }
930
931         /* password to use as pseudo-root */
932         } else if ( strcasecmp( argv[ 0 ], "pseudorootpw" ) == 0 ) {
933                 int             i = mi->mi_ntargets - 1;
934
935                 if ( i < 0 ) {
936                         Debug( LDAP_DEBUG_ANY,
937         "%s: line %d: need \"uri\" directive first\n",
938                                 fname, lineno, 0 );
939                         return 1;
940                 }
941                 
942                 if ( argc != 2 ) {
943                         Debug( LDAP_DEBUG_ANY,
944         "%s: line %d: missing password in \"pseudorootpw <password>\" line\n",
945                             fname, lineno, 0 );
946                         return 1;
947                 }
948                 ber_str2bv( argv[ 1 ], 0L, 1, &mi->mi_targets[ i ]->mt_pseudorootpw );
949         
950         /* dn massaging */
951         } else if ( strcasecmp( argv[ 0 ], "suffixmassage" ) == 0 ) {
952                 BackendDB       *tmp_be;
953                 int             i = mi->mi_ntargets - 1, rc;
954                 struct berval   dn, nvnc, pvnc, nrnc, prnc;
955
956                 if ( i < 0 ) {
957                         Debug( LDAP_DEBUG_ANY,
958         "%s: line %d: need \"uri\" directive first\n",
959                                 fname, lineno, 0 );
960                         return 1;
961                 }
962                 
963                 /*
964                  * syntax:
965                  * 
966                  *      suffixmassage <suffix> <massaged suffix>
967                  *
968                  * the <suffix> field must be defined as a valid suffix
969                  * (or suffixAlias?) for the current database;
970                  * the <massaged suffix> shouldn't have already been
971                  * defined as a valid suffix or suffixAlias for the 
972                  * current server
973                  */
974                 if ( argc != 3 ) {
975                         Debug( LDAP_DEBUG_ANY,
976         "%s: line %d: syntax is \"suffixMassage <suffix> <massaged suffix>\"\n",
977                                 fname, lineno, 0 );
978                         return 1;
979                 }
980
981                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
982                 if ( dnPrettyNormal( NULL, &dn, &pvnc, &nvnc, NULL ) != LDAP_SUCCESS ) {
983                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
984                                         "suffix '%s' is invalid\n",
985                                         fname, lineno, argv[ 1 ] );
986                         return 1;
987                 }
988                 
989                 tmp_be = select_backend( &nvnc, 0, 0 );
990                 if ( tmp_be != NULL && tmp_be != be ) {
991                         Debug( LDAP_DEBUG_ANY, 
992         "%s: line %d: suffix already in use by another backend in"
993         " \"suffixMassage <suffix> <massaged suffix>\"\n",
994                                 fname, lineno, 0 );
995                         free( pvnc.bv_val );
996                         free( nvnc.bv_val );
997                         return 1;                                               
998                 }
999
1000                 ber_str2bv( argv[ 2 ], 0, 0, &dn );
1001                 if ( dnPrettyNormal( NULL, &dn, &prnc, &nrnc, NULL ) != LDAP_SUCCESS ) {
1002                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1003                                 "massaged suffix '%s' is invalid\n",
1004                                 fname, lineno, argv[ 2 ] );
1005                         free( pvnc.bv_val );
1006                         free( nvnc.bv_val );
1007                         return 1;
1008                 }
1009         
1010 #if 0   
1011                 tmp_be = select_backend( &nrnc, 0, 0 );
1012                 if ( tmp_be != NULL ) {
1013                         Debug( LDAP_DEBUG_ANY,
1014         "%s: line %d: massaged suffix already in use by another backend in" 
1015         " \"suffixMassage <suffix> <massaged suffix>\"\n",
1016                                 fname, lineno, 0 );
1017                         free( pvnc.bv_val );
1018                         free( nvnc.bv_val );
1019                         free( prnc.bv_val );
1020                         free( nrnc.bv_val );
1021                         return 1;
1022                 }
1023 #endif
1024                 
1025                 /*
1026                  * The suffix massaging is emulated by means of the
1027                  * rewrite capabilities
1028                  * FIXME: no extra rewrite capabilities should be added
1029                  * to the database
1030                  */
1031                 rc = suffix_massage_config( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
1032                                 &pvnc, &nvnc, &prnc, &nrnc );
1033
1034                 free( pvnc.bv_val );
1035                 free( nvnc.bv_val );
1036                 free( prnc.bv_val );
1037                 free( nrnc.bv_val );
1038
1039                 return rc;
1040                 
1041         /* rewrite stuff ... */
1042         } else if ( strncasecmp( argv[ 0 ], "rewrite", 7 ) == 0 ) {
1043                 int             i = mi->mi_ntargets - 1;
1044
1045                 if ( i < 0 ) {
1046                         Debug( LDAP_DEBUG_ANY, "%s: line %d: \"rewrite\" "
1047                                 "statement outside target definition.\n",
1048                                 fname, lineno, 0 );
1049                         return 1;
1050                 }
1051                 
1052                 return rewrite_parse( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
1053                                 fname, lineno, argc, argv );
1054
1055         /* objectclass/attribute mapping */
1056         } else if ( strcasecmp( argv[ 0 ], "map" ) == 0 ) {
1057                 int             i = mi->mi_ntargets - 1;
1058
1059                 if ( i < 0 ) {
1060                         Debug( LDAP_DEBUG_ANY,
1061         "%s: line %d: need \"uri\" directive first\n",
1062                                 fname, lineno, 0 );
1063                         return 1;
1064                 }
1065
1066                 return ldap_back_map_config( &mi->mi_targets[ i ]->mt_rwmap.rwm_oc, 
1067                                 &mi->mi_targets[ i ]->mt_rwmap.rwm_at,
1068                                 fname, lineno, argc, argv );
1069
1070         } else if ( strcasecmp( argv[ 0 ], "nretries" ) == 0 ) {
1071                 int             i = mi->mi_ntargets - 1;
1072                 int             nretries = META_RETRY_UNDEFINED;
1073
1074                 if ( argc != 2 ) {
1075                         Debug( LDAP_DEBUG_ANY,
1076         "%s: line %d: need value in \"nretries <value>\"\n",
1077                                 fname, lineno, 0 );
1078                         return 1;
1079                 }
1080
1081                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
1082                         nretries = META_RETRY_FOREVER;
1083
1084                 } else if ( strcasecmp( argv[ 1 ], "never" ) == 0 ) {
1085                         nretries = META_RETRY_NEVER;
1086
1087                 } else {
1088                         if ( lutil_atoi( &nretries, argv[ 1 ] ) != 0 ) {
1089                                 Debug( LDAP_DEBUG_ANY,
1090         "%s: line %d: unable to parse value \"%s\" in \"nretries <value>\"\n",
1091                                         fname, lineno, argv[ 1 ] );
1092                                 return 1;
1093                         }
1094                 }
1095
1096                 if ( i < 0 ) {
1097                         mi->mi_nretries = nretries;
1098
1099                 } else {
1100                         mi->mi_targets[ i ]->mt_nretries = nretries;
1101                 }
1102
1103         } else if ( strcasecmp( argv[ 0 ], "protocol-version" ) == 0 ) {
1104                 int     *version = mi->mi_ntargets ?
1105                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_version
1106                                 : &mi->mi_version;
1107
1108                 if ( argc != 2 ) {
1109                         Debug( LDAP_DEBUG_ANY,
1110         "%s: line %d: need value in \"protocol-version <version>\"\n",
1111                                 fname, lineno, 0 );
1112                         return 1;
1113                 }
1114
1115                 if ( lutil_atoi( version, argv[ 1 ] ) != 0 ) {
1116                         Debug( LDAP_DEBUG_ANY,
1117         "%s: line %d: unable to parse version \"%s\" in \"protocol-version <version>\"\n",
1118                                 fname, lineno, argv[ 1 ] );
1119                         return 1;
1120                 }
1121
1122                 if ( *version != 0 && ( *version < LDAP_VERSION_MIN || *version > LDAP_VERSION_MAX ) ) {
1123                         Debug( LDAP_DEBUG_ANY,
1124         "%s: line %d: unsupported version \"%s\" in \"protocol-version <version>\"\n",
1125                                 fname, lineno, argv[ 1 ] );
1126                         return 1;
1127                 }
1128
1129         /* anything else */
1130         } else {
1131                 return SLAP_CONF_UNKNOWN;
1132         }
1133         return 0;
1134 }
1135
1136 int
1137 ldap_back_map_config(
1138                 struct ldapmap  *oc_map,
1139                 struct ldapmap  *at_map,
1140                 const char      *fname,
1141                 int             lineno,
1142                 int             argc,
1143                 char            **argv )
1144 {
1145         struct ldapmap          *map;
1146         struct ldapmapping      *mapping;
1147         char                    *src, *dst;
1148         int                     is_oc = 0;
1149
1150         if ( argc < 3 || argc > 4 ) {
1151                 Debug( LDAP_DEBUG_ANY,
1152         "%s: line %d: syntax is \"map {objectclass | attribute} [<local> | *] {<foreign> | *}\"\n",
1153                         fname, lineno, 0 );
1154                 return 1;
1155         }
1156
1157         if ( strcasecmp( argv[ 1 ], "objectclass" ) == 0 ) {
1158                 map = oc_map;
1159                 is_oc = 1;
1160
1161         } else if ( strcasecmp( argv[ 1 ], "attribute" ) == 0 ) {
1162                 map = at_map;
1163
1164         } else {
1165                 Debug( LDAP_DEBUG_ANY, "%s: line %d: syntax is "
1166                         "\"map {objectclass | attribute} [<local> | *] "
1167                         "{<foreign> | *}\"\n",
1168                         fname, lineno, 0 );
1169                 return 1;
1170         }
1171
1172         if ( strcmp( argv[ 2 ], "*" ) == 0 ) {
1173                 if ( argc < 4 || strcmp( argv[ 3 ], "*" ) == 0 ) {
1174                         map->drop_missing = ( argc < 4 );
1175                         return 0;
1176                 }
1177                 src = dst = argv[ 3 ];
1178
1179         } else if ( argc < 4 ) {
1180                 src = "";
1181                 dst = argv[ 2 ];
1182
1183         } else {
1184                 src = argv[ 2 ];
1185                 dst = ( strcmp( argv[ 3 ], "*" ) == 0 ? src : argv[ 3 ] );
1186         }
1187
1188         if ( ( map == at_map )
1189                         && ( strcasecmp( src, "objectclass" ) == 0
1190                         || strcasecmp( dst, "objectclass" ) == 0 ) )
1191         {
1192                 Debug( LDAP_DEBUG_ANY,
1193                         "%s: line %d: objectclass attribute cannot be mapped\n",
1194                         fname, lineno, 0 );
1195         }
1196
1197         mapping = (struct ldapmapping *)ch_calloc( 2,
1198                 sizeof(struct ldapmapping) );
1199         if ( mapping == NULL ) {
1200                 Debug( LDAP_DEBUG_ANY,
1201                         "%s: line %d: out of memory\n",
1202                         fname, lineno, 0 );
1203                 return 1;
1204         }
1205         ber_str2bv( src, 0, 1, &mapping[ 0 ].src );
1206         ber_str2bv( dst, 0, 1, &mapping[ 0 ].dst );
1207         mapping[ 1 ].src = mapping[ 0 ].dst;
1208         mapping[ 1 ].dst = mapping[ 0 ].src;
1209
1210         /*
1211          * schema check
1212          */
1213         if ( is_oc ) {
1214                 if ( src[ 0 ] != '\0' ) {
1215                         if ( oc_bvfind( &mapping[ 0 ].src ) == NULL ) {
1216                                 Debug( LDAP_DEBUG_ANY,
1217         "%s: line %d: warning, source objectClass '%s' "
1218         "should be defined in schema\n",
1219                                         fname, lineno, src );
1220
1221                                 /*
1222                                  * FIXME: this should become an err
1223                                  */
1224                                 goto error_return;
1225                         }
1226                 }
1227
1228                 if ( oc_bvfind( &mapping[ 0 ].dst ) == NULL ) {
1229                         Debug( LDAP_DEBUG_ANY,
1230         "%s: line %d: warning, destination objectClass '%s' "
1231         "is not defined in schema\n",
1232                                 fname, lineno, dst );
1233                 }
1234         } else {
1235                 int                     rc;
1236                 const char              *text = NULL;
1237                 AttributeDescription    *ad = NULL;
1238
1239                 if ( src[ 0 ] != '\0' ) {
1240                         rc = slap_bv2ad( &mapping[ 0 ].src, &ad, &text );
1241                         if ( rc != LDAP_SUCCESS ) {
1242                                 Debug( LDAP_DEBUG_ANY,
1243         "%s: line %d: warning, source attributeType '%s' "
1244         "should be defined in schema\n",
1245                                         fname, lineno, src );
1246
1247                                 /*
1248                                  * FIXME: this should become an err
1249                                  */
1250                                 /*
1251                                  * we create a fake "proxied" ad 
1252                                  * and add it here.
1253                                  */
1254
1255                                 rc = slap_bv2undef_ad( &mapping[ 0 ].src,
1256                                                 &ad, &text, SLAP_AD_PROXIED );
1257                                 if ( rc != LDAP_SUCCESS ) {
1258                                         char    buf[ SLAP_TEXT_BUFLEN ];
1259
1260                                         snprintf( buf, sizeof( buf ),
1261                                                 "source attributeType \"%s\": %d (%s)",
1262                                                 src, rc, text ? text : "" );
1263                                         Debug( LDAP_DEBUG_ANY,
1264                                                 "%s: line %d: %s\n",
1265                                                 fname, lineno, buf );
1266                                         goto error_return;
1267                                 }
1268                         }
1269
1270                         ad = NULL;
1271                 }
1272
1273                 rc = slap_bv2ad( &mapping[ 0 ].dst, &ad, &text );
1274                 if ( rc != LDAP_SUCCESS ) {
1275                         Debug( LDAP_DEBUG_ANY,
1276         "%s: line %d: warning, destination attributeType '%s' "
1277         "is not defined in schema\n",
1278                                 fname, lineno, dst );
1279
1280                         /*
1281                          * we create a fake "proxied" ad 
1282                          * and add it here.
1283                          */
1284
1285                         rc = slap_bv2undef_ad( &mapping[ 0 ].dst,
1286                                         &ad, &text, SLAP_AD_PROXIED );
1287                         if ( rc != LDAP_SUCCESS ) {
1288                                 char    buf[ SLAP_TEXT_BUFLEN ];
1289
1290                                 snprintf( buf, sizeof( buf ),
1291                                         "source attributeType \"%s\": %d (%s)\n",
1292                                         dst, rc, text ? text : "" );
1293                                 Debug( LDAP_DEBUG_ANY,
1294                                         "%s: line %d: %s\n",
1295                                         fname, lineno, buf );
1296                                 return 1;
1297                         }
1298                 }
1299         }
1300
1301         if ( (src[ 0 ] != '\0' && avl_find( map->map, (caddr_t)&mapping[ 0 ], mapping_cmp ) != NULL)
1302                         || avl_find( map->remap, (caddr_t)&mapping[ 1 ], mapping_cmp ) != NULL)
1303         {
1304                 Debug( LDAP_DEBUG_ANY,
1305                         "%s: line %d: duplicate mapping found.\n",
1306                         fname, lineno, 0 );
1307                 goto error_return;
1308         }
1309
1310         if ( src[ 0 ] != '\0' ) {
1311                 avl_insert( &map->map, (caddr_t)&mapping[ 0 ],
1312                                         mapping_cmp, mapping_dup );
1313         }
1314         avl_insert( &map->remap, (caddr_t)&mapping[ 1 ],
1315                                 mapping_cmp, mapping_dup );
1316
1317         return 0;
1318
1319 error_return:;
1320         if ( mapping ) {
1321                 ch_free( mapping[ 0 ].src.bv_val );
1322                 ch_free( mapping[ 0 ].dst.bv_val );
1323                 ch_free( mapping );
1324         }
1325
1326         return 1;
1327 }
1328
1329
1330 #ifdef ENABLE_REWRITE
1331 static char *
1332 suffix_massage_regexize( const char *s )
1333 {
1334         char *res, *ptr;
1335         const char *p, *r;
1336         int i;
1337
1338         if ( s[ 0 ] == '\0' ) {
1339                 return ch_strdup( "^(.+)$" );
1340         }
1341
1342         for ( i = 0, p = s; 
1343                         ( r = strchr( p, ',' ) ) != NULL; 
1344                         p = r + 1, i++ )
1345                 ;
1346
1347         res = ch_calloc( sizeof( char ),
1348                         strlen( s )
1349                         + STRLENOF( "((.+),)?" )
1350                         + STRLENOF( "[ ]?" ) * i
1351                         + STRLENOF( "$" ) + 1 );
1352
1353         ptr = lutil_strcopy( res, "((.+),)?" );
1354         for ( i = 0, p = s;
1355                         ( r = strchr( p, ',' ) ) != NULL;
1356                         p = r + 1 , i++ ) {
1357                 ptr = lutil_strncopy( ptr, p, r - p + 1 );
1358                 ptr = lutil_strcopy( ptr, "[ ]?" );
1359
1360                 if ( r[ 1 ] == ' ' ) {
1361                         r++;
1362                 }
1363         }
1364         ptr = lutil_strcopy( ptr, p );
1365         ptr[ 0 ] = '$';
1366         ptr++;
1367         ptr[ 0 ] = '\0';
1368
1369         return res;
1370 }
1371
1372 static char *
1373 suffix_massage_patternize( const char *s, const char *p )
1374 {
1375         ber_len_t       len;
1376         char            *res, *ptr;
1377
1378         len = strlen( p );
1379
1380         if ( s[ 0 ] == '\0' ) {
1381                 len++;
1382         }
1383
1384         res = ch_calloc( sizeof( char ), len + STRLENOF( "%1" ) + 1 );
1385         if ( res == NULL ) {
1386                 return NULL;
1387         }
1388
1389         ptr = lutil_strcopy( res, ( p[ 0 ] == '\0' ? "%2" : "%1" ) );
1390         if ( s[ 0 ] == '\0' ) {
1391                 ptr[ 0 ] = ',';
1392                 ptr++;
1393         }
1394         lutil_strcopy( ptr, p );
1395
1396         return res;
1397 }
1398
1399 int
1400 suffix_massage_config( 
1401                 struct rewrite_info *info,
1402                 struct berval *pvnc,
1403                 struct berval *nvnc,
1404                 struct berval *prnc,
1405                 struct berval *nrnc
1406 )
1407 {
1408         char *rargv[ 5 ];
1409         int line = 0;
1410
1411         rargv[ 0 ] = "rewriteEngine";
1412         rargv[ 1 ] = "on";
1413         rargv[ 2 ] = NULL;
1414         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1415
1416         rargv[ 0 ] = "rewriteContext";
1417         rargv[ 1 ] = "default";
1418         rargv[ 2 ] = NULL;
1419         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1420
1421         rargv[ 0 ] = "rewriteRule";
1422         rargv[ 1 ] = suffix_massage_regexize( pvnc->bv_val );
1423         rargv[ 2 ] = suffix_massage_patternize( pvnc->bv_val, prnc->bv_val );
1424         rargv[ 3 ] = ":";
1425         rargv[ 4 ] = NULL;
1426         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1427         ch_free( rargv[ 1 ] );
1428         ch_free( rargv[ 2 ] );
1429
1430         if ( BER_BVISEMPTY( pvnc ) ) {
1431                 rargv[ 0 ] = "rewriteRule";
1432                 rargv[ 1 ] = "^$";
1433                 rargv[ 2 ] = prnc->bv_val;
1434                 rargv[ 3 ] = ":";
1435                 rargv[ 4 ] = NULL;
1436                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1437         }
1438         
1439         rargv[ 0 ] = "rewriteContext";
1440         rargv[ 1 ] = "searchEntryDN";
1441         rargv[ 2 ] = NULL;
1442         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1443
1444         rargv[ 0 ] = "rewriteRule";
1445         rargv[ 1 ] = suffix_massage_regexize( prnc->bv_val );
1446         rargv[ 2 ] = suffix_massage_patternize( prnc->bv_val, pvnc->bv_val );
1447         rargv[ 3 ] = ":";
1448         rargv[ 4 ] = NULL;
1449         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1450         ch_free( rargv[ 1 ] );
1451         ch_free( rargv[ 2 ] );
1452
1453         if ( BER_BVISEMPTY( prnc ) ) {
1454                 rargv[ 0 ] = "rewriteRule";
1455                 rargv[ 1 ] = "^$";
1456                 rargv[ 2 ] = pvnc->bv_val;
1457                 rargv[ 3 ] = ":";
1458                 rargv[ 4 ] = NULL;
1459                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1460         }
1461         
1462         /* backward compatibility */
1463         rargv[ 0 ] = "rewriteContext";
1464         rargv[ 1 ] = "searchResult";
1465         rargv[ 2 ] = "alias";
1466         rargv[ 3 ] = "searchEntryDN";
1467         rargv[ 4 ] = NULL;
1468         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1469         
1470         rargv[ 0 ] = "rewriteContext";
1471         rargv[ 1 ] = "matchedDN";
1472         rargv[ 2 ] = "alias";
1473         rargv[ 3 ] = "searchEntryDN";
1474         rargv[ 4 ] = NULL;
1475         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1476
1477         rargv[ 0 ] = "rewriteContext";
1478         rargv[ 1 ] = "searchAttrDN";
1479         rargv[ 2 ] = "alias";
1480         rargv[ 3 ] = "searchEntryDN";
1481         rargv[ 4 ] = NULL;
1482         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1483
1484         /* NOTE: this corresponds to #undef'ining RWM_REFERRAL_REWRITE;
1485          * see servers/slapd/overlays/rwm.h for details */
1486         rargv[ 0 ] = "rewriteContext";
1487         rargv[ 1 ] = "referralAttrDN";
1488         rargv[ 2 ] = NULL;
1489         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1490
1491         rargv[ 0 ] = "rewriteContext";
1492         rargv[ 1 ] = "referralDN";
1493         rargv[ 2 ] = NULL;
1494         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1495         
1496         return 0;
1497 }
1498 #endif /* ENABLE_REWRITE */
1499