]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/config.c
honor per-target tls/chase referrals/rebind as user (ITS#6190)
[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-2009 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         char                    *rargv[ 3 ];
42         metatarget_t            *mt;
43
44         *mtp = NULL;
45
46         mt = ch_calloc( sizeof( metatarget_t ), 1 );
47
48         mt->mt_rwmap.rwm_rw = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
49         if ( mt->mt_rwmap.rwm_rw == NULL ) {
50                 ch_free( mt );
51                 return -1;
52         }
53
54         /*
55          * the filter rewrite as a string must be disabled
56          * by default; it can be re-enabled by adding rules;
57          * this creates an empty rewriteContext
58          */
59         rargv[ 0 ] = "rewriteContext";
60         rargv[ 1 ] = "searchFilter";
61         rargv[ 2 ] = NULL;
62         rewrite_parse( mt->mt_rwmap.rwm_rw, "<suffix massage>", 1, 2, rargv );
63
64         rargv[ 0 ] = "rewriteContext";
65         rargv[ 1 ] = "default";
66         rargv[ 2 ] = NULL;
67         rewrite_parse( mt->mt_rwmap.rwm_rw, "<suffix massage>", 1, 2, rargv );
68
69         ldap_pvt_thread_mutex_init( &mt->mt_uri_mutex );
70
71         mt->mt_idassert_mode = LDAP_BACK_IDASSERT_LEGACY;
72         mt->mt_idassert_authmethod = LDAP_AUTH_NONE;
73         mt->mt_idassert_tls = SB_TLS_DEFAULT;
74
75         /* by default, use proxyAuthz control on each operation */
76         mt->mt_idassert_flags = LDAP_BACK_AUTH_PRESCRIPTIVE;
77
78         *mtp = mt;
79
80         return 0;
81 }
82
83 static int
84 check_true_false( char *str )
85 {
86         if ( strcasecmp( str, "true" ) == 0 || strcasecmp( str, "yes" ) == 0 ) {
87                 return 1;
88         }
89
90         if ( strcasecmp( str, "false" ) == 0 || strcasecmp( str, "no" ) == 0 ) {
91                 return 0;
92         }
93
94         return -1;
95 }
96
97
98 int
99 meta_back_db_config(
100                 BackendDB       *be,
101                 const char      *fname,
102                 int             lineno,
103                 int             argc,
104                 char            **argv
105 )
106 {
107         metainfo_t      *mi = ( metainfo_t * )be->be_private;
108
109         assert( mi != NULL );
110
111         /* URI of server to query */
112         if ( strcasecmp( argv[ 0 ], "uri" ) == 0 ) {
113                 int             i = mi->mi_ntargets;
114                 LDAPURLDesc     *ludp;
115                 struct berval   dn;
116                 int             rc;
117                 int             c;
118
119                 metatarget_t    *mt;
120
121                 char            **uris = NULL;
122                 
123                 if ( argc == 1 ) {
124                         Debug( LDAP_DEBUG_ANY,
125         "%s: line %d: missing URI "
126         "in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
127                                 fname, lineno, 0 );
128                         return 1;
129                 }
130
131                 if ( be->be_nsuffix == NULL ) {
132                         Debug( LDAP_DEBUG_ANY,
133         "%s: line %d: the suffix must be defined before any target.\n",
134                                 fname, lineno, 0 );
135                         return 1;
136                 }
137                 
138                 ++mi->mi_ntargets;
139
140                 mi->mi_targets = ( metatarget_t ** )ch_realloc( mi->mi_targets, 
141                         sizeof( metatarget_t * ) * mi->mi_ntargets );
142                 if ( mi->mi_targets == NULL ) {
143                         Debug( LDAP_DEBUG_ANY,
144         "%s: line %d: out of memory while storing server name"
145         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
146                                 fname, lineno, 0 );
147                         return 1;
148                 }
149
150                 if ( meta_back_new_target( &mi->mi_targets[ i ] ) != 0 ) {
151                         Debug( LDAP_DEBUG_ANY,
152         "%s: line %d: unable to init server"
153         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
154                                 fname, lineno, 0 );
155                         return 1;
156                 }
157
158                 mt = mi->mi_targets[ i ];
159
160                 mt->mt_rebind_f = mi->mi_rebind_f;
161                 mt->mt_urllist_f = mi->mi_urllist_f;
162                 mt->mt_urllist_p = mt;
163
164                 mt->mt_nretries = mi->mi_nretries;
165                 mt->mt_quarantine = mi->mi_quarantine;
166                 if ( META_BACK_QUARANTINE( mi ) ) {
167                         ldap_pvt_thread_mutex_init( &mt->mt_quarantine_mutex );
168                 }
169                 mt->mt_flags = mi->mi_flags;
170                 mt->mt_version = mi->mi_version;
171                 mt->mt_network_timeout = mi->mi_network_timeout;
172                 mt->mt_bind_timeout = mi->mi_bind_timeout;
173                 for ( c = 0; c < SLAP_OP_LAST; c++ ) {
174                         mt->mt_timeout[ c ] = mi->mi_timeout[ c ];
175                 }
176
177                 for ( c = 1; c < argc; c++ ) {
178                         char    **tmpuris = ldap_str2charray( argv[ c ], "\t" );
179
180                         if ( tmpuris == NULL ) {
181                                 Debug( LDAP_DEBUG_ANY,
182         "%s: line %d: unable to parse URIs #%d"
183         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
184                                 fname, lineno, c - 1 );
185                                 return 1;
186                         }
187
188                         if ( c == 0 ) {
189                                 uris = tmpuris;
190
191                         } else {
192                                 ldap_charray_merge( &uris, tmpuris );
193                                 ldap_charray_free( tmpuris );
194                         }
195                 }
196
197                 for ( c = 0; uris[ c ] != NULL; c++ ) {
198                         char *tmpuri = NULL;
199
200                         /*
201                          * uri MUST be legal!
202                          */
203                         if ( ldap_url_parselist_ext( &ludp, uris[ c ], "\t",
204                                         LDAP_PVT_URL_PARSE_NONE ) != LDAP_SUCCESS
205                                 || ludp->lud_next != NULL )
206                         {
207                                 Debug( LDAP_DEBUG_ANY,
208                 "%s: line %d: unable to parse URI #%d"
209                 " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
210                                         fname, lineno, c );
211                                 ldap_charray_free( uris );
212                                 return 1;
213                         }
214
215                         if ( c == 0 ) {
216
217                                 /*
218                                  * uri MUST have the <dn> part!
219                                  */
220                                 if ( ludp->lud_dn == NULL ) {
221                                         Debug( LDAP_DEBUG_ANY,
222                         "%s: line %d: missing <naming context> "
223                         " in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
224                                                 fname, lineno, 0 );
225                                         ldap_free_urllist( ludp );
226                                         ldap_charray_free( uris );
227                                         return 1;
228                                 }
229
230                                 /*
231                                  * copies and stores uri and suffix
232                                  */
233                                 ber_str2bv( ludp->lud_dn, 0, 0, &dn );
234                                 rc = dnPrettyNormal( NULL, &dn, &mt->mt_psuffix,
235                                         &mt->mt_nsuffix, NULL );
236                                 if ( rc != LDAP_SUCCESS ) {
237                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
238                                                 "target \"%s\" DN is invalid\n",
239                                                 fname, lineno, argv[ 1 ] );
240                                         ldap_free_urllist( ludp );
241                                         ldap_charray_free( uris );
242                                         return( 1 );
243                                 }
244
245                                 ludp->lud_dn[ 0 ] = '\0';
246
247                                 switch ( ludp->lud_scope ) {
248                                 case LDAP_SCOPE_DEFAULT:
249                                         mt->mt_scope = LDAP_SCOPE_SUBTREE;
250                                         break;
251
252                                 case LDAP_SCOPE_SUBTREE:
253                                 case LDAP_SCOPE_SUBORDINATE:
254                                         mt->mt_scope = ludp->lud_scope;
255                                         break;
256
257                                 default:
258                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
259                                                 "invalid scope for target \"%s\"\n",
260                                                 fname, lineno, argv[ 1 ] );
261                                         ldap_free_urllist( ludp );
262                                         ldap_charray_free( uris );
263                                         return( 1 );
264                                 }
265
266                         } else {
267                                 /* check all, to apply the scope check on the first one */
268                                 if ( ludp->lud_dn != NULL && ludp->lud_dn[ 0 ] != '\0' ) {
269                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
270                                                 "multiple URIs must have "
271                                                 "no DN part\n",
272                                                 fname, lineno, 0 );
273                                         ldap_free_urllist( ludp );
274                                         ldap_charray_free( uris );
275                                         return( 1 );
276
277                                 }
278                         }
279
280                         tmpuri = ldap_url_list2urls( ludp );
281                         ldap_free_urllist( ludp );
282                         if ( tmpuri == NULL ) {
283                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: no memory?\n",
284                                         fname, lineno, 0 );
285                                 ldap_charray_free( uris );
286                                 return( 1 );
287                         }
288                         ldap_memfree( uris[ c ] );
289                         uris[ c ] = tmpuri;
290                 }
291
292                 mt->mt_uri = ldap_charray2str( uris, " " );
293                 ldap_charray_free( uris );
294                 if ( mt->mt_uri == NULL) {
295                         Debug( LDAP_DEBUG_ANY, "%s: line %d: no memory?\n",
296                                 fname, lineno, 0 );
297                         return( 1 );
298                 }
299                 
300                 /*
301                  * uri MUST be a branch of suffix!
302                  */
303                 for ( c = 0; !BER_BVISNULL( &be->be_nsuffix[ c ] ); c++ ) {
304                         if ( dnIsSuffix( &mt->mt_nsuffix, &be->be_nsuffix[ c ] ) ) {
305                                 break;
306                         }
307                 }
308
309                 if ( BER_BVISNULL( &be->be_nsuffix[ c ] ) ) {
310                         Debug( LDAP_DEBUG_ANY,
311         "%s: line %d: <naming context> of URI must be within the naming context of this database.\n",
312                                 fname, lineno, 0 );
313                         return 1;
314                 }
315
316         /* subtree-exclude */
317         } else if ( strcasecmp( argv[ 0 ], "subtree-exclude" ) == 0 ) {
318                 int             i = mi->mi_ntargets - 1;
319                 struct berval   dn, ndn;
320
321                 if ( i < 0 ) {
322                         Debug( LDAP_DEBUG_ANY,
323         "%s: line %d: need \"uri\" directive first\n",
324                                 fname, lineno, 0 );
325                         return 1;
326                 }
327                 
328                 switch ( argc ) {
329                 case 1:
330                         Debug( LDAP_DEBUG_ANY,
331         "%s: line %d: missing DN in \"subtree-exclude <DN>\" line\n",
332                             fname, lineno, 0 );
333                         return 1;
334
335                 case 2:
336                         break;
337
338                 default:
339                         Debug( LDAP_DEBUG_ANY,
340         "%s: line %d: too many args in \"subtree-exclude <DN>\" line\n",
341                             fname, lineno, 0 );
342                         return 1;
343                 }
344
345                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
346                 if ( dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL )
347                         != LDAP_SUCCESS )
348                 {
349                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
350                                         "subtree-exclude DN=\"%s\" is invalid\n",
351                                         fname, lineno, argv[ 1 ] );
352                         return( 1 );
353                 }
354
355                 if ( !dnIsSuffix( &ndn, &mi->mi_targets[ i ]->mt_nsuffix ) ) {
356                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
357                                         "subtree-exclude DN=\"%s\" "
358                                         "must be subtree of target\n",
359                                         fname, lineno, argv[ 1 ] );
360                         ber_memfree( ndn.bv_val );
361                         return( 1 );
362                 }
363
364                 if ( mi->mi_targets[ i ]->mt_subtree_exclude != NULL ) {
365                         int             j;
366
367                         for ( j = 0; !BER_BVISNULL( &mi->mi_targets[ i ]->mt_subtree_exclude[ j ] ); j++ )
368                         {
369                                 if ( dnIsSuffix( &mi->mi_targets[ i ]->mt_subtree_exclude[ j ], &ndn ) ) {
370                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
371                                                         "subtree-exclude DN=\"%s\" "
372                                                         "is suffix of another subtree-exclude\n",
373                                                         fname, lineno, argv[ 1 ] );
374                                         /* reject, because it might be superior
375                                          * to more than one subtree-exclude */
376                                         ber_memfree( ndn.bv_val );
377                                         return( 1 );
378
379                                 } else if ( dnIsSuffix( &ndn, &mi->mi_targets[ i ]->mt_subtree_exclude[ j ] ) ) {
380                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
381                                                         "another subtree-exclude is suffix of "
382                                                         "subtree-exclude DN=\"%s\"\n",
383                                                         fname, lineno, argv[ 1 ] );
384                                         ber_memfree( ndn.bv_val );
385                                         return( 0 );
386                                 }
387                         }
388                 }
389
390                 ber_bvarray_add( &mi->mi_targets[ i ]->mt_subtree_exclude, &ndn );
391
392         /* default target directive */
393         } else if ( strcasecmp( argv[ 0 ], "default-target" ) == 0 ) {
394                 int             i = mi->mi_ntargets - 1;
395                 
396                 if ( argc == 1 ) {
397                         if ( i < 0 ) {
398                                 Debug( LDAP_DEBUG_ANY,
399         "%s: line %d: \"default-target\" alone need be"
400         " inside a \"uri\" directive\n",
401                                         fname, lineno, 0 );
402                                 return 1;
403                         }
404                         mi->mi_defaulttarget = i;
405
406                 } else {
407                         if ( strcasecmp( argv[ 1 ], "none" ) == 0 ) {
408                                 if ( i >= 0 ) {
409                                         Debug( LDAP_DEBUG_ANY,
410         "%s: line %d: \"default-target none\""
411         " should go before uri definitions\n",
412                                                 fname, lineno, 0 );
413                                 }
414                                 mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
415
416                         } else {
417                                 
418                                 if ( lutil_atoi( &mi->mi_defaulttarget, argv[ 1 ] ) != 0
419                                         || mi->mi_defaulttarget < 0
420                                         || mi->mi_defaulttarget >= i - 1 )
421                                 {
422                                         Debug( LDAP_DEBUG_ANY,
423         "%s: line %d: illegal target number %d\n",
424                                                 fname, lineno, mi->mi_defaulttarget );
425                                         return 1;
426                                 }
427                         }
428                 }
429                 
430         /* ttl of dn cache */
431         } else if ( strcasecmp( argv[ 0 ], "dncache-ttl" ) == 0 ) {
432                 if ( argc != 2 ) {
433                         Debug( LDAP_DEBUG_ANY,
434         "%s: line %d: missing ttl in \"dncache-ttl <ttl>\" line\n",
435                                 fname, lineno, 0 );
436                         return 1;
437                 }
438                 
439                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
440                         mi->mi_cache.ttl = META_DNCACHE_FOREVER;
441
442                 } else if ( strcasecmp( argv[ 1 ], "disabled" ) == 0 ) {
443                         mi->mi_cache.ttl = META_DNCACHE_DISABLED;
444
445                 } else {
446                         unsigned long   t;
447
448                         if ( lutil_parse_time( argv[ 1 ], &t ) != 0 ) {
449                                 Debug( LDAP_DEBUG_ANY,
450         "%s: line %d: unable to parse ttl \"%s\" in \"dncache-ttl <ttl>\" line\n",
451                                         fname, lineno, argv[ 1 ] );
452                                 return 1;
453                         }
454                         mi->mi_cache.ttl = (time_t)t;
455                 }
456
457         /* network timeout when connecting to ldap servers */
458         } else if ( strcasecmp( argv[ 0 ], "network-timeout" ) == 0 ) {
459                 unsigned long   t;
460                 time_t          *tp = mi->mi_ntargets ?
461                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_network_timeout
462                                 : &mi->mi_network_timeout;
463
464                 if ( argc != 2 ) {
465                         Debug( LDAP_DEBUG_ANY,
466         "%s: line %d: missing network timeout in \"network-timeout <seconds>\" line\n",
467                                 fname, lineno, 0 );
468                         return 1;
469                 }
470
471                 if ( lutil_parse_time( argv[ 1 ], &t ) ) {
472                         Debug( LDAP_DEBUG_ANY,
473         "%s: line %d: unable to parse timeout \"%s\" in \"network-timeout <seconds>\" line\n",
474                                 fname, lineno, argv[ 1 ] );
475                         return 1;
476
477                 }
478
479                 *tp = (time_t)t;
480
481         /* idle timeout when connecting to ldap servers */
482         } else if ( strcasecmp( argv[ 0 ], "idle-timeout" ) == 0 ) {
483                 unsigned long   t;
484
485                 switch ( argc ) {
486                 case 1:
487                         Debug( LDAP_DEBUG_ANY,
488         "%s: line %d: missing timeout value in \"idle-timeout <seconds>\" line\n",
489                                 fname, lineno, 0 );
490                         return 1;
491                 case 2:
492                         break;
493                 default:
494                         Debug( LDAP_DEBUG_ANY,
495         "%s: line %d: extra cruft after timeout value in \"idle-timeout <seconds>\" line\n",
496                                 fname, lineno, 0 );
497                         return 1;
498                 }
499
500                 if ( lutil_parse_time( argv[ 1 ], &t ) ) {
501                         Debug( LDAP_DEBUG_ANY,
502         "%s: line %d: unable to parse timeout \"%s\" in \"idle-timeout <seconds>\" line\n",
503                                 fname, lineno, argv[ 1 ] );
504                         return 1;
505
506                 }
507
508                 mi->mi_idle_timeout = (time_t)t;
509
510         /* conn ttl */
511         } else if ( strcasecmp( argv[ 0 ], "conn-ttl" ) == 0 ) {
512                 unsigned long   t;
513
514                 switch ( argc ) {
515                 case 1:
516                         Debug( LDAP_DEBUG_ANY,
517         "%s: line %d: missing ttl value in \"conn-ttl <seconds>\" line\n",
518                                 fname, lineno, 0 );
519                         return 1;
520                 case 2:
521                         break;
522                 default:
523                         Debug( LDAP_DEBUG_ANY,
524         "%s: line %d: extra cruft after ttl value in \"conn-ttl <seconds>\" line\n",
525                                 fname, lineno, 0 );
526                         return 1;
527                 }
528
529                 if ( lutil_parse_time( argv[ 1 ], &t ) ) {
530                         Debug( LDAP_DEBUG_ANY,
531         "%s: line %d: unable to parse ttl \"%s\" in \"conn-ttl <seconds>\" line\n",
532                                 fname, lineno, argv[ 1 ] );
533                         return 1;
534
535                 }
536
537                 mi->mi_conn_ttl = (time_t)t;
538
539         /* bind timeout when connecting to ldap servers */
540         } else if ( strcasecmp( argv[ 0 ], "bind-timeout" ) == 0 ) {
541                 unsigned long   t;
542                 struct timeval  *tp = mi->mi_ntargets ?
543                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_bind_timeout
544                                 : &mi->mi_bind_timeout;
545
546                 switch ( argc ) {
547                 case 1:
548                         Debug( LDAP_DEBUG_ANY,
549         "%s: line %d: missing timeout value in \"bind-timeout <microseconds>\" line\n",
550                                 fname, lineno, 0 );
551                         return 1;
552                 case 2:
553                         break;
554                 default:
555                         Debug( LDAP_DEBUG_ANY,
556         "%s: line %d: extra cruft after timeout value in \"bind-timeout <microseconds>\" line\n",
557                                 fname, lineno, 0 );
558                         return 1;
559                 }
560
561                 if ( lutil_atoul( &t, argv[ 1 ] ) != 0 ) {
562                         Debug( LDAP_DEBUG_ANY,
563         "%s: line %d: unable to parse timeout \"%s\" in \"bind-timeout <microseconds>\" line\n",
564                                 fname, lineno, argv[ 1 ] );
565                         return 1;
566
567                 }
568
569                 tp->tv_sec = t/1000000;
570                 tp->tv_usec = t%1000000;
571
572         /* name to use for meta_back_group */
573         } else if ( strcasecmp( argv[ 0 ], "acl-authcDN" ) == 0
574                         || strcasecmp( argv[ 0 ], "binddn" ) == 0 )
575         {
576                 int             i = mi->mi_ntargets - 1;
577                 struct berval   dn;
578
579                 if ( i < 0 ) {
580                         Debug( LDAP_DEBUG_ANY,
581         "%s: line %d: need \"uri\" directive first\n",
582                                 fname, lineno, 0 );
583                         return 1;
584                 }
585                 
586                 if ( argc != 2 ) {
587                         Debug( LDAP_DEBUG_ANY,
588         "%s: line %d: missing name in \"binddn <name>\" line\n",
589                                 fname, lineno, 0 );
590                         return 1;
591                 }
592
593                 if ( strcasecmp( argv[ 0 ], "binddn" ) == 0 ) {
594                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
595                                 "\"binddn\" statement is deprecated; "
596                                 "use \"acl-authcDN\" instead\n",
597                                 fname, lineno, 0 );
598                         /* FIXME: some day we'll need to throw an error */
599                 }
600
601                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
602                 if ( dnNormalize( 0, NULL, NULL, &dn, &mi->mi_targets[ i ]->mt_binddn,
603                         NULL ) != LDAP_SUCCESS )
604                 {
605                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
606                                         "bind DN '%s' is invalid\n",
607                                         fname, lineno, argv[ 1 ] );
608                         return( 1 );
609                 }
610
611         /* password to use for meta_back_group */
612         } else if ( strcasecmp( argv[ 0 ], "acl-passwd" ) == 0
613                         || strcasecmp( argv[ 0 ], "bindpw" ) == 0 )
614         {
615                 int             i = mi->mi_ntargets - 1;
616
617                 if ( i < 0 ) {
618                         Debug( LDAP_DEBUG_ANY,
619         "%s: line %d: need \"uri\" directive first\n",
620                                 fname, lineno, 0 );
621                         return 1;
622                 }
623                 
624                 if ( argc != 2 ) {
625                         Debug( LDAP_DEBUG_ANY,
626         "%s: line %d: missing password in \"bindpw <password>\" line\n",
627                             fname, lineno, 0 );
628                         return 1;
629                 }
630
631                 if ( strcasecmp( argv[ 0 ], "bindpw" ) == 0 ) {
632                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
633                                 "\"bindpw\" statement is deprecated; "
634                                 "use \"acl-passwd\" instead\n",
635                                 fname, lineno, 0 );
636                         /* FIXME: some day we'll need to throw an error */
637                 }
638
639                 ber_str2bv( argv[ 1 ], 0L, 1, &mi->mi_targets[ i ]->mt_bindpw );
640                 
641         /* save bind creds for referral rebinds? */
642         } else if ( strcasecmp( argv[ 0 ], "rebind-as-user" ) == 0 ) {
643                 unsigned        *flagsp = mi->mi_ntargets ?
644                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
645                                 : &mi->mi_flags;
646
647                 if ( argc > 2 ) {
648                         Debug( LDAP_DEBUG_ANY,
649         "%s: line %d: \"rebind-as-user {NO|yes}\" takes 1 argument.\n",
650                             fname, lineno, 0 );
651                         return( 1 );
652                 }
653
654                 if ( argc == 1 ) {
655                         Debug( LDAP_DEBUG_ANY,
656         "%s: line %d: deprecated use of \"rebind-as-user {FALSE|true}\" with no arguments.\n",
657                             fname, lineno, 0 );
658                         *flagsp |= LDAP_BACK_F_SAVECRED;
659
660                 } else {
661                         switch ( check_true_false( argv[ 1 ] ) ) {
662                         case 0:
663                                 *flagsp &= ~LDAP_BACK_F_SAVECRED;
664                                 break;
665
666                         case 1:
667                                 *flagsp |= LDAP_BACK_F_SAVECRED;
668                                 break;
669
670                         default:
671                                 Debug( LDAP_DEBUG_ANY,
672         "%s: line %d: \"rebind-as-user {FALSE|true}\" unknown argument \"%s\".\n",
673                                     fname, lineno, argv[ 1 ] );
674                                 return 1;
675                         }
676                 }
677
678         } else if ( strcasecmp( argv[ 0 ], "chase-referrals" ) == 0 ) {
679                 unsigned        *flagsp = mi->mi_ntargets ?
680                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
681                                 : &mi->mi_flags;
682
683                 if ( argc != 2 ) {
684                         Debug( LDAP_DEBUG_ANY,
685         "%s: line %d: \"chase-referrals {TRUE|false}\" needs 1 argument.\n",
686                                 fname, lineno, 0 );
687                         return( 1 );
688                 }
689
690                 /* this is the default; we add it because the default might change... */
691                 switch ( check_true_false( argv[ 1 ] ) ) {
692                 case 1:
693                         *flagsp |= LDAP_BACK_F_CHASE_REFERRALS;
694                         break;
695
696                 case 0:
697                         *flagsp &= ~LDAP_BACK_F_CHASE_REFERRALS;
698                         break;
699
700                 default:
701                         Debug( LDAP_DEBUG_ANY,
702                 "%s: line %d: \"chase-referrals {TRUE|false}\": unknown argument \"%s\".\n",
703                                 fname, lineno, argv[ 1 ] );
704                         return( 1 );
705                 }
706         
707         } else if ( strcasecmp( argv[ 0 ], "tls" ) == 0 ) {
708                 unsigned        *flagsp = mi->mi_ntargets ?
709                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
710                                 : &mi->mi_flags;
711
712                 if ( argc != 2 ) {
713                         Debug( LDAP_DEBUG_ANY,
714                 "%s: line %d: \"tls <what>\" needs 1 argument.\n",
715                                 fname, lineno, 0 );
716                         return( 1 );
717                 }
718
719                 /* start */
720                 if ( strcasecmp( argv[ 1 ], "start" ) == 0 ) {
721                         *flagsp |= ( LDAP_BACK_F_USE_TLS | LDAP_BACK_F_TLS_CRITICAL );
722         
723                 /* try start tls */
724                 } else if ( strcasecmp( argv[ 1 ], "try-start" ) == 0 ) {
725                         *flagsp &= ~LDAP_BACK_F_TLS_CRITICAL;
726                         *flagsp |= LDAP_BACK_F_USE_TLS;
727         
728                 /* propagate start tls */
729                 } else if ( strcasecmp( argv[ 1 ], "propagate" ) == 0 ) {
730                         *flagsp |= ( LDAP_BACK_F_PROPAGATE_TLS | LDAP_BACK_F_TLS_CRITICAL );
731                 
732                 /* try start tls */
733                 } else if ( strcasecmp( argv[ 1 ], "try-propagate" ) == 0 ) {
734                         *flagsp &= ~LDAP_BACK_F_TLS_CRITICAL;
735                         *flagsp |= LDAP_BACK_F_PROPAGATE_TLS;
736
737                 } else {
738                         Debug( LDAP_DEBUG_ANY,
739                 "%s: line %d: \"tls <what>\": unknown argument \"%s\".\n",
740                                 fname, lineno, argv[ 1 ] );
741                         return( 1 );
742                 }
743
744         } else if ( strcasecmp( argv[ 0 ], "t-f-support" ) == 0 ) {
745                 unsigned        *flagsp = mi->mi_ntargets ?
746                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
747                                 : &mi->mi_flags;
748
749                 if ( argc != 2 ) {
750                         Debug( LDAP_DEBUG_ANY,
751                 "%s: line %d: \"t-f-support {FALSE|true|discover}\" needs 1 argument.\n",
752                                 fname, lineno, 0 );
753                         return( 1 );
754                 }
755
756                 switch ( check_true_false( argv[ 1 ] ) ) {
757                 case 0:
758                         *flagsp &= ~LDAP_BACK_F_T_F_MASK2;
759                         break;
760
761                 case 1:
762                         *flagsp |= LDAP_BACK_F_T_F;
763                         break;
764
765                 default:
766                         if ( strcasecmp( argv[ 1 ], "discover" ) == 0 ) {
767                                 *flagsp |= LDAP_BACK_F_T_F_DISCOVER;
768
769                         } else {
770                                 Debug( LDAP_DEBUG_ANY,
771         "%s: line %d: unknown value \"%s\" for \"t-f-support {no|yes|discover}\".\n",
772                                         fname, lineno, argv[ 1 ] );
773                                 return 1;
774                         }
775                         break;
776                 }
777
778         /* onerr? */
779         } else if ( strcasecmp( argv[ 0 ], "onerr" ) == 0 ) {
780                 if ( argc != 2 ) {
781                         Debug( LDAP_DEBUG_ANY,
782         "%s: line %d: \"onerr {CONTINUE|report|stop}\" takes 1 argument\n",
783                                 fname, lineno, 0 );
784                         return( 1 );
785                 }
786
787                 if ( strcasecmp( argv[ 1 ], "continue" ) == 0 ) {
788                         mi->mi_flags &= ~META_BACK_F_ONERR_MASK;
789
790                 } else if ( strcasecmp( argv[ 1 ], "stop" ) == 0 ) {
791                         mi->mi_flags |= META_BACK_F_ONERR_STOP;
792
793                 } else if ( strcasecmp( argv[ 1 ], "report" ) == 0 ) {
794                         mi->mi_flags |= META_BACK_F_ONERR_REPORT;
795
796                 } else {
797                         Debug( LDAP_DEBUG_ANY,
798         "%s: line %d: \"onerr {CONTINUE|report|stop}\": invalid arg \"%s\".\n",
799                                 fname, lineno, argv[ 1 ] );
800                         return 1;
801                 }
802
803         /* bind-defer? */
804         } else if ( strcasecmp( argv[ 0 ], "pseudoroot-bind-defer" ) == 0
805                 || strcasecmp( argv[ 0 ], "root-bind-defer" ) == 0 )
806         {
807                 if ( argc != 2 ) {
808                         Debug( LDAP_DEBUG_ANY,
809         "%s: line %d: \"[pseudo]root-bind-defer {TRUE|false}\" takes 1 argument\n",
810                                 fname, lineno, 0 );
811                         return( 1 );
812                 }
813
814                 switch ( check_true_false( argv[ 1 ] ) ) {
815                 case 0:
816                         mi->mi_flags &= ~META_BACK_F_DEFER_ROOTDN_BIND;
817                         break;
818
819                 case 1:
820                         mi->mi_flags |= META_BACK_F_DEFER_ROOTDN_BIND;
821                         break;
822
823                 default:
824                         Debug( LDAP_DEBUG_ANY,
825         "%s: line %d: \"[pseudo]root-bind-defer {TRUE|false}\": invalid arg \"%s\".\n",
826                                 fname, lineno, argv[ 1 ] );
827                         return 1;
828                 }
829
830         /* single-conn? */
831         } else if ( strcasecmp( argv[ 0 ], "single-conn" ) == 0 ) {
832                 if ( argc != 2 ) {
833                         Debug( LDAP_DEBUG_ANY,
834         "%s: line %d: \"single-conn {FALSE|true}\" takes 1 argument\n",
835                                 fname, lineno, 0 );
836                         return( 1 );
837                 }
838
839                 if ( mi->mi_ntargets > 0 ) {
840                         Debug( LDAP_DEBUG_ANY,
841         "%s: line %d: \"single-conn\" must appear before target definitions\n",
842                                 fname, lineno, 0 );
843                         return( 1 );
844                 }
845
846                 switch ( check_true_false( argv[ 1 ] ) ) {
847                 case 0:
848                         mi->mi_flags &= ~LDAP_BACK_F_SINGLECONN;
849                         break;
850
851                 case 1:
852                         mi->mi_flags |= LDAP_BACK_F_SINGLECONN;
853                         break;
854
855                 default:
856                         Debug( LDAP_DEBUG_ANY,
857         "%s: line %d: \"single-conn {FALSE|true}\": invalid arg \"%s\".\n",
858                                 fname, lineno, argv[ 1 ] );
859                         return 1;
860                 }
861
862         /* use-temporaries? */
863         } else if ( strcasecmp( argv[ 0 ], "use-temporary-conn" ) == 0 ) {
864                 if ( argc != 2 ) {
865                         Debug( LDAP_DEBUG_ANY,
866         "%s: line %d: \"use-temporary-conn {FALSE|true}\" takes 1 argument\n",
867                                 fname, lineno, 0 );
868                         return( 1 );
869                 }
870
871                 if ( mi->mi_ntargets > 0 ) {
872                         Debug( LDAP_DEBUG_ANY,
873         "%s: line %d: \"use-temporary-conn\" must appear before target definitions\n",
874                                 fname, lineno, 0 );
875                         return( 1 );
876                 }
877
878                 switch ( check_true_false( argv[ 1 ] ) ) {
879                 case 0:
880                         mi->mi_flags &= ~LDAP_BACK_F_USE_TEMPORARIES;
881                         break;
882
883                 case 1:
884                         mi->mi_flags |= LDAP_BACK_F_USE_TEMPORARIES;
885                         break;
886
887                 default:
888                         Debug( LDAP_DEBUG_ANY,
889         "%s: line %d: \"use-temporary-conn {FALSE|true}\": invalid arg \"%s\".\n",
890                                 fname, lineno, argv[ 1 ] );
891                         return 1;
892                 }
893
894         /* privileged connections pool max size ? */
895         } else if ( strcasecmp( argv[ 0 ], "conn-pool-max" ) == 0 ) {
896                 if ( argc != 2 ) {
897                         Debug( LDAP_DEBUG_ANY,
898         "%s: line %d: \"conn-pool-max <n>\" takes 1 argument\n",
899                                 fname, lineno, 0 );
900                         return( 1 );
901                 }
902
903                 if ( mi->mi_ntargets > 0 ) {
904                         Debug( LDAP_DEBUG_ANY,
905         "%s: line %d: \"conn-pool-max\" must appear before target definitions\n",
906                                 fname, lineno, 0 );
907                         return( 1 );
908                 }
909
910                 if ( lutil_atoi( &mi->mi_conn_priv_max, argv[1] )
911                         || mi->mi_conn_priv_max < LDAP_BACK_CONN_PRIV_MIN
912                         || mi->mi_conn_priv_max > LDAP_BACK_CONN_PRIV_MAX )
913                 {
914                         Debug( LDAP_DEBUG_ANY,
915         "%s: line %d: \"conn-pool-max <n>\": invalid arg \"%s\".\n",
916                                 fname, lineno, argv[ 1 ] );
917                         return 1;
918                 }
919
920         } else if ( strcasecmp( argv[ 0 ], "cancel" ) == 0 ) {
921                 unsigned        flag = 0;
922                 unsigned        *flagsp = mi->mi_ntargets ?
923                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
924                                 : &mi->mi_flags;
925
926                 if ( argc != 2 ) {
927                         Debug( LDAP_DEBUG_ANY,
928         "%s: line %d: \"cancel {abandon|ignore|exop}\" takes 1 argument\n",
929                                 fname, lineno, 0 );
930                         return( 1 );
931                 }
932
933                 if ( strcasecmp( argv[ 1 ], "abandon" ) == 0 ) {
934                         flag = LDAP_BACK_F_CANCEL_ABANDON;
935
936                 } else if ( strcasecmp( argv[ 1 ], "ignore" ) == 0 ) {
937                         flag = LDAP_BACK_F_CANCEL_IGNORE;
938
939                 } else if ( strcasecmp( argv[ 1 ], "exop" ) == 0 ) {
940                         flag = LDAP_BACK_F_CANCEL_EXOP;
941
942                 } else if ( strcasecmp( argv[ 1 ], "exop-discover" ) == 0 ) {
943                         flag = LDAP_BACK_F_CANCEL_EXOP_DISCOVER;
944
945                 } else {
946                         Debug( LDAP_DEBUG_ANY,
947         "%s: line %d: \"cancel {abandon|ignore|exop[-discover]}\": unknown mode \"%s\" \n",
948                                 fname, lineno, argv[ 1 ] );
949                         return( 1 );
950                 }
951
952                 *flagsp &= ~LDAP_BACK_F_CANCEL_MASK2;
953                 *flagsp |= flag;
954
955         } else if ( strcasecmp( argv[ 0 ], "timeout" ) == 0 ) {
956                 char    *sep;
957                 time_t  *tv = mi->mi_ntargets ?
958                                 mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_timeout
959                                 : mi->mi_timeout;
960                 int     c;
961
962                 if ( argc < 2 ) {
963                         Debug( LDAP_DEBUG_ANY,
964         "%s: line %d: \"timeout [{add|bind|delete|modify|modrdn}=]<val> [...]\" takes at least 1 argument\n",
965                                 fname, lineno, 0 );
966                         return( 1 );
967                 }
968
969                 for ( c = 1; c < argc; c++ ) {
970                         time_t          *t = NULL;
971                         unsigned long   val;
972
973                         sep = strchr( argv[ c ], '=' );
974                         if ( sep != NULL ) {
975                                 size_t  len = sep - argv[ c ];
976
977                                 if ( strncasecmp( argv[ c ], "bind", len ) == 0 ) {
978                                         t = &tv[ SLAP_OP_BIND ];
979                                 /* unbind makes little sense */
980                                 } else if ( strncasecmp( argv[ c ], "add", len ) == 0 ) {
981                                         t = &tv[ SLAP_OP_ADD ];
982                                 } else if ( strncasecmp( argv[ c ], "delete", len ) == 0 ) {
983                                         t = &tv[ SLAP_OP_DELETE ];
984                                 } else if ( strncasecmp( argv[ c ], "modrdn", len ) == 0 ) {
985                                         t = &tv[ SLAP_OP_MODRDN ];
986                                 } else if ( strncasecmp( argv[ c ], "modify", len ) == 0 ) {
987                                         t = &tv[ SLAP_OP_MODIFY ];
988                                 } else if ( strncasecmp( argv[ c ], "compare", len ) == 0 ) {
989                                         t = &tv[ SLAP_OP_COMPARE ];
990                                 } else if ( strncasecmp( argv[ c ], "search", len ) == 0 ) {
991                                         t = &tv[ SLAP_OP_SEARCH ];
992                                 /* abandon makes little sense */
993 #if 0                           /* not implemented yet */
994                                 } else if ( strncasecmp( argv[ c ], "extended", len ) == 0 ) {
995                                         t = &tv[ SLAP_OP_EXTENDED ];
996 #endif
997                                 } else {
998                                         char    buf[ SLAP_TEXT_BUFLEN ];
999                                         snprintf( buf, sizeof( buf ),
1000                                                 "unknown/unhandled operation \"%s\" for timeout #%d",
1001                                                 argv[ c ], c - 1 );
1002                                         Debug( LDAP_DEBUG_ANY,
1003                                                 "%s: line %d: %s.\n",
1004                                                 fname, lineno, buf );
1005                                         return 1;
1006                                 }
1007                                 sep++;
1008         
1009                         } else {
1010                                 sep = argv[ c ];
1011                         }
1012         
1013                         if ( lutil_parse_time( sep, &val ) != 0 ) {
1014                                 Debug( LDAP_DEBUG_ANY,
1015                 "%s: line %d: unable to parse value \"%s\" for timeout.\n",
1016                                         fname, lineno, sep );
1017                                 return 1;
1018                         }
1019                 
1020                         if ( t ) {
1021                                 *t = (time_t)val;
1022         
1023                         } else {
1024                                 int     i;
1025         
1026                                 for ( i = 0; i < SLAP_OP_LAST; i++ ) {
1027                                         tv[ i ] = (time_t)val;
1028                                 }
1029                         }
1030                 }
1031         
1032         /* name to use as pseudo-root dn */
1033         } else if ( strcasecmp( argv[ 0 ], "pseudorootdn" ) == 0 ) {
1034                 int             i = mi->mi_ntargets - 1;
1035
1036                 if ( i < 0 ) {
1037                         Debug( LDAP_DEBUG_ANY,
1038         "%s: line %d: need \"uri\" directive first\n",
1039                                 fname, lineno, 0 );
1040                         return 1;
1041                 }
1042                 
1043                 if ( argc != 2 ) {
1044                         Debug( LDAP_DEBUG_ANY,
1045         "%s: line %d: missing name in \"pseudorootdn <name>\" line\n",
1046                                 fname, lineno, 0 );
1047                         return 1;
1048                 }
1049
1050                 /*
1051                  * exact replacement:
1052                  *
1053
1054 idassert-bind   bindmethod=simple
1055                 binddn=<pseudorootdn>
1056                 credentials=<pseudorootpw>
1057                 mode=none
1058                 flags=non-prescriptive
1059 idassert-authzFrom      "dn:<rootdn>"
1060
1061                  * so that only when authc'd as <rootdn> the proxying occurs
1062                  * rebinding as the <pseudorootdn> without proxyAuthz.
1063                  */
1064
1065                 Debug( LDAP_DEBUG_ANY,
1066                         "%s: line %d: \"pseudorootdn\", \"pseudorootpw\" are no longer supported; "
1067                         "use \"idassert-bind\" and \"idassert-authzFrom\" instead.\n",
1068                         fname, lineno, 0 );
1069
1070                 {
1071                         char    binddn[ SLAP_TEXT_BUFLEN ];
1072                         char    *cargv[] = {
1073                                 "idassert-bind",
1074                                 "bindmethod=simple",
1075                                 NULL,
1076                                 "mode=none",
1077                                 "flags=non-prescriptive",
1078                                 NULL
1079                         };
1080                         int     cargc = 5;
1081                         int     rc;
1082
1083                         if ( BER_BVISNULL( &be->be_rootndn ) ) {
1084                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: \"pseudorootpw\": \"rootdn\" must be defined first.\n",
1085                                         fname, lineno, 0 );
1086                                 return 1;
1087                         }
1088
1089                         if ( sizeof( binddn ) <= (unsigned) snprintf( binddn,
1090                                         sizeof( binddn ), "binddn=%s", argv[ 1 ] ))
1091                         {
1092                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: \"pseudorootdn\" too long.\n",
1093                                         fname, lineno, 0 );
1094                                 return 1;
1095                         }
1096                         cargv[ 2 ] = binddn;
1097
1098                         rc = mi->mi_ldap_extra->idassert_parse_cf( fname, lineno, cargc, cargv, &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert );
1099                         if ( rc == 0 ) {
1100                                 struct berval   bv;
1101
1102                                 if ( mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz != NULL ) {
1103                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: \"idassert-authzFrom\" already defined (discarded).\n",
1104                                                 fname, lineno, 0 );
1105                                         ber_bvarray_free( mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz );
1106                                         mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz = NULL;
1107                                 }
1108
1109                                 assert( !BER_BVISNULL( &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authcDN ) );
1110
1111                                 bv.bv_len = STRLENOF( "dn:" ) + be->be_rootndn.bv_len;
1112                                 bv.bv_val = ber_memalloc( bv.bv_len + 1 );
1113                                 AC_MEMCPY( bv.bv_val, "dn:", STRLENOF( "dn:" ) );
1114                                 AC_MEMCPY( &bv.bv_val[ STRLENOF( "dn:" ) ], be->be_rootndn.bv_val, be->be_rootndn.bv_len + 1 );
1115
1116                                 ber_bvarray_add( &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz, &bv );
1117                         }
1118
1119                         return rc;
1120                 }
1121
1122         /* password to use as pseudo-root */
1123         } else if ( strcasecmp( argv[ 0 ], "pseudorootpw" ) == 0 ) {
1124                 int             i = mi->mi_ntargets - 1;
1125
1126                 if ( i < 0 ) {
1127                         Debug( LDAP_DEBUG_ANY,
1128         "%s: line %d: need \"uri\" directive first\n",
1129                                 fname, lineno, 0 );
1130                         return 1;
1131                 }
1132                 
1133                 if ( argc != 2 ) {
1134                         Debug( LDAP_DEBUG_ANY,
1135         "%s: line %d: missing password in \"pseudorootpw <password>\" line\n",
1136                             fname, lineno, 0 );
1137                         return 1;
1138                 }
1139
1140                 Debug( LDAP_DEBUG_ANY,
1141                         "%s: line %d: \"pseudorootdn\", \"pseudorootpw\" are no longer supported; "
1142                         "use \"idassert-bind\" and \"idassert-authzFrom\" instead.\n",
1143                         fname, lineno, 0 );
1144
1145                 if ( BER_BVISNULL( &mi->mi_targets[ i ]->mt_idassert_authcDN ) ) {
1146                         Debug( LDAP_DEBUG_ANY, "%s: line %d: \"pseudorootpw\": \"pseudorootdn\" must be defined first.\n",
1147                                 fname, lineno, 0 );
1148                         return 1;
1149                 }
1150
1151                 if ( !BER_BVISNULL( &mi->mi_targets[ i ]->mt_idassert_passwd ) ) {
1152                         memset( mi->mi_targets[ i ]->mt_idassert_passwd.bv_val, 0,
1153                                 mi->mi_targets[ i ]->mt_idassert_passwd.bv_len );
1154                         ber_memfree( mi->mi_targets[ i ]->mt_idassert_passwd.bv_val );
1155                 }
1156                 ber_str2bv( argv[ 1 ], 0, 1, &mi->mi_targets[ i ]->mt_idassert_passwd );
1157
1158         /* idassert-bind */
1159         } else if ( strcasecmp( argv[ 0 ], "idassert-bind" ) == 0 ) {
1160                 if ( mi->mi_ntargets == 0 ) {
1161                         Debug( LDAP_DEBUG_ANY,
1162                                 "%s: line %d: \"idassert-bind\" "
1163                                 "must appear inside a target specification.\n",
1164                                 fname, lineno, 0 );
1165                         return 1;
1166                 }
1167
1168                 return mi->mi_ldap_extra->idassert_parse_cf( fname, lineno, argc, argv, &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert );
1169
1170         /* idassert-authzFrom */
1171         } else if ( strcasecmp( argv[ 0 ], "idassert-authzFrom" ) == 0 ) {
1172                 if ( mi->mi_ntargets == 0 ) {
1173                         Debug( LDAP_DEBUG_ANY,
1174                                 "%s: line %d: \"idassert-bind\" "
1175                                 "must appear inside a target specification.\n",
1176                                 fname, lineno, 0 );
1177                         return 1;
1178                 }
1179
1180                 switch ( argc ) {
1181                 case 2:
1182                         break;
1183
1184                 case 1:
1185                         Debug( LDAP_DEBUG_ANY,
1186                                 "%s: line %d: missing <id> in \"idassert-authzFrom <id>\".\n",
1187                                 fname, lineno, 0 );
1188                         return 1;
1189
1190                 default:
1191                         Debug( LDAP_DEBUG_ANY,
1192                                 "%s: line %d: extra cruft after <id> in \"idassert-authzFrom <id>\".\n",
1193                                 fname, lineno, 0 );
1194                         return 1;
1195                 }
1196
1197                 return mi->mi_ldap_extra->idassert_authzfrom_parse_cf( fname, lineno, argv[ 1 ], &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert );
1198
1199         /* quarantine */
1200         } else if ( strcasecmp( argv[ 0 ], "quarantine" ) == 0 ) {
1201                 char                    buf[ SLAP_TEXT_BUFLEN ] = { '\0' };
1202                 slap_retry_info_t       *ri = mi->mi_ntargets ?
1203                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_quarantine
1204                                 : &mi->mi_quarantine;
1205
1206                 if ( ( mi->mi_ntargets == 0 && META_BACK_QUARANTINE( mi ) )
1207                         || ( mi->mi_ntargets > 0 && META_BACK_TGT_QUARANTINE( mi->mi_targets[ mi->mi_ntargets - 1 ] ) ) )
1208                 {
1209                         Debug( LDAP_DEBUG_ANY,
1210                                 "%s: line %d: quarantine already defined.\n",
1211                                 fname, lineno, 0 );
1212                         return 1;
1213                 }
1214
1215                 switch ( argc ) {
1216                 case 2:
1217                         break;
1218
1219                 case 1:
1220                         Debug( LDAP_DEBUG_ANY,
1221                                 "%s: line %d: missing arg in \"quarantine <pattern list>\".\n",
1222                                 fname, lineno, 0 );
1223                         return 1;
1224
1225                 default:
1226                         Debug( LDAP_DEBUG_ANY,
1227                                 "%s: line %d: extra cruft after \"quarantine <pattern list>\".\n",
1228                                 fname, lineno, 0 );
1229                         return 1;
1230                 }
1231
1232                 if ( ri != &mi->mi_quarantine ) {
1233                         ri->ri_interval = NULL;
1234                         ri->ri_num = NULL;
1235                 }
1236
1237                 if ( mi->mi_ntargets > 0 && !META_BACK_QUARANTINE( mi ) ) {
1238                         ldap_pvt_thread_mutex_init( &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_quarantine_mutex );
1239                 }
1240
1241                 if ( mi->mi_ldap_extra->retry_info_parse( argv[ 1 ], ri, buf, sizeof( buf ) ) ) {
1242                         Debug( LDAP_DEBUG_ANY,
1243                                 "%s line %d: %s.\n",
1244                                 fname, lineno, buf );
1245                         return 1;
1246                 }
1247
1248                 if ( mi->mi_ntargets == 0 ) {
1249                         mi->mi_flags |= LDAP_BACK_F_QUARANTINE;
1250
1251                 } else {
1252                         mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags |= LDAP_BACK_F_QUARANTINE;
1253                 }
1254
1255 #ifdef SLAP_CONTROL_X_SESSION_TRACKING
1256         /* session tracking request */
1257         } else if ( strcasecmp( argv[ 0 ], "session-tracking-request" ) == 0 ) {
1258                 unsigned        *flagsp = mi->mi_ntargets ?
1259                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
1260                                 : &mi->mi_flags;
1261
1262                 if ( argc != 2 ) {
1263                         Debug( LDAP_DEBUG_ANY,
1264         "%s: line %d: \"session-tracking-request {TRUE|false}\" needs 1 argument.\n",
1265                                 fname, lineno, 0 );
1266                         return( 1 );
1267                 }
1268
1269                 /* this is the default; we add it because the default might change... */
1270                 switch ( check_true_false( argv[ 1 ] ) ) {
1271                 case 1:
1272                         *flagsp |= LDAP_BACK_F_ST_REQUEST;
1273                         break;
1274
1275                 case 0:
1276                         *flagsp &= ~LDAP_BACK_F_ST_REQUEST;
1277                         break;
1278
1279                 default:
1280                         Debug( LDAP_DEBUG_ANY,
1281                 "%s: line %d: \"session-tracking-request {TRUE|false}\": unknown argument \"%s\".\n",
1282                                 fname, lineno, argv[ 1 ] );
1283                         return( 1 );
1284                 }
1285 #endif /* SLAP_CONTROL_X_SESSION_TRACKING */
1286         
1287         /* dn massaging */
1288         } else if ( strcasecmp( argv[ 0 ], "suffixmassage" ) == 0 ) {
1289                 BackendDB       *tmp_bd;
1290                 int             i = mi->mi_ntargets - 1, c, rc;
1291                 struct berval   dn, nvnc, pvnc, nrnc, prnc;
1292
1293                 if ( i < 0 ) {
1294                         Debug( LDAP_DEBUG_ANY,
1295         "%s: line %d: need \"uri\" directive first\n",
1296                                 fname, lineno, 0 );
1297                         return 1;
1298                 }
1299                 
1300                 /*
1301                  * syntax:
1302                  * 
1303                  *      suffixmassage <suffix> <massaged suffix>
1304                  *
1305                  * the <suffix> field must be defined as a valid suffix
1306                  * (or suffixAlias?) for the current database;
1307                  * the <massaged suffix> shouldn't have already been
1308                  * defined as a valid suffix or suffixAlias for the 
1309                  * current server
1310                  */
1311                 if ( argc != 3 ) {
1312                         Debug( LDAP_DEBUG_ANY,
1313         "%s: line %d: syntax is \"suffixMassage <suffix> <massaged suffix>\"\n",
1314                                 fname, lineno, 0 );
1315                         return 1;
1316                 }
1317
1318                 ber_str2bv( argv[ 1 ], 0, 0, &dn );
1319                 if ( dnPrettyNormal( NULL, &dn, &pvnc, &nvnc, NULL ) != LDAP_SUCCESS ) {
1320                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1321                                         "suffix \"%s\" is invalid\n",
1322                                         fname, lineno, argv[ 1 ] );
1323                         return 1;
1324                 }
1325
1326                 for ( c = 0; !BER_BVISNULL( &be->be_nsuffix[ c ] ); c++ ) {
1327                         if ( dnIsSuffix( &nvnc, &be->be_nsuffix[ 0 ] ) ) {
1328                                 break;
1329                         }
1330                 }
1331
1332                 if ( BER_BVISNULL( &be->be_nsuffix[ c ] ) ) {
1333                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1334         "<suffix> \"%s\" must be within the database naming context, in "
1335         "\"suffixMassage <suffix> <massaged suffix>\"\n",
1336                                 fname, lineno, pvnc.bv_val );
1337                         free( pvnc.bv_val );
1338                         free( nvnc.bv_val );
1339                         return 1;                                               
1340                 }
1341
1342                 ber_str2bv( argv[ 2 ], 0, 0, &dn );
1343                 if ( dnPrettyNormal( NULL, &dn, &prnc, &nrnc, NULL ) != LDAP_SUCCESS ) {
1344                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1345                                 "massaged suffix \"%s\" is invalid\n",
1346                                 fname, lineno, argv[ 2 ] );
1347                         free( pvnc.bv_val );
1348                         free( nvnc.bv_val );
1349                         return 1;
1350                 }
1351         
1352                 tmp_bd = select_backend( &nrnc, 0 );
1353                 if ( tmp_bd != NULL && tmp_bd->be_private == be->be_private ) {
1354                         Debug( LDAP_DEBUG_ANY, 
1355         "%s: line %d: warning: <massaged suffix> \"%s\" resolves to this database, in "
1356         "\"suffixMassage <suffix> <massaged suffix>\"\n",
1357                                 fname, lineno, prnc.bv_val );
1358                 }
1359
1360                 /*
1361                  * The suffix massaging is emulated by means of the
1362                  * rewrite capabilities
1363                  */
1364                 rc = suffix_massage_config( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
1365                                 &pvnc, &nvnc, &prnc, &nrnc );
1366
1367                 free( pvnc.bv_val );
1368                 free( nvnc.bv_val );
1369                 free( prnc.bv_val );
1370                 free( nrnc.bv_val );
1371
1372                 return rc;
1373                 
1374         /* rewrite stuff ... */
1375         } else if ( strncasecmp( argv[ 0 ], "rewrite", 7 ) == 0 ) {
1376                 int             i = mi->mi_ntargets - 1;
1377
1378                 if ( i < 0 ) {
1379                         Debug( LDAP_DEBUG_ANY, "%s: line %d: \"rewrite\" "
1380                                 "statement outside target definition.\n",
1381                                 fname, lineno, 0 );
1382                         return 1;
1383                 }
1384                 
1385                 return rewrite_parse( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
1386                                 fname, lineno, argc, argv );
1387
1388         /* objectclass/attribute mapping */
1389         } else if ( strcasecmp( argv[ 0 ], "map" ) == 0 ) {
1390                 int             i = mi->mi_ntargets - 1;
1391
1392                 if ( i < 0 ) {
1393                         Debug( LDAP_DEBUG_ANY,
1394         "%s: line %d: need \"uri\" directive first\n",
1395                                 fname, lineno, 0 );
1396                         return 1;
1397                 }
1398
1399                 return ldap_back_map_config( &mi->mi_targets[ i ]->mt_rwmap.rwm_oc, 
1400                                 &mi->mi_targets[ i ]->mt_rwmap.rwm_at,
1401                                 fname, lineno, argc, argv );
1402
1403         } else if ( strcasecmp( argv[ 0 ], "nretries" ) == 0 ) {
1404                 int             i = mi->mi_ntargets - 1;
1405                 int             nretries = META_RETRY_UNDEFINED;
1406
1407                 if ( argc != 2 ) {
1408                         Debug( LDAP_DEBUG_ANY,
1409         "%s: line %d: need value in \"nretries <value>\"\n",
1410                                 fname, lineno, 0 );
1411                         return 1;
1412                 }
1413
1414                 if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
1415                         nretries = META_RETRY_FOREVER;
1416
1417                 } else if ( strcasecmp( argv[ 1 ], "never" ) == 0 ) {
1418                         nretries = META_RETRY_NEVER;
1419
1420                 } else {
1421                         if ( lutil_atoi( &nretries, argv[ 1 ] ) != 0 ) {
1422                                 Debug( LDAP_DEBUG_ANY,
1423         "%s: line %d: unable to parse value \"%s\" in \"nretries <value>\"\n",
1424                                         fname, lineno, argv[ 1 ] );
1425                                 return 1;
1426                         }
1427                 }
1428
1429                 if ( i < 0 ) {
1430                         mi->mi_nretries = nretries;
1431
1432                 } else {
1433                         mi->mi_targets[ i ]->mt_nretries = nretries;
1434                 }
1435
1436         } else if ( strcasecmp( argv[ 0 ], "protocol-version" ) == 0 ) {
1437                 int     *version = mi->mi_ntargets ?
1438                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_version
1439                                 : &mi->mi_version;
1440
1441                 if ( argc != 2 ) {
1442                         Debug( LDAP_DEBUG_ANY,
1443         "%s: line %d: need value in \"protocol-version <version>\"\n",
1444                                 fname, lineno, 0 );
1445                         return 1;
1446                 }
1447
1448                 if ( lutil_atoi( version, argv[ 1 ] ) != 0 ) {
1449                         Debug( LDAP_DEBUG_ANY,
1450         "%s: line %d: unable to parse version \"%s\" in \"protocol-version <version>\"\n",
1451                                 fname, lineno, argv[ 1 ] );
1452                         return 1;
1453                 }
1454
1455                 if ( *version != 0 && ( *version < LDAP_VERSION_MIN || *version > LDAP_VERSION_MAX ) ) {
1456                         Debug( LDAP_DEBUG_ANY,
1457         "%s: line %d: unsupported version \"%s\" in \"protocol-version <version>\"\n",
1458                                 fname, lineno, argv[ 1 ] );
1459                         return 1;
1460                 }
1461
1462         /* do not return search references */
1463         } else if ( strcasecmp( argv[ 0 ], "norefs" ) == 0 ) {
1464                 unsigned        *flagsp = mi->mi_ntargets ?
1465                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
1466                                 : &mi->mi_flags;
1467
1468                 if ( argc != 2 ) {
1469                         Debug( LDAP_DEBUG_ANY,
1470         "%s: line %d: \"norefs {TRUE|false}\" needs 1 argument.\n",
1471                                 fname, lineno, 0 );
1472                         return( 1 );
1473                 }
1474
1475                 /* this is the default; we add it because the default might change... */
1476                 switch ( check_true_false( argv[ 1 ] ) ) {
1477                 case 1:
1478                         *flagsp |= LDAP_BACK_F_NOREFS;
1479                         break;
1480
1481                 case 0:
1482                         *flagsp &= ~LDAP_BACK_F_NOREFS;
1483                         break;
1484
1485                 default:
1486                         Debug( LDAP_DEBUG_ANY,
1487                 "%s: line %d: \"norefs {TRUE|false}\": unknown argument \"%s\".\n",
1488                                 fname, lineno, argv[ 1 ] );
1489                         return( 1 );
1490                 }
1491
1492         /* do not propagate undefined search filters */
1493         } else if ( strcasecmp( argv[ 0 ], "noundeffilter" ) == 0 ) {
1494                 unsigned        *flagsp = mi->mi_ntargets ?
1495                                 &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
1496                                 : &mi->mi_flags;
1497
1498                 if ( argc != 2 ) {
1499                         Debug( LDAP_DEBUG_ANY,
1500         "%s: line %d: \"noundeffilter {TRUE|false}\" needs 1 argument.\n",
1501                                 fname, lineno, 0 );
1502                         return( 1 );
1503                 }
1504
1505                 /* this is the default; we add it because the default might change... */
1506                 switch ( check_true_false( argv[ 1 ] ) ) {
1507                 case 1:
1508                         *flagsp |= LDAP_BACK_F_NOUNDEFFILTER;
1509                         break;
1510
1511                 case 0:
1512                         *flagsp &= ~LDAP_BACK_F_NOUNDEFFILTER;
1513                         break;
1514
1515                 default:
1516                         Debug( LDAP_DEBUG_ANY,
1517                 "%s: line %d: \"noundeffilter {TRUE|false}\": unknown argument \"%s\".\n",
1518                                 fname, lineno, argv[ 1 ] );
1519                         return( 1 );
1520                 }
1521
1522         /* anything else */
1523         } else {
1524                 return SLAP_CONF_UNKNOWN;
1525         }
1526         return 0;
1527 }
1528
1529 int
1530 ldap_back_map_config(
1531                 struct ldapmap  *oc_map,
1532                 struct ldapmap  *at_map,
1533                 const char      *fname,
1534                 int             lineno,
1535                 int             argc,
1536                 char            **argv )
1537 {
1538         struct ldapmap          *map;
1539         struct ldapmapping      *mapping;
1540         char                    *src, *dst;
1541         int                     is_oc = 0;
1542
1543         if ( argc < 3 || argc > 4 ) {
1544                 Debug( LDAP_DEBUG_ANY,
1545         "%s: line %d: syntax is \"map {objectclass | attribute} [<local> | *] {<foreign> | *}\"\n",
1546                         fname, lineno, 0 );
1547                 return 1;
1548         }
1549
1550         if ( strcasecmp( argv[ 1 ], "objectclass" ) == 0 ) {
1551                 map = oc_map;
1552                 is_oc = 1;
1553
1554         } else if ( strcasecmp( argv[ 1 ], "attribute" ) == 0 ) {
1555                 map = at_map;
1556
1557         } else {
1558                 Debug( LDAP_DEBUG_ANY, "%s: line %d: syntax is "
1559                         "\"map {objectclass | attribute} [<local> | *] "
1560                         "{<foreign> | *}\"\n",
1561                         fname, lineno, 0 );
1562                 return 1;
1563         }
1564
1565         if ( !is_oc && map->map == NULL ) {
1566                 /* only init if required */
1567                 ldap_back_map_init( map, &mapping );
1568         }
1569
1570         if ( strcmp( argv[ 2 ], "*" ) == 0 ) {
1571                 if ( argc < 4 || strcmp( argv[ 3 ], "*" ) == 0 ) {
1572                         map->drop_missing = ( argc < 4 );
1573                         goto success_return;
1574                 }
1575                 src = dst = argv[ 3 ];
1576
1577         } else if ( argc < 4 ) {
1578                 src = "";
1579                 dst = argv[ 2 ];
1580
1581         } else {
1582                 src = argv[ 2 ];
1583                 dst = ( strcmp( argv[ 3 ], "*" ) == 0 ? src : argv[ 3 ] );
1584         }
1585
1586         if ( ( map == at_map )
1587                 && ( strcasecmp( src, "objectclass" ) == 0
1588                         || strcasecmp( dst, "objectclass" ) == 0 ) )
1589         {
1590                 Debug( LDAP_DEBUG_ANY,
1591                         "%s: line %d: objectclass attribute cannot be mapped\n",
1592                         fname, lineno, 0 );
1593         }
1594
1595         mapping = (struct ldapmapping *)ch_calloc( 2,
1596                 sizeof(struct ldapmapping) );
1597         if ( mapping == NULL ) {
1598                 Debug( LDAP_DEBUG_ANY,
1599                         "%s: line %d: out of memory\n",
1600                         fname, lineno, 0 );
1601                 return 1;
1602         }
1603         ber_str2bv( src, 0, 1, &mapping[ 0 ].src );
1604         ber_str2bv( dst, 0, 1, &mapping[ 0 ].dst );
1605         mapping[ 1 ].src = mapping[ 0 ].dst;
1606         mapping[ 1 ].dst = mapping[ 0 ].src;
1607
1608         /*
1609          * schema check
1610          */
1611         if ( is_oc ) {
1612                 if ( src[ 0 ] != '\0' ) {
1613                         if ( oc_bvfind( &mapping[ 0 ].src ) == NULL ) {
1614                                 Debug( LDAP_DEBUG_ANY,
1615         "%s: line %d: warning, source objectClass '%s' "
1616         "should be defined in schema\n",
1617                                         fname, lineno, src );
1618
1619                                 /*
1620                                  * FIXME: this should become an err
1621                                  */
1622                                 goto error_return;
1623                         }
1624                 }
1625
1626                 if ( oc_bvfind( &mapping[ 0 ].dst ) == NULL ) {
1627                         Debug( LDAP_DEBUG_ANY,
1628         "%s: line %d: warning, destination objectClass '%s' "
1629         "is not defined in schema\n",
1630                                 fname, lineno, dst );
1631                 }
1632         } else {
1633                 int                     rc;
1634                 const char              *text = NULL;
1635                 AttributeDescription    *ad = NULL;
1636
1637                 if ( src[ 0 ] != '\0' ) {
1638                         rc = slap_bv2ad( &mapping[ 0 ].src, &ad, &text );
1639                         if ( rc != LDAP_SUCCESS ) {
1640                                 Debug( LDAP_DEBUG_ANY,
1641         "%s: line %d: warning, source attributeType '%s' "
1642         "should be defined in schema\n",
1643                                         fname, lineno, src );
1644
1645                                 /*
1646                                  * FIXME: this should become an err
1647                                  */
1648                                 /*
1649                                  * we create a fake "proxied" ad 
1650                                  * and add it here.
1651                                  */
1652
1653                                 rc = slap_bv2undef_ad( &mapping[ 0 ].src,
1654                                                 &ad, &text, SLAP_AD_PROXIED );
1655                                 if ( rc != LDAP_SUCCESS ) {
1656                                         char    buf[ SLAP_TEXT_BUFLEN ];
1657
1658                                         snprintf( buf, sizeof( buf ),
1659                                                 "source attributeType \"%s\": %d (%s)",
1660                                                 src, rc, text ? text : "" );
1661                                         Debug( LDAP_DEBUG_ANY,
1662                                                 "%s: line %d: %s\n",
1663                                                 fname, lineno, buf );
1664                                         goto error_return;
1665                                 }
1666                         }
1667
1668                         ad = NULL;
1669                 }
1670
1671                 rc = slap_bv2ad( &mapping[ 0 ].dst, &ad, &text );
1672                 if ( rc != LDAP_SUCCESS ) {
1673                         Debug( LDAP_DEBUG_ANY,
1674         "%s: line %d: warning, destination attributeType '%s' "
1675         "is not defined in schema\n",
1676                                 fname, lineno, dst );
1677
1678                         /*
1679                          * we create a fake "proxied" ad 
1680                          * and add it here.
1681                          */
1682
1683                         rc = slap_bv2undef_ad( &mapping[ 0 ].dst,
1684                                         &ad, &text, SLAP_AD_PROXIED );
1685                         if ( rc != LDAP_SUCCESS ) {
1686                                 char    buf[ SLAP_TEXT_BUFLEN ];
1687
1688                                 snprintf( buf, sizeof( buf ),
1689                                         "source attributeType \"%s\": %d (%s)\n",
1690                                         dst, rc, text ? text : "" );
1691                                 Debug( LDAP_DEBUG_ANY,
1692                                         "%s: line %d: %s\n",
1693                                         fname, lineno, buf );
1694                                 return 1;
1695                         }
1696                 }
1697         }
1698
1699         if ( (src[ 0 ] != '\0' && avl_find( map->map, (caddr_t)&mapping[ 0 ], mapping_cmp ) != NULL)
1700                         || avl_find( map->remap, (caddr_t)&mapping[ 1 ], mapping_cmp ) != NULL)
1701         {
1702                 Debug( LDAP_DEBUG_ANY,
1703                         "%s: line %d: duplicate mapping found.\n",
1704                         fname, lineno, 0 );
1705                 goto error_return;
1706         }
1707
1708         if ( src[ 0 ] != '\0' ) {
1709                 avl_insert( &map->map, (caddr_t)&mapping[ 0 ],
1710                                         mapping_cmp, mapping_dup );
1711         }
1712         avl_insert( &map->remap, (caddr_t)&mapping[ 1 ],
1713                                 mapping_cmp, mapping_dup );
1714
1715 success_return:;
1716         return 0;
1717
1718 error_return:;
1719         if ( mapping ) {
1720                 ch_free( mapping[ 0 ].src.bv_val );
1721                 ch_free( mapping[ 0 ].dst.bv_val );
1722                 ch_free( mapping );
1723         }
1724
1725         return 1;
1726 }
1727
1728
1729 #ifdef ENABLE_REWRITE
1730 static char *
1731 suffix_massage_regexize( const char *s )
1732 {
1733         char *res, *ptr;
1734         const char *p, *r;
1735         int i;
1736
1737         if ( s[ 0 ] == '\0' ) {
1738                 return ch_strdup( "^(.+)$" );
1739         }
1740
1741         for ( i = 0, p = s; 
1742                         ( r = strchr( p, ',' ) ) != NULL; 
1743                         p = r + 1, i++ )
1744                 ;
1745
1746         res = ch_calloc( sizeof( char ),
1747                         strlen( s )
1748                         + STRLENOF( "((.+),)?" )
1749                         + STRLENOF( "[ ]?" ) * i
1750                         + STRLENOF( "$" ) + 1 );
1751
1752         ptr = lutil_strcopy( res, "((.+),)?" );
1753         for ( i = 0, p = s;
1754                         ( r = strchr( p, ',' ) ) != NULL;
1755                         p = r + 1 , i++ ) {
1756                 ptr = lutil_strncopy( ptr, p, r - p + 1 );
1757                 ptr = lutil_strcopy( ptr, "[ ]?" );
1758
1759                 if ( r[ 1 ] == ' ' ) {
1760                         r++;
1761                 }
1762         }
1763         ptr = lutil_strcopy( ptr, p );
1764         ptr[ 0 ] = '$';
1765         ptr++;
1766         ptr[ 0 ] = '\0';
1767
1768         return res;
1769 }
1770
1771 static char *
1772 suffix_massage_patternize( const char *s, const char *p )
1773 {
1774         ber_len_t       len;
1775         char            *res, *ptr;
1776
1777         len = strlen( p );
1778
1779         if ( s[ 0 ] == '\0' ) {
1780                 len++;
1781         }
1782
1783         res = ch_calloc( sizeof( char ), len + STRLENOF( "%1" ) + 1 );
1784         if ( res == NULL ) {
1785                 return NULL;
1786         }
1787
1788         ptr = lutil_strcopy( res, ( p[ 0 ] == '\0' ? "%2" : "%1" ) );
1789         if ( s[ 0 ] == '\0' ) {
1790                 ptr[ 0 ] = ',';
1791                 ptr++;
1792         }
1793         lutil_strcopy( ptr, p );
1794
1795         return res;
1796 }
1797
1798 int
1799 suffix_massage_config( 
1800                 struct rewrite_info *info,
1801                 struct berval *pvnc,
1802                 struct berval *nvnc,
1803                 struct berval *prnc,
1804                 struct berval *nrnc
1805 )
1806 {
1807         char *rargv[ 5 ];
1808         int line = 0;
1809
1810         rargv[ 0 ] = "rewriteEngine";
1811         rargv[ 1 ] = "on";
1812         rargv[ 2 ] = NULL;
1813         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1814
1815         rargv[ 0 ] = "rewriteContext";
1816         rargv[ 1 ] = "default";
1817         rargv[ 2 ] = NULL;
1818         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1819
1820         rargv[ 0 ] = "rewriteRule";
1821         rargv[ 1 ] = suffix_massage_regexize( pvnc->bv_val );
1822         rargv[ 2 ] = suffix_massage_patternize( pvnc->bv_val, prnc->bv_val );
1823         rargv[ 3 ] = ":";
1824         rargv[ 4 ] = NULL;
1825         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1826         ch_free( rargv[ 1 ] );
1827         ch_free( rargv[ 2 ] );
1828
1829         if ( BER_BVISEMPTY( pvnc ) ) {
1830                 rargv[ 0 ] = "rewriteRule";
1831                 rargv[ 1 ] = "^$";
1832                 rargv[ 2 ] = prnc->bv_val;
1833                 rargv[ 3 ] = ":";
1834                 rargv[ 4 ] = NULL;
1835                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1836         }
1837         
1838         rargv[ 0 ] = "rewriteContext";
1839         rargv[ 1 ] = "searchEntryDN";
1840         rargv[ 2 ] = NULL;
1841         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1842
1843         rargv[ 0 ] = "rewriteRule";
1844         rargv[ 1 ] = suffix_massage_regexize( prnc->bv_val );
1845         rargv[ 2 ] = suffix_massage_patternize( prnc->bv_val, pvnc->bv_val );
1846         rargv[ 3 ] = ":";
1847         rargv[ 4 ] = NULL;
1848         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1849         ch_free( rargv[ 1 ] );
1850         ch_free( rargv[ 2 ] );
1851
1852         if ( BER_BVISEMPTY( prnc ) ) {
1853                 rargv[ 0 ] = "rewriteRule";
1854                 rargv[ 1 ] = "^$";
1855                 rargv[ 2 ] = pvnc->bv_val;
1856                 rargv[ 3 ] = ":";
1857                 rargv[ 4 ] = NULL;
1858                 rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1859         }
1860         
1861         /* backward compatibility */
1862         rargv[ 0 ] = "rewriteContext";
1863         rargv[ 1 ] = "searchResult";
1864         rargv[ 2 ] = "alias";
1865         rargv[ 3 ] = "searchEntryDN";
1866         rargv[ 4 ] = NULL;
1867         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1868         
1869         rargv[ 0 ] = "rewriteContext";
1870         rargv[ 1 ] = "matchedDN";
1871         rargv[ 2 ] = "alias";
1872         rargv[ 3 ] = "searchEntryDN";
1873         rargv[ 4 ] = NULL;
1874         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1875
1876         rargv[ 0 ] = "rewriteContext";
1877         rargv[ 1 ] = "searchAttrDN";
1878         rargv[ 2 ] = "alias";
1879         rargv[ 3 ] = "searchEntryDN";
1880         rargv[ 4 ] = NULL;
1881         rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
1882
1883         /* NOTE: this corresponds to #undef'ining RWM_REFERRAL_REWRITE;
1884          * see servers/slapd/overlays/rwm.h for details */
1885         rargv[ 0 ] = "rewriteContext";
1886         rargv[ 1 ] = "referralAttrDN";
1887         rargv[ 2 ] = NULL;
1888         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1889
1890         rargv[ 0 ] = "rewriteContext";
1891         rargv[ 1 ] = "referralDN";
1892         rargv[ 2 ] = NULL;
1893         rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
1894         
1895         return 0;
1896 }
1897 #endif /* ENABLE_REWRITE */
1898