]> git.sur5r.net Git - openldap/blob - servers/slapd/config.c
subsequent allows/disallows directives should be additive
[openldap] / servers / slapd / config.c
1 /* config.c - configuration file handling routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30
31 #include <ac/string.h>
32 #include <ac/ctype.h>
33 #include <ac/signal.h>
34 #include <ac/socket.h>
35 #include <ac/errno.h>
36
37 #include "ldap_pvt.h"
38 #include "slap.h"
39 #ifdef LDAP_SLAPI
40 #include "slapi/slapi.h"
41 #endif
42 #include "lutil.h"
43
44 #define ARGS_STEP       512
45
46 /*
47  * defaults for various global variables
48  */
49 slap_mask_t             global_allows = 0;
50 slap_mask_t             global_disallows = 0;
51 char            *replogfile;
52 int             global_gentlehup = 0;
53 int             global_idletimeout = 0;
54 char    *global_host = NULL;
55 char    *global_realm = NULL;
56 char            *ldap_srvtab = "";
57 char            **default_passwd_hash = NULL;
58 int             cargc = 0, cargv_size = 0;
59 char    **cargv;
60 struct berval default_search_base = BER_BVNULL;
61 struct berval default_search_nbase = BER_BVNULL;
62 unsigned                num_subordinates = 0;
63
64 ber_len_t sockbuf_max_incoming = SLAP_SB_MAX_INCOMING_DEFAULT;
65 ber_len_t sockbuf_max_incoming_auth= SLAP_SB_MAX_INCOMING_AUTH;
66
67 int     slap_conn_max_pending = SLAP_CONN_MAX_PENDING_DEFAULT;
68 int     slap_conn_max_pending_auth = SLAP_CONN_MAX_PENDING_AUTH;
69
70 char   *slapd_pid_file  = NULL;
71 char   *slapd_args_file = NULL;
72
73 char   *strtok_quote_ptr;
74
75 int use_reverse_lookup = 0;
76
77 #ifdef LDAP_SLAPI
78 int slapi_plugins_used = 0;
79 #endif
80
81 static char *fp_getline(FILE *fp, int *lineno);
82 static void fp_getline_init(int *lineno);
83 static int fp_parse_line(int lineno, char *line);
84
85 static char     *strtok_quote(char *line, char *sep);
86 static int load_ucdata(char *path);
87
88 static int add_syncrepl LDAP_P(( Backend *, char **, int ));
89 static int parse_syncrepl_line LDAP_P(( char **, int, syncinfo_t *));
90
91 int
92 read_config( const char *fname, int depth )
93 {
94         FILE    *fp;
95         char    *line, *savefname, *saveline;
96         int savelineno;
97         int     lineno, i;
98         int rc;
99         struct berval vals[2];
100         char *replicahost;
101         LDAPURLDesc *ludp;
102         static BackendInfo *bi = NULL;
103         static BackendDB        *be = NULL;
104         char    *next;
105
106
107         vals[1].bv_val = NULL;
108
109         if ( depth == 0 ) {
110                 cargv = ch_calloc( ARGS_STEP + 1, sizeof(*cargv) );
111                 cargv_size = ARGS_STEP + 1;
112         }
113
114         if ( (fp = fopen( fname, "r" )) == NULL ) {
115                 ldap_syslog = 1;
116 #ifdef NEW_LOGGING
117                 LDAP_LOG( CONFIG, ENTRY, 
118                         "read_config: " "could not open config file \"%s\": %s (%d)\n",
119                     fname, strerror(errno), errno );
120 #else
121                 Debug( LDAP_DEBUG_ANY,
122                     "could not open config file \"%s\": %s (%d)\n",
123                     fname, strerror(errno), errno );
124 #endif
125                 return 1;
126         }
127
128 #ifdef NEW_LOGGING
129         LDAP_LOG( CONFIG, ENTRY, 
130                 "read_config: reading config file %s\n", fname, 0, 0 );
131 #else
132         Debug( LDAP_DEBUG_CONFIG, "reading config file %s\n", fname, 0, 0 );
133 #endif
134
135
136         fp_getline_init( &lineno );
137
138         while ( (line = fp_getline( fp, &lineno )) != NULL ) {
139                 /* skip comments and blank lines */
140                 if ( line[0] == '#' || line[0] == '\0' ) {
141                         continue;
142                 }
143
144                 /* fp_parse_line is destructive, we save a copy */
145                 saveline = ch_strdup( line );
146
147                 if ( fp_parse_line( lineno, line ) != 0 ) {
148                         return( 1 );
149                 }
150
151                 if ( cargc < 1 ) {
152 #ifdef NEW_LOGGING
153                         LDAP_LOG( CONFIG, INFO, 
154                                 "%s: line %d: bad config line (ignored)\n", fname, lineno, 0 );
155 #else
156                         Debug( LDAP_DEBUG_ANY,
157                             "%s: line %d: bad config line (ignored)\n",
158                             fname, lineno, 0 );
159 #endif
160
161                         continue;
162                 }
163
164                 if ( strcasecmp( cargv[0], "backend" ) == 0 ) {
165                         if ( cargc < 2 ) {
166 #ifdef NEW_LOGGING
167                                 LDAP_LOG( CONFIG, CRIT, 
168                                            "%s : line %d: missing type in \"backend\" line.\n",
169                                            fname, lineno, 0 );
170 #else
171                                 Debug( LDAP_DEBUG_ANY,
172                 "%s: line %d: missing type in \"backend <type>\" line\n",
173                                     fname, lineno, 0 );
174 #endif
175
176                                 return( 1 );
177                         }
178
179                         if( be != NULL ) {
180 #ifdef NEW_LOGGING
181                                 LDAP_LOG( CONFIG, CRIT, 
182                                            "%s: line %d: backend line must appear before any "
183                                            "database definition.\n", fname, lineno , 0 );
184 #else
185                                 Debug( LDAP_DEBUG_ANY,
186 "%s: line %d: backend line must appear before any database definition\n",
187                                     fname, lineno, 0 );
188 #endif
189
190                                 return( 1 );
191                         }
192
193                         bi = backend_info( cargv[1] );
194
195                         if( bi == NULL ) {
196 #ifdef NEW_LOGGING
197                                 LDAP_LOG( CONFIG, CRIT, 
198                                            "read_config: backend %s initialization failed.\n",
199                                            cargv[1], 0, 0 );
200 #else
201                                 Debug( LDAP_DEBUG_ANY,
202                                         "backend %s initialization failed.\n",
203                                     cargv[1], 0, 0 );
204 #endif
205
206                                 return( 1 );
207                         }
208                 } else if ( strcasecmp( cargv[0], "database" ) == 0 ) {
209                         if ( cargc < 2 ) {
210 #ifdef NEW_LOGGING
211                                 LDAP_LOG( CONFIG, CRIT, 
212                                         "%s: line %d: missing type in \"database <type>\" line\n",
213                                         fname, lineno, 0 );
214 #else
215                                 Debug( LDAP_DEBUG_ANY,
216                 "%s: line %d: missing type in \"database <type>\" line\n",
217                                     fname, lineno, 0 );
218 #endif
219
220                                 return( 1 );
221                         }
222
223                         bi = NULL;
224                         be = backend_db_init( cargv[1] );
225
226                         if( be == NULL ) {
227 #ifdef NEW_LOGGING
228                                 LDAP_LOG( CONFIG, CRIT, 
229                                         "database %s initialization failed.\n", cargv[1], 0, 0 );
230 #else
231                                 Debug( LDAP_DEBUG_ANY,
232                                         "database %s initialization failed.\n",
233                                     cargv[1], 0, 0 );
234 #endif
235
236                                 return( 1 );
237                         }
238
239                 /* set thread concurrency */
240                 } else if ( strcasecmp( cargv[0], "concurrency" ) == 0 ) {
241                         int c;
242                         if ( cargc < 2 ) {
243 #ifdef NEW_LOGGING
244                                 LDAP_LOG( CONFIG, CRIT, 
245                                         "%s: line %d: missing level in \"concurrency <level>\" "
246                                         " line\n", fname, lineno, 0 );
247 #else
248                                 Debug( LDAP_DEBUG_ANY,
249             "%s: line %d: missing level in \"concurrency <level>\" line\n",
250                                     fname, lineno, 0 );
251 #endif
252
253                                 return( 1 );
254                         }
255
256                         c = strtol( cargv[1], &next, 10 );
257                         if ( next == NULL || next[0] != '\0' ) {
258 #ifdef NEW_LOGGING
259                                 LDAP_LOG( CONFIG, CRIT, 
260                                         "%s: line %d: unable to parse level \"%s\" in \"concurrency <level>\" "
261                                         " line\n", fname, lineno, cargv[1] );
262 #else
263                                 Debug( LDAP_DEBUG_ANY,
264             "%s: line %d: unable to parse level \"%s\" in \"concurrency <level>\" line\n",
265                                     fname, lineno, cargv[1] );
266 #endif
267                                 return( 1 );
268                         }
269
270                         if( c < 1 ) {
271 #ifdef NEW_LOGGING
272                                 LDAP_LOG( CONFIG, CRIT, 
273                                         "%s: line %d: invalid level (%d) in "
274                                         "\"concurrency <level>\" line.\n", fname, lineno, c );
275 #else
276                                 Debug( LDAP_DEBUG_ANY,
277             "%s: line %d: invalid level (%d) in \"concurrency <level>\" line\n",
278                                     fname, lineno, c );
279 #endif
280
281                                 return( 1 );
282                         }
283
284                         ldap_pvt_thread_set_concurrency( c );
285
286                 /* set sockbuf max */
287                 } else if ( strcasecmp( cargv[0], "sockbuf_max_incoming" ) == 0 ) {
288                         long max;
289                         if ( cargc < 2 ) {
290 #ifdef NEW_LOGGING
291                                 LDAP_LOG( CONFIG, CRIT, 
292                                    "%s: line %d: missing max in \"sockbuf_max_incoming "
293                                    "<bytes>\" line\n", fname, lineno, 0 );
294 #else
295                                 Debug( LDAP_DEBUG_ANY,
296                                            "%s: line %d: missing max in \"sockbuf_max_incoming <bytes>\" line\n",
297                                     fname, lineno, 0 );
298 #endif
299
300                                 return( 1 );
301                         }
302
303                         max = atol( cargv[1] );
304
305                         if( max < 0 ) {
306 #ifdef NEW_LOGGING
307                                 LDAP_LOG( CONFIG, CRIT, 
308                                            "%s: line %d: invalid max value (%ld) in "
309                                            "\"sockbuf_max_incoming <bytes>\" line.\n",
310                                            fname, lineno, max );
311 #else
312                                 Debug( LDAP_DEBUG_ANY,
313                                         "%s: line %d: invalid max value (%ld) in "
314                                         "\"sockbuf_max_incoming <bytes>\" line.\n",
315                                     fname, lineno, max );
316 #endif
317
318                                 return( 1 );
319                         }
320
321                         sockbuf_max_incoming = max;
322
323                 /* set sockbuf max authenticated */
324                 } else if ( strcasecmp( cargv[0], "sockbuf_max_incoming_auth" ) == 0 ) {
325                         long max;
326                         if ( cargc < 2 ) {
327 #ifdef NEW_LOGGING
328                                 LDAP_LOG( CONFIG, CRIT, 
329                                    "%s: line %d: missing max in \"sockbuf_max_incoming_auth "
330                                    "<bytes>\" line\n", fname, lineno, 0 );
331 #else
332                                 Debug( LDAP_DEBUG_ANY,
333                                            "%s: line %d: missing max in \"sockbuf_max_incoming_auth <bytes>\" line\n",
334                                     fname, lineno, 0 );
335 #endif
336
337                                 return( 1 );
338                         }
339
340                         max = atol( cargv[1] );
341
342                         if( max < 0 ) {
343 #ifdef NEW_LOGGING
344                                 LDAP_LOG( CONFIG, CRIT, 
345                                            "%s: line %d: invalid max value (%ld) in "
346                                            "\"sockbuf_max_incoming_auth <bytes>\" line.\n",
347                                            fname, lineno, max );
348 #else
349                                 Debug( LDAP_DEBUG_ANY,
350                                         "%s: line %d: invalid max value (%ld) in "
351                                         "\"sockbuf_max_incoming_auth <bytes>\" line.\n",
352                                     fname, lineno, max );
353 #endif
354
355                                 return( 1 );
356                         }
357
358                         sockbuf_max_incoming_auth = max;
359
360                 /* set conn pending max */
361                 } else if ( strcasecmp( cargv[0], "conn_max_pending" ) == 0 ) {
362                         long max;
363                         if ( cargc < 2 ) {
364 #ifdef NEW_LOGGING
365                                 LDAP_LOG( CONFIG, CRIT, 
366                                    "%s: line %d: missing max in \"conn_max_pending "
367                                    "<requests>\" line\n", fname, lineno, 0 );
368 #else
369                                 Debug( LDAP_DEBUG_ANY,
370                                            "%s: line %d: missing max in \"conn_max_pending <requests>\" line\n",
371                                     fname, lineno, 0 );
372 #endif
373
374                                 return( 1 );
375                         }
376
377                         max = atol( cargv[1] );
378
379                         if( max < 0 ) {
380 #ifdef NEW_LOGGING
381                                 LDAP_LOG( CONFIG, CRIT, 
382                                            "%s: line %d: invalid max value (%ld) in "
383                                            "\"conn_max_pending <requests>\" line.\n",
384                                            fname, lineno, max );
385 #else
386                                 Debug( LDAP_DEBUG_ANY,
387                                         "%s: line %d: invalid max value (%ld) in "
388                                         "\"conn_max_pending <requests>\" line.\n",
389                                     fname, lineno, max );
390 #endif
391
392                                 return( 1 );
393                         }
394
395                         slap_conn_max_pending = max;
396
397                 /* set conn pending max authenticated */
398                 } else if ( strcasecmp( cargv[0], "conn_max_pending_auth" ) == 0 ) {
399                         long max;
400                         if ( cargc < 2 ) {
401 #ifdef NEW_LOGGING
402                                 LDAP_LOG( CONFIG, CRIT, 
403                                    "%s: line %d: missing max in \"conn_max_pending_auth "
404                                    "<requests>\" line\n", fname, lineno, 0 );
405 #else
406                                 Debug( LDAP_DEBUG_ANY,
407                                            "%s: line %d: missing max in \"conn_max_pending_auth <requests>\" line\n",
408                                     fname, lineno, 0 );
409 #endif
410
411                                 return( 1 );
412                         }
413
414                         max = atol( cargv[1] );
415
416                         if( max < 0 ) {
417 #ifdef NEW_LOGGING
418                                 LDAP_LOG( CONFIG, CRIT, 
419                                            "%s: line %d: invalid max value (%ld) in "
420                                            "\"conn_max_pending_auth <requests>\" line.\n",
421                                            fname, lineno, max );
422 #else
423                                 Debug( LDAP_DEBUG_ANY,
424                                         "%s: line %d: invalid max value (%ld) in "
425                                         "\"conn_max_pending_auth <requests>\" line.\n",
426                                     fname, lineno, max );
427 #endif
428
429                                 return( 1 );
430                         }
431
432                         slap_conn_max_pending_auth = max;
433
434                 /* default search base */
435                 } else if ( strcasecmp( cargv[0], "defaultSearchBase" ) == 0 ) {
436                         if ( cargc < 2 ) {
437 #ifdef NEW_LOGGING
438                                 LDAP_LOG( CONFIG, CRIT, 
439                                         "%s: line %d: missing dn in \"defaultSearchBase <dn\" "
440                                         "line\n", fname, lineno, 0 );
441 #else
442                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
443                                         "missing dn in \"defaultSearchBase <dn>\" line\n",
444                                         fname, lineno, 0 );
445 #endif
446
447                                 return 1;
448
449                         } else if ( cargc > 2 ) {
450 #ifdef NEW_LOGGING
451                                 LDAP_LOG( CONFIG, INFO, 
452                                         "%s: line %d: extra cruft after <dn> in "
453                                         "\"defaultSearchBase %s\" line (ignored)\n",
454                                         fname, lineno, cargv[1] );
455 #else
456                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
457                                         "extra cruft after <dn> in \"defaultSearchBase %s\", "
458                                         "line (ignored)\n",
459                                         fname, lineno, cargv[1] );
460 #endif
461                         }
462
463                         if ( bi != NULL || be != NULL ) {
464 #ifdef NEW_LOGGING
465                                 LDAP_LOG( CONFIG, CRIT, 
466                                         "%s: line %d: defaultSearchBase line must appear "
467                                         "prior to any backend or database definitions\n",
468                                         fname, lineno, 0 );
469 #else
470                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
471                                         "defaultSearchBaase line must appear prior to "
472                                         "any backend or database definition\n",
473                                     fname, lineno, 0 );
474 #endif
475
476                                 return 1;
477                         }
478
479                         if ( default_search_nbase.bv_len ) {
480 #ifdef NEW_LOGGING
481                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
482                                         "default search base \"%s\" already defined "
483                                         "(discarding old)\n", fname, lineno,
484                                         default_search_base.bv_val );
485 #else
486                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
487                                         "default search base \"%s\" already defined "
488                                         "(discarding old)\n",
489                                         fname, lineno, default_search_base.bv_val );
490 #endif
491
492                                 free( default_search_base.bv_val );
493                                 free( default_search_nbase.bv_val );
494                         }
495
496                         if ( load_ucdata( NULL ) < 0 ) return 1;
497
498                         {
499                                 struct berval dn;
500
501                                 dn.bv_val = cargv[1];
502                                 dn.bv_len = strlen( dn.bv_val );
503
504                                 rc = dnPrettyNormal( NULL, &dn,
505                                         &default_search_base,
506                                         &default_search_nbase, NULL );
507
508                                 if( rc != LDAP_SUCCESS ) {
509 #ifdef NEW_LOGGING
510                                         LDAP_LOG( CONFIG, CRIT, 
511                                                 "%s: line %d: defaultSearchBase DN is invalid.\n",
512                                                 fname, lineno, 0 );
513 #else
514                                         Debug( LDAP_DEBUG_ANY,
515                                                 "%s: line %d: defaultSearchBase DN is invalid\n",
516                                            fname, lineno, 0 );
517 #endif
518                                         return( 1 );
519                                 }
520                         }
521
522                 /* set maximum threads in thread pool */
523                 } else if ( strcasecmp( cargv[0], "threads" ) == 0 ) {
524                         int c;
525                         if ( cargc < 2 ) {
526 #ifdef NEW_LOGGING
527                                 LDAP_LOG( CONFIG, CRIT, 
528                                         "%s: line %d: missing count in \"threads <count>\" line\n",
529                                         fname, lineno, 0 );
530 #else
531                                 Debug( LDAP_DEBUG_ANY,
532             "%s: line %d: missing count in \"threads <count>\" line\n",
533                                     fname, lineno, 0 );
534 #endif
535
536                                 return( 1 );
537                         }
538
539                         c = strtol( cargv[1], &next, 10 );
540                         if (next == NULL || next[0] != '\0' ) {
541 #ifdef NEW_LOGGING
542                                 LDAP_LOG( CONFIG, CRIT, 
543                                         "%s: line %d: unable to parse count \"%s\" in \"threads <count>\" line\n",
544                                         fname, lineno, cargv[1] );
545 #else
546                                 Debug( LDAP_DEBUG_ANY,
547             "%s: line %d: unable to parse count \"%s\" in \"threads <count>\" line\n",
548                                     fname, lineno, cargv[1] );
549 #endif
550                                 return( 1 );
551                         }
552
553                         if( c < 0 ) {
554 #ifdef NEW_LOGGING
555                                 LDAP_LOG( CONFIG, CRIT, 
556                                            "%s: line %d: invalid level (%d) in \"threads <count>\""
557                                            "line\n", fname, lineno, c );
558 #else
559                                 Debug( LDAP_DEBUG_ANY,
560             "%s: line %d: invalid level (%d) in \"threads <count>\" line\n",
561                                     fname, lineno, c );
562 #endif
563
564                                 return( 1 );
565                         }
566
567                         ldap_pvt_thread_pool_maxthreads( &connection_pool, c );
568
569                         /* save for later use */
570                         connection_pool_max = c;
571
572                 /* get pid file name */
573                 } else if ( strcasecmp( cargv[0], "pidfile" ) == 0 ) {
574                         if ( cargc < 2 ) {
575 #ifdef NEW_LOGGING
576                                 LDAP_LOG( CONFIG, CRIT, 
577                                         "%s: line %d missing file name in \"pidfile <file>\" "
578                                         "line.\n", fname, lineno, 0 );
579 #else
580                                 Debug( LDAP_DEBUG_ANY,
581             "%s: line %d: missing file name in \"pidfile <file>\" line\n",
582                                     fname, lineno, 0 );
583 #endif
584
585                                 return( 1 );
586                         }
587
588                         slapd_pid_file = ch_strdup( cargv[1] );
589
590                 /* get args file name */
591                 } else if ( strcasecmp( cargv[0], "argsfile" ) == 0 ) {
592                         if ( cargc < 2 ) {
593 #ifdef NEW_LOGGING
594                                 LDAP_LOG( CONFIG, CRIT, 
595                                            "%s: %d: missing file name in "
596                                            "\"argsfile <file>\" line.\n",
597                                            fname, lineno, 0 );
598 #else
599                                 Debug( LDAP_DEBUG_ANY,
600             "%s: line %d: missing file name in \"argsfile <file>\" line\n",
601                                     fname, lineno, 0 );
602 #endif
603
604                                 return( 1 );
605                         }
606
607                         slapd_args_file = ch_strdup( cargv[1] );
608
609                 } else if ( strcasecmp( cargv[0], "replica-pidfile" ) == 0 ) {
610                         /* ignore */ ;
611
612                 } else if ( strcasecmp( cargv[0], "replica-argsfile" ) == 0 ) {
613                         /* ignore */ ;
614
615                 /* default password hash */
616                 } else if ( strcasecmp( cargv[0], "password-hash" ) == 0 ) {
617                         if ( cargc < 2 ) {
618 #ifdef NEW_LOGGING
619                                 LDAP_LOG( CONFIG, CRIT, 
620                                            "%s: line %d: missing hash in "
621                                            "\"password-hash <hash>\" line.\n",
622                                            fname, lineno, 0 );
623 #else
624                                 Debug( LDAP_DEBUG_ANY,
625             "%s: line %d: missing hash in \"password-hash <hash>\" line\n",
626                                     fname, lineno, 0 );
627 #endif
628
629                                 return( 1 );
630                         }
631                         if ( default_passwd_hash != NULL ) {
632 #ifdef NEW_LOGGING
633                                 LDAP_LOG( CONFIG, CRIT, 
634                                            "%s: line %d: already set default password_hash!\n",
635                                            fname, lineno, 0 );
636 #else
637                                 Debug( LDAP_DEBUG_ANY,
638                                         "%s: line %d: already set default password_hash!\n",
639                                         fname, lineno, 0 );
640 #endif
641
642                                 return 1;
643
644                         }
645                         for(i = 1; i < cargc; i++) {
646                                 if ( lutil_passwd_scheme( cargv[i] ) == 0 ) {
647 #ifdef NEW_LOGGING
648                                         LDAP_LOG( CONFIG, CRIT, 
649                                                 "%s: line %d: password scheme \"%s\" not available\n",
650                                                 fname, lineno, cargv[i] );
651 #else
652                                         Debug( LDAP_DEBUG_ANY,
653                                                 "%s: line %d: password scheme \"%s\" not available\n",
654                                                 fname, lineno, cargv[i] );
655 #endif
656                                 } else {
657                                         ldap_charray_add( &default_passwd_hash, cargv[i] );
658                                 }
659                         }
660                         if( !default_passwd_hash ) {
661 #ifdef NEW_LOGGING
662                                 LDAP_LOG( CONFIG, CRIT, 
663                                         "%s: line %d: no valid hashes found\n",
664                                         fname, lineno, 0 );
665 #else
666                                 Debug( LDAP_DEBUG_ANY,
667                                         "%s: line %d: no valid hashes found\n",
668                                         fname, lineno, 0 );
669                                 return 1;
670 #endif
671                         }
672
673                 } else if ( strcasecmp( cargv[0], "password-crypt-salt-format" ) == 0 ) 
674                 {
675                         if ( cargc < 2 ) {
676 #ifdef NEW_LOGGING
677                                 LDAP_LOG( CONFIG, CRIT, 
678                                         "%s: line %d: missing format in "
679                                         "\"password-crypt-salt-format <format>\" line\n",
680                                         fname, lineno, 0 );
681 #else
682                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: missing format in "
683                                         "\"password-crypt-salt-format <format>\" line\n",
684                                     fname, lineno, 0 );
685 #endif
686
687                                 return 1;
688                         }
689
690                         lutil_salt_format( cargv[1] );
691
692 #ifdef SLAP_AUTH_REWRITE
693                 /* use authid rewrite instead of sasl regexp */
694                 } else if ( strncasecmp( cargv[0], "auth-rewrite",
695                         STRLENOF("auth-rewrite") ) == 0 )
696                 {
697                         int rc = slap_sasl_rewrite_config( fname, lineno,
698                                         cargc, cargv );
699                         if ( rc ) {
700                                 return rc;
701                         }
702 #endif /* SLAP_AUTH_REWRITE */
703
704                 /* Auth + SASL config options */
705                 } else if ( !strncasecmp( cargv[0], "auth", STRLENOF("auth") ) ||
706                         !strncasecmp( cargv[0], "sasl", STRLENOF("sasl") ))
707                 {
708                         if ( slap_sasl_config( cargc, cargv, line, fname, lineno ) )
709                                 return 1;
710
711
712                 } else if ( strcasecmp( cargv[0], "schemadn" ) == 0 ) {
713                         struct berval dn;
714                         if ( cargc < 2 ) {
715 #ifdef NEW_LOGGING
716                                 LDAP_LOG( CONFIG, CRIT, 
717                                            "%s: line %d: missing dn in "
718                                            "\"schemadn <dn>\" line.\n", fname, lineno, 0  );
719 #else
720                                 Debug( LDAP_DEBUG_ANY,
721             "%s: line %d: missing dn in \"schemadn <dn>\" line\n",
722                                     fname, lineno, 0 );
723 #endif
724                                 return 1 ;
725                         }
726                         ber_str2bv( cargv[1], 0, 0, &dn );
727                         if ( be ) {
728                                 rc = dnPrettyNormal( NULL, &dn, &be->be_schemadn,
729                                         &be->be_schemandn, NULL );
730                         } else {
731                                 rc = dnPrettyNormal( NULL, &dn, &frontendDB->be_schemadn,
732                                         &frontendDB->be_schemandn, NULL );
733                         }
734                         if ( rc != LDAP_SUCCESS ) {
735 #ifdef NEW_LOGGING
736                                 LDAP_LOG( CONFIG, CRIT, 
737                                         "%s: line %d: schemadn DN is invalid.\n",
738                                         fname, lineno , 0 );
739 #else
740                                 Debug( LDAP_DEBUG_ANY,
741                                         "%s: line %d: schemadn DN is invalid\n",
742                                         fname, lineno, 0 );
743 #endif
744                                 return 1;
745                         }
746
747                 /* set UCDATA path */
748                 } else if ( strcasecmp( cargv[0], "ucdata-path" ) == 0 ) {
749                         int err;
750                         if ( cargc < 2 ) {
751 #ifdef NEW_LOGGING
752                                 LDAP_LOG( CONFIG, CRIT, 
753                                            "%s: line %d: missing path in "
754                                            "\"ucdata-path <path>\" line.\n", fname, lineno, 0  );
755 #else
756                                 Debug( LDAP_DEBUG_ANY,
757             "%s: line %d: missing path in \"ucdata-path <path>\" line\n",
758                                     fname, lineno, 0 );
759 #endif
760
761                                 return( 1 );
762                         }
763
764                         err = load_ucdata( cargv[1] );
765                         if ( err <= 0 ) {
766                                 if ( err == 0 ) {
767 #ifdef NEW_LOGGING
768                                         LDAP_LOG( CONFIG, CRIT, 
769                                                    "%s: line %d: ucdata already loaded, ucdata-path "
770                                                    "must be set earlier in the file and/or be "
771                                                    "specified only once!\n", fname, lineno, 0 );
772 #else
773                                         Debug( LDAP_DEBUG_ANY,
774                                                "%s: line %d: ucdata already loaded, ucdata-path must be set earlier in the file and/or be specified only once!\n",
775                                                fname, lineno, 0 );
776 #endif
777
778                                 }
779                                 return( 1 );
780                         }
781
782                 /* set size limit */
783                 } else if ( strcasecmp( cargv[0], "sizelimit" ) == 0 ) {
784                         int rc = 0, i;
785                         struct slap_limits_set *lim;
786                         
787                         if ( cargc < 2 ) {
788 #ifdef NEW_LOGGING
789                                 LDAP_LOG( CONFIG, CRIT, 
790                                    "%s: line %d: missing limit in \"sizelimit <limit>\" "
791                                    "line.\n", fname, lineno, 0 );
792 #else
793                                 Debug( LDAP_DEBUG_ANY,
794             "%s: line %d: missing limit in \"sizelimit <limit>\" line\n",
795                                     fname, lineno, 0 );
796 #endif
797
798                                 return( 1 );
799                         }
800
801                         if ( be == NULL ) {
802                                 lim = &frontendDB->be_def_limit;
803                         } else {
804                                 lim = &be->be_def_limit;
805                         }
806
807                         for ( i = 1; i < cargc; i++ ) {
808                                 if ( strncasecmp( cargv[i], "size", 4 ) == 0 ) {
809                                         rc = limits_parse_one( cargv[i], lim );
810                                         if ( rc ) {
811 #ifdef NEW_LOGGING
812                                                 LDAP_LOG( CONFIG, CRIT, 
813                                                         "%s: line %d: unable "
814                                                            "to parse value \"%s\" in \"sizelimit "
815                                                            "<limit>\" line.\n", fname, lineno, cargv[i] );
816 #else
817                                                 Debug( LDAP_DEBUG_ANY,
818                                                         "%s: line %d: unable "
819                                                         "to parse value \"%s\" "
820                                                         "in \"sizelimit "
821                                                         "<limit>\" line\n",
822                                                         fname, lineno, cargv[i] );
823 #endif
824                                                 return( 1 );
825                                         }
826
827                                 } else {
828                                         if ( strcasecmp( cargv[i], "unlimited" ) == 0 ) {
829                                                 lim->lms_s_soft = -1;
830                                         } else {
831                                                 lim->lms_s_soft = strtol( cargv[i] , &next, 0 );
832                                                 if ( next == cargv[i] ) {
833 #ifdef NEW_LOGGING
834                                                         LDAP_LOG( CONFIG, CRIT, 
835                                                            "%s: line %d: unable to parse limit \"%s\" in \"sizelimit <limit>\" "
836                                                            "line.\n", fname, lineno, cargv[i] );
837 #else
838                                                         Debug( LDAP_DEBUG_ANY,
839                                                             "%s: line %d: unable to parse limit \"%s\" in \"sizelimit <limit>\" line\n",
840                                                             fname, lineno, cargv[i] );
841 #endif
842                                                         return( 1 );
843
844                                                 } else if ( next[0] != '\0' ) {
845 #ifdef NEW_LOGGING
846                                                         LDAP_LOG( CONFIG, CRIT, 
847                                                            "%s: line %d: trailing chars \"%s\" in \"sizelimit <limit>\" "
848                                                            "line ignored.\n", fname, lineno, next );
849 #else
850                                                         Debug( LDAP_DEBUG_ANY,
851                                                             "%s: line %d: trailing chars \"%s\" in \"sizelimit <limit>\" line ignored\n",
852                                                             fname, lineno, next );
853 #endif
854                                                 }
855                                         }
856                                         lim->lms_s_hard = 0;
857                                 }
858                         }
859
860                 /* set time limit */
861                 } else if ( strcasecmp( cargv[0], "timelimit" ) == 0 ) {
862                         int rc = 0, i;
863                         struct slap_limits_set *lim;
864                         
865                         if ( cargc < 2 ) {
866 #ifdef NEW_LOGGING
867                                 LDAP_LOG( CONFIG, CRIT, 
868                                         "%s: line %d missing limit in \"timelimit <limit>\" "
869                                         "line.\n", fname, lineno, 0 );
870 #else
871                                 Debug( LDAP_DEBUG_ANY,
872             "%s: line %d: missing limit in \"timelimit <limit>\" line\n",
873                                     fname, lineno, 0 );
874 #endif
875
876                                 return( 1 );
877                         }
878                         
879                         if ( be == NULL ) {
880                                 lim = &frontendDB->be_def_limit;
881                         } else {
882                                 lim = &be->be_def_limit;
883                         }
884
885                         for ( i = 1; i < cargc; i++ ) {
886                                 if ( strncasecmp( cargv[i], "time", 4 ) == 0 ) {
887                                         rc = limits_parse_one( cargv[i], lim );
888                                         if ( rc ) {
889 #ifdef NEW_LOGGING
890                                                 LDAP_LOG( CONFIG, CRIT, 
891                                                             "%s: line %d: unable to parse value \"%s\" "
892                                                            "in \"timelimit <limit>\" line.\n",
893                                                            fname, lineno, cargv[i] );
894 #else
895                                                 Debug( LDAP_DEBUG_ANY,
896                                                         "%s: line %d: unable "
897                                                         "to parse value \"%s\" "
898                                                         "in \"timelimit "
899                                                         "<limit>\" line\n",
900                                                         fname, lineno, cargv[i] );
901 #endif
902                                                 return( 1 );
903                                         }
904
905                                 } else {
906                                         if ( strcasecmp( cargv[i], "unlimited" ) == 0 ) {
907                                                 lim->lms_t_soft = -1;
908                                         } else {
909                                                 lim->lms_t_soft = strtol( cargv[i] , &next, 0 );
910                                                 if ( next == cargv[i] ) {
911 #ifdef NEW_LOGGING
912                                                         LDAP_LOG( CONFIG, CRIT, 
913                                                            "%s: line %d: unable to parse limit \"%s\" in \"timelimit <limit>\" "
914                                                            "line.\n", fname, lineno, cargv[i] );
915 #else
916                                                         Debug( LDAP_DEBUG_ANY,
917                                                             "%s: line %d: unable to parse limit \"%s\" in \"timelimit <limit>\" line\n",
918                                                             fname, lineno, cargv[i] );
919 #endif
920                                                         return( 1 );
921
922                                                 } else if ( next[0] != '\0' ) {
923 #ifdef NEW_LOGGING
924                                                         LDAP_LOG( CONFIG, CRIT, 
925                                                            "%s: line %d: trailing chars \"%s\" in \"timelimit <limit>\" "
926                                                            "line ignored.\n", fname, lineno, next );
927 #else
928                                                         Debug( LDAP_DEBUG_ANY,
929                                                             "%s: line %d: trailing chars \"%s\" in \"timelimit <limit>\" line ignored\n",
930                                                             fname, lineno, next );
931 #endif
932                                                 }
933                                         }
934                                         lim->lms_t_hard = 0;
935                                 }
936                         }
937
938                 /* set regex-based limits */
939                 } else if ( strcasecmp( cargv[0], "limits" ) == 0 ) {
940                         if ( be == NULL ) {
941 #ifdef NEW_LOGGING
942                                 LDAP_LOG( CONFIG, WARNING, 
943                                            "%s: line %d \"limits\" allowed only in database "
944                                            "environment.\n", fname, lineno, 0 );
945 #else
946                                 Debug( LDAP_DEBUG_ANY,
947         "%s: line %d \"limits\" allowed only in database environment.\n%s",
948                                         fname, lineno, "" );
949 #endif
950                                 return( 1 );
951                         }
952
953                         if ( limits_parse( be, fname, lineno, cargc, cargv ) ) {
954                                 return( 1 );
955                         }
956
957                 /* mark this as a subordinate database */
958                 } else if ( strcasecmp( cargv[0], "subordinate" ) == 0 ) {
959                         if ( be == NULL ) {
960 #ifdef NEW_LOGGING
961                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
962                                         "subordinate keyword must appear inside a database "
963                                         "definition.\n", fname, lineno, 0 );
964 #else
965                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: subordinate keyword "
966                                         "must appear inside a database definition.\n",
967                                     fname, lineno, 0 );
968 #endif
969                                 return 1;
970
971                         } else {
972                                 SLAP_DBFLAGS(be) |= SLAP_DBFLAG_GLUE_SUBORDINATE;
973                                 num_subordinates++;
974                         }
975
976                 /* add an overlay to this backend */
977                 } else if ( strcasecmp( cargv[0], "overlay" ) == 0 ) {
978                         if ( be == NULL ) {
979                                 if ( cargv[1][0] == '-' && overlay_config( frontendDB, &cargv[1][1] ) ) {
980                                         /* log error */
981 #ifdef NEW_LOGGING
982                                         LDAP_LOG( CONFIG, INFO, "%s: line %d: "
983                                                 "(optional) global overlay \"%s\" configuration "
984                                                 "failed (ignored)\n", fname, lineno, &cargv[1][1] );
985 #else
986                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
987                                                 "(optional) global overlay \"%s\" configuration "
988                                                 "failed (ignored)\n", fname, lineno, &cargv[1][1] );
989 #endif
990                                 } else if ( overlay_config( frontendDB, cargv[1] ) ) {
991                                         return 1;
992                                 }
993
994                         } else {
995                                 if ( cargv[1][0] == '-' && overlay_config( be, &cargv[1][1] ) ) {
996                                         /* log error */
997 #ifdef NEW_LOGGING
998                                         LDAP_LOG( CONFIG, INFO, "%s: line %d: "
999                                                 "(optional) overlay \"%s\" configuration "
1000                                                 "failed (ignored)\n", fname, lineno, &cargv[1][1] );
1001 #else
1002                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1003                                                 "(optional) overlay \"%s\" configuration "
1004                                                 "failed (ignored)\n", fname, lineno, &cargv[1][1] );
1005 #endif
1006                                 } else if ( overlay_config( be, cargv[1] ) ) {
1007                                         return 1;
1008                                 }
1009                         }
1010
1011                 /* set database suffix */
1012                 } else if ( strcasecmp( cargv[0], "suffix" ) == 0 ) {
1013                         Backend *tmp_be;
1014                         struct berval dn, pdn, ndn;
1015
1016                         if ( cargc < 2 ) {
1017 #ifdef NEW_LOGGING
1018                                 LDAP_LOG( CONFIG, CRIT, 
1019                                         "%s: line %d: missing dn in \"suffix <dn>\" line.\n",
1020                                         fname, lineno, 0 );
1021 #else
1022                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1023                                         "missing dn in \"suffix <dn>\" line\n",
1024                                     fname, lineno, 0 );
1025 #endif
1026
1027                                 return( 1 );
1028
1029                         } else if ( cargc > 2 ) {
1030 #ifdef NEW_LOGGING
1031                                 LDAP_LOG( CONFIG, INFO, 
1032                                         "%s: line %d: extra cruft after <dn> in \"suffix %s\""
1033                                         " line (ignored).\n", fname, lineno, cargv[1] );
1034 #else
1035                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: extra cruft "
1036                                         "after <dn> in \"suffix %s\" line (ignored)\n",
1037                                     fname, lineno, cargv[1] );
1038 #endif
1039                         }
1040
1041                         if ( be == NULL ) {
1042 #ifdef NEW_LOGGING
1043                                 LDAP_LOG( CONFIG, INFO, 
1044                                         "%s: line %d: suffix line must appear inside a database "
1045                                         "definition.\n", fname, lineno, 0 );
1046 #else
1047                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix line "
1048                                         "must appear inside a database definition\n",
1049                                     fname, lineno, 0 );
1050 #endif
1051                                 return( 1 );
1052
1053 #if defined(SLAPD_MONITOR_DN)
1054                         /* "cn=Monitor" is reserved for monitoring slap */
1055                         } else if ( strcasecmp( cargv[1], SLAPD_MONITOR_DN ) == 0 ) {
1056 #ifdef NEW_LOGGING
1057                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: \""
1058                                         "%s\" is reserved for monitoring slapd\n", 
1059                                         fname, lineno, SLAPD_MONITOR_DN );
1060 #else
1061                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: \""
1062                                         "%s\" is reserved for monitoring slapd\n", 
1063                                         fname, lineno, SLAPD_MONITOR_DN );
1064 #endif
1065                                 return( 1 );
1066 #endif /* SLAPD_MONITOR_DN */
1067                         }
1068
1069                         if ( load_ucdata( NULL ) < 0 ) return 1;
1070
1071                         dn.bv_val = cargv[1];
1072                         dn.bv_len = strlen( cargv[1] );
1073
1074                         rc = dnPrettyNormal( NULL, &dn, &pdn, &ndn, NULL );
1075                         if( rc != LDAP_SUCCESS ) {
1076 #ifdef NEW_LOGGING
1077                                 LDAP_LOG( CONFIG, CRIT, 
1078                                         "%s: line %d: suffix DN is invalid.\n",
1079                                         fname, lineno, 0 );
1080 #else
1081                                 Debug( LDAP_DEBUG_ANY,
1082                                         "%s: line %d: suffix DN is invalid\n",
1083                                    fname, lineno, 0 );
1084 #endif
1085                                 return( 1 );
1086                         }
1087
1088                         tmp_be = select_backend( &ndn, 0, 0 );
1089                         if ( tmp_be == be ) {
1090 #ifdef NEW_LOGGING
1091                                 LDAP_LOG( CONFIG, INFO, 
1092                                         "%s: line %d: suffix already served by this backend "
1093                                         "(ignored)\n", fname, lineno, 0 );
1094 #else
1095                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix "
1096                                         "already served by this backend (ignored)\n",
1097                                     fname, lineno, 0 );
1098 #endif
1099                                 free( pdn.bv_val );
1100                                 free( ndn.bv_val );
1101
1102                         } else if ( tmp_be  != NULL ) {
1103 #ifdef NEW_LOGGING
1104                                 LDAP_LOG( CONFIG, INFO, 
1105                                         "%s: line %d: suffix already served by a preceding "
1106                                         "backend \"%s\"\n", fname, lineno,
1107                                         tmp_be->be_suffix[0].bv_val );
1108 #else
1109                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix "
1110                                         "already served by a preceeding backend \"%s\"\n",
1111                                     fname, lineno, tmp_be->be_suffix[0].bv_val );
1112 #endif
1113                                 free( pdn.bv_val );
1114                                 free( ndn.bv_val );
1115                                 return( 1 );
1116
1117                         } else if( pdn.bv_len == 0 && default_search_nbase.bv_len ) {
1118 #ifdef NEW_LOGGING
1119                                         LDAP_LOG( CONFIG, INFO, 
1120                                                 "%s: line %d: suffix DN empty and default search "
1121                                                 "base provided \"%s\" (assuming okay).\n",
1122                                                 fname, lineno, default_search_base.bv_val );
1123 #else
1124                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1125                                                 "suffix DN empty and default "
1126                                                 "search base provided \"%s\" (assuming okay)\n",
1127                                         fname, lineno, default_search_base.bv_val );
1128 #endif
1129                         }
1130
1131                         ber_bvarray_add( &be->be_suffix, &pdn );
1132                         ber_bvarray_add( &be->be_nsuffix, &ndn );
1133
1134                /* set max deref depth */
1135                } else if ( strcasecmp( cargv[0], "maxDerefDepth" ) == 0 ) {
1136                                         int i;
1137                        if ( cargc < 2 ) {
1138 #ifdef NEW_LOGGING
1139                                LDAP_LOG( CONFIG, CRIT, 
1140                                           "%s: line %d: missing depth in \"maxDerefDepth <depth>\""
1141                                           " line\n", fname, lineno, 0 );
1142 #else
1143                                Debug( LDAP_DEBUG_ANY,
1144                    "%s: line %d: missing depth in \"maxDerefDepth <depth>\" line\n",
1145                                    fname, lineno, 0 );
1146 #endif
1147
1148                                return( 1 );
1149                        }
1150                        if ( be == NULL ) {
1151 #ifdef NEW_LOGGING
1152                                LDAP_LOG( CONFIG, INFO, 
1153                                           "%s: line %d: depth line must appear inside a database "
1154                                           "definition.\n", fname, lineno ,0 );
1155 #else
1156                                Debug( LDAP_DEBUG_ANY,
1157 "%s: line %d: depth line must appear inside a database definition.\n",
1158                                    fname, lineno, 0 );
1159 #endif
1160                                 return 1;
1161                        }
1162
1163                        i = strtol( cargv[1], &next, 10 );
1164                        if ( next == NULL || next[0] != '\0' ) {
1165 #ifdef NEW_LOGGING
1166                                LDAP_LOG( CONFIG, INFO, 
1167                                           "%s: line %d: unable to parse depth \"%s\" in \"maxDerefDepth <depth>\" "
1168                                           "line.\n", fname, lineno, cargv[1] );
1169 #else
1170                                Debug( LDAP_DEBUG_ANY,
1171                                           "%s: line %d: unable to parse depth \"%s\" in \"maxDerefDepth <depth>\" "
1172                                           "line.\n", fname, lineno, cargv[1] );
1173 #endif
1174                                 return 1;
1175                        }
1176
1177                        if (i < 0) {
1178 #ifdef NEW_LOGGING
1179                                LDAP_LOG( CONFIG, INFO, 
1180                                           "%s: line %d: depth must be positive.\n",
1181                                           fname, lineno, 0 );
1182 #else
1183                                Debug( LDAP_DEBUG_ANY,
1184 "%s: line %d: depth must be positive.\n",
1185                                    fname, lineno, 0 );
1186 #endif
1187                                 return 1;
1188
1189
1190                        }
1191                        be->be_max_deref_depth = i;
1192
1193                 /* set magic "root" dn for this database */
1194                 } else if ( strcasecmp( cargv[0], "rootdn" ) == 0 ) {
1195                         if ( cargc < 2 ) {
1196 #ifdef NEW_LOGGING
1197                                 LDAP_LOG( CONFIG, INFO, 
1198                                            "%s: line %d: missing dn in \"rootdn <dn>\" line.\n",
1199                                            fname, lineno ,0 );
1200 #else
1201                                 Debug( LDAP_DEBUG_ANY,
1202                     "%s: line %d: missing dn in \"rootdn <dn>\" line\n",
1203                                     fname, lineno, 0 );
1204 #endif
1205
1206                                 return( 1 );
1207                         }
1208
1209                         if ( be == NULL ) {
1210 #ifdef NEW_LOGGING
1211                                 LDAP_LOG( CONFIG, INFO, 
1212                                            "%s: line %d: rootdn line must appear inside a database "
1213                                            "definition.\n", fname, lineno ,0 );
1214 #else
1215                                 Debug( LDAP_DEBUG_ANY,
1216 "%s: line %d: rootdn line must appear inside a database definition.\n",
1217                                     fname, lineno, 0 );
1218 #endif
1219                                 return 1;
1220
1221                         } else {
1222                                 struct berval dn;
1223                                 
1224                                 if ( load_ucdata( NULL ) < 0 ) return 1;
1225
1226                                 dn.bv_val = cargv[1];
1227                                 dn.bv_len = strlen( cargv[1] );
1228
1229                                 rc = dnPrettyNormal( NULL, &dn,
1230                                         &be->be_rootdn,
1231                                         &be->be_rootndn, NULL );
1232
1233                                 if( rc != LDAP_SUCCESS ) {
1234 #ifdef NEW_LOGGING
1235                                         LDAP_LOG( CONFIG, CRIT, 
1236                                                 "%s: line %d: rootdn DN is invalid.\n", 
1237                                                 fname, lineno ,0 );
1238 #else
1239                                         Debug( LDAP_DEBUG_ANY,
1240                                                 "%s: line %d: rootdn DN is invalid\n",
1241                                            fname, lineno, 0 );
1242 #endif
1243                                         return( 1 );
1244                                 }
1245                         }
1246
1247                 /* set super-secret magic database password */
1248                 } else if ( strcasecmp( cargv[0], "rootpw" ) == 0 ) {
1249                         if ( cargc < 2 ) {
1250 #ifdef NEW_LOGGING
1251                                 LDAP_LOG( CONFIG, CRIT, 
1252                                         "%s: line %d: missing passwd in \"rootpw <passwd>\""
1253                                         " line\n", fname, lineno ,0 );
1254 #else
1255                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1256                                         "missing passwd in \"rootpw <passwd>\" line\n",
1257                                     fname, lineno, 0 );
1258 #endif
1259
1260                                 return( 1 );
1261                         }
1262
1263                         if ( be == NULL ) {
1264 #ifdef NEW_LOGGING
1265                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
1266                                         "rootpw line must appear inside a database "
1267                                         "definition.\n", fname, lineno ,0 );
1268 #else
1269                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1270                                         "rootpw line must appear inside a database "
1271                                         "definition.\n",
1272                                     fname, lineno, 0 );
1273 #endif
1274                                 return 1;
1275
1276                         } else {
1277                                 Backend *tmp_be = select_backend( &be->be_rootndn, 0, 0 );
1278
1279                                 if( tmp_be != be ) {
1280 #ifdef NEW_LOGGING
1281                                         LDAP_LOG( CONFIG, INFO,
1282                                                 "%s: line %d: "
1283                                                 "rootpw can only be set when rootdn is under suffix\n",
1284                                                 fname, lineno, "" );
1285 #else
1286                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1287                                                 "rootpw can only be set when rootdn is under suffix\n",
1288                                         fname, lineno, 0 );
1289 #endif
1290                                         return 1;
1291                                 }
1292
1293                                 be->be_rootpw.bv_val = ch_strdup( cargv[1] );
1294                                 be->be_rootpw.bv_len = strlen( be->be_rootpw.bv_val );
1295                         }
1296
1297                 /* make this database read-only */
1298                 } else if ( strcasecmp( cargv[0], "readonly" ) == 0 ) {
1299                         if ( cargc < 2 ) {
1300 #ifdef NEW_LOGGING
1301                                 LDAP_LOG( CONFIG, CRIT, 
1302                                         "%s: line %d: missing on|off in \"readonly <on|off>\" "
1303                                         "line.\n", fname, lineno ,0 );
1304 #else
1305                                 Debug( LDAP_DEBUG_ANY,
1306             "%s: line %d: missing on|off in \"readonly <on|off>\" line\n",
1307                                     fname, lineno, 0 );
1308 #endif
1309
1310                                 return( 1 );
1311                         }
1312                         if ( be == NULL ) {
1313                                 if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1314                                         frontendDB->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
1315                                 } else {
1316                                         frontendDB->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1317                                 }
1318
1319                         } else {
1320                                 if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1321                                         be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
1322                                 } else {
1323                                         be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1324                                 }
1325                         }
1326
1327                 /* restricts specific operations */
1328                 } else if ( strcasecmp( cargv[0], "restrict" ) == 0 ) {
1329                         slap_mask_t     restrict = 0;
1330                         struct restrictable_exops_t {
1331                                 char    *name;
1332                                 int     flag;
1333                         } restrictable_exops[] = {
1334                                 { LDAP_EXOP_START_TLS,          SLAP_RESTRICT_EXOP_START_TLS },
1335                                 { LDAP_EXOP_MODIFY_PASSWD,      SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
1336                                 { LDAP_EXOP_X_WHO_AM_I,         SLAP_RESTRICT_EXOP_WHOAMI },
1337                                 { LDAP_EXOP_X_CANCEL,           SLAP_RESTRICT_EXOP_CANCEL },
1338                                 { NULL,                         0 }
1339                         };
1340                         int             i;
1341
1342                         if ( cargc < 2 ) {
1343 #ifdef NEW_LOGGING
1344                                 LDAP_LOG( CONFIG, CRIT, 
1345                                         "%s: line %d: missing <op_list> in \"restrict <op_list>\" "
1346                                         "line.\n", fname, lineno ,0 );
1347 #else
1348                                 Debug( LDAP_DEBUG_ANY,
1349                                         "%s: line %d: missing <op_list> in \"restrict <op_list>\" "
1350                                         "line.\n", fname, lineno, 0 );
1351 #endif
1352
1353                                 return( 1 );
1354                         }
1355
1356                         for ( i = 1; i < cargc; i++ ) {
1357                                 if ( strcasecmp( cargv[ i ], "read" ) == 0 ) {
1358                                         restrict |= SLAP_RESTRICT_OP_READS;
1359
1360                                 } else if ( strcasecmp( cargv[ i ], "write" ) == 0 ) {
1361                                         restrict |= SLAP_RESTRICT_OP_WRITES;
1362
1363                                 } else if ( strcasecmp( cargv[ i ], "add" ) == 0 ) {
1364                                         restrict |= SLAP_RESTRICT_OP_ADD;
1365
1366                                 } else if ( strcasecmp( cargv[ i ], "bind" ) == 0 ) {
1367                                         restrict |= SLAP_RESTRICT_OP_BIND;
1368
1369                                 } else if ( strcasecmp( cargv[ i ], "compare" ) == 0 ) {
1370                                         restrict |= SLAP_RESTRICT_OP_COMPARE;
1371
1372                                 } else if ( strcasecmp( cargv[ i ], "delete" ) == 0 ) {
1373                                         restrict |= SLAP_RESTRICT_OP_DELETE;
1374
1375                                 } else if ( strncasecmp( cargv[ i ], "extended",
1376                                                         STRLENOF( "extended" ) ) == 0 ) {
1377                                         char    *e = cargv[ i ] + STRLENOF( "extended" );
1378
1379                                         if ( e[0] == '=' ) {
1380                                                 int     j;
1381
1382                                                 e++;
1383                                                 for ( j = 0; restrictable_exops[ j ].name; j++ ) {
1384                                                         if ( strcmp( e, restrictable_exops[ j ].name ) == 0 ) {
1385                                                                 restrict |= restrictable_exops[ j ].flag;
1386                                                                 break;
1387                                                         }
1388                                                 }
1389
1390                                                 if ( restrictable_exops[ j ].name == NULL ) {
1391                                                         goto restrict_unknown;
1392                                                 }
1393
1394                                                 restrict &= ~SLAP_RESTRICT_OP_EXTENDED;
1395
1396                                         } else if ( e[0] == '\0' ) {
1397                                                 restrict &= ~SLAP_RESTRICT_EXOP_MASK;
1398                                                 restrict |= SLAP_RESTRICT_OP_EXTENDED;
1399                                                 
1400                                         } else {
1401                                                 goto restrict_unknown;
1402                                         }
1403
1404                                 } else if ( strcasecmp( cargv[ i ], "modify" ) == 0 ) {
1405                                         restrict |= SLAP_RESTRICT_OP_MODIFY;
1406
1407                                 } else if ( strcasecmp( cargv[ i ], "rename" ) == 0
1408                                                 || strcasecmp( cargv[ i ], "modrdn" ) == 0 ) {
1409                                         restrict |= SLAP_RESTRICT_OP_RENAME;
1410
1411                                 } else if ( strcasecmp( cargv[ i ], "search" ) == 0 ) {
1412                                         restrict |= SLAP_RESTRICT_OP_SEARCH;
1413
1414                                 } else {
1415 restrict_unknown:;
1416
1417 #ifdef NEW_LOGGING
1418                                         LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1419                                                 "unknown operation %s in \"allow <features>\" line.\n",
1420                                                 fname, lineno, cargv[i] );
1421 #else
1422                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1423                                                 "unknown operation %s in \"allow <features>\" line\n",
1424                                                 fname, lineno, cargv[i] );
1425 #endif
1426                                         return 1;
1427                                 }
1428                         }
1429
1430                         if ( be == NULL ) {
1431                                 frontendDB->be_restrictops |= restrict;
1432
1433                         } else {
1434                                 be->be_restrictops |= restrict;
1435                         }
1436
1437                 /* allow these features */
1438                 } else if ( strcasecmp( cargv[0], "allows" ) == 0 ||
1439                         strcasecmp( cargv[0], "allow" ) == 0 )
1440                 {
1441                         slap_mask_t     allows = 0;
1442
1443                         if ( be != NULL ) {
1444 #ifdef NEW_LOGGING
1445                                 LDAP_LOG( CONFIG, INFO, 
1446                                            "%s: line %d: allow line must appear prior to "
1447                                            "database definitions.\n", fname, lineno ,0 );
1448 #else
1449                                 Debug( LDAP_DEBUG_ANY,
1450 "%s: line %d: allow line must appear prior to database definitions\n",
1451                                     fname, lineno, 0 );
1452 #endif
1453
1454                         }
1455
1456                         if ( cargc < 2 ) {
1457 #ifdef NEW_LOGGING
1458                                 LDAP_LOG( CONFIG, CRIT, 
1459                                            "%s: line %d: missing feature(s) in \"allow <features>\""
1460                                            " line\n", fname, lineno ,0 );
1461 #else
1462                                 Debug( LDAP_DEBUG_ANY,
1463             "%s: line %d: missing feature(s) in \"allow <features>\" line\n",
1464                                     fname, lineno, 0 );
1465 #endif
1466
1467                                 return( 1 );
1468                         }
1469
1470                         for( i=1; i < cargc; i++ ) {
1471                                 if( strcasecmp( cargv[i], "bind_v2" ) == 0 ) {
1472                                         allows |= SLAP_ALLOW_BIND_V2;
1473
1474                                 } else if( strcasecmp( cargv[i], "bind_anon_cred" ) == 0 ) {
1475                                         allows |= SLAP_ALLOW_BIND_ANON_CRED;
1476
1477                                 } else if( strcasecmp( cargv[i], "bind_anon_dn" ) == 0 ) {
1478                                         allows |= SLAP_ALLOW_BIND_ANON_DN;
1479
1480                                 } else if( strcasecmp( cargv[i], "update_anon" ) == 0 ) {
1481                                         allows |= SLAP_ALLOW_UPDATE_ANON;
1482
1483                                 } else {
1484 #ifdef NEW_LOGGING
1485                                         LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1486                                                 "unknown feature %s in \"allow <features>\" line.\n",
1487                                                 fname, lineno, cargv[i] );
1488 #else
1489                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1490                                                 "unknown feature %s in \"allow <features>\" line\n",
1491                                                 fname, lineno, cargv[i] );
1492 #endif
1493
1494                                         return 1;
1495                                 }
1496                         }
1497
1498                         global_allows |= allows;
1499
1500                 /* disallow these features */
1501                 } else if ( strcasecmp( cargv[0], "disallows" ) == 0 ||
1502                         strcasecmp( cargv[0], "disallow" ) == 0 )
1503                 {
1504                         slap_mask_t     disallows = 0; 
1505
1506                         if ( be != NULL ) {
1507 #ifdef NEW_LOGGING
1508                                 LDAP_LOG( CONFIG, INFO, 
1509                                            "%s: line %d: disallow line must appear prior to "
1510                                            "database definitions.\n", fname, lineno ,0 );
1511 #else
1512                                 Debug( LDAP_DEBUG_ANY,
1513 "%s: line %d: disallow line must appear prior to database definitions\n",
1514                                     fname, lineno, 0 );
1515 #endif
1516
1517                         }
1518
1519                         if ( cargc < 2 ) {
1520 #ifdef NEW_LOGGING
1521                                 LDAP_LOG( CONFIG, CRIT, 
1522                                         "%s: line %d: missing feature(s) in \"disallow <features>\""
1523                                         " line.\n", fname, lineno ,0 );
1524 #else
1525                                 Debug( LDAP_DEBUG_ANY,
1526             "%s: line %d: missing feature(s) in \"disallow <features>\" line\n",
1527                                     fname, lineno, 0 );
1528 #endif
1529
1530                                 return( 1 );
1531                         }
1532
1533                         for( i=1; i < cargc; i++ ) {
1534                                 if( strcasecmp( cargv[i], "bind_anon" ) == 0 ) {
1535                                         disallows |= SLAP_DISALLOW_BIND_ANON;
1536
1537                                 } else if( strcasecmp( cargv[i], "bind_simple" ) == 0 ) {
1538                                         disallows |= SLAP_DISALLOW_BIND_SIMPLE;
1539
1540                                 } else if( strcasecmp( cargv[i], "bind_krbv4" ) == 0 ) {
1541                                         disallows |= SLAP_DISALLOW_BIND_KRBV4;
1542
1543                                 } else if( strcasecmp( cargv[i], "tls_2_anon" ) == 0 ) {
1544                                         disallows |= SLAP_DISALLOW_TLS_2_ANON;
1545
1546                                 } else if( strcasecmp( cargv[i], "tls_authc" ) == 0 ) {
1547                                         disallows |= SLAP_DISALLOW_TLS_AUTHC;
1548
1549                                 } else {
1550 #ifdef NEW_LOGGING
1551                                         LDAP_LOG( CONFIG, CRIT, 
1552                                                 "%s: line %d: unknown feature %s in "
1553                                                 "\"disallow <features>\" line.\n",
1554                                                 fname, lineno, cargv[i] );
1555 #else
1556                                         Debug( LDAP_DEBUG_ANY,
1557                     "%s: line %d: unknown feature %s in \"disallow <features>\" line\n",
1558                                             fname, lineno, cargv[i] );
1559 #endif
1560
1561                                         return 1;
1562                                 }
1563                         }
1564
1565                         global_disallows |= disallows;
1566
1567                 /* require these features */
1568                 } else if ( strcasecmp( cargv[0], "requires" ) == 0 ||
1569                         strcasecmp( cargv[0], "require" ) == 0 )
1570                 {
1571                         slap_mask_t     requires = 0; 
1572
1573                         if ( cargc < 2 ) {
1574 #ifdef NEW_LOGGING
1575                                 LDAP_LOG( CONFIG, CRIT, 
1576                                            "%s: line %d: missing feature(s) in "
1577                                            "\"require <features>\" line.\n", fname, lineno ,0 );
1578 #else
1579                                 Debug( LDAP_DEBUG_ANY,
1580             "%s: line %d: missing feature(s) in \"require <features>\" line\n",
1581                                     fname, lineno, 0 );
1582 #endif
1583
1584                                 return( 1 );
1585                         }
1586
1587                         for( i=1; i < cargc; i++ ) {
1588                                 if( strcasecmp( cargv[i], "bind" ) == 0 ) {
1589                                         requires |= SLAP_REQUIRE_BIND;
1590
1591                                 } else if( strcasecmp( cargv[i], "LDAPv3" ) == 0 ) {
1592                                         requires |= SLAP_REQUIRE_LDAP_V3;
1593
1594                                 } else if( strcasecmp( cargv[i], "authc" ) == 0 ) {
1595                                         requires |= SLAP_REQUIRE_AUTHC;
1596
1597                                 } else if( strcasecmp( cargv[i], "SASL" ) == 0 ) {
1598                                         requires |= SLAP_REQUIRE_SASL;
1599
1600                                 } else if( strcasecmp( cargv[i], "strong" ) == 0 ) {
1601                                         requires |= SLAP_REQUIRE_STRONG;
1602
1603                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1604 #ifdef NEW_LOGGING
1605                                         LDAP_LOG( CONFIG, CRIT, 
1606                                                    "%s: line %d: unknown feature %s in "
1607                                                    "\"require <features>\" line.\n", 
1608                                                    fname, lineno , cargv[i] );
1609 #else
1610                                         Debug( LDAP_DEBUG_ANY,
1611                     "%s: line %d: unknown feature %s in \"require <features>\" line\n",
1612                                             fname, lineno, cargv[i] );
1613 #endif
1614
1615                                         return( 1 );
1616                                 }
1617                         }
1618
1619                         if ( be == NULL ) {
1620                                 frontendDB->be_requires = requires;
1621                         } else {
1622                                 be->be_requires = requires;
1623                         }
1624
1625                 /* required security factors */
1626                 } else if ( strcasecmp( cargv[0], "security" ) == 0 ) {
1627                         slap_ssf_set_t *set;
1628
1629                         if ( cargc < 2 ) {
1630 #ifdef NEW_LOGGING
1631                                 LDAP_LOG( CONFIG, CRIT, 
1632                                         "%s: line %d: missing factor(s) in \"security <factors>\""
1633                                         " line.\n", fname, lineno ,0 );
1634 #else
1635                                 Debug( LDAP_DEBUG_ANY,
1636             "%s: line %d: missing factor(s) in \"security <factors>\" line\n",
1637                                     fname, lineno, 0 );
1638 #endif
1639
1640                                 return( 1 );
1641                         }
1642
1643                         if ( be == NULL ) {
1644                                 set = &frontendDB->be_ssf_set;
1645                         } else {
1646                                 set = &be->be_ssf_set;
1647                         }
1648
1649                         for( i=1; i < cargc; i++ ) {
1650                                 slap_ssf_t      *tgt;
1651                                 char            *src;
1652
1653                                 if ( strncasecmp( cargv[i], "ssf=",
1654                                                 STRLENOF("ssf=") ) == 0 )
1655                                 {
1656                                         tgt = &set->sss_ssf;
1657                                         src = &cargv[i][STRLENOF("ssf=")];
1658
1659                                 } else if ( strncasecmp( cargv[i], "transport=",
1660                                                 STRLENOF("transport=") ) == 0 )
1661                                 {
1662                                         tgt = &set->sss_transport;
1663                                         src = &cargv[i][STRLENOF("transport=")];
1664
1665                                 } else if ( strncasecmp( cargv[i], "tls=",
1666                                                 STRLENOF("tls=") ) == 0 )
1667                                 {
1668                                         tgt = &set->sss_tls;
1669                                         src = &cargv[i][STRLENOF("tls=")];
1670
1671                                 } else if ( strncasecmp( cargv[i], "sasl=",
1672                                                 STRLENOF("sasl=") ) == 0 )
1673                                 {
1674                                         tgt = &set->sss_sasl;
1675                                         src = &cargv[i][STRLENOF("sasl=")];
1676
1677                                 } else if ( strncasecmp( cargv[i], "update_ssf=",
1678                                                 STRLENOF("update_ssf=") ) == 0 )
1679                                 {
1680                                         tgt = &set->sss_update_ssf;
1681                                         src = &cargv[i][STRLENOF("update_ssf=")];
1682
1683                                 } else if ( strncasecmp( cargv[i], "update_transport=",
1684                                                 STRLENOF("update_transport=") ) == 0 )
1685                                 {
1686                                         tgt = &set->sss_update_transport;
1687                                         src = &cargv[i][STRLENOF("update_transport=")];
1688
1689                                 } else if ( strncasecmp( cargv[i], "update_tls=",
1690                                                 STRLENOF("update_tls=") ) == 0 )
1691                                 {
1692                                         tgt = &set->sss_update_tls;
1693                                         src = &cargv[i][STRLENOF("update_tls=")];
1694
1695                                 } else if ( strncasecmp( cargv[i], "update_sasl=",
1696                                                 STRLENOF("update_sasl=") ) == 0 )
1697                                 {
1698                                         tgt = &set->sss_update_sasl;
1699                                         src = &cargv[i][STRLENOF("update_sasl=")];
1700
1701                                 } else if ( strncasecmp( cargv[i], "simple_bind=",
1702                                                 STRLENOF("simple_bind=") ) == 0 )
1703                                 {
1704                                         tgt = &set->sss_simple_bind;
1705                                         src = &cargv[i][STRLENOF("simple_bind=")];
1706
1707                                 } else {
1708 #ifdef NEW_LOGGING
1709                                         LDAP_LOG( CONFIG, CRIT, 
1710                                                    "%s: line %d: unknown factor %s in "
1711                                                    "\"security <factors>\" line.\n",
1712                                                    fname, lineno, cargv[1] );
1713 #else
1714                                         Debug( LDAP_DEBUG_ANY,
1715                     "%s: line %d: unknown factor %s in \"security <factors>\" line\n",
1716                                             fname, lineno, cargv[i] );
1717 #endif
1718
1719                                         return( 1 );
1720                                 }
1721
1722                                 *tgt = strtol( src, &next, 10 );
1723                                 if ( next == NULL || next[0] != '\0' ) {
1724 #ifdef NEW_LOGGING
1725                                         LDAP_LOG( CONFIG, CRIT, 
1726                                                    "%s: line %d: unable to parse factor \"%s\" in "
1727                                                    "\"security <factors>\" line.\n",
1728                                                    fname, lineno, cargv[1] );
1729 #else
1730                                         Debug( LDAP_DEBUG_ANY,
1731                     "%s: line %d: unable to parse factor \"%s\" in \"security <factors>\" line\n",
1732                                             fname, lineno, cargv[i] );
1733 #endif
1734
1735                                         return( 1 );
1736                                 }
1737                         }
1738
1739                 /* where to send clients when we don't hold it */
1740                 } else if ( strcasecmp( cargv[0], "referral" ) == 0 ) {
1741                         if ( cargc < 2 ) {
1742 #ifdef NEW_LOGGING
1743                                 LDAP_LOG( CONFIG, CRIT, 
1744                                         "%s: line %d: missing URL in \"referral <URL>\""
1745                                         " line.\n", fname, lineno , 0 );
1746 #else
1747                                 Debug( LDAP_DEBUG_ANY,
1748                     "%s: line %d: missing URL in \"referral <URL>\" line\n",
1749                                     fname, lineno, 0 );
1750 #endif
1751
1752                                 return( 1 );
1753                         }
1754
1755                         if( validate_global_referral( cargv[1] ) ) {
1756 #ifdef NEW_LOGGING
1757                                 LDAP_LOG( CONFIG, CRIT, 
1758                                         "%s: line %d: invalid URL (%s) in \"referral\" line.\n",
1759                                         fname, lineno, cargv[1]  );
1760 #else
1761                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1762                                         "invalid URL (%s) in \"referral\" line.\n",
1763                                     fname, lineno, cargv[1] );
1764 #endif
1765                                 return 1;
1766                         }
1767
1768                         vals[0].bv_val = cargv[1];
1769                         vals[0].bv_len = strlen( vals[0].bv_val );
1770                         if( value_add( &default_referral, vals ) )
1771                                 return LDAP_OTHER;
1772
1773 #ifdef NEW_LOGGING
1774                 } else if ( strcasecmp( cargv[0], "logfile" ) == 0 ) {
1775                         FILE *logfile;
1776                         if ( cargc < 2 ) {
1777 #ifdef NEW_LOGGING
1778                                 LDAP_LOG( CONFIG, CRIT, 
1779                                         "%s: line %d: Error in logfile directive, "
1780                                         "\"logfile <filename>\"\n", fname, lineno , 0 );
1781 #else
1782                                 Debug( LDAP_DEBUG_ANY,
1783                                        "%s: line %d: Error in logfile directive, \"logfile filename\"\n",
1784                                        fname, lineno, 0 );
1785 #endif
1786
1787                                 return( 1 );
1788                         }
1789                         logfile = fopen( cargv[1], "w" );
1790                         if ( logfile != NULL ) lutil_debug_file( logfile  );
1791
1792 #endif
1793                 /* start of a new database definition */
1794                 } else if ( strcasecmp( cargv[0], "debug" ) == 0 ) {
1795                         int level;
1796                         if ( cargc < 3 ) {
1797 #ifdef NEW_LOGGING
1798                                 LDAP_LOG( CONFIG, CRIT, 
1799                                            "%s: line %d: Error in debug directive, "
1800                                            "\"debug <subsys> <level>\"\n", fname, lineno , 0 );
1801 #else
1802                                 Debug( LDAP_DEBUG_ANY,
1803                                         "%s: line %d: Error in debug directive, \"debug subsys level\"\n",
1804                                         fname, lineno, 0 );
1805 #endif
1806                                 return( 1 );
1807                         }
1808                         level = strtol( cargv[2], &next, 10 );
1809                         if ( next == NULL || next[0] != '\0' ){
1810 #ifdef NEW_LOGGING
1811                                 LDAP_LOG( CONFIG, CRIT, 
1812                                            "%s: line %d: unable to parse level \"%s\" in debug directive, "
1813                                            "\"debug <subsys> <level>\"\n", fname, lineno , cargv[2] );
1814 #else
1815                                 Debug( LDAP_DEBUG_ANY,
1816                                            "%s: line %d: unable to parse level \"%s\" in debug directive, "
1817                                            "\"debug <subsys> <level>\"\n", fname, lineno , cargv[2] );
1818 #endif
1819                                 return( 1 );
1820                         }
1821
1822                         if ( level <= 0 ) level = lutil_mnem2level( cargv[2] );
1823                         lutil_set_debug_level( cargv[1], level );
1824                 /* specify an Object Identifier macro */
1825                 } else if ( strcasecmp( cargv[0], "objectidentifier" ) == 0 ) {
1826                         rc = parse_oidm( fname, lineno, cargc, cargv );
1827                         if( rc ) return rc;
1828
1829                 /* specify an objectclass */
1830                 } else if ( strcasecmp( cargv[0], "objectclass" ) == 0 ) {
1831                         if ( cargc < 2 ) {
1832 #ifdef NEW_LOGGING
1833                                 LDAP_LOG( CONFIG, INFO, 
1834                                         "%s: line %d: illegal objectclass format.\n",
1835                                         fname, lineno , 0 );
1836 #else
1837                                 Debug( LDAP_DEBUG_ANY,
1838                                        "%s: line %d: illegal objectclass format.\n",
1839                                        fname, lineno, 0 );
1840 #endif
1841                                 return( 1 );
1842
1843                         } else if ( *cargv[1] == '('  /*')'*/) {
1844                                 char * p;
1845                                 p = strchr(saveline,'(' /*')'*/);
1846                                 rc = parse_oc( fname, lineno, p, cargv );
1847                                 if( rc ) return rc;
1848
1849                         } else {
1850 #ifdef NEW_LOGGING
1851                                 LDAP_LOG( CONFIG, INFO, 
1852                                         "%s: line %d: old objectclass format not supported\n",
1853                                         fname, lineno , 0 );
1854 #else
1855                                 Debug( LDAP_DEBUG_ANY,
1856                                        "%s: line %d: old objectclass format not supported.\n",
1857                                        fname, lineno, 0 );
1858 #endif
1859                         }
1860
1861                 } else if ( strcasecmp( cargv[0], "ditcontentrule" ) == 0 ) {
1862                         char * p;
1863                         p = strchr(saveline,'(' /*')'*/);
1864                         rc = parse_cr( fname, lineno, p, cargv );
1865                         if( rc ) return rc;
1866
1867                 /* specify an attribute type */
1868                 } else if (( strcasecmp( cargv[0], "attributetype" ) == 0 )
1869                         || ( strcasecmp( cargv[0], "attribute" ) == 0 ))
1870                 {
1871                         if ( cargc < 2 ) {
1872 #ifdef NEW_LOGGING
1873                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
1874                                         "illegal attribute type format.\n",
1875                                         fname, lineno , 0 );
1876 #else
1877                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1878                                         "illegal attribute type format.\n",
1879                                         fname, lineno, 0 );
1880 #endif
1881                                 return( 1 );
1882
1883                         } else if ( *cargv[1] == '(' /*')'*/) {
1884                                 char * p;
1885                                 p = strchr(saveline,'(' /*')'*/);
1886                                 rc = parse_at( fname, lineno, p, cargv );
1887                                 if( rc ) return rc;
1888
1889                         } else {
1890 #ifdef NEW_LOGGING
1891                                 LDAP_LOG( CONFIG, INFO, 
1892                                         "%s: line %d: old attribute type format not supported.\n",
1893                                         fname, lineno , 0 );
1894 #else
1895                                 Debug( LDAP_DEBUG_ANY,
1896     "%s: line %d: old attribute type format not supported.\n",
1897                                     fname, lineno, 0 );
1898 #endif
1899
1900                         }
1901
1902                 /* define attribute option(s) */
1903                 } else if ( strcasecmp( cargv[0], "attributeoptions" ) == 0 ) {
1904                         ad_define_option( NULL, NULL, 0 );
1905                         for ( i = 1; i < cargc; i++ )
1906                                 if ( ad_define_option( cargv[i], fname, lineno ) != 0 )
1907                                         return 1;
1908
1909                 /* turn on/off schema checking */
1910                 } else if ( strcasecmp( cargv[0], "schemacheck" ) == 0 ) {
1911                         if ( cargc < 2 ) {
1912 #ifdef NEW_LOGGING
1913                                 LDAP_LOG( CONFIG, CRIT, 
1914                                         "%s: line %d: missing on|off in \"schemacheck <on|off>\""
1915                                         " line.\n", fname, lineno , 0 );
1916 #else
1917                                 Debug( LDAP_DEBUG_ANY,
1918     "%s: line %d: missing on|off in \"schemacheck <on|off>\" line\n",
1919                                     fname, lineno, 0 );
1920 #endif
1921
1922                                 return( 1 );
1923                         }
1924                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
1925 #ifdef NEW_LOGGING
1926                                 LDAP_LOG( CONFIG, CRIT, 
1927                                         "%s: line %d: schema checking disabled! your mileage may "
1928                                         "vary!\n", fname, lineno , 0 );
1929 #else
1930                                 Debug( LDAP_DEBUG_ANY,
1931                                         "%s: line %d: schema checking disabled! your mileage may vary!\n",
1932                                     fname, lineno, 0 );
1933 #endif
1934                                 global_schemacheck = 0;
1935                         } else {
1936                                 global_schemacheck = 1;
1937                         }
1938
1939                 /* specify access control info */
1940                 } else if ( strcasecmp( cargv[0], "access" ) == 0 ) {
1941                         parse_acl( be, fname, lineno, cargc, cargv );
1942
1943                 /* debug level to log things to syslog */
1944                 } else if ( strcasecmp( cargv[0], "loglevel" ) == 0 ) {
1945                         if ( cargc < 2 ) {
1946 #ifdef NEW_LOGGING
1947                                 LDAP_LOG( CONFIG, CRIT, 
1948                                         "%s: line %d: missing level(s) in \"loglevel <level> [...]\""
1949                                         " line.\n", fname, lineno , 0 );
1950 #else
1951                                 Debug( LDAP_DEBUG_ANY,
1952                     "%s: line %d: missing level(s) in \"loglevel <level> [...]\" line\n",
1953                                     fname, lineno, 0 );
1954 #endif
1955
1956                                 return( 1 );
1957                         }
1958
1959                         ldap_syslog = 0;
1960
1961                         for( i=1; i < cargc; i++ ) {
1962                                 int     level;
1963
1964                                 if ( isdigit( cargv[i][0] ) ) {
1965                                         level = strtol( cargv[i], &next, 10 );
1966                                         if ( next == NULL || next[0] != '\0' ) {
1967 #ifdef NEW_LOGGING
1968                                                 LDAP_LOG( CONFIG, CRIT, 
1969                                                         "%s: line %d: unable to parse level \"%s\" "
1970                                                         "in \"loglevel <level> [...]\" line.\n",
1971                                                         fname, lineno , cargv[i] );
1972 #else
1973                                                 Debug( LDAP_DEBUG_ANY,
1974                                                         "%s: line %d: unable to parse level \"%s\" "
1975                                                         "in \"loglevel <level> [...]\" line.\n",
1976                                                         fname, lineno , cargv[i] );
1977 #endif
1978                                                 return( 1 );
1979                                         }
1980                                         
1981                                 } else {
1982                                         static struct {
1983                                                 int     i;
1984                                                 char    *s;
1985                                         } int_2_level[] = {
1986                                                 { LDAP_DEBUG_TRACE,     "Trace"         },
1987                                                 { LDAP_DEBUG_PACKETS,   "Packets"       },
1988                                                 { LDAP_DEBUG_ARGS,      "Args"          },
1989                                                 { LDAP_DEBUG_CONNS,     "Conns"         },
1990                                                 { LDAP_DEBUG_BER,       "BER"           },
1991                                                 { LDAP_DEBUG_FILTER,    "Filter"        },
1992                                                 { LDAP_DEBUG_CONFIG,    "Config"        },
1993                                                 { LDAP_DEBUG_ACL,       "ACL"           },
1994                                                 { LDAP_DEBUG_STATS,     "Stats"         },
1995                                                 { LDAP_DEBUG_STATS2,    "Stats2"        },
1996                                                 { LDAP_DEBUG_SHELL,     "Shell"         },
1997                                                 { LDAP_DEBUG_PARSE,     "Parse"         },
1998                                                 { LDAP_DEBUG_CACHE,     "Cache"         },
1999                                                 { LDAP_DEBUG_INDEX,     "Index"         },
2000                                                 { -1,                   "Any"           },
2001                                                 { 0,                    NULL            }
2002                                         };
2003                                         int     j;
2004
2005                                         for ( j = 0; int_2_level[j].s; j++ ) {
2006                                                 if ( strcasecmp( cargv[i], int_2_level[j].s ) == 0 ) {
2007                                                         level = int_2_level[j].i;
2008                                                         break;
2009                                                 }
2010                                         }
2011
2012                                         if ( int_2_level[j].s == NULL ) {
2013 #ifdef NEW_LOGGING
2014                                                 LDAP_LOG( CONFIG, CRIT, 
2015                                                         "%s: line %d: unknown level \"%s\" "
2016                                                         "in \"loglevel <level> [...]\" line.\n",
2017                                                         fname, lineno , cargv[i] );
2018 #else
2019                                                 Debug( LDAP_DEBUG_ANY,
2020                                                         "%s: line %d: unknown level \"%s\" "
2021                                                         "in \"loglevel <level> [...]\" line.\n",
2022                                                         fname, lineno , cargv[i] );
2023 #endif
2024                                                 return( 1 );
2025                                         }
2026                                 }
2027
2028                                 ldap_syslog |= level;
2029                         }
2030
2031                 /* list of sync replication information in this backend (slave only) */
2032                 } else if ( strcasecmp( cargv[0], "syncrepl" ) == 0 ) {
2033
2034                         if ( be == NULL ) {
2035 #ifdef NEW_LOGGING
2036                                 LDAP_LOG( CONFIG, INFO, 
2037                                             "%s: line %d: syncrepl line must appear inside "
2038                                             "a database definition.\n", fname, lineno, 0);
2039 #else
2040                                 Debug( LDAP_DEBUG_ANY,
2041                                             "%s: line %d: syncrepl line must appear inside "
2042                                             "a database definition.\n", fname, lineno, 0);
2043 #endif
2044                                 return 1;
2045
2046                         } else if ( SLAP_SHADOW( be )) {
2047 #ifdef NEW_LOGGING
2048                                 LDAP_LOG( CONFIG, INFO, 
2049                                         "%s: line %d: syncrepl: database already shadowed.\n",
2050                                         fname, lineno, 0);
2051 #else
2052                                 Debug( LDAP_DEBUG_ANY,
2053                                         "%s: line %d: syncrepl: database already shadowed.\n",
2054                                         fname, lineno, 0);
2055 #endif
2056                                 return 1;
2057
2058                         } else if ( add_syncrepl( be, cargv, cargc )) {
2059                                 return 1;
2060                         }
2061
2062                         SLAP_DBFLAGS(be) |= ( SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SYNC_SHADOW );
2063
2064                 /* list of replicas of the data in this backend (master only) */
2065                 } else if ( strcasecmp( cargv[0], "replica" ) == 0 ) {
2066                         if ( cargc < 2 ) {
2067 #ifdef NEW_LOGGING
2068                                 LDAP_LOG( CONFIG, CRIT, 
2069                                         "%s: line %d: missing host or uri in \"replica "
2070                                         " <host[:port]\" line\n", fname, lineno , 0 );
2071 #else
2072                                 Debug( LDAP_DEBUG_ANY,
2073             "%s: line %d: missing host or uri in \"replica <host[:port]>\" line\n",
2074                                     fname, lineno, 0 );
2075 #endif
2076
2077                                 return( 1 );
2078                         }
2079                         if ( be == NULL ) {
2080 #ifdef NEW_LOGGING
2081                                 LDAP_LOG( CONFIG, INFO, 
2082                                             "%s: line %d: replica line must appear inside "
2083                                             "a database definition.\n", fname, lineno, 0);
2084 #else
2085                                 Debug( LDAP_DEBUG_ANY,
2086 "%s: line %d: replica line must appear inside a database definition\n",
2087                                     fname, lineno, 0 );
2088 #endif
2089                                 return 1;
2090
2091                         } else {
2092                                 int nr = -1;
2093
2094                                 for ( i = 1; i < cargc; i++ ) {
2095                                         if ( strncasecmp( cargv[i], "host=", 5 )
2096                                             == 0 ) {
2097                                                 nr = add_replica_info( be, 
2098                                                         cargv[i] + 5 );
2099                                                 break;
2100                                         } else if (strncasecmp( cargv[i], "uri=", 4 )
2101                                             == 0 ) {
2102                                             if ( ldap_url_parse( cargv[ i ] + 4, &ludp )
2103                                                 != LDAP_SUCCESS ) {
2104 #ifdef NEW_LOGGING
2105                                                         LDAP_LOG( CONFIG, INFO, 
2106                                                         "%s: line %d: replica line contains invalid "
2107                                                         "uri definition.\n", fname, lineno, 0);
2108 #else
2109                                                         Debug( LDAP_DEBUG_ANY,
2110                                                         "%s: line %d: replica line contains invalid "
2111                                                         "uri definition.\n", fname, lineno, 0);
2112 #endif
2113                                                         return 1;
2114                                                 }
2115                                                 if (ludp->lud_host == NULL ) {
2116 #ifdef NEW_LOGGING
2117                                                         LDAP_LOG( CONFIG, INFO, 
2118                                                         "%s: line %d: replica line contains invalid "
2119                                                         "uri definition - missing hostname.\n", 
2120                                                         fname, lineno, 0);
2121 #else
2122                                                         Debug( LDAP_DEBUG_ANY,
2123                                                         "%s: line %d: replica line contains invalid "
2124                                                         "uri definition - missing hostname.\n", fname, lineno, 0);
2125 #endif
2126                                                         return 1;
2127                                                 }
2128                                         replicahost = ch_malloc( strlen( cargv[ i ] ) );
2129                                                 if ( replicahost == NULL ) {
2130 #ifdef NEW_LOGGING
2131                                                         LDAP_LOG( CONFIG, ERR, 
2132                                                         "out of memory in read_config\n", 0, 0,0 );
2133 #else
2134                                                         Debug( LDAP_DEBUG_ANY, 
2135                                                         "out of memory in read_config\n", 0, 0, 0 );
2136 #endif
2137                                                         ldap_free_urldesc( ludp );                              
2138                                                         exit( EXIT_FAILURE );
2139                                                 }
2140                                                 sprintf(replicahost, "%s:%d", 
2141                                                         ludp->lud_host, ludp->lud_port);
2142                                                 nr = add_replica_info( be, replicahost );
2143                                                 ldap_free_urldesc( ludp );                              
2144                                                 ch_free(replicahost);
2145                                                 break;
2146                                         }
2147                                 }
2148                                 if ( i == cargc ) {
2149 #ifdef NEW_LOGGING
2150                                         LDAP_LOG( CONFIG, INFO, 
2151                                                 "%s: line %d: missing host or uri in \"replica\" line\n", 
2152                                                 fname, lineno , 0 );
2153 #else
2154                                         Debug( LDAP_DEBUG_ANY,
2155                     "%s: line %d: missing host or uri in \"replica\" line\n",
2156                                             fname, lineno, 0 );
2157 #endif
2158                                         return 1;
2159
2160                                 } else if ( nr == -1 ) {
2161 #ifdef NEW_LOGGING
2162                                         LDAP_LOG( CONFIG, INFO, 
2163                                                    "%s: line %d: unable to add"
2164                                                    " replica \"%s\"\n",
2165                                                    fname, lineno, 
2166                                                    cargv[i] + 5 );
2167 #else
2168                                         Debug( LDAP_DEBUG_ANY,
2169                 "%s: line %d: unable to add replica \"%s\"\n",
2170                                                 fname, lineno, cargv[i] + 5 );
2171 #endif
2172                                         return 1;
2173                                 } else {
2174                                         for ( i = 1; i < cargc; i++ ) {
2175                                                 if ( strncasecmp( cargv[i], "suffix=", 7 ) == 0 ) {
2176
2177                                                         switch ( add_replica_suffix( be, nr, cargv[i] + 7 ) ) {
2178                                                         case 1:
2179 #ifdef NEW_LOGGING
2180                                                                 LDAP_LOG( CONFIG, INFO, 
2181                                                                         "%s: line %d: suffix \"%s\" in \"replica\""
2182                                                                         " line is not valid for backend(ignored)\n",
2183                                                                         fname, lineno, cargv[i] + 7 );
2184 #else
2185                                                                 Debug( LDAP_DEBUG_ANY,
2186                                                                                 "%s: line %d: suffix \"%s\" in \"replica\" line is not valid for backend (ignored)\n",
2187                                                                                 fname, lineno, cargv[i] + 7 );
2188 #endif
2189                                                                 break;
2190
2191                                                         case 2:
2192 #ifdef NEW_LOGGING
2193                                                                 LDAP_LOG( CONFIG, INFO, 
2194                                                                         "%s: line %d: unable to normalize suffix"
2195                                                                         " in \"replica\" line (ignored)\n",
2196                                                                         fname, lineno , 0 );
2197 #else
2198                                                                 Debug( LDAP_DEBUG_ANY,
2199                                                                                  "%s: line %d: unable to normalize suffix in \"replica\" line (ignored)\n",
2200                                                                                  fname, lineno, 0 );
2201 #endif
2202                                                                 break;
2203                                                         }
2204
2205                                                 } else if ( strncasecmp( cargv[i], "attr", 4 ) == 0 ) {
2206                                                         int exclude = 0;
2207                                                         char *arg = cargv[i] + 4;
2208
2209                                                         if ( arg[0] == '!' ) {
2210                                                                 arg++;
2211                                                                 exclude = 1;
2212                                                         }
2213
2214                                                         if ( arg[0] != '=' ) {
2215                                                                 continue;
2216                                                         }
2217
2218                                                         if ( add_replica_attrs( be, nr, arg + 1, exclude ) ) {
2219 #ifdef NEW_LOGGING
2220                                                                 LDAP_LOG( CONFIG, INFO, 
2221                                                                         "%s: line %d: attribute \"%s\" in "
2222                                                                         "\"replica\" line is unknown\n",
2223                                                                         fname, lineno, arg + 1 ); 
2224 #else
2225                                                                 Debug( LDAP_DEBUG_ANY,
2226                                                                                 "%s: line %d: attribute \"%s\" in \"replica\" line is unknown\n",
2227                                                                                 fname, lineno, arg + 1 );
2228 #endif
2229                                                                 return( 1 );
2230                                                         }
2231                                                 }
2232                                         }
2233                                 }
2234                         }
2235
2236                 } else if ( strcasecmp( cargv[0], "replicationInterval" ) == 0 ) {
2237                         /* ignore */
2238
2239                 /* dn of slave entity allowed to write to replica */
2240                 } else if ( strcasecmp( cargv[0], "updatedn" ) == 0 ) {
2241                         if ( cargc < 2 ) {
2242 #ifdef NEW_LOGGING
2243                                 LDAP_LOG( CONFIG, CRIT, 
2244                                         "%s: line %d: missing dn in \"updatedn <dn>\""
2245                                         " line.\n", fname, lineno , 0 );
2246 #else
2247                                 Debug( LDAP_DEBUG_ANY,
2248                     "%s: line %d: missing dn in \"updatedn <dn>\" line\n",
2249                                     fname, lineno, 0 );
2250 #endif
2251
2252                                 return( 1 );
2253                         }
2254                         if ( be == NULL ) {
2255 #ifdef NEW_LOGGING
2256                                 LDAP_LOG( CONFIG, INFO, 
2257                                         "%s: line %d: updatedn line must appear inside "
2258                                         "a database definition\n", 
2259                                         fname, lineno , 0 );
2260 #else
2261                                 Debug( LDAP_DEBUG_ANY,
2262 "%s: line %d: updatedn line must appear inside a database definition\n",
2263                                     fname, lineno, 0 );
2264 #endif
2265                                 return 1;
2266
2267                         } else if ( SLAP_SHADOW(be) ) {
2268 #ifdef NEW_LOGGING
2269                                 LDAP_LOG( CONFIG, INFO, 
2270                                         "%s: line %d: updatedn: database already shadowed.\n",
2271                                         fname, lineno, 0);
2272 #else
2273                                 Debug( LDAP_DEBUG_ANY,
2274                                         "%s: line %d: updatedn: database already shadowed.\n",
2275                                         fname, lineno, 0);
2276 #endif
2277                                 return 1;
2278
2279                         } else {
2280                                 struct berval dn;
2281
2282                                 if ( load_ucdata( NULL ) < 0 ) return 1;
2283
2284                                 dn.bv_val = cargv[1];
2285                                 dn.bv_len = strlen( cargv[1] );
2286
2287                                 rc = dnNormalize( 0, NULL, NULL, &dn, &be->be_update_ndn, NULL );
2288                                 if( rc != LDAP_SUCCESS ) {
2289 #ifdef NEW_LOGGING
2290                                         LDAP_LOG( CONFIG, CRIT, 
2291                                                 "%s: line %d: updatedn DN is invalid.\n",
2292                                                 fname, lineno , 0 );
2293 #else
2294                                         Debug( LDAP_DEBUG_ANY,
2295                                                 "%s: line %d: updatedn DN is invalid\n",
2296                                             fname, lineno, 0 );
2297 #endif
2298                                         return 1;
2299                                 }
2300
2301                         }
2302                         SLAP_DBFLAGS(be) |= ( SLAP_DBFLAG_SHADOW | SLAP_DBFLAG_SLURP_SHADOW );
2303
2304                 } else if ( strcasecmp( cargv[0], "updateref" ) == 0 ) {
2305                         if ( cargc < 2 ) {
2306 #ifdef NEW_LOGGING
2307                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
2308                                         "missing url in \"updateref <ldapurl>\" line.\n",
2309                                         fname, lineno , 0 );
2310 #else
2311                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
2312                                         "missing url in \"updateref <ldapurl>\" line\n",
2313                                     fname, lineno, 0 );
2314 #endif
2315
2316                                 return( 1 );
2317                         }
2318                         if ( be == NULL ) {
2319 #ifdef NEW_LOGGING
2320                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: updateref"
2321                                         " line must appear inside a database definition\n",
2322                                         fname, lineno , 0 );
2323 #else
2324                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: updateref"
2325                                         " line must appear inside a database definition\n",
2326                                         fname, lineno, 0 );
2327 #endif
2328                                 return 1;
2329
2330                         } else if ( !SLAP_SHADOW(be) ) {
2331 #ifdef NEW_LOGGING
2332                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
2333                                         "updateref line must come after syncrepl or updatedn.\n",
2334                                         fname, lineno , 0 );
2335 #else
2336                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
2337                                         "updateref line must after syncrepl or updatedn.\n",
2338                                     fname, lineno, 0 );
2339 #endif
2340                                 return 1;
2341                         }
2342
2343                         if( validate_global_referral( cargv[1] ) ) {
2344 #ifdef NEW_LOGGING
2345                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
2346                                         "invalid URL (%s) in \"updateref\" line.\n",
2347                                         fname, lineno, cargv[1] );
2348 #else
2349                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
2350                                         "invalid URL (%s) in \"updateref\" line.\n",
2351                                     fname, lineno, cargv[1] );
2352 #endif
2353                                 return 1;
2354                         }
2355
2356                         vals[0].bv_val = cargv[1];
2357                         vals[0].bv_len = strlen( vals[0].bv_val );
2358                         if( value_add( &be->be_update_refs, vals ) ) {
2359                                 return LDAP_OTHER;
2360                         }
2361
2362                 /* replication log file to which changes are appended */
2363                 } else if ( strcasecmp( cargv[0], "replogfile" ) == 0 ) {
2364                         if ( cargc < 2 ) {
2365 #ifdef NEW_LOGGING
2366                                 LDAP_LOG( CONFIG, CRIT, 
2367                                         "%s: line %d: missing filename in \"replogfile <filename>\""
2368                                         " line.\n", fname, lineno , 0 );
2369 #else
2370                                 Debug( LDAP_DEBUG_ANY,
2371             "%s: line %d: missing filename in \"replogfile <filename>\" line\n",
2372                                     fname, lineno, 0 );
2373 #endif
2374
2375                                 return( 1 );
2376                         }
2377                         if ( be ) {
2378                                 be->be_replogfile = ch_strdup( cargv[1] );
2379                         } else {
2380                                 replogfile = ch_strdup( cargv[1] );
2381                         }
2382
2383                 /* file from which to read additional rootdse attrs */
2384                 } else if ( strcasecmp( cargv[0], "rootDSE" ) == 0) {
2385                         if ( cargc < 2 ) {
2386 #ifdef NEW_LOGGING
2387                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
2388                                         "missing filename in \"rootDSE <filename>\" line.\n",
2389                                         fname, lineno , 0 );
2390 #else
2391                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
2392                                         "missing filename in \"rootDSE <filename>\" line.\n",
2393                                     fname, lineno, 0 );
2394 #endif
2395                                 return 1;
2396                         }
2397
2398                         if( read_root_dse_file( cargv[1] ) ) {
2399 #ifdef NEW_LOGGING
2400                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
2401                                         "could not read \"rootDSE <filename>\" line.\n",
2402                                         fname, lineno , 0 );
2403 #else
2404                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
2405                                         "could not read \"rootDSE <filename>\" line\n",
2406                                     fname, lineno, 0 );
2407 #endif
2408                                 return 1;
2409                         }
2410
2411                 /* maintain lastmodified{by,time} attributes */
2412                 } else if ( strcasecmp( cargv[0], "lastmod" ) == 0 ) {
2413                         if ( cargc < 2 ) {
2414 #ifdef NEW_LOGGING
2415                                 LDAP_LOG( CONFIG, CRIT, 
2416                                            "%s: line %d: missing on|off in \"lastmod <on|off>\""
2417                                            " line.\n", fname, lineno , 0 );
2418 #else
2419                                 Debug( LDAP_DEBUG_ANY,
2420             "%s: line %d: missing on|off in \"lastmod <on|off>\" line\n",
2421                                     fname, lineno, 0 );
2422 #endif
2423
2424                                 return( 1 );
2425                         }
2426
2427                         if ( be == NULL ) {
2428 #ifdef NEW_LOGGING
2429                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: lastmod"
2430                                         " line must appear inside a database definition\n",
2431                                         fname, lineno , 0 );
2432 #else
2433                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: lastmod"
2434                                         " line must appear inside a database definition\n",
2435                                         fname, lineno, 0 );
2436 #endif
2437                                 return 1;
2438
2439                         } else if ( SLAP_NOLASTMODCMD(be) ) {
2440 #ifdef NEW_LOGGING
2441                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: lastmod"
2442                                         " not available for %s database\n",
2443                                         fname, lineno , be->bd_info->bi_type );
2444 #else
2445                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: lastmod"
2446                                         " not available for %s databases\n",
2447                                         fname, lineno, be->bd_info->bi_type );
2448 #endif
2449                                 return 1;
2450                         }
2451
2452                         if ( strcasecmp( cargv[1], "on" ) == 0 ) {
2453                                 SLAP_DBFLAGS(be) &= ~SLAP_DBFLAG_NOLASTMOD;
2454                         } else {
2455                                 SLAP_DBFLAGS(be) |= SLAP_DBFLAG_NOLASTMOD;
2456                         }
2457
2458 #ifdef SIGHUP
2459                 /* turn on/off gentle SIGHUP handling */
2460                 } else if ( strcasecmp( cargv[0], "gentlehup" ) == 0 ) {
2461                         if ( cargc < 2 ) {
2462                                 Debug( LDAP_DEBUG_ANY,
2463     "%s: line %d: missing on|off in \"gentlehup <on|off>\" line\n",
2464                                     fname, lineno, 0 );
2465                                 return( 1 );
2466                         }
2467                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
2468                                 global_gentlehup = 0;
2469                         } else {
2470                                 global_gentlehup = 1;
2471                         }
2472 #endif
2473
2474                 /* set idle timeout value */
2475                 } else if ( strcasecmp( cargv[0], "idletimeout" ) == 0 ) {
2476                         int i;
2477                         if ( cargc < 2 ) {
2478 #ifdef NEW_LOGGING
2479                                 LDAP_LOG( CONFIG, CRIT, 
2480                                         "%s: line %d: missing timeout value in "
2481                                         "\"idletimeout <seconds>\" line.\n", fname, lineno , 0 );
2482 #else
2483                                 Debug( LDAP_DEBUG_ANY,
2484             "%s: line %d: missing timeout value in \"idletimeout <seconds>\" line\n",
2485                                     fname, lineno, 0 );
2486 #endif
2487
2488                                 return( 1 );
2489                         }
2490
2491                         i = atoi( cargv[1] );
2492
2493                         if( i < 0 ) {
2494 #ifdef NEW_LOGGING
2495                                 LDAP_LOG( CONFIG, CRIT, 
2496                                         "%s: line %d: timeout value (%d) invalid "
2497                                         "\"idletimeout <seconds>\" line.\n", fname, lineno, i );
2498 #else
2499                                 Debug( LDAP_DEBUG_ANY,
2500             "%s: line %d: timeout value (%d) invalid \"idletimeout <seconds>\" line\n",
2501                                     fname, lineno, i );
2502 #endif
2503
2504                                 return( 1 );
2505                         }
2506
2507                         global_idletimeout = i;
2508
2509                 /* include another config file */
2510                 } else if ( strcasecmp( cargv[0], "include" ) == 0 ) {
2511                         if ( cargc < 2 ) {
2512 #ifdef NEW_LOGGING
2513                                 LDAP_LOG( CONFIG, CRIT, 
2514                                         "%s: line %d: missing filename in \"include "
2515                                         "<filename>\" line.\n", fname, lineno , 0 );
2516 #else
2517                                 Debug( LDAP_DEBUG_ANY,
2518     "%s: line %d: missing filename in \"include <filename>\" line\n",
2519                                     fname, lineno, 0 );
2520 #endif
2521
2522                                 return( 1 );
2523                         }
2524                         savefname = ch_strdup( cargv[1] );
2525                         savelineno = lineno;
2526
2527                         if ( read_config( savefname, depth+1 ) != 0 ) {
2528                                 return( 1 );
2529                         }
2530
2531                         free( savefname );
2532                         lineno = savelineno - 1;
2533
2534                 /* location of kerberos srvtab file */
2535                 } else if ( strcasecmp( cargv[0], "srvtab" ) == 0 ) {
2536                         if ( cargc < 2 ) {
2537 #ifdef NEW_LOGGING
2538                                 LDAP_LOG( CONFIG, CRIT, 
2539                                         "%s: line %d: missing filename in \"srvtab "
2540                                         "<filename>\" line.\n", fname, lineno , 0 );
2541 #else
2542                                 Debug( LDAP_DEBUG_ANY,
2543             "%s: line %d: missing filename in \"srvtab <filename>\" line\n",
2544                                     fname, lineno, 0 );
2545 #endif
2546
2547                                 return( 1 );
2548                         }
2549                         ldap_srvtab = ch_strdup( cargv[1] );
2550
2551 #ifdef SLAPD_MODULES
2552                 } else if (strcasecmp( cargv[0], "moduleload") == 0 ) {
2553                    if ( cargc < 2 ) {
2554 #ifdef NEW_LOGGING
2555                            LDAP_LOG( CONFIG, INFO, 
2556                                    "%s: line %d: missing filename in \"moduleload "
2557                                    "<filename>\" line.\n", fname, lineno , 0 );
2558 #else
2559                       Debug( LDAP_DEBUG_ANY,
2560                              "%s: line %d: missing filename in \"moduleload <filename>\" line\n",
2561                              fname, lineno, 0 );
2562 #endif
2563
2564                       exit( EXIT_FAILURE );
2565                    }
2566                    if (module_load(cargv[1], cargc - 2, (cargc > 2) ? cargv + 2 : NULL)) {
2567 #ifdef NEW_LOGGING
2568                            LDAP_LOG( CONFIG, CRIT, 
2569                                    "%s: line %d: failed to load or initialize module %s\n",
2570                                    fname, lineno, cargv[1] );
2571 #else
2572                       Debug( LDAP_DEBUG_ANY,
2573                              "%s: line %d: failed to load or initialize module %s\n",
2574                              fname, lineno, cargv[1]);
2575 #endif
2576
2577                       exit( EXIT_FAILURE );
2578                    }
2579                 } else if (strcasecmp( cargv[0], "modulepath") == 0 ) {
2580                    if ( cargc != 2 ) {
2581 #ifdef NEW_LOGGING
2582                            LDAP_LOG( CONFIG, INFO, 
2583                                   "%s: line %d: missing path in \"modulepath <path>\""
2584                                   " line\n", fname, lineno , 0 );
2585 #else
2586                       Debug( LDAP_DEBUG_ANY,
2587                              "%s: line %d: missing path in \"modulepath <path>\" line\n",
2588                              fname, lineno, 0 );
2589 #endif
2590
2591                       exit( EXIT_FAILURE );
2592                    }
2593                    if (module_path( cargv[1] )) {
2594 #ifdef NEW_LOGGING
2595                            LDAP_LOG( CONFIG, CRIT, 
2596                                   "%s: line %d: failed to set module search path to %s.\n",
2597                                   fname, lineno, cargv[1] );
2598 #else
2599                            Debug( LDAP_DEBUG_ANY,
2600                                   "%s: line %d: failed to set module search path to %s\n",
2601                                   fname, lineno, cargv[1]);
2602 #endif
2603
2604                       exit( EXIT_FAILURE );
2605                    }
2606                    
2607 #endif /*SLAPD_MODULES*/
2608
2609 #ifdef HAVE_TLS
2610                 } else if ( !strcasecmp( cargv[0], "TLSRandFile" ) ) {
2611                         rc = ldap_pvt_tls_set_option( NULL,
2612                                                       LDAP_OPT_X_TLS_RANDOM_FILE,
2613                                                       cargv[1] );
2614                         if ( rc )
2615                                 return rc;
2616
2617                 } else if ( !strcasecmp( cargv[0], "TLSCipherSuite" ) ) {
2618                         rc = ldap_pvt_tls_set_option( NULL,
2619                                                       LDAP_OPT_X_TLS_CIPHER_SUITE,
2620                                                       cargv[1] );
2621                         if ( rc )
2622                                 return rc;
2623
2624                 } else if ( !strcasecmp( cargv[0], "TLSCertificateFile" ) ) {
2625                         rc = ldap_pvt_tls_set_option( NULL,
2626                                                       LDAP_OPT_X_TLS_CERTFILE,
2627                                                       cargv[1] );
2628                         if ( rc )
2629                                 return rc;
2630
2631                 } else if ( !strcasecmp( cargv[0], "TLSCertificateKeyFile" ) ) {
2632                         rc = ldap_pvt_tls_set_option( NULL,
2633                                                       LDAP_OPT_X_TLS_KEYFILE,
2634                                                       cargv[1] );
2635                         if ( rc )
2636                                 return rc;
2637
2638                 } else if ( !strcasecmp( cargv[0], "TLSCACertificatePath" ) ) {
2639                         rc = ldap_pvt_tls_set_option( NULL,
2640                                                       LDAP_OPT_X_TLS_CACERTDIR,
2641                                                       cargv[1] );
2642                         if ( rc )
2643                                 return rc;
2644
2645                 } else if ( !strcasecmp( cargv[0], "TLSCACertificateFile" ) ) {
2646                         rc = ldap_pvt_tls_set_option( NULL,
2647                                                       LDAP_OPT_X_TLS_CACERTFILE,
2648                                                       cargv[1] );
2649                         if ( rc )
2650                                 return rc;
2651                 } else if ( !strcasecmp( cargv[0], "TLSVerifyClient" ) ) {
2652                         if ( isdigit( (unsigned char) cargv[1][0] ) ) {
2653                                 i = atoi(cargv[1]);
2654                                 rc = ldap_pvt_tls_set_option( NULL,
2655                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2656                                                       &i );
2657                         } else {
2658                                 rc = ldap_int_tls_config( NULL,
2659                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2660                                                       cargv[1] );
2661                         }
2662
2663                         if ( rc )
2664                                 return rc;
2665
2666 #endif
2667
2668                 } else if ( !strcasecmp( cargv[0], "reverse-lookup" ) ) {
2669 #ifdef SLAPD_RLOOKUPS
2670                         if ( cargc < 2 ) {
2671 #ifdef NEW_LOGGING
2672                                 LDAP_LOG( CONFIG, INFO, 
2673                                         "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2674                                         fname, lineno , 0 );
2675 #else
2676                                 Debug( LDAP_DEBUG_ANY,
2677 "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2678                                         fname, lineno, 0 );
2679 #endif
2680                                 return( 1 );
2681                         }
2682
2683                         if ( !strcasecmp( cargv[1], "on" ) ) {
2684                                 use_reverse_lookup = 1;
2685                         } else if ( !strcasecmp( cargv[1], "off" ) ) {
2686                                 use_reverse_lookup = 0;
2687                         } else {
2688 #ifdef NEW_LOGGING
2689                                 LDAP_LOG( CONFIG, INFO, 
2690                                         "%s: line %d: reverse-lookup: "
2691                                         "must be \"on\" (default) or \"off\"\n", fname, lineno, 0 );
2692 #else
2693                                 Debug( LDAP_DEBUG_ANY,
2694 "%s: line %d: reverse-lookup: must be \"on\" (default) or \"off\"\n",
2695                                         fname, lineno, 0 );
2696 #endif
2697                                 return( 1 );
2698                         }
2699
2700 #else /* !SLAPD_RLOOKUPS */
2701 #ifdef NEW_LOGGING
2702                         LDAP_LOG( CONFIG, INFO, 
2703                                 "%s: line %d: reverse lookups "
2704                                 "are not configured (ignored).\n", fname, lineno , 0 );
2705 #else
2706                         Debug( LDAP_DEBUG_ANY,
2707 "%s: line %d: reverse lookups are not configured (ignored).\n",
2708                                 fname, lineno, 0 );
2709 #endif
2710 #endif /* !SLAPD_RLOOKUPS */
2711
2712                 /* Netscape plugins */
2713                 } else if ( strcasecmp( cargv[0], "plugin" ) == 0 ) {
2714 #if defined( LDAP_SLAPI )
2715
2716 #ifdef notdef /* allow global plugins, too */
2717                         /*
2718                          * a "plugin" line must be inside a database
2719                          * definition, since we implement pre-,post- 
2720                          * and extended operation plugins
2721                          */
2722                         if ( be == NULL ) {
2723 #ifdef NEW_LOGGING
2724                                 LDAP_LOG( CONFIG, INFO, 
2725                                         "%s: line %d: plugin line must appear "
2726                                         "insid a database definition.\n",
2727                                         fname, lineno, 0 );
2728 #else
2729                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: plugin "
2730                                     "line must appear inside a database "
2731                                     "definition\n", fname, lineno, 0 );
2732 #endif
2733                                 return( 1 );
2734                         }
2735 #endif /* notdef */
2736
2737                         if ( slapi_int_read_config( be, fname, lineno, cargc, cargv ) 
2738                                         != LDAP_SUCCESS )
2739                         {
2740 #ifdef NEW_LOGGING
2741                                 LDAP_LOG( CONFIG, INFO,
2742                                                 "%s: line %d: SLAPI config read failed.\n",
2743                                                 fname, lineno, 0 );
2744 #else
2745                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: SLAPI "
2746                                                 "config read failed.\n", fname, lineno, 0 );
2747 #endif
2748                                 return( 1 );
2749                         }
2750                         slapi_plugins_used++;
2751
2752 #else /* !defined( LDAP_SLAPI ) */
2753 #ifdef NEW_LOGGING
2754                         LDAP_LOG( CONFIG, INFO, 
2755                                 "%s: line %d: SLAPI not supported.\n",
2756                                 fname, lineno, 0 );
2757 #else
2758                         Debug( LDAP_DEBUG_ANY, "%s: line %d: SLAPI "
2759                             "not supported.\n", fname, lineno, 0 );
2760 #endif
2761                         return( 1 );
2762                         
2763 #endif /* !defined( LDAP_SLAPI ) */
2764
2765                 /* Netscape plugins */
2766                 } else if ( strcasecmp( cargv[0], "pluginlog" ) == 0 ) {
2767 #if defined( LDAP_SLAPI )
2768                         if ( cargc < 2 ) {
2769 #ifdef NEW_LOGGING
2770                                 LDAP_LOG( CONFIG, INFO, 
2771                                         "%s: line %d: missing file name "
2772                                         "in pluginlog <filename> line.\n",
2773                                         fname, lineno, 0 );
2774 #else
2775                                 Debug( LDAP_DEBUG_ANY, 
2776                                         "%s: line %d: missing file name "
2777                                         "in pluginlog <filename> line.\n",
2778                                         fname, lineno, 0 );
2779 #endif
2780                                 return( 1 );
2781                         }
2782
2783                         if ( slapi_log_file != NULL ) {
2784                                 ch_free( slapi_log_file );
2785                         }
2786
2787                         slapi_log_file = ch_strdup( cargv[1] );
2788 #endif /* !defined( LDAP_SLAPI ) */
2789
2790                 /* pass anything else to the current backend info/db config routine */
2791                 } else {
2792                         if ( bi != NULL ) {
2793                                 if ( bi->bi_config ) {
2794                                         rc = (*bi->bi_config)( bi, fname, lineno, cargc, cargv );
2795
2796                                         switch ( rc ) {
2797                                         case 0:
2798                                                 break;
2799
2800                                         case SLAP_CONF_UNKNOWN:
2801 #ifdef NEW_LOGGING
2802                                                 LDAP_LOG( CONFIG, INFO, 
2803                                                         "%s: line %d: unknown directive \"%s\" inside "
2804                                                         "backend info definition (ignored).\n",
2805                                                         fname, lineno, cargv[0] );
2806 #else
2807                                                 Debug( LDAP_DEBUG_ANY,
2808 "%s: line %d: unknown directive \"%s\" inside backend info definition (ignored)\n",
2809                                                         fname, lineno, cargv[0] );
2810 #endif
2811                                                 break;
2812
2813                                         default:
2814                                                 return 1;
2815                                         }
2816                                 }
2817
2818                         } else if ( be != NULL ) {
2819                                 if ( be->be_config ) {
2820                                         rc = (*be->be_config)( be, fname, lineno, cargc, cargv );
2821
2822                                         switch ( rc ) {
2823                                         case 0:
2824                                                 break;
2825
2826                                         case SLAP_CONF_UNKNOWN:
2827 #ifdef NEW_LOGGING
2828                                                 LDAP_LOG( CONFIG, INFO, 
2829                                                         "%s: line %d: unknown directive \"%s\" inside "
2830                                                         "backend database definition (ignored).\n",
2831                                                         fname, lineno, cargv[0] );
2832 #else
2833                                                 Debug( LDAP_DEBUG_ANY,
2834 "%s: line %d: unknown directive \"%s\" inside backend database definition (ignored)\n",
2835                                                         fname, lineno, cargv[0] );
2836 #endif
2837                                                 break;
2838
2839                                         default:
2840                                                 return 1;
2841                                         }
2842                                 }
2843
2844                         } else {
2845                                 if ( frontendDB->be_config ) {
2846                                         rc = (*frontendDB->be_config)( frontendDB, fname, lineno, cargc, cargv );
2847
2848                                         switch ( rc ) {
2849                                         case 0:
2850                                                 break;
2851
2852                                         case SLAP_CONF_UNKNOWN:
2853 #ifdef NEW_LOGGING
2854                                                 LDAP_LOG( CONFIG, INFO, 
2855                                                         "%s: line %d: unknown directive \"%s\" inside "
2856                                                         "global database definition (ignored).\n",
2857                                                         fname, lineno, cargv[0] );
2858 #else
2859                                                 Debug( LDAP_DEBUG_ANY,
2860 "%s: line %d: unknown directive \"%s\" inside global database definition (ignored)\n",
2861                                                         fname, lineno, cargv[0] );
2862 #endif
2863                                                 break;
2864
2865                                         default:
2866                                                 return 1;
2867                                         }
2868                                 }
2869                         }
2870                 }
2871                 free( saveline );
2872         }
2873         fclose( fp );
2874
2875         if ( depth == 0 ) ch_free( cargv );
2876
2877         if ( BER_BVISNULL( &frontendDB->be_schemadn ) ) {
2878                 ber_str2bv( SLAPD_SCHEMA_DN, sizeof(SLAPD_SCHEMA_DN)-1, 1,
2879                         &frontendDB->be_schemadn );
2880                 dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
2881         }
2882
2883         if ( load_ucdata( NULL ) < 0 ) return 1;
2884         return( 0 );
2885 }
2886
2887 static int
2888 fp_parse_line(
2889     int         lineno,
2890     char        *line
2891 )
2892 {
2893         char *  token;
2894         char *  logline;
2895         char    logbuf[sizeof("pseudorootpw ***")];
2896
2897         cargc = 0;
2898         token = strtok_quote( line, " \t" );
2899
2900         logline = line;
2901
2902         if ( token && ( strcasecmp( token, "rootpw" ) == 0 ||
2903                 strcasecmp( token, "replica" ) == 0 ||          /* contains "credentials" */
2904                 strcasecmp( token, "bindpw" ) == 0 ||           /* used in back-ldap */
2905                 strcasecmp( token, "pseudorootpw" ) == 0 ||     /* used in back-meta */
2906                 strcasecmp( token, "dbpasswd" ) == 0 ) )        /* used in back-sql */
2907         {
2908                 snprintf( logline = logbuf, sizeof logbuf, "%s ***", token );
2909         }
2910
2911         if ( strtok_quote_ptr ) {
2912                 *strtok_quote_ptr = ' ';
2913         }
2914
2915 #ifdef NEW_LOGGING
2916         LDAP_LOG( CONFIG, DETAIL1, "line %d (%s)\n", lineno, logline , 0 );
2917 #else
2918         Debug( LDAP_DEBUG_CONFIG, "line %d (%s)\n", lineno, logline, 0 );
2919 #endif
2920
2921         if ( strtok_quote_ptr ) {
2922                 *strtok_quote_ptr = '\0';
2923         }
2924
2925         for ( ; token != NULL; token = strtok_quote( NULL, " \t" ) ) {
2926                 if ( cargc == cargv_size - 1 ) {
2927                         char **tmp;
2928                         tmp = ch_realloc( cargv, (cargv_size + ARGS_STEP) *
2929                                             sizeof(*cargv) );
2930                         if ( tmp == NULL ) {
2931 #ifdef NEW_LOGGING
2932                                 LDAP_LOG( CONFIG, ERR, "line %d: out of memory\n", lineno, 0,0 );
2933 #else
2934                                 Debug( LDAP_DEBUG_ANY, 
2935                                                 "line %d: out of memory\n", 
2936                                                 lineno, 0, 0 );
2937 #endif
2938                                 return -1;
2939                         }
2940                         cargv = tmp;
2941                         cargv_size += ARGS_STEP;
2942                 }
2943                 cargv[cargc++] = token;
2944         }
2945         cargv[cargc] = NULL;
2946         return 0;
2947 }
2948
2949 static char *
2950 strtok_quote( char *line, char *sep )
2951 {
2952         int             inquote;
2953         char            *tmp;
2954         static char     *next;
2955
2956         strtok_quote_ptr = NULL;
2957         if ( line != NULL ) {
2958                 next = line;
2959         }
2960         while ( *next && strchr( sep, *next ) ) {
2961                 next++;
2962         }
2963
2964         if ( *next == '\0' ) {
2965                 next = NULL;
2966                 return( NULL );
2967         }
2968         tmp = next;
2969
2970         for ( inquote = 0; *next; ) {
2971                 switch ( *next ) {
2972                 case '"':
2973                         if ( inquote ) {
2974                                 inquote = 0;
2975                         } else {
2976                                 inquote = 1;
2977                         }
2978                         AC_MEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
2979                         break;
2980
2981                 case '\\':
2982                         if ( next[1] )
2983                                 AC_MEMCPY( next,
2984                                             next + 1, strlen( next + 1 ) + 1 );
2985                         next++;         /* dont parse the escaped character */
2986                         break;
2987
2988                 default:
2989                         if ( ! inquote ) {
2990                                 if ( strchr( sep, *next ) != NULL ) {
2991                                         strtok_quote_ptr = next;
2992                                         *next++ = '\0';
2993                                         return( tmp );
2994                                 }
2995                         }
2996                         next++;
2997                         break;
2998                 }
2999         }
3000
3001         return( tmp );
3002 }
3003
3004 static char     buf[BUFSIZ];
3005 static char     *line;
3006 static size_t lmax, lcur;
3007
3008 #define CATLINE( buf ) \
3009         do { \
3010                 size_t len = strlen( buf ); \
3011                 while ( lcur + len + 1 > lmax ) { \
3012                         lmax += BUFSIZ; \
3013                         line = (char *) ch_realloc( line, lmax ); \
3014                 } \
3015                 strcpy( line + lcur, buf ); \
3016                 lcur += len; \
3017         } while( 0 )
3018
3019 static char *
3020 fp_getline( FILE *fp, int *lineno )
3021 {
3022         char            *p;
3023
3024         lcur = 0;
3025         CATLINE( buf );
3026         (*lineno)++;
3027
3028         /* hack attack - keeps us from having to keep a stack of bufs... */
3029         if ( strncasecmp( line, "include", 7 ) == 0 ) {
3030                 buf[0] = '\0';
3031                 return( line );
3032         }
3033
3034         while ( fgets( buf, sizeof(buf), fp ) != NULL ) {
3035                 /* trim off \r\n or \n */
3036                 if ( (p = strchr( buf, '\n' )) != NULL ) {
3037                         if( p > buf && p[-1] == '\r' ) --p;
3038                         *p = '\0';
3039                 }
3040                 
3041                 /* trim off trailing \ and append the next line */
3042                 if ( line[ 0 ] != '\0' 
3043                                 && (p = line + strlen( line ) - 1)[ 0 ] == '\\'
3044                                 && p[ -1 ] != '\\' ) {
3045                         p[ 0 ] = '\0';
3046                         lcur--;
3047
3048                 } else {
3049                         if ( ! isspace( (unsigned char) buf[0] ) ) {
3050                                 return( line );
3051                         }
3052
3053                         /* change leading whitespace to a space */
3054                         buf[0] = ' ';
3055                 }
3056
3057                 CATLINE( buf );
3058                 (*lineno)++;
3059         }
3060         buf[0] = '\0';
3061
3062         return( line[0] ? line : NULL );
3063 }
3064
3065 static void
3066 fp_getline_init( int *lineno )
3067 {
3068         *lineno = -1;
3069         buf[0] = '\0';
3070 }
3071
3072 /* Loads ucdata, returns 1 if loading, 0 if already loaded, -1 on error */
3073 static int
3074 load_ucdata( char *path )
3075 {
3076 #if 0
3077         static int loaded = 0;
3078         int err;
3079         
3080         if ( loaded ) {
3081                 return( 0 );
3082         }
3083         err = ucdata_load( path ? path : SLAPD_DEFAULT_UCDATA, UCDATA_ALL );
3084         if ( err ) {
3085 #ifdef NEW_LOGGING
3086                 LDAP_LOG( CONFIG, CRIT, 
3087                         "load_ucdata: Error %d loading ucdata.\n", err, 0,0 );
3088 #else
3089                 Debug( LDAP_DEBUG_ANY, "error loading ucdata (error %d)\n",
3090                        err, 0, 0 );
3091 #endif
3092
3093                 return( -1 );
3094         }
3095         loaded = 1;
3096         return( 1 );
3097 #else
3098         /* ucdata is now hardcoded */
3099         return( 0 );
3100 #endif
3101 }
3102
3103 void
3104 config_destroy( )
3105 {
3106         ucdata_unload( UCDATA_ALL );
3107         if ( frontendDB ) {
3108                 /* NOTE: in case of early exit, frontendDB can be NULL */
3109                 if ( frontendDB->be_schemandn.bv_val )
3110                         free( frontendDB->be_schemandn.bv_val );
3111                 if ( frontendDB->be_schemadn.bv_val )
3112                         free( frontendDB->be_schemadn.bv_val );
3113                 if ( frontendDB->be_acl )
3114                         acl_destroy( frontendDB->be_acl, NULL );
3115         }
3116         free( line );
3117         if ( slapd_args_file )
3118                 free ( slapd_args_file );
3119         if ( slapd_pid_file )
3120                 free ( slapd_pid_file );
3121         if ( default_passwd_hash )
3122                 ldap_charray_free( default_passwd_hash );
3123 }
3124
3125 static int
3126 add_syncrepl(
3127         Backend *be,
3128         char    **cargv,
3129         int     cargc
3130 )
3131 {
3132         syncinfo_t *si;
3133         syncinfo_t *si_entry;
3134         int     rc = 0;
3135         int duplicated_replica_id = 0;
3136
3137         si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
3138
3139         if ( si == NULL ) {
3140 #ifdef NEW_LOGGING
3141                 LDAP_LOG( CONFIG, ERR, "out of memory in add_syncrepl\n", 0, 0,0 );
3142 #else
3143                 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
3144 #endif
3145                 return 1;
3146         }
3147
3148         si->si_tls = SYNCINFO_TLS_OFF;
3149         if ( be->be_rootndn.bv_val ) {
3150                 ber_dupbv( &si->si_updatedn, &be->be_rootndn );
3151         }
3152         si->si_bindmethod = LDAP_AUTH_SIMPLE;
3153         si->si_schemachecking = 0;
3154         ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 0,
3155                 &si->si_filterstr );
3156         si->si_base.bv_val = NULL;
3157         si->si_scope = LDAP_SCOPE_SUBTREE;
3158         si->si_attrsonly = 0;
3159         si->si_attrs = (char **) ch_calloc( 1, sizeof( char * ));
3160         si->si_attrs[0] = NULL;
3161         si->si_exattrs = (char **) ch_calloc( 1, sizeof( char * ));
3162         si->si_exattrs[0] = NULL;
3163         si->si_type = LDAP_SYNC_REFRESH_ONLY;
3164         si->si_interval = 86400;
3165         si->si_retryinterval = 0;
3166         si->si_retrynum_init = 0;
3167         si->si_retrynum = 0;
3168         si->si_syncCookie.ctxcsn = NULL;
3169         si->si_syncCookie.octet_str = NULL;
3170         si->si_syncCookie.sid = -1;
3171         si->si_manageDSAit = 0;
3172         si->si_tlimit = 0;
3173         si->si_slimit = 0;
3174         si->si_syncUUID_ndn.bv_val = NULL;
3175         si->si_syncUUID_ndn.bv_len = 0;
3176
3177         si->si_presentlist = NULL;
3178         LDAP_LIST_INIT( &si->si_nonpresentlist );
3179
3180         rc = parse_syncrepl_line( cargv, cargc, si );
3181
3182         LDAP_STAILQ_FOREACH( si_entry, &be->be_syncinfo, si_next ) {
3183                 if ( si->si_rid == si_entry->si_rid ) {
3184 #ifdef NEW_LOGGING
3185                         LDAP_LOG( CONFIG, ERR,
3186                                 "add_syncrepl: duplicated replica id\n", 0, 0,0 );
3187 #else
3188                         Debug( LDAP_DEBUG_ANY,
3189                                 "add_syncrepl: duplicated replica id\n",0, 0, 0 );
3190 #endif
3191                         duplicated_replica_id = 1;
3192                         break;
3193                 }
3194         }
3195
3196         if ( rc < 0 || duplicated_replica_id ) {
3197                 syncinfo_t *si_entry;
3198                 /* Something bad happened - back out */
3199 #ifdef NEW_LOGGING
3200                 LDAP_LOG( CONFIG, ERR, "failed to add syncinfo\n", 0, 0,0 );
3201 #else
3202                 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
3203 #endif
3204
3205                 /* If error, remove all syncinfo */
3206                 LDAP_STAILQ_FOREACH( si_entry, &be->be_syncinfo, si_next ) {
3207                         if ( si_entry->si_updatedn.bv_val ) {
3208                                 ch_free( si->si_updatedn.bv_val );
3209                         }
3210                         if ( si_entry->si_filterstr.bv_val ) {
3211                                 ch_free( si->si_filterstr.bv_val );
3212                         }
3213                         if ( si_entry->si_attrs ) {
3214                                 int i = 0;
3215                                 while ( si_entry->si_attrs[i] != NULL ) {
3216                                         ch_free( si_entry->si_attrs[i] );
3217                                         i++;
3218                                 }
3219                                 ch_free( si_entry->si_attrs );
3220                         }
3221                         if ( si_entry->si_exattrs ) {
3222                                 int i = 0;
3223                                 while ( si_entry->si_exattrs[i] != NULL ) {
3224                                         ch_free( si_entry->si_exattrs[i] );
3225                                         i++;
3226                                 }
3227                                 ch_free( si_entry->si_exattrs );
3228                         }
3229                 }
3230
3231                 while ( !LDAP_STAILQ_EMPTY( &be->be_syncinfo )) {
3232                         si_entry = LDAP_STAILQ_FIRST( &be->be_syncinfo );
3233                         LDAP_STAILQ_REMOVE_HEAD( &be->be_syncinfo, si_next );
3234                         ch_free( si_entry );
3235                 }
3236                 LDAP_STAILQ_INIT( &be->be_syncinfo );
3237                 return 1;
3238         } else {
3239 #ifdef NEW_LOGGING
3240                 LDAP_LOG ( CONFIG, RESULTS,
3241                         "add_syncrepl: Config: ** successfully added syncrepl \"%s\"\n",
3242                         si->si_provideruri == NULL ? "(null)" : si->si_provideruri, 0, 0 );
3243 #else
3244                 Debug( LDAP_DEBUG_CONFIG,
3245                         "Config: ** successfully added syncrepl \"%s\"\n",
3246                         si->si_provideruri == NULL ? "(null)" : si->si_provideruri, 0, 0 );
3247 #endif
3248                 if ( !si->si_schemachecking ) {
3249                         SLAP_DBFLAGS(be) |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
3250                 }
3251                 si->si_be = be;
3252                 LDAP_STAILQ_INSERT_TAIL( &be->be_syncinfo, si, si_next );
3253                 return 0;
3254         }
3255 }
3256
3257 #define IDSTR                   "rid"
3258 #define PROVIDERSTR             "provider"
3259 #define SUFFIXSTR               "suffix"
3260 #define UPDATEDNSTR             "updatedn"
3261 #define BINDMETHSTR             "bindmethod"
3262 #define SIMPLESTR               "simple"
3263 #define SASLSTR                 "sasl"
3264 #define BINDDNSTR               "binddn"
3265 #define CREDSTR                 "credentials"
3266 #define OLDAUTHCSTR             "bindprincipal"
3267 #define AUTHCSTR                "authcID"
3268 #define AUTHZSTR                "authzID"
3269 #define SRVTABSTR               "srvtab"
3270 #define SASLMECHSTR             "saslmech"
3271 #define REALMSTR                "realm"
3272 #define SECPROPSSTR             "secprops"
3273 #define STARTTLSSTR             "starttls"
3274 #define CRITICALSTR             "critical"
3275
3276 #define SCHEMASTR               "schemachecking"
3277 #define FILTERSTR               "filter"
3278 #define SEARCHBASESTR   "searchbase"
3279 #define SCOPESTR                "scope"
3280 #define ATTRSSTR                "attrs"
3281 #define ATTRSONLYSTR    "attrsonly"
3282 #define EXATTRSSTR              "exattrs"
3283 #define TYPESTR                 "type"
3284 #define INTERVALSTR             "interval"
3285 #define LASTMODSTR              "lastmod"
3286 #define LMREQSTR                "req"
3287 #define LMGENSTR                "gen"
3288 #define LMNOSTR                 "no"
3289 #define MANAGEDSAITSTR  "manageDSAit"
3290 #define SLIMITSTR               "sizelimit"
3291 #define TLIMITSTR               "timelimit"
3292
3293 #define RETRYSTR                "retry"
3294
3295 #define GOT_ID                  0x0001
3296 #define GOT_PROVIDER    0x0002
3297 #define GOT_METHOD              0x0004
3298 #define GOT_ALL                 0x0007
3299
3300 static int
3301 parse_syncrepl_line(
3302         char            **cargv,
3303         int             cargc,
3304         syncinfo_t      *si
3305 )
3306 {
3307         int     gots = 0;
3308         int     i, j;
3309         char    *hp, *val;
3310         int     nr_attr = 0;
3311
3312         for ( i = 1; i < cargc; i++ ) {
3313                 if ( !strncasecmp( cargv[ i ], IDSTR, sizeof( IDSTR ) - 1 )) {
3314                         int tmp;
3315                         /* '\0' string terminator accounts for '=' */
3316                         val = cargv[ i ] + sizeof( IDSTR );
3317                         tmp= atoi( val );
3318                         if ( tmp >= 1000 || tmp < 0 ) {
3319                                 fprintf( stderr, "Error: parse_syncrepl_line: "
3320                                          "syncrepl id %d is out of range [0..999]\n", tmp );
3321                                 return -1;
3322                         }
3323                         si->si_rid = tmp;
3324                         gots |= GOT_ID;
3325                 } else if ( !strncasecmp( cargv[ i ], PROVIDERSTR,
3326                                         sizeof( PROVIDERSTR ) - 1 )) {
3327                         val = cargv[ i ] + sizeof( PROVIDERSTR );
3328                         si->si_provideruri = ch_strdup( val );
3329                         si->si_provideruri_bv = (BerVarray)
3330                                 ch_calloc( 2, sizeof( struct berval ));
3331                         ber_str2bv( si->si_provideruri, strlen( si->si_provideruri ),
3332                                 0, &si->si_provideruri_bv[0] );
3333                         si->si_provideruri_bv[1].bv_len = 0;
3334                         si->si_provideruri_bv[1].bv_val = NULL;
3335                         gots |= GOT_PROVIDER;
3336                 } else if ( !strncasecmp( cargv[ i ], STARTTLSSTR,
3337                         sizeof(STARTTLSSTR) - 1 ) )
3338                 {
3339                         val = cargv[ i ] + sizeof( STARTTLSSTR );
3340                         if( !strcasecmp( val, CRITICALSTR ) ) {
3341                                 si->si_tls = SYNCINFO_TLS_CRITICAL;
3342                         } else {
3343                                 si->si_tls = SYNCINFO_TLS_ON;
3344                         }
3345                 } else if ( !strncasecmp( cargv[ i ],
3346                         UPDATEDNSTR, sizeof( UPDATEDNSTR ) - 1 ) )
3347                 {
3348                         struct berval updatedn = {0, NULL};
3349                         val = cargv[ i ] + sizeof( UPDATEDNSTR );
3350                         ber_str2bv( val, 0, 0, &updatedn );
3351                         ch_free( si->si_updatedn.bv_val );
3352                         dnNormalize( 0, NULL, NULL, &updatedn, &si->si_updatedn, NULL );
3353                 } else if ( !strncasecmp( cargv[ i ], BINDMETHSTR,
3354                                 sizeof( BINDMETHSTR ) - 1 ) )
3355                 {
3356                         val = cargv[ i ] + sizeof( BINDMETHSTR );
3357                         if ( !strcasecmp( val, SIMPLESTR )) {
3358                                 si->si_bindmethod = LDAP_AUTH_SIMPLE;
3359                                 gots |= GOT_METHOD;
3360                         } else if ( !strcasecmp( val, SASLSTR )) {
3361 #ifdef HAVE_CYRUS_SASL
3362                                 si->si_bindmethod = LDAP_AUTH_SASL;
3363                                 gots |= GOT_METHOD;
3364 #else /* HAVE_CYRUS_SASL */
3365                                 fprintf( stderr, "Error: parse_syncrepl_line: "
3366                                         "not compiled with SASL support\n" );
3367                                 return 1;
3368 #endif /* HAVE_CYRUS_SASL */
3369                         } else {
3370                                 si->si_bindmethod = -1;
3371                         }
3372                 } else if ( !strncasecmp( cargv[ i ],
3373                                 BINDDNSTR, sizeof( BINDDNSTR ) - 1 ) ) {
3374                         val = cargv[ i ] + sizeof( BINDDNSTR );
3375                         si->si_binddn = ch_strdup( val );
3376                 } else if ( !strncasecmp( cargv[ i ],
3377                                 CREDSTR, sizeof( CREDSTR ) - 1 ) ) {
3378                         val = cargv[ i ] + sizeof( CREDSTR );
3379                         si->si_passwd = ch_strdup( val );
3380                 } else if ( !strncasecmp( cargv[ i ],
3381                                 SASLMECHSTR, sizeof( SASLMECHSTR ) - 1 ) ) {
3382                         val = cargv[ i ] + sizeof( SASLMECHSTR );
3383                         si->si_saslmech = ch_strdup( val );
3384                 } else if ( !strncasecmp( cargv[ i ],
3385                                 SECPROPSSTR, sizeof( SECPROPSSTR ) - 1 ) ) {
3386                         val = cargv[ i ] + sizeof( SECPROPSSTR );
3387                         si->si_secprops = ch_strdup( val );
3388                 } else if ( !strncasecmp( cargv[ i ],
3389                                 REALMSTR, sizeof( REALMSTR ) - 1 ) ) {
3390                         val = cargv[ i ] + sizeof( REALMSTR );
3391                         si->si_realm = ch_strdup( val );
3392                 } else if ( !strncasecmp( cargv[ i ],
3393                                 AUTHCSTR, sizeof( AUTHCSTR ) - 1 ) ) {
3394                         val = cargv[ i ] + sizeof( AUTHCSTR );
3395                         si->si_authcId = ch_strdup( val );
3396                 } else if ( !strncasecmp( cargv[ i ],
3397                                 OLDAUTHCSTR, sizeof( OLDAUTHCSTR ) - 1 ) ) {
3398                         /* Old authcID is provided for some backwards compatibility */
3399                         val = cargv[ i ] + sizeof( OLDAUTHCSTR );
3400                         si->si_authcId = ch_strdup( val );
3401                 } else if ( !strncasecmp( cargv[ i ],
3402                                 AUTHZSTR, sizeof( AUTHZSTR ) - 1 ) ) {
3403                         val = cargv[ i ] + sizeof( AUTHZSTR );
3404                         si->si_authzId = ch_strdup( val );
3405                 } else if ( !strncasecmp( cargv[ i ],
3406                                 SCHEMASTR, sizeof( SCHEMASTR ) - 1 ) )
3407                 {
3408                         val = cargv[ i ] + sizeof( SCHEMASTR );
3409                         if ( !strncasecmp( val, "on", STRLENOF( "on" ) )) {
3410                                 si->si_schemachecking = 1;
3411                         } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
3412                                 si->si_schemachecking = 0;
3413                         } else {
3414                                 si->si_schemachecking = 1;
3415                         }
3416                 } else if ( !strncasecmp( cargv[ i ],
3417                         FILTERSTR, sizeof( FILTERSTR ) - 1 ) )
3418                 {
3419                         val = cargv[ i ] + sizeof( FILTERSTR );
3420                         ber_str2bv( val, 0, 1, &si->si_filterstr );
3421                 } else if ( !strncasecmp( cargv[ i ],
3422                         SEARCHBASESTR, sizeof( SEARCHBASESTR ) - 1 ) )
3423                 {
3424                         struct berval bv;
3425                         val = cargv[ i ] + sizeof( SEARCHBASESTR );
3426                         if ( si->si_base.bv_val ) {
3427                                 ch_free( si->si_base.bv_val );
3428                         }
3429                         ber_str2bv( val, 0, 0, &bv );
3430                         if ( dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL )) {
3431                                 fprintf( stderr, "Invalid base DN \"%s\"\n", val );
3432                                 return 1;
3433                         }
3434                 } else if ( !strncasecmp( cargv[ i ],
3435                         SCOPESTR, sizeof( SCOPESTR ) - 1 ) )
3436                 {
3437                         val = cargv[ i ] + sizeof( SCOPESTR );
3438                         if ( !strncasecmp( val, "base", STRLENOF( "base" ) )) {
3439                                 si->si_scope = LDAP_SCOPE_BASE;
3440                         } else if ( !strncasecmp( val, "one", STRLENOF( "one" ) )) {
3441                                 si->si_scope = LDAP_SCOPE_ONELEVEL;
3442 #ifdef LDAP_SCOPE_SUBORDINATE
3443                         } else if ( !strcasecmp( val, "subordinate" ) ||
3444                                 !strcasecmp( val, "children" ))
3445                         {
3446                                 si->si_scope = LDAP_SCOPE_SUBORDINATE;
3447 #endif
3448                         } else if ( !strncasecmp( val, "sub", STRLENOF( "sub" ) )) {
3449                                 si->si_scope = LDAP_SCOPE_SUBTREE;
3450                         } else {
3451                                 fprintf( stderr, "Error: parse_syncrepl_line: "
3452                                         "unknown scope \"%s\"\n", val);
3453                                 return 1;
3454                         }
3455                 } else if ( !strncasecmp( cargv[ i ],
3456                         ATTRSONLYSTR, sizeof( ATTRSONLYSTR ) - 1 ) )
3457                 {
3458                         si->si_attrsonly = 1;
3459                 } else if ( !strncasecmp( cargv[ i ],
3460                         ATTRSSTR, sizeof( ATTRSSTR ) - 1 ) )
3461                 {
3462                         val = cargv[ i ] + sizeof( ATTRSSTR );
3463                         str2clist( &si->si_attrs, val, "," );
3464                 } else if ( !strncasecmp( cargv[ i ],
3465                         EXATTRSSTR, sizeof( EXATTRSSTR ) - 1 ) )
3466                 {
3467                         val = cargv[ i ] + sizeof( EXATTRSSTR );
3468                         str2clist( &si->si_exattrs, val, "," );
3469                 } else if ( !strncasecmp( cargv[ i ],
3470                         TYPESTR, sizeof( TYPESTR ) - 1 ) )
3471                 {
3472                         val = cargv[ i ] + sizeof( TYPESTR );
3473                         if ( !strncasecmp( val, "refreshOnly", STRLENOF("refreshOnly") )) {
3474                                 si->si_type = LDAP_SYNC_REFRESH_ONLY;
3475                         } else if ( !strncasecmp( val, "refreshAndPersist",
3476                                 STRLENOF("refreshAndPersist") ))
3477                         {
3478                                 si->si_type = LDAP_SYNC_REFRESH_AND_PERSIST;
3479                                 si->si_interval = 60;
3480                         } else {
3481                                 fprintf( stderr, "Error: parse_syncrepl_line: "
3482                                         "unknown sync type \"%s\"\n", val);
3483                                 return 1;
3484                         }
3485                 } else if ( !strncasecmp( cargv[ i ],
3486                         INTERVALSTR, sizeof( INTERVALSTR ) - 1 ) )
3487                 {
3488                         val = cargv[ i ] + sizeof( INTERVALSTR );
3489                         if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
3490                                 si->si_interval = 0;
3491                         } else {
3492                                 char *hstr;
3493                                 char *mstr;
3494                                 char *dstr;
3495                                 char *sstr;
3496                                 int dd, hh, mm, ss;
3497                                 dstr = val;
3498                                 hstr = strchr( dstr, ':' );
3499                                 if ( hstr == NULL ) {
3500                                         fprintf( stderr, "Error: parse_syncrepl_line: "
3501                                                 "invalid interval \"%s\"\n", val );
3502                                         return 1;
3503                                 }
3504                                 *hstr++ = '\0';
3505                                 mstr = strchr( hstr, ':' );
3506                                 if ( mstr == NULL ) {
3507                                         fprintf( stderr, "Error: parse_syncrepl_line: "
3508                                                 "invalid interval \"%s\"\n", val );
3509                                         return 1;
3510                                 }
3511                                 *mstr++ = '\0';
3512                                 sstr = strchr( mstr, ':' );
3513                                 if ( sstr == NULL ) {
3514                                         fprintf( stderr, "Error: parse_syncrepl_line: "
3515                                                 "invalid interval \"%s\"\n", val );
3516                                         return 1;
3517                                 }
3518                                 *sstr++ = '\0';
3519
3520                                 dd = atoi( dstr );
3521                                 hh = atoi( hstr );
3522                                 mm = atoi( mstr );
3523                                 ss = atoi( sstr );
3524                                 if (( hh > 24 ) || ( hh < 0 ) ||
3525                                         ( mm > 60 ) || ( mm < 0 ) ||
3526                                         ( ss > 60 ) || ( ss < 0 ) || ( dd < 0 )) {
3527                                         fprintf( stderr, "Error: parse_syncrepl_line: "
3528                                                 "invalid interval \"%s\"\n", val );
3529                                         return 1;
3530                                 }
3531                                 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
3532                         }
3533                         if ( si->si_interval < 0 ) {
3534                                 fprintf( stderr, "Error: parse_syncrepl_line: "
3535                                         "invalid interval \"%ld\"\n",
3536                                         (long) si->si_interval);
3537                                 return 1;
3538                         }
3539                 } else if ( !strncasecmp( cargv[ i ],
3540                         RETRYSTR, sizeof( RETRYSTR ) - 1 ) )
3541                 {
3542                         char *str;
3543                         char **retry_list;
3544                         int j, k, n;
3545
3546                         val = cargv[ i ] + sizeof( RETRYSTR );
3547                         retry_list = (char **) ch_calloc( 1, sizeof( char * ));
3548                         retry_list[0] = NULL;
3549
3550                         str2clist( &retry_list, val, " ,\t" );
3551
3552                         for ( k = 0; retry_list && retry_list[k]; k++ ) ;
3553                         n = k / 2;
3554                         if ( k % 2 ) {
3555                                 fprintf( stderr,
3556                                                 "Error: incomplete syncrepl retry list\n" );
3557                                 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3558                                         ch_free( retry_list[k] );
3559                                 }
3560                                 ch_free( retry_list );
3561                                 exit( EXIT_FAILURE );
3562                         }
3563                         si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ));
3564                         si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ));
3565                         si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ));
3566                         for ( j = 0; j < n; j++ ) {
3567                                 si->si_retryinterval[j] = atoi( retry_list[j*2] );
3568                                 if ( *retry_list[j*2+1] == '+' ) {
3569                                         si->si_retrynum_init[j] = -1;
3570                                         si->si_retrynum[j] = -1;
3571                                         j++;
3572                                         break;
3573                                 } else {
3574                                         si->si_retrynum_init[j] = atoi( retry_list[j*2+1] );
3575                                         si->si_retrynum[j] = atoi( retry_list[j*2+1] );
3576                                 }
3577                         }
3578                         si->si_retrynum_init[j] = -2;
3579                         si->si_retrynum[j] = -2;
3580                         si->si_retryinterval[j] = 0;
3581                         
3582                         for ( k = 0; retry_list && retry_list[k]; k++ ) {
3583                                 ch_free( retry_list[k] );
3584                         }
3585                         ch_free( retry_list );
3586                 } else if ( !strncasecmp( cargv[ i ],
3587                         MANAGEDSAITSTR, sizeof( MANAGEDSAITSTR ) - 1 ) )
3588                 {
3589                         val = cargv[ i ] + sizeof( MANAGEDSAITSTR );
3590                         si->si_manageDSAit = atoi( val );
3591                 } else if ( !strncasecmp( cargv[ i ],
3592                         SLIMITSTR, sizeof( SLIMITSTR ) - 1 ) )
3593                 {
3594                         val = cargv[ i ] + sizeof( SLIMITSTR );
3595                         si->si_slimit = atoi( val );
3596                 } else if ( !strncasecmp( cargv[ i ],
3597                         TLIMITSTR, sizeof( TLIMITSTR ) - 1 ) )
3598                 {
3599                         val = cargv[ i ] + sizeof( TLIMITSTR );
3600                         si->si_tlimit = atoi( val );
3601                 } else {
3602                         fprintf( stderr, "Error: parse_syncrepl_line: "
3603                                 "unknown keyword \"%s\"\n", cargv[ i ] );
3604                 }
3605         }
3606
3607         if ( gots != GOT_ALL ) {
3608                 fprintf( stderr,
3609                         "Error: Malformed \"syncrepl\" line in slapd config file" );
3610                 return -1;
3611         }
3612
3613         return 0;
3614 }
3615
3616 char **
3617 str2clist( char ***out, char *in, const char *brkstr )
3618 {
3619         char    *str;
3620         char    *s;
3621         char    *lasts;
3622         int     i, j;
3623         const char *text;
3624         char    **new;
3625
3626         /* find last element in list */
3627         for (i = 0; *out && *out[i]; i++);
3628
3629         /* protect the input string from strtok */
3630         str = ch_strdup( in );
3631
3632         if ( *str == '\0' ) {
3633                 free( str );
3634                 return( *out );
3635         }
3636
3637         /* Count words in string */
3638         j=1;
3639         for ( s = str; *s; s++ ) {
3640                 if ( strchr( brkstr, *s ) != NULL ) {
3641                         j++;
3642                 }
3643         }
3644
3645         *out = ch_realloc( *out, ( i + j + 1 ) * sizeof( char * ) );
3646         new = *out + i;
3647         for ( s = ldap_pvt_strtok( str, brkstr, &lasts );
3648                 s != NULL;
3649                 s = ldap_pvt_strtok( NULL, brkstr, &lasts ) )
3650         {
3651                 *new = ch_strdup( s );
3652                 new++;
3653         }
3654
3655         *new = NULL;
3656         free( str );
3657         return( *out );
3658 }