]> git.sur5r.net Git - openldap/blob - servers/slapd/config.c
Need ../cr.o
[openldap] / servers / slapd / config.c
1 /* config.c - configuration file handling routines */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/string.h>
13 #include <ac/ctype.h>
14 #include <ac/signal.h>
15 #include <ac/socket.h>
16 #include <ac/errno.h>
17
18 #include "lutil.h"
19 #include "ldap_pvt.h"
20 #include "slap.h"
21
22 #define ARGS_STEP       512
23
24 /*
25  * defaults for various global variables
26  */
27 struct slap_limits_set deflimit = {
28         SLAPD_DEFAULT_TIMELIMIT,        /* backward compatible limits */
29         0,
30
31         SLAPD_DEFAULT_SIZELIMIT,        /* backward compatible limits */
32         0,
33         -1                              /* no limit on unchecked size */
34 };
35
36 AccessControl   *global_acl = NULL;
37 slap_access_t           global_default_access = ACL_READ;
38 slap_mask_t             global_restrictops = 0;
39 slap_mask_t             global_allows = 0;
40 slap_mask_t             global_disallows = 0;
41 slap_mask_t             global_requires = 0;
42 slap_ssf_set_t  global_ssf_set;
43 char            *replogfile;
44 int             global_gentlehup = 0;
45 int             global_idletimeout = 0;
46 char    *global_host = NULL;
47 char    *global_realm = NULL;
48 char            *ldap_srvtab = "";
49 char            *default_passwd_hash = NULL;
50 int             cargc = 0, cargv_size = 0;
51 char    **cargv;
52 struct berval default_search_base = { 0, NULL };
53 struct berval default_search_nbase = { 0, NULL };
54 unsigned                num_subordinates = 0;
55 struct berval global_schemadn = { 0, NULL };
56 struct berval global_schemandn = { 0, NULL };
57
58 ber_len_t sockbuf_max_incoming = SLAP_SB_MAX_INCOMING_DEFAULT;
59 ber_len_t sockbuf_max_incoming_auth= SLAP_SB_MAX_INCOMING_AUTH;
60
61 char   *slapd_pid_file  = NULL;
62 char   *slapd_args_file = NULL;
63
64 char   *strtok_quote_ptr;
65
66 #ifdef SLAPD_RLOOKUPS
67 int use_reverse_lookup = 1;
68 #else /* !SLAPD_RLOOKUPS */
69 int use_reverse_lookup = 0;
70 #endif /* !SLAPD_RLOOKUPS */
71
72 static char     *fp_getline(FILE *fp, int *lineno);
73 static void     fp_getline_init(int *lineno);
74 static int      fp_parse_line(int lineno, char *line);
75
76 static char     *strtok_quote(char *line, char *sep);
77 static int      load_ucdata(char *path);
78
79 int
80 read_config( const char *fname, int depth )
81 {
82         FILE    *fp;
83         char    *line, *savefname, *saveline;
84         int savelineno;
85         int     lineno, i;
86         int rc;
87         struct berval vals[2];
88
89         static int lastmod = 1;
90         static BackendInfo *bi = NULL;
91         static BackendDB        *be = NULL;
92
93         vals[1].bv_val = NULL;
94
95         if ( depth == 0 ) {
96                 cargv = ch_calloc( ARGS_STEP + 1, sizeof(*cargv) );
97                 cargv_size = ARGS_STEP + 1;
98         }
99
100         if ( (fp = fopen( fname, "r" )) == NULL ) {
101                 ldap_syslog = 1;
102 #ifdef NEW_LOGGING
103                 LDAP_LOG( CONFIG, ENTRY, 
104                         "read_config: " "could not open config file \"%s\": %s (%d)\n",
105                     fname, strerror(errno), errno );
106 #else
107                 Debug( LDAP_DEBUG_ANY,
108                     "could not open config file \"%s\": %s (%d)\n",
109                     fname, strerror(errno), errno );
110 #endif
111                 return 1;
112         }
113
114 #ifdef NEW_LOGGING
115         LDAP_LOG( CONFIG, ENTRY, 
116                 "read_config: reading config file %s\n", fname, 0, 0 );
117 #else
118         Debug( LDAP_DEBUG_CONFIG, "reading config file %s\n", fname, 0, 0 );
119 #endif
120
121
122         fp_getline_init( &lineno );
123
124         while ( (line = fp_getline( fp, &lineno )) != NULL ) {
125                 /* skip comments and blank lines */
126                 if ( line[0] == '#' || line[0] == '\0' ) {
127                         continue;
128                 }
129
130                 /* fp_parse_line is destructive, we save a copy */
131                 saveline = ch_strdup( line );
132
133                 if ( fp_parse_line( lineno, line ) != 0 ) {
134                         return( 1 );
135                 }
136
137                 if ( cargc < 1 ) {
138 #ifdef NEW_LOGGING
139                         LDAP_LOG( CONFIG, INFO, 
140                                 "%s: line %d: bad config line (ignored)\n", fname, lineno, 0 );
141 #else
142                         Debug( LDAP_DEBUG_ANY,
143                             "%s: line %d: bad config line (ignored)\n",
144                             fname, lineno, 0 );
145 #endif
146
147                         continue;
148                 }
149
150                 if ( strcasecmp( cargv[0], "backend" ) == 0 ) {
151                         if ( cargc < 2 ) {
152 #ifdef NEW_LOGGING
153                                 LDAP_LOG( CONFIG, CRIT, 
154                                            "%s : line %d: missing type in \"backend\" line.\n",
155                                            fname, lineno, 0 );
156 #else
157                                 Debug( LDAP_DEBUG_ANY,
158                 "%s: line %d: missing type in \"backend <type>\" line\n",
159                                     fname, lineno, 0 );
160 #endif
161
162                                 return( 1 );
163                         }
164
165                         if( be != NULL ) {
166 #ifdef NEW_LOGGING
167                                 LDAP_LOG( CONFIG, CRIT, 
168                                            "%s: line %d: backend line must appear before any "
169                                            "database definition.\n", fname, lineno , 0 );
170 #else
171                                 Debug( LDAP_DEBUG_ANY,
172 "%s: line %d: backend line must appear before any database definition\n",
173                                     fname, lineno, 0 );
174 #endif
175
176                                 return( 1 );
177                         }
178
179                         bi = backend_info( cargv[1] );
180
181                         if( bi == NULL ) {
182 #ifdef NEW_LOGGING
183                                 LDAP_LOG( CONFIG, CRIT, 
184                                            "read_config: backend %s initialization failed.\n",
185                                            cargv[1], 0, 0 );
186 #else
187                                 Debug( LDAP_DEBUG_ANY,
188                                         "backend %s initialization failed.\n",
189                                     cargv[1], 0, 0 );
190 #endif
191
192                                 return( 1 );
193                         }
194                 } else if ( strcasecmp( cargv[0], "database" ) == 0 ) {
195                         if ( cargc < 2 ) {
196 #ifdef NEW_LOGGING
197                                 LDAP_LOG( CONFIG, CRIT, 
198                                         "%s: line %d: missing type in \"database <type>\" line\n",
199                                         fname, lineno, 0 );
200 #else
201                                 Debug( LDAP_DEBUG_ANY,
202                 "%s: line %d: missing type in \"database <type>\" line\n",
203                                     fname, lineno, 0 );
204 #endif
205
206                                 return( 1 );
207                         }
208
209                         bi = NULL;
210                         be = backend_db_init( cargv[1] );
211
212                         if( be == NULL ) {
213 #ifdef NEW_LOGGING
214                                 LDAP_LOG( CONFIG, CRIT, 
215                                         "database %s initialization failed.\n", cargv[1], 0, 0 );
216 #else
217                                 Debug( LDAP_DEBUG_ANY,
218                                         "database %s initialization failed.\n",
219                                     cargv[1], 0, 0 );
220 #endif
221
222                                 return( 1 );
223                         }
224
225                 /* set thread concurrency */
226                 } else if ( strcasecmp( cargv[0], "concurrency" ) == 0 ) {
227                         int c;
228                         if ( cargc < 2 ) {
229 #ifdef NEW_LOGGING
230                                 LDAP_LOG( CONFIG, CRIT, 
231                                         "%s: line %d: missing level in \"concurrency <level\" "
232                                         " line\n", fname, lineno, 0 );
233 #else
234                                 Debug( LDAP_DEBUG_ANY,
235             "%s: line %d: missing level in \"concurrency <level>\" line\n",
236                                     fname, lineno, 0 );
237 #endif
238
239                                 return( 1 );
240                         }
241
242                         c = atoi( cargv[1] );
243
244                         if( c < 1 ) {
245 #ifdef NEW_LOGGING
246                                 LDAP_LOG( CONFIG, CRIT, 
247                                         "%s: line %d: invalid level (%d) in "
248                                         "\"concurrency <level>\" line.\n", fname, lineno, c );
249 #else
250                                 Debug( LDAP_DEBUG_ANY,
251             "%s: line %d: invalid level (%d) in \"concurrency <level>\" line\n",
252                                     fname, lineno, c );
253 #endif
254
255                                 return( 1 );
256                         }
257
258                         ldap_pvt_thread_set_concurrency( c );
259
260                 /* set sockbuf max */
261                 } else if ( strcasecmp( cargv[0], "sockbuf_max_incoming" ) == 0 ) {
262                         long max;
263                         if ( cargc < 2 ) {
264 #ifdef NEW_LOGGING
265                                 LDAP_LOG( CONFIG, CRIT, 
266                                    "%s: line %d: missing max in \"sockbuf_max_incoming "
267                                    "<bytes>\" line\n", fname, lineno, 0 );
268 #else
269                                 Debug( LDAP_DEBUG_ANY,
270                                            "%s: line %d: missing max in \"sockbuf_max_incoming <bytes>\" line\n",
271                                     fname, lineno, 0 );
272 #endif
273
274                                 return( 1 );
275                         }
276
277                         max = atol( cargv[1] );
278
279                         if( max < 0 ) {
280 #ifdef NEW_LOGGING
281                                 LDAP_LOG( CONFIG, CRIT, 
282                                            "%s: line %d: invalid max value (%ld) in "
283                                            "\"sockbuf_max_incoming <bytes>\" line.\n",
284                                            fname, lineno, max );
285 #else
286                                 Debug( LDAP_DEBUG_ANY,
287                                         "%s: line %d: invalid max value (%ld) in "
288                                         "\"sockbuf_max_incoming <bytes>\" line.\n",
289                                     fname, lineno, max );
290 #endif
291
292                                 return( 1 );
293                         }
294
295                         sockbuf_max_incoming = max;
296
297                 /* set sockbuf max authenticated */
298                 } else if ( strcasecmp( cargv[0], "sockbuf_max_incoming_auth" ) == 0 ) {
299                         long max;
300                         if ( cargc < 2 ) {
301 #ifdef NEW_LOGGING
302                                 LDAP_LOG( CONFIG, CRIT, 
303                                    "%s: line %d: missing max in \"sockbuf_max_incoming_auth "
304                                    "<bytes>\" line\n", fname, lineno, 0 );
305 #else
306                                 Debug( LDAP_DEBUG_ANY,
307                                            "%s: line %d: missing max in \"sockbuf_max_incoming_auth <bytes>\" line\n",
308                                     fname, lineno, 0 );
309 #endif
310
311                                 return( 1 );
312                         }
313
314                         max = atol( cargv[1] );
315
316                         if( max < 0 ) {
317 #ifdef NEW_LOGGING
318                                 LDAP_LOG( CONFIG, CRIT, 
319                                            "%s: line %d: invalid max value (%ld) in "
320                                            "\"sockbuf_max_incoming_auth <bytes>\" line.\n",
321                                            fname, lineno, max );
322 #else
323                                 Debug( LDAP_DEBUG_ANY,
324                                         "%s: line %d: invalid max value (%ld) in "
325                                         "\"sockbuf_max_incoming_auth <bytes>\" line.\n",
326                                     fname, lineno, max );
327 #endif
328
329                                 return( 1 );
330                         }
331
332                         sockbuf_max_incoming_auth = max;
333
334                 /* default search base */
335                 } else if ( strcasecmp( cargv[0], "defaultSearchBase" ) == 0 ) {
336                         if ( cargc < 2 ) {
337 #ifdef NEW_LOGGING
338                                 LDAP_LOG( CONFIG, CRIT, 
339                                         "%s: line %d: missing dn in \"defaultSearchBase <dn\" "
340                                         "line\n", fname, lineno, 0 );
341 #else
342                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
343                                         "missing dn in \"defaultSearchBase <dn>\" line\n",
344                                         fname, lineno, 0 );
345 #endif
346
347                                 return 1;
348
349                         } else if ( cargc > 2 ) {
350 #ifdef NEW_LOGGING
351                                 LDAP_LOG( CONFIG, INFO, 
352                                         "%s: line %d: extra cruft after <dn> in "
353                                         "\"defaultSearchBase %s\" line (ignored)\n",
354                                         fname, lineno, cargv[1] );
355 #else
356                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
357                                         "extra cruft after <dn> in \"defaultSearchBase %s\", "
358                                         "line (ignored)\n",
359                                         fname, lineno, cargv[1] );
360 #endif
361                         }
362
363                         if ( bi != NULL || be != NULL ) {
364 #ifdef NEW_LOGGING
365                                 LDAP_LOG( CONFIG, CRIT, 
366                                         "%s: line %d: defaultSearchBase line must appear "
367                                         "prior to any backend or database definitions\n",
368                                         fname, lineno, 0 );
369 #else
370                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
371                                         "defaultSearchBaase line must appear prior to "
372                                         "any backend or database definition\n",
373                                     fname, lineno, 0 );
374 #endif
375
376                                 return 1;
377                         }
378
379                         if ( default_search_nbase.bv_len ) {
380 #ifdef NEW_LOGGING
381                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
382                                         "default search base \"%s\" already defined "
383                                         "(discarding old)\n", fname, lineno,
384                                         default_search_base.bv_val );
385 #else
386                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
387                                         "default search base \"%s\" already defined "
388                                         "(discarding old)\n",
389                                         fname, lineno, default_search_base.bv_val );
390 #endif
391
392                                 free( default_search_base.bv_val );
393                                 free( default_search_nbase.bv_val );
394                         }
395
396                         if ( load_ucdata( NULL ) < 0 ) return 1;
397
398                         {
399                                 struct berval dn;
400
401                                 dn.bv_val = cargv[1];
402                                 dn.bv_len = strlen( dn.bv_val );
403
404                                 rc = dnPrettyNormal( NULL, &dn,
405                                         &default_search_base,
406                                         &default_search_nbase );
407
408                                 if( rc != LDAP_SUCCESS ) {
409 #ifdef NEW_LOGGING
410                                         LDAP_LOG( CONFIG, CRIT, 
411                                                 "%s: line %d: defaultSearchBase DN is invalid.\n",
412                                                 fname, lineno, 0 );
413 #else
414                                         Debug( LDAP_DEBUG_ANY,
415                                                 "%s: line %d: defaultSearchBase DN is invalid\n",
416                                            fname, lineno, 0 );
417 #endif
418                                         return( 1 );
419                                 }
420                         }
421
422                 /* set maximum threads in thread pool */
423                 } else if ( strcasecmp( cargv[0], "threads" ) == 0 ) {
424                         int c;
425                         if ( cargc < 2 ) {
426 #ifdef NEW_LOGGING
427                                 LDAP_LOG( CONFIG, CRIT, 
428                                         "%s: line %d: missing count in \"threads <count>\" line\n",
429                                         fname, lineno, 0 );
430 #else
431                                 Debug( LDAP_DEBUG_ANY,
432             "%s: line %d: missing count in \"threads <count>\" line\n",
433                                     fname, lineno, 0 );
434 #endif
435
436                                 return( 1 );
437                         }
438
439                         c = atoi( cargv[1] );
440
441                         if( c < 0 ) {
442 #ifdef NEW_LOGGING
443                                 LDAP_LOG( CONFIG, CRIT, 
444                                            "%s: line %d: invalid level (%d) in \"threads <count>\""
445                                            "line\n", fname, lineno, c );
446 #else
447                                 Debug( LDAP_DEBUG_ANY,
448             "%s: line %d: invalid level (%d) in \"threads <count>\" line\n",
449                                     fname, lineno, c );
450 #endif
451
452                                 return( 1 );
453                         }
454
455                         ldap_pvt_thread_pool_maxthreads( &connection_pool, c );
456
457                         /* save for later use */
458                         connection_pool_max = c;
459
460                 /* get pid file name */
461                 } else if ( strcasecmp( cargv[0], "pidfile" ) == 0 ) {
462                         if ( cargc < 2 ) {
463 #ifdef NEW_LOGGING
464                                 LDAP_LOG( CONFIG, CRIT, 
465                                         "%s: line %d missing file name in \"pidfile <file>\" "
466                                         "line.\n", fname, lineno, 0 );
467 #else
468                                 Debug( LDAP_DEBUG_ANY,
469             "%s: line %d: missing file name in \"pidfile <file>\" line\n",
470                                     fname, lineno, 0 );
471 #endif
472
473                                 return( 1 );
474                         }
475
476                         slapd_pid_file = ch_strdup( cargv[1] );
477
478                 /* get args file name */
479                 } else if ( strcasecmp( cargv[0], "argsfile" ) == 0 ) {
480                         if ( cargc < 2 ) {
481 #ifdef NEW_LOGGING
482                                 LDAP_LOG( CONFIG, CRIT, 
483                                            "%s: %d: missing file name in "
484                                            "\"argsfile <file>\" line.\n",
485                                            fname, lineno, 0 );
486 #else
487                                 Debug( LDAP_DEBUG_ANY,
488             "%s: line %d: missing file name in \"argsfile <file>\" line\n",
489                                     fname, lineno, 0 );
490 #endif
491
492                                 return( 1 );
493                         }
494
495                         slapd_args_file = ch_strdup( cargv[1] );
496
497                 /* default password hash */
498                 } else if ( strcasecmp( cargv[0], "password-hash" ) == 0 ) {
499                         if ( cargc < 2 ) {
500 #ifdef NEW_LOGGING
501                                 LDAP_LOG( CONFIG, CRIT, 
502                                            "%s: line %d: missing hash in "
503                                            "\"password-hash <hash>\" line.\n",
504                                            fname, lineno, 0 );
505 #else
506                                 Debug( LDAP_DEBUG_ANY,
507             "%s: line %d: missing hash in \"password-hash <hash>\" line\n",
508                                     fname, lineno, 0 );
509 #endif
510
511                                 return( 1 );
512                         }
513                         if ( default_passwd_hash != NULL ) {
514 #ifdef NEW_LOGGING
515                                 LDAP_LOG( CONFIG, CRIT, 
516                                            "%s: line %d: already set default password_hash!\n",
517                                            fname, lineno, 0 );
518 #else
519                                 Debug( LDAP_DEBUG_ANY,
520                                         "%s: line %d: already set default password_hash!\n",
521                                         fname, lineno, 0 );
522 #endif
523
524                                 return 1;
525
526                         }
527
528                         if ( lutil_passwd_scheme( cargv[1] ) == 0 ) {
529 #ifdef NEW_LOGGING
530                                 LDAP_LOG( CONFIG, CRIT, 
531                                            "%s: line %d: password scheme \"%s\" not available\n",
532                                            fname, lineno, cargv[1] );
533 #else
534                                 Debug( LDAP_DEBUG_ANY,
535                                         "%s: line %d: password scheme \"%s\" not available\n",
536                                         fname, lineno, cargv[1] );
537 #endif
538                                 return 1;
539                         }
540
541                         default_passwd_hash = ch_strdup( cargv[1] );
542
543                 } else if ( strcasecmp( cargv[0], "password-crypt-salt-format" ) == 0 ) 
544                 {
545                         if ( cargc < 2 ) {
546 #ifdef NEW_LOGGING
547                                 LDAP_LOG( CONFIG, CRIT, 
548                                         "%s: line %d: missing format in "
549                                         "\"password-crypt-salt-format <format>\" line\n",
550                                         fname, lineno, 0 );
551 #else
552                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: missing format in "
553                                         "\"password-crypt-salt-format <format>\" line\n",
554                                     fname, lineno, 0 );
555 #endif
556
557                                 return 1;
558                         }
559
560                         lutil_salt_format( cargv[1] );
561
562 #ifdef HAVE_CYRUS_SASL
563                 /* SASL config options */
564                 } else if ( strncasecmp( cargv[0], "sasl", 4 ) == 0 ) {
565                         if ( slap_sasl_config( cargc, cargv, line, fname, lineno ) )
566                                 return 1;
567 #endif /* HAVE_CYRUS_SASL */
568
569                 } else if ( strcasecmp( cargv[0], "schemadn" ) == 0 ) {
570                         struct berval dn;
571                         if ( cargc < 2 ) {
572 #ifdef NEW_LOGGING
573                                 LDAP_LOG( CONFIG, CRIT, 
574                                            "%s: line %d: missing dn in "
575                                            "\"schemadn <dn>\" line.\n", fname, lineno, 0  );
576 #else
577                                 Debug( LDAP_DEBUG_ANY,
578             "%s: line %d: missing dn in \"schemadn <dn>\" line\n",
579                                     fname, lineno, 0 );
580 #endif
581                                 return 1 ;
582                         }
583                         ber_str2bv( cargv[1], 0, 0, &dn );
584                         if ( be ) {
585                                 rc = dnPrettyNormal( NULL, &dn, &be->be_schemadn,
586                                         &be->be_schemandn );
587                         } else {
588                                 rc = dnPrettyNormal( NULL, &dn, &global_schemadn,
589                                         &global_schemandn );
590                         }
591                         if ( rc != LDAP_SUCCESS ) {
592 #ifdef NEW_LOGGING
593                                 LDAP_LOG( CONFIG, CRIT, 
594                                         "%s: line %d: schemadn DN is invalid.\n",
595                                         fname, lineno , 0 );
596 #else
597                                 Debug( LDAP_DEBUG_ANY,
598                                         "%s: line %d: schemadn DN is invalid\n",
599                                         fname, lineno, 0 );
600 #endif
601                                 return 1;
602                         }
603
604                 /* set UCDATA path */
605                 } else if ( strcasecmp( cargv[0], "ucdata-path" ) == 0 ) {
606                         int err;
607                         if ( cargc < 2 ) {
608 #ifdef NEW_LOGGING
609                                 LDAP_LOG( CONFIG, CRIT, 
610                                            "%s: line %d: missing path in "
611                                            "\"ucdata-path <path>\" line.\n", fname, lineno, 0  );
612 #else
613                                 Debug( LDAP_DEBUG_ANY,
614             "%s: line %d: missing path in \"ucdata-path <path>\" line\n",
615                                     fname, lineno, 0 );
616 #endif
617
618                                 return( 1 );
619                         }
620
621                         err = load_ucdata( cargv[1] );
622                         if ( err <= 0 ) {
623                                 if ( err == 0 ) {
624 #ifdef NEW_LOGGING
625                                         LDAP_LOG( CONFIG, CRIT, 
626                                                    "%s: line %d: ucdata already loaded, ucdata-path "
627                                                    "must be set earlier in the file and/or be "
628                                                    "specified only once!\n", fname, lineno, 0 );
629 #else
630                                         Debug( LDAP_DEBUG_ANY,
631                                                "%s: line %d: ucdata already loaded, ucdata-path must be set earlier in the file and/or be specified only once!\n",
632                                                fname, lineno, 0 );
633 #endif
634
635                                 }
636                                 return( 1 );
637                         }
638
639                 /* set size limit */
640                 } else if ( strcasecmp( cargv[0], "sizelimit" ) == 0 ) {
641                         int rc = 0, i;
642                         struct slap_limits_set *lim;
643                         
644                         if ( cargc < 2 ) {
645 #ifdef NEW_LOGGING
646                                 LDAP_LOG( CONFIG, CRIT, 
647                                    "%s: line %d: missing limit in \"sizelimit <limit>\" "
648                                    "line.\n", fname, lineno, 0 );
649 #else
650                                 Debug( LDAP_DEBUG_ANY,
651             "%s: line %d: missing limit in \"sizelimit <limit>\" line\n",
652                                     fname, lineno, 0 );
653 #endif
654
655                                 return( 1 );
656                         }
657
658                         if ( be == NULL ) {
659                                 lim = &deflimit;
660                         } else {
661                                 lim = &be->be_def_limit;
662                         }
663
664                         for ( i = 1; i < cargc; i++ ) {
665                                 if ( strncasecmp( cargv[i], "size", 4 ) == 0 ) {
666                                         rc = parse_limit( cargv[i], lim );
667                                 } else {
668                                         lim->lms_s_soft = atoi( cargv[i] );
669                                         lim->lms_s_hard = 0;
670                                 }
671
672                                 if ( rc ) {
673 #ifdef NEW_LOGGING
674                                         LDAP_LOG( CONFIG, CRIT, 
675                                                 "%s: line %d: unable "
676                                                    "to parse value \"%s\" in \"sizelimit "
677                                                    "<limit>\" line.\n", fname, lineno, cargv[i] );
678 #else
679                                         Debug( LDAP_DEBUG_ANY,
680                                                 "%s: line %d: unable "
681                                                 "to parse value \"%s\" "
682                                                 "in \"sizelimit "
683                                                 "<limit>\" line\n",
684                                                 fname, lineno, cargv[i] );
685 #endif
686                                 }
687                         }
688
689                 /* set time limit */
690                 } else if ( strcasecmp( cargv[0], "timelimit" ) == 0 ) {
691                         int rc = 0, i;
692                         struct slap_limits_set *lim;
693                         
694                         if ( cargc < 2 ) {
695 #ifdef NEW_LOGGING
696                                 LDAP_LOG( CONFIG, CRIT, 
697                                         "%s: line %d missing limit in \"timelimit <limit>\" "
698                                         "line.\n", fname, lineno, 0 );
699 #else
700                                 Debug( LDAP_DEBUG_ANY,
701             "%s: line %d: missing limit in \"timelimit <limit>\" line\n",
702                                     fname, lineno, 0 );
703 #endif
704
705                                 return( 1 );
706                         }
707                         
708                         if ( be == NULL ) {
709                                 lim = &deflimit;
710                         } else {
711                                 lim = &be->be_def_limit;
712                         }
713
714                         for ( i = 1; i < cargc; i++ ) {
715                                 if ( strncasecmp( cargv[i], "time", 4 ) == 0 ) {
716                                         rc = parse_limit( cargv[i], lim );
717                                 } else {
718                                         lim->lms_t_soft = atoi( cargv[i] );
719                                         lim->lms_t_hard = 0;
720                                 }
721
722                                 if ( rc ) {
723 #ifdef NEW_LOGGING
724                                         LDAP_LOG( CONFIG, CRIT, 
725                                                     "%s: line %d: unable to parse value \"%s\" "
726                                                    "in \"timelimit <limit>\" line.\n",
727                                                    fname, lineno, cargv[i] );
728 #else
729                                         Debug( LDAP_DEBUG_ANY,
730                                                 "%s: line %d: unable "
731                                                 "to parse value \"%s\" "
732                                                 "in \"timelimit "
733                                                 "<limit>\" line\n",
734                                                 fname, lineno, cargv[i] );
735 #endif
736                                 }
737                         }
738
739                 /* set regex-based limits */
740                 } else if ( strcasecmp( cargv[0], "limits" ) == 0 ) {
741                         if ( be == NULL ) {
742 #ifdef NEW_LOGGING
743                                 LDAP_LOG( CONFIG, WARNING, 
744                                            "%s: line %d \"limits\" allowed only in database "
745                                            "environment.\n", fname, lineno, 0 );
746 #else
747                                 Debug( LDAP_DEBUG_ANY,
748         "%s: line %d \"limits\" allowed only in database environment.\n%s",
749                                         fname, lineno, "" );
750 #endif
751                                 return( 1 );
752                         }
753
754                         if ( parse_limits( be, fname, lineno, cargc, cargv ) ) {
755                                 return( 1 );
756                         }
757
758                 /* mark this as a subordinate database */
759                 } else if ( strcasecmp( cargv[0], "subordinate" ) == 0 ) {
760                         if ( be == NULL ) {
761 #ifdef NEW_LOGGING
762                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
763                                         "subordinate keyword must appear inside a database "
764                                         "definition.\n", fname, lineno, 0 );
765 #else
766                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix line "
767                                         "must appear inside a database definition.\n",
768                                     fname, lineno, 0 );
769 #endif
770                                 return 1;
771
772                         } else {
773                                 be->be_flags |= SLAP_BFLAG_GLUE_SUBORDINATE;
774                                 num_subordinates++;
775                         }
776
777                 /* set database suffix */
778                 } else if ( strcasecmp( cargv[0], "suffix" ) == 0 ) {
779                         Backend *tmp_be;
780                         struct berval dn, pdn, ndn;
781
782                         if ( cargc < 2 ) {
783 #ifdef NEW_LOGGING
784                                 LDAP_LOG( CONFIG, CRIT, 
785                                         "%s: line %d: missing dn in \"suffix <dn>\" line.\n",
786                                         fname, lineno, 0 );
787 #else
788                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
789                                         "missing dn in \"suffix <dn>\" line\n",
790                                     fname, lineno, 0 );
791 #endif
792
793                                 return( 1 );
794
795                         } else if ( cargc > 2 ) {
796 #ifdef NEW_LOGGING
797                                 LDAP_LOG( CONFIG, INFO, 
798                                         "%s: line %d: extra cruft after <dn> in \"suffix %s\""
799                                         " line (ignored).\n", fname, lineno, cargv[1] );
800 #else
801                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: extra cruft "
802                                         "after <dn> in \"suffix %s\" line (ignored)\n",
803                                     fname, lineno, cargv[1] );
804 #endif
805                         }
806
807                         if ( be == NULL ) {
808 #ifdef NEW_LOGGING
809                                 LDAP_LOG( CONFIG, INFO, 
810                                         "%s: line %d: suffix line must appear inside a database "
811                                         "definition.\n", fname, lineno, 0 );
812 #else
813                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix line "
814                                         "must appear inside a database definition\n",
815                                     fname, lineno, 0 );
816 #endif
817                                 return( 1 );
818
819 #if defined(SLAPD_MONITOR_DN)
820                         /* "cn=Monitor" is reserved for monitoring slap */
821                         } else if ( strcasecmp( cargv[1], SLAPD_MONITOR_DN ) == 0 ) {
822 #ifdef NEW_LOGGING
823                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: \""
824                                         SLAPD_MONITOR_DN "\" is reserved for monitoring slapd\n", 
825                                         fname, lineno, 0 );
826 #else
827                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: \""
828                                         SLAPD_MONITOR_DN "\" is reserved for monitoring slapd\n", 
829                                         fname, lineno, 0 );
830 #endif
831                                 return( 1 );
832 #endif /* SLAPD_MONITOR_DN */
833                         }
834
835                         if ( load_ucdata( NULL ) < 0 ) return 1;
836
837                         dn.bv_val = cargv[1];
838                         dn.bv_len = strlen( cargv[1] );
839
840                         rc = dnPrettyNormal( NULL, &dn, &pdn, &ndn );
841                         if( rc != LDAP_SUCCESS ) {
842 #ifdef NEW_LOGGING
843                                 LDAP_LOG( CONFIG, CRIT, 
844                                         "%s: line %d: suffix DN is invalid.\n",
845                                         fname, lineno, 0 );
846 #else
847                                 Debug( LDAP_DEBUG_ANY,
848                                         "%s: line %d: suffix DN is invalid\n",
849                                    fname, lineno, 0 );
850 #endif
851                                 return( 1 );
852                         }
853
854                         tmp_be = select_backend( &ndn, 0, 0 );
855                         if ( tmp_be == be ) {
856 #ifdef NEW_LOGGING
857                                 LDAP_LOG( CONFIG, INFO, 
858                                         "%s: line %d: suffix already served by this backend "
859                                         "(ignored)\n", fname, lineno, 0 );
860 #else
861                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix "
862                                         "already served by this backend (ignored)\n",
863                                     fname, lineno, 0 );
864 #endif
865                                 free( pdn.bv_val );
866                                 free( ndn.bv_val );
867
868                         } else if ( tmp_be  != NULL ) {
869 #ifdef NEW_LOGGING
870                                 LDAP_LOG( CONFIG, INFO, 
871                                         "%s: line %d: suffix already served by a preceding "
872                                         "backend \"%s\"\n", fname, lineno,
873                                         tmp_be->be_suffix[0].bv_val );
874 #else
875                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: suffix "
876                                         "already served by a preceeding backend \"%s\"\n",
877                                     fname, lineno, tmp_be->be_suffix[0].bv_val );
878 #endif
879                                 free( pdn.bv_val );
880                                 free( ndn.bv_val );
881                                 return( 1 );
882
883                         } else if( pdn.bv_len == 0 && default_search_nbase.bv_len ) {
884 #ifdef NEW_LOGGING
885                                         LDAP_LOG( CONFIG, INFO, 
886                                                 "%s: line %d: suffix DN empty and default search "
887                                                 "base provided \"%s\" (assuming okay).\n",
888                                                 fname, lineno, default_search_base.bv_val );
889 #else
890                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
891                                                 "suffix DN empty and default "
892                                                 "search base provided \"%s\" (assuming okay)\n",
893                                         fname, lineno, default_search_base.bv_val );
894 #endif
895                         }
896
897                         ber_bvarray_add( &be->be_suffix, &pdn );
898                         ber_bvarray_add( &be->be_nsuffix, &ndn );
899
900                 /* set database suffixAlias */
901                 } else if ( strcasecmp( cargv[0], "suffixAlias" ) == 0 ) {
902                         Backend *tmp_be;
903                         struct berval alias, palias, nalias;
904                         struct berval aliased, paliased, naliased;
905
906                         if ( cargc < 2 ) {
907 #ifdef NEW_LOGGING
908                                 LDAP_LOG( CONFIG, CRIT, 
909                                         "%s: line %d: missing alias and aliased_dn in "
910                                         "\"suffixAlias <alias> <aliased_dn>\" line.\n",
911                                         fname, lineno, 0 );
912 #else
913                                 Debug( LDAP_DEBUG_ANY,
914                                         "%s: line %d: missing alias and aliased_dn in "
915                                         "\"suffixAlias <alias> <aliased_dn>\" line.\n",
916                                         fname, lineno, 0 );
917 #endif
918
919                                 return( 1 );
920                         } else if ( cargc < 3 ) {
921 #ifdef NEW_LOGGING
922                                 LDAP_LOG( CONFIG, CRIT, 
923                                         "%s: line %d: missing aliased_dn in "
924                                         "\"suffixAlias <alias> <aliased_dn>\" line\n",
925                                         fname, lineno, 0 );
926 #else
927                                 Debug( LDAP_DEBUG_ANY,
928                                         "%s: line %d: missing aliased_dn in "
929                                         "\"suffixAlias <alias> <aliased_dn>\" line\n",
930                                         fname, lineno, 0 );
931 #endif
932                                 return( 1 );
933
934                         } else if ( cargc > 3 ) {
935 #ifdef NEW_LOGGING
936                                 LDAP_LOG( CONFIG, CRIT, 
937                                         "%s: line %d: extra cruft in suffixAlias line (ignored)\n",
938                                         fname, lineno, 0 );
939 #else
940                                 Debug( LDAP_DEBUG_ANY,
941                                         "%s: line %d: extra cruft in suffixAlias line (ignored)\n",
942                                         fname, lineno, 0 );
943 #endif
944                         }
945
946                         if ( be == NULL ) {
947 #ifdef NEW_LOGGING
948                                 LDAP_LOG( CONFIG, INFO, 
949                                         "%s: line %d: suffix line must appear inside a database "
950                                         "definition.\n", fname, lineno, 0 );
951 #else
952                                 Debug( LDAP_DEBUG_ANY,
953                                         "%s: line %d: suffixAlias line"
954                                         " must appear inside a database definition.\n",
955                                         fname, lineno, 0 );
956 #endif
957                                 return 1;
958                         }
959
960                         if ( load_ucdata( NULL ) < 0 ) return 1;
961                         
962                         alias.bv_val = cargv[1];
963                         alias.bv_len = strlen( cargv[1] );
964
965                         rc = dnPrettyNormal( NULL, &alias, &palias, &nalias );
966                         if( rc != LDAP_SUCCESS ) {
967 #ifdef NEW_LOGGING
968                                 LDAP_LOG( CONFIG, CRIT, 
969                                         "%s: line %d: alias DN is invalid.\n", fname, lineno, 0 );
970 #else
971                                 Debug( LDAP_DEBUG_ANY,
972                                         "%s: line %d: alias DN is invalid\n",
973                                    fname, lineno, 0 );
974 #endif
975                                 return( 1 );
976                         }
977
978                         tmp_be = select_backend( &nalias, 0, 0 );
979                         free( nalias.bv_val );
980                         if ( tmp_be && tmp_be != be ) {
981 #ifdef NEW_LOGGING
982                                 LDAP_LOG( CONFIG, INFO, 
983                                         "%s: line %d: suffixAlias served by a preceeding "
984                                         "backend \"%s\"\n", fname, lineno, 
985                                         tmp_be->be_suffix[0].bv_val );
986 #else
987                                 Debug( LDAP_DEBUG_ANY,
988                                         "%s: line %d: suffixAlias served by"
989                                         "  a preceeding backend \"%s\"\n",
990                                         fname, lineno, tmp_be->be_suffix[0].bv_val );
991 #endif
992                                 free( palias.bv_val );
993                                 return -1;
994                         }
995
996                         aliased.bv_val = cargv[2];
997                         aliased.bv_len = strlen( cargv[2] );
998
999                         rc = dnPrettyNormal( NULL, &aliased, &paliased, &naliased );
1000                         if( rc != LDAP_SUCCESS ) {
1001 #ifdef NEW_LOGGING
1002                                 LDAP_LOG( CONFIG, CRIT, 
1003                                         "%s: line %d: aliased DN is invalid.\n", fname, lineno,0 );
1004 #else
1005                                 Debug( LDAP_DEBUG_ANY,
1006                                         "%s: line %d: aliased DN is invalid\n",
1007                                    fname, lineno, 0 );
1008 #endif
1009                                 free( palias.bv_val );
1010                                 return( 1 );
1011                         }
1012
1013                         tmp_be = select_backend( &naliased, 0, 0 );
1014                         free( naliased.bv_val );
1015                         if ( tmp_be && tmp_be != be ) {
1016 #ifdef NEW_LOGGING
1017                                 LDAP_LOG( CONFIG, INFO, 
1018                                         "%s: line %d: suffixAlias derefs to a different backend "
1019                                         "a preceeding backend \"%s\"\n",
1020                                         fname, lineno, tmp_be->be_suffix[0].bv_val );
1021 #else
1022                                 Debug( LDAP_DEBUG_ANY,
1023                                         "%s: line %d: suffixAlias derefs to differnet backend"
1024                                         "  a preceeding backend \"%s\"\n",
1025                                         fname, lineno, tmp_be->be_suffix[0].bv_val );
1026 #endif
1027                                 free( palias.bv_val );
1028                                 free( paliased.bv_val );
1029                                 return -1;
1030                         }
1031
1032                         ber_bvarray_add( &be->be_suffixAlias, &palias ); 
1033                         ber_bvarray_add( &be->be_suffixAlias, &paliased );
1034
1035                /* set max deref depth */
1036                } else if ( strcasecmp( cargv[0], "maxDerefDepth" ) == 0 ) {
1037                                         int i;
1038                        if ( cargc < 2 ) {
1039 #ifdef NEW_LOGGING
1040                                LDAP_LOG( CONFIG, CRIT, 
1041                                           "%s: line %d: missing depth in \"maxDerefDepth <depth>\""
1042                                           " line\n", fname, lineno, 0 );
1043 #else
1044                                Debug( LDAP_DEBUG_ANY,
1045                    "%s: line %d: missing depth in \"maxDerefDepth <depth>\" line\n",
1046                                    fname, lineno, 0 );
1047 #endif
1048
1049                                return( 1 );
1050                        }
1051                        if ( be == NULL ) {
1052 #ifdef NEW_LOGGING
1053                                LDAP_LOG( CONFIG, INFO, 
1054                                           "%s: line %d: depth line must appear inside a database "
1055                                           "definition.\n", fname, lineno ,0 );
1056 #else
1057                                Debug( LDAP_DEBUG_ANY,
1058 "%s: line %d: depth line must appear inside a database definition.\n",
1059                                    fname, lineno, 0 );
1060 #endif
1061                                                         return 1;
1062
1063                        } else if ((i = atoi(cargv[1])) < 0) {
1064 #ifdef NEW_LOGGING
1065                                LDAP_LOG( CONFIG, INFO, 
1066                                           "%s: line %d: depth must be positive.\n",
1067                                           fname, lineno ,0 );
1068 #else
1069                                Debug( LDAP_DEBUG_ANY,
1070 "%s: line %d: depth must be positive.\n",
1071                                    fname, lineno, 0 );
1072 #endif
1073                                                         return 1;
1074
1075
1076                        } else {
1077                            be->be_max_deref_depth = i;
1078                                            }
1079
1080
1081                 /* set magic "root" dn for this database */
1082                 } else if ( strcasecmp( cargv[0], "rootdn" ) == 0 ) {
1083                         if ( cargc < 2 ) {
1084 #ifdef NEW_LOGGING
1085                                 LDAP_LOG( CONFIG, INFO, 
1086                                            "%s: line %d: missing dn in \"rootdn <dn>\" line.\n",
1087                                            fname, lineno ,0 );
1088 #else
1089                                 Debug( LDAP_DEBUG_ANY,
1090                     "%s: line %d: missing dn in \"rootdn <dn>\" line\n",
1091                                     fname, lineno, 0 );
1092 #endif
1093
1094                                 return( 1 );
1095                         }
1096
1097                         if ( be == NULL ) {
1098 #ifdef NEW_LOGGING
1099                                 LDAP_LOG( CONFIG, INFO, 
1100                                            "%s: line %d: rootdn line must appear inside a database "
1101                                            "definition.\n", fname, lineno ,0 );
1102 #else
1103                                 Debug( LDAP_DEBUG_ANY,
1104 "%s: line %d: rootdn line must appear inside a database definition.\n",
1105                                     fname, lineno, 0 );
1106 #endif
1107                                 return 1;
1108
1109                         } else {
1110                                 struct berval dn;
1111                                 
1112                                 if ( load_ucdata( NULL ) < 0 ) return 1;
1113
1114                                 dn.bv_val = cargv[1];
1115                                 dn.bv_len = strlen( cargv[1] );
1116
1117                                 rc = dnPrettyNormal( NULL, &dn,
1118                                         &be->be_rootdn,
1119                                         &be->be_rootndn );
1120
1121                                 if( rc != LDAP_SUCCESS ) {
1122 #ifdef NEW_LOGGING
1123                                         LDAP_LOG( CONFIG, CRIT, 
1124                                                 "%s: line %d: rootdn DN is invalid.\n", 
1125                                                 fname, lineno ,0 );
1126 #else
1127                                         Debug( LDAP_DEBUG_ANY,
1128                                                 "%s: line %d: rootdn DN is invalid\n",
1129                                            fname, lineno, 0 );
1130 #endif
1131                                         return( 1 );
1132                                 }
1133                         }
1134
1135                 /* set super-secret magic database password */
1136                 } else if ( strcasecmp( cargv[0], "rootpw" ) == 0 ) {
1137                         if ( cargc < 2 ) {
1138 #ifdef NEW_LOGGING
1139                                 LDAP_LOG( CONFIG, CRIT, 
1140                                         "%s: line %d: missing passwd in \"rootpw <passwd>\""
1141                                         " line\n", fname, lineno ,0 );
1142 #else
1143                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1144                                         "missing passwd in \"rootpw <passwd>\" line\n",
1145                                     fname, lineno, 0 );
1146 #endif
1147
1148                                 return( 1 );
1149                         }
1150
1151                         if ( be == NULL ) {
1152 #ifdef NEW_LOGGING
1153                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
1154                                         "rootpw line must appear inside a database "
1155                                         "definition.\n", fname, lineno ,0 );
1156 #else
1157                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1158                                         "rootpw line must appear inside a database "
1159                                         "definition.\n",
1160                                     fname, lineno, 0 );
1161 #endif
1162                                 return 1;
1163
1164                         } else {
1165                                 Backend *tmp_be = select_backend( &be->be_rootndn, 0, 0 );
1166
1167                                 if( tmp_be != be ) {
1168 #ifdef NEW_LOGGING
1169                                         LDAP_LOG( CONFIG, INFO,
1170                                                 "%s: line %d: "
1171                                                 "rootpw can only be set when rootdn is under suffix\n",
1172                                                 fname, lineno, "" );
1173 #else
1174                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1175                                                 "rootpw can only be set when rootdn is under suffix\n",
1176                                         fname, lineno, 0 );
1177 #endif
1178                                         return 1;
1179                                 }
1180
1181                                 be->be_rootpw.bv_val = ch_strdup( cargv[1] );
1182                                 be->be_rootpw.bv_len = strlen( be->be_rootpw.bv_val );
1183                         }
1184
1185                 /* make this database read-only */
1186                 } else if ( strcasecmp( cargv[0], "readonly" ) == 0 ) {
1187                         if ( cargc < 2 ) {
1188 #ifdef NEW_LOGGING
1189                                 LDAP_LOG( CONFIG, CRIT, 
1190                                         "%s: line %d: missing on|off in \"readonly <on|off>\" "
1191                                         "line.\n", fname, lineno ,0 );
1192 #else
1193                                 Debug( LDAP_DEBUG_ANY,
1194             "%s: line %d: missing on|off in \"readonly <on|off>\" line\n",
1195                                     fname, lineno, 0 );
1196 #endif
1197
1198                                 return( 1 );
1199                         }
1200                         if ( be == NULL ) {
1201                                 if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1202                                         global_restrictops |= SLAP_RESTRICT_OP_WRITES;
1203                                 } else {
1204                                         global_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1205                                 }
1206                         } else {
1207                                 if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1208                                         be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
1209                                 } else {
1210                                         be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
1211                                 }
1212                         }
1213
1214
1215                 /* allow these features */
1216                 } else if ( strcasecmp( cargv[0], "allows" ) == 0 ||
1217                         strcasecmp( cargv[0], "allow" ) == 0 )
1218                 {
1219                         slap_mask_t     allows;
1220
1221                         if ( be != NULL ) {
1222 #ifdef NEW_LOGGING
1223                                 LDAP_LOG( CONFIG, INFO, 
1224                                            "%s: line %d: allow line must appear prior to "
1225                                            "database definitions.\n", fname, lineno ,0 );
1226 #else
1227                                 Debug( LDAP_DEBUG_ANY,
1228 "%s: line %d: allow line must appear prior to database definitions\n",
1229                                     fname, lineno, 0 );
1230 #endif
1231
1232                         }
1233
1234                         if ( cargc < 2 ) {
1235 #ifdef NEW_LOGGING
1236                                 LDAP_LOG( CONFIG, CRIT, 
1237                                            "%s: line %d: missing feature(s) in \"allow <features>\""
1238                                            " line\n", fname, lineno ,0 );
1239 #else
1240                                 Debug( LDAP_DEBUG_ANY,
1241             "%s: line %d: missing feature(s) in \"allow <features>\" line\n",
1242                                     fname, lineno, 0 );
1243 #endif
1244
1245                                 return( 1 );
1246                         }
1247
1248                         allows = 0;
1249
1250                         for( i=1; i < cargc; i++ ) {
1251                                 if( strcasecmp( cargv[i], "bind_v2" ) == 0 ) {
1252                                         allows |= SLAP_ALLOW_BIND_V2;
1253
1254                                 } else if( strcasecmp( cargv[i], "bind_anon_cred" ) == 0 ) {
1255                                         allows |= SLAP_ALLOW_BIND_ANON_CRED;
1256
1257                                 } else if( strcasecmp( cargv[i], "bind_anon_dn" ) == 0 ) {
1258                                         allows |= SLAP_ALLOW_BIND_ANON_DN;
1259
1260                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1261 #ifdef NEW_LOGGING
1262                                         LDAP_LOG( CONFIG, CRIT, 
1263                                                    "%s: line %d: unknown feature %s in "
1264                                                    "\"allow <features>\" line.\n",
1265                                                    fname, lineno, cargv[1] );
1266 #else
1267                                         Debug( LDAP_DEBUG_ANY,
1268                     "%s: line %d: unknown feature %s in \"allow <features>\" line\n",
1269                                             fname, lineno, cargv[i] );
1270 #endif
1271
1272                                         return( 1 );
1273                                 }
1274                         }
1275
1276                         global_allows = allows;
1277
1278                 /* disallow these features */
1279                 } else if ( strcasecmp( cargv[0], "disallows" ) == 0 ||
1280                         strcasecmp( cargv[0], "disallow" ) == 0 )
1281                 {
1282                         slap_mask_t     disallows;
1283
1284                         if ( be != NULL ) {
1285 #ifdef NEW_LOGGING
1286                                 LDAP_LOG( CONFIG, INFO, 
1287                                            "%s: line %d: disallow line must appear prior to "
1288                                            "database definitions.\n", fname, lineno ,0 );
1289 #else
1290                                 Debug( LDAP_DEBUG_ANY,
1291 "%s: line %d: disallow line must appear prior to database definitions\n",
1292                                     fname, lineno, 0 );
1293 #endif
1294
1295                         }
1296
1297                         if ( cargc < 2 ) {
1298 #ifdef NEW_LOGGING
1299                                 LDAP_LOG( CONFIG, CRIT, 
1300                                         "%s: line %d: missing feature(s) in \"disallow <features>\""
1301                                         " line.\n", fname, lineno ,0 );
1302 #else
1303                                 Debug( LDAP_DEBUG_ANY,
1304             "%s: line %d: missing feature(s) in \"disallow <features>\" line\n",
1305                                     fname, lineno, 0 );
1306 #endif
1307
1308                                 return( 1 );
1309                         }
1310
1311                         disallows = 0;
1312
1313                         for( i=1; i < cargc; i++ ) {
1314                                 if( strcasecmp( cargv[i], "bind_anon" ) == 0 ) {
1315                                         disallows |= SLAP_DISALLOW_BIND_ANON;
1316
1317                                 } else if( strcasecmp( cargv[i], "bind_simple" ) == 0 ) {
1318                                         disallows |= SLAP_DISALLOW_BIND_SIMPLE;
1319
1320                                 } else if( strcasecmp( cargv[i], "bind_krbv4" ) == 0 ) {
1321                                         disallows |= SLAP_DISALLOW_BIND_KRBV4;
1322
1323                                 } else if( strcasecmp( cargv[i], "tls_2_anon" ) == 0 ) {
1324                                         disallows |= SLAP_DISALLOW_TLS_2_ANON;
1325
1326                                 } else if( strcasecmp( cargv[i], "tls_authc" ) == 0 ) {
1327                                         disallows |= SLAP_DISALLOW_TLS_AUTHC;
1328
1329                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1330 #ifdef NEW_LOGGING
1331                                         LDAP_LOG( CONFIG, CRIT, 
1332                                                 "%s: line %d: unknown feature %s in "
1333                                                 "\"disallow <features>\" line.\n",
1334                                                 fname, lineno, cargv[i] );
1335 #else
1336                                         Debug( LDAP_DEBUG_ANY,
1337                     "%s: line %d: unknown feature %s in \"disallow <features>\" line\n",
1338                                             fname, lineno, cargv[i] );
1339 #endif
1340
1341                                         return( 1 );
1342                                 }
1343                         }
1344
1345                         global_disallows = disallows;
1346
1347                 /* require these features */
1348                 } else if ( strcasecmp( cargv[0], "requires" ) == 0 ||
1349                         strcasecmp( cargv[0], "require" ) == 0 )
1350                 {
1351                         slap_mask_t     requires;
1352
1353                         if ( cargc < 2 ) {
1354 #ifdef NEW_LOGGING
1355                                 LDAP_LOG( CONFIG, CRIT, 
1356                                            "%s: line %d: missing feature(s) in "
1357                                            "\"require <features>\" line.\n", fname, lineno ,0 );
1358 #else
1359                                 Debug( LDAP_DEBUG_ANY,
1360             "%s: line %d: missing feature(s) in \"require <features>\" line\n",
1361                                     fname, lineno, 0 );
1362 #endif
1363
1364                                 return( 1 );
1365                         }
1366
1367                         requires = 0;
1368
1369                         for( i=1; i < cargc; i++ ) {
1370                                 if( strcasecmp( cargv[i], "bind" ) == 0 ) {
1371                                         requires |= SLAP_REQUIRE_BIND;
1372
1373                                 } else if( strcasecmp( cargv[i], "LDAPv3" ) == 0 ) {
1374                                         requires |= SLAP_REQUIRE_LDAP_V3;
1375
1376                                 } else if( strcasecmp( cargv[i], "authc" ) == 0 ) {
1377                                         requires |= SLAP_REQUIRE_AUTHC;
1378
1379                                 } else if( strcasecmp( cargv[i], "SASL" ) == 0 ) {
1380                                         requires |= SLAP_REQUIRE_SASL;
1381
1382                                 } else if( strcasecmp( cargv[i], "strong" ) == 0 ) {
1383                                         requires |= SLAP_REQUIRE_STRONG;
1384
1385                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1386 #ifdef NEW_LOGGING
1387                                         LDAP_LOG( CONFIG, CRIT, 
1388                                                    "%s: line %d: unknown feature %s in "
1389                                                    "\"require <features>\" line.\n", 
1390                                                    fname, lineno , cargv[i] );
1391 #else
1392                                         Debug( LDAP_DEBUG_ANY,
1393                     "%s: line %d: unknown feature %s in \"require <features>\" line\n",
1394                                             fname, lineno, cargv[i] );
1395 #endif
1396
1397                                         return( 1 );
1398                                 }
1399                         }
1400
1401                         if ( be == NULL ) {
1402                                 global_requires = requires;
1403                         } else {
1404                                 be->be_requires = requires;
1405                         }
1406
1407                 /* required security factors */
1408                 } else if ( strcasecmp( cargv[0], "security" ) == 0 ) {
1409                         slap_ssf_set_t *set;
1410
1411                         if ( cargc < 2 ) {
1412 #ifdef NEW_LOGGING
1413                                 LDAP_LOG( CONFIG, CRIT, 
1414                                         "%s: line %d: missing factor(s) in \"security <factors>\""
1415                                         " line.\n", fname, lineno ,0 );
1416 #else
1417                                 Debug( LDAP_DEBUG_ANY,
1418             "%s: line %d: missing factor(s) in \"security <factors>\" line\n",
1419                                     fname, lineno, 0 );
1420 #endif
1421
1422                                 return( 1 );
1423                         }
1424
1425                         if ( be == NULL ) {
1426                                 set = &global_ssf_set;
1427                         } else {
1428                                 set = &be->be_ssf_set;
1429                         }
1430
1431                         for( i=1; i < cargc; i++ ) {
1432                                 if( strncasecmp( cargv[i], "ssf=",
1433                                         sizeof("ssf") ) == 0 )
1434                                 {
1435                                         set->sss_ssf =
1436                                                 atoi( &cargv[i][sizeof("ssf")] );
1437
1438                                 } else if( strncasecmp( cargv[i], "transport=",
1439                                         sizeof("transport") ) == 0 )
1440                                 {
1441                                         set->sss_transport =
1442                                                 atoi( &cargv[i][sizeof("transport")] );
1443
1444                                 } else if( strncasecmp( cargv[i], "tls=",
1445                                         sizeof("tls") ) == 0 )
1446                                 {
1447                                         set->sss_tls =
1448                                                 atoi( &cargv[i][sizeof("tls")] );
1449
1450                                 } else if( strncasecmp( cargv[i], "sasl=",
1451                                         sizeof("sasl") ) == 0 )
1452                                 {
1453                                         set->sss_sasl =
1454                                                 atoi( &cargv[i][sizeof("sasl")] );
1455
1456                                 } else if( strncasecmp( cargv[i], "update_ssf=",
1457                                         sizeof("update_ssf") ) == 0 )
1458                                 {
1459                                         set->sss_update_ssf =
1460                                                 atoi( &cargv[i][sizeof("update_ssf")] );
1461
1462                                 } else if( strncasecmp( cargv[i], "update_transport=",
1463                                         sizeof("update_transport") ) == 0 )
1464                                 {
1465                                         set->sss_update_transport =
1466                                                 atoi( &cargv[i][sizeof("update_transport")] );
1467
1468                                 } else if( strncasecmp( cargv[i], "update_tls=",
1469                                         sizeof("update_tls") ) == 0 )
1470                                 {
1471                                         set->sss_update_tls =
1472                                                 atoi( &cargv[i][sizeof("update_tls")] );
1473
1474                                 } else if( strncasecmp( cargv[i], "update_sasl=",
1475                                         sizeof("update_sasl") ) == 0 )
1476                                 {
1477                                         set->sss_update_sasl =
1478                                                 atoi( &cargv[i][sizeof("update_sasl")] );
1479
1480                                 } else if( strncasecmp( cargv[i], "simple_bind=",
1481                                         sizeof("simple_bind") ) == 0 )
1482                                 {
1483                                         set->sss_simple_bind =
1484                                                 atoi( &cargv[i][sizeof("simple_bind")] );
1485
1486                                 } else {
1487 #ifdef NEW_LOGGING
1488                                         LDAP_LOG( CONFIG, CRIT, 
1489                                                    "%s: line %d: unknown factor %S in "
1490                                                    "\"security <factors>\" line.\n",
1491                                                    fname, lineno, cargv[1] );
1492 #else
1493                                         Debug( LDAP_DEBUG_ANY,
1494                     "%s: line %d: unknown factor %s in \"security <factors>\" line\n",
1495                                             fname, lineno, cargv[i] );
1496 #endif
1497
1498                                         return( 1 );
1499                                 }
1500                         }
1501                 /* where to send clients when we don't hold it */
1502                 } else if ( strcasecmp( cargv[0], "referral" ) == 0 ) {
1503                         if ( cargc < 2 ) {
1504 #ifdef NEW_LOGGING
1505                                 LDAP_LOG( CONFIG, CRIT, 
1506                                         "%s: line %d: missing URL in \"referral <URL>\""
1507                                         " line.\n", fname, lineno , 0 );
1508 #else
1509                                 Debug( LDAP_DEBUG_ANY,
1510                     "%s: line %d: missing URL in \"referral <URL>\" line\n",
1511                                     fname, lineno, 0 );
1512 #endif
1513
1514                                 return( 1 );
1515                         }
1516
1517                         if( validate_global_referral( cargv[1] ) ) {
1518 #ifdef NEW_LOGGING
1519                                 LDAP_LOG( CONFIG, CRIT, 
1520                                         "%s: line %d: invalid URL (%s) in \"referral\" line.\n",
1521                                         fname, lineno, cargv[1]  );
1522 #else
1523                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1524                                         "invalid URL (%s) in \"referral\" line.\n",
1525                                     fname, lineno, cargv[1] );
1526 #endif
1527                                 return 1;
1528                         }
1529
1530                         vals[0].bv_val = cargv[1];
1531                         vals[0].bv_len = strlen( vals[0].bv_val );
1532                         value_add( &default_referral, vals );
1533
1534 #ifdef NEW_LOGGING
1535                 } else if ( strcasecmp( cargv[0], "logfile" ) == 0 ) {
1536                         FILE *logfile;
1537                         if ( cargc < 2 ) {
1538 #ifdef NEW_LOGGING
1539                                 LDAP_LOG( CONFIG, CRIT, 
1540                                         "%s: line %d: Error in logfile directive, "
1541                                         "\"logfile <filename>\"\n", fname, lineno , 0 );
1542 #else
1543                                 Debug( LDAP_DEBUG_ANY,
1544                                        "%s: line %d: Error in logfile directive, \"logfile filename\"\n",
1545                                        fname, lineno, 0 );
1546 #endif
1547
1548                                 return( 1 );
1549                         }
1550                         logfile = fopen( cargv[1], "w" );
1551                         if ( logfile != NULL ) lutil_debug_file( logfile  );
1552
1553 #endif
1554                 /* start of a new database definition */
1555                 } else if ( strcasecmp( cargv[0], "debug" ) == 0 ) {
1556                         int level;
1557                         if ( cargc < 3 ) {
1558 #ifdef NEW_LOGGING
1559                                 LDAP_LOG( CONFIG, CRIT, 
1560                                            "%s: line %d: Error in debug directive, "
1561                                            "\"debug <subsys> <level>\"\n", fname, lineno , 0 );
1562 #else
1563                                 Debug( LDAP_DEBUG_ANY,
1564                                         "%s: line %d: Error in debug directive, \"debug subsys level\"\n",
1565                                         fname, lineno, 0 );
1566 #endif
1567
1568                                 return( 1 );
1569                         }
1570                         level = atoi( cargv[2] );
1571                         if ( level <= 0 ) level = lutil_mnem2level( cargv[2] );
1572                         lutil_set_debug_level( cargv[1], level );
1573                 /* specify an Object Identifier macro */
1574                 } else if ( strcasecmp( cargv[0], "objectidentifier" ) == 0 ) {
1575                         rc = parse_oidm( fname, lineno, cargc, cargv );
1576                         if( rc ) return rc;
1577
1578                 /* specify an objectclass */
1579                 } else if ( strcasecmp( cargv[0], "objectclass" ) == 0 ) {
1580                         if ( *cargv[1] == '('  /*')'*/) {
1581                                 char * p;
1582                                 p = strchr(saveline,'(' /*')'*/);
1583                                 rc = parse_oc( fname, lineno, p, cargv );
1584                                 if( rc ) return rc;
1585
1586                         } else {
1587 #ifdef NEW_LOGGING
1588                                 LDAP_LOG( CONFIG, INFO, 
1589                                         "%s: line %d: old objectclass format not supported\n",
1590                                         fname, lineno , 0 );
1591 #else
1592                                 Debug( LDAP_DEBUG_ANY,
1593                                        "%s: line %d: old objectclass format not supported.\n",
1594                                        fname, lineno, 0 );
1595 #endif
1596                         }
1597
1598 #ifdef SLAP_EXTENDED_SCHEMA
1599                 } else if ( strcasecmp( cargv[0], "ditcontentrule" ) == 0 ) {
1600                         char * p;
1601                         p = strchr(saveline,'(' /*')'*/);
1602                         rc = parse_cr( fname, lineno, p, cargv );
1603                         if( rc ) return rc;
1604 #endif
1605
1606                 /* specify an attribute type */
1607                 } else if (( strcasecmp( cargv[0], "attributetype" ) == 0 )
1608                         || ( strcasecmp( cargv[0], "attribute" ) == 0 ))
1609                 {
1610                         if ( *cargv[1] == '(' /*')'*/) {
1611                                 char * p;
1612                                 p = strchr(saveline,'(' /*')'*/);
1613                                 rc = parse_at( fname, lineno, p, cargv );
1614                                 if( rc ) return rc;
1615
1616                         } else {
1617 #ifdef NEW_LOGGING
1618                                 LDAP_LOG( CONFIG, INFO, 
1619                                         "%s: line %d: old attribute type format not supported.\n",
1620                                         fname, lineno , 0 );
1621 #else
1622                                 Debug( LDAP_DEBUG_ANY,
1623     "%s: line %d: old attribute type format not supported.\n",
1624                                     fname, lineno, 0 );
1625 #endif
1626
1627                         }
1628
1629                 /* turn on/off schema checking */
1630                 } else if ( strcasecmp( cargv[0], "schemacheck" ) == 0 ) {
1631                         if ( cargc < 2 ) {
1632 #ifdef NEW_LOGGING
1633                                 LDAP_LOG( CONFIG, CRIT, 
1634                                         "%s: line %d: missing on|off in \"schemacheck <on|off>\""
1635                                         " line.\n", fname, lineno , 0 );
1636 #else
1637                                 Debug( LDAP_DEBUG_ANY,
1638     "%s: line %d: missing on|off in \"schemacheck <on|off>\" line\n",
1639                                     fname, lineno, 0 );
1640 #endif
1641
1642                                 return( 1 );
1643                         }
1644                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
1645 #ifdef NEW_LOGGING
1646                                 LDAP_LOG( CONFIG, CRIT, 
1647                                         "%s: line %d: schema checking disabled! your mileage may "
1648                                         "vary!\n", fname, lineno , 0 );
1649 #else
1650                                 Debug( LDAP_DEBUG_ANY,
1651                                         "%s: line %d: schema checking disabled! your mileage may vary!\n",
1652                                     fname, lineno, 0 );
1653 #endif
1654                                 global_schemacheck = 0;
1655                         } else {
1656                                 global_schemacheck = 1;
1657                         }
1658
1659                 /* specify access control info */
1660                 } else if ( strcasecmp( cargv[0], "access" ) == 0 ) {
1661                         parse_acl( be, fname, lineno, cargc, cargv );
1662
1663                 /* debug level to log things to syslog */
1664                 } else if ( strcasecmp( cargv[0], "loglevel" ) == 0 ) {
1665                         if ( cargc < 2 ) {
1666 #ifdef NEW_LOGGING
1667                                 LDAP_LOG( CONFIG, CRIT, 
1668                                         "%s: line %d: missing level in \"loglevel <level>\""
1669                                         " line.\n", fname, lineno , 0 );
1670 #else
1671                                 Debug( LDAP_DEBUG_ANY,
1672                     "%s: line %d: missing level in \"loglevel <level>\" line\n",
1673                                     fname, lineno, 0 );
1674 #endif
1675
1676                                 return( 1 );
1677                         }
1678
1679                         ldap_syslog = 0;
1680
1681                         for( i=1; i < cargc; i++ ) {
1682                                 ldap_syslog += atoi( cargv[1] );
1683                         }
1684
1685                 /* list of replicas of the data in this backend (master only) */
1686                 } else if ( strcasecmp( cargv[0], "replica" ) == 0 ) {
1687                         if ( cargc < 2 ) {
1688 #ifdef NEW_LOGGING
1689                                 LDAP_LOG( CONFIG, CRIT, 
1690                                         "%s: line %d: missing host in \"replica "
1691                                         " <host[:port]\" line\n", fname, lineno , 0 );
1692 #else
1693                                 Debug( LDAP_DEBUG_ANY,
1694             "%s: line %d: missing host in \"replica <host[:port]>\" line\n",
1695                                     fname, lineno, 0 );
1696 #endif
1697
1698                                 return( 1 );
1699                         }
1700                         if ( be == NULL ) {
1701 #ifdef NEW_LOGGING
1702                                 LDAP_LOG( CONFIG, INFO, 
1703                                             "%s: line %d: replica line must appear inside "
1704                                             "a database definition.\n", fname, lineno, 0);
1705 #else
1706                                 Debug( LDAP_DEBUG_ANY,
1707 "%s: line %d: replica line must appear inside a database definition\n",
1708                                     fname, lineno, 0 );
1709 #endif
1710                                 return 1;
1711
1712                         } else {
1713                                 int nr = -1;
1714
1715                                 for ( i = 1; i < cargc; i++ ) {
1716                                         if ( strncasecmp( cargv[i], "host=", 5 )
1717                                             == 0 ) {
1718                                                 nr = add_replica_info( be, 
1719                                                         cargv[i] + 5 );
1720                                                 break;
1721                                         }
1722                                 }
1723                                 if ( i == cargc ) {
1724 #ifdef NEW_LOGGING
1725                                         LDAP_LOG( CONFIG, INFO, 
1726                                                 "%s: line %d: missing host in \"replica\" line\n", 
1727                                                 fname, lineno , 0 );
1728 #else
1729                                         Debug( LDAP_DEBUG_ANY,
1730                     "%s: line %d: missing host in \"replica\" line\n",
1731                                             fname, lineno, 0 );
1732 #endif
1733                                         return 1;
1734
1735                                 } else if ( nr == -1 ) {
1736 #ifdef NEW_LOGGING
1737                                         LDAP_LOG( CONFIG, INFO, 
1738                                                    "%s: line %d: unable to add"
1739                                                    " replica \"%s\"\n",
1740                                                    fname, lineno, 
1741                                                    cargv[i] + 5 );
1742 #else
1743                                         Debug( LDAP_DEBUG_ANY,
1744                 "%s: line %d: unable to add replica \"%s\"\n",
1745                                                 fname, lineno, cargv[i] + 5 );
1746 #endif
1747                                         return 1;
1748                                 } else {
1749                                         for ( i = 1; i < cargc; i++ ) {
1750                                                 if ( strncasecmp( cargv[i], "suffix=", 7 ) == 0 ) {
1751
1752                                                         switch ( add_replica_suffix( be, nr, cargv[i] + 7 ) ) {
1753                                                         case 1:
1754 #ifdef NEW_LOGGING
1755                                                                 LDAP_LOG( CONFIG, INFO, 
1756                                                                         "%s: line %d: suffix \"%s\" in \"replica\""
1757                                                                         " line is not valid for backend(ignored)\n",
1758                                                                         fname, lineno, cargv[i] + 7 );
1759 #else
1760                                                                 Debug( LDAP_DEBUG_ANY,
1761                                                                                 "%s: line %d: suffix \"%s\" in \"replica\" line is not valid for backend (ignored)\n",
1762                                                                                 fname, lineno, cargv[i] + 7 );
1763 #endif
1764                                                                 break;
1765
1766                                                         case 2:
1767 #ifdef NEW_LOGGING
1768                                                                 LDAP_LOG( CONFIG, INFO, 
1769                                                                         "%s: line %d: unable to normalize suffix"
1770                                                                         " in \"replica\" line (ignored)\n",
1771                                                                         fname, lineno , 0 );
1772 #else
1773                                                                 Debug( LDAP_DEBUG_ANY,
1774                                                                                  "%s: line %d: unable to normalize suffix in \"replica\" line (ignored)\n",
1775                                                                                  fname, lineno, 0 );
1776 #endif
1777                                                                 break;
1778                                                         }
1779
1780                                                 } else if ( strncasecmp( cargv[i], "attr", 4 ) == 0 ) {
1781                                                         int exclude = 0;
1782                                                         char *arg = cargv[i] + 4;
1783
1784                                                         if ( arg[0] == '!' ) {
1785                                                                 arg++;
1786                                                                 exclude = 1;
1787                                                         }
1788
1789                                                         if ( arg[0] != '=' ) {
1790                                                                 continue;
1791                                                         }
1792
1793                                                         if ( add_replica_attrs( be, nr, arg + 1, exclude ) ) {
1794 #ifdef NEW_LOGGING
1795                                                                 LDAP_LOG( CONFIG, INFO, 
1796                                                                         "%s: line %d: attribute \"%s\" in "
1797                                                                         "\"replica\" line is unknown\n",
1798                                                                         fname, lineno, arg + 1 ); 
1799 #else
1800                                                                 Debug( LDAP_DEBUG_ANY,
1801                                                                                 "%s: line %d: attribute \"%s\" in \"replica\" line is unknown\n",
1802                                                                                 fname, lineno, arg + 1 );
1803 #endif
1804                                                                 return( 1 );
1805                                                         }
1806                                                 }
1807                                         }
1808                                 }
1809                         }
1810
1811                 /* dn of master entity allowed to write to replica */
1812                 } else if ( strcasecmp( cargv[0], "updatedn" ) == 0 ) {
1813                         if ( cargc < 2 ) {
1814 #ifdef NEW_LOGGING
1815                                 LDAP_LOG( CONFIG, CRIT, 
1816                                         "%s: line %d: missing dn in \"updatedn <dn>\""
1817                                         " line.\n", fname, lineno , 0 );
1818 #else
1819                                 Debug( LDAP_DEBUG_ANY,
1820                     "%s: line %d: missing dn in \"updatedn <dn>\" line\n",
1821                                     fname, lineno, 0 );
1822 #endif
1823
1824                                 return( 1 );
1825                         }
1826                         if ( be == NULL ) {
1827 #ifdef NEW_LOGGING
1828                                 LDAP_LOG( CONFIG, INFO, 
1829                                         "%s: line %d: updatedn line must appear inside "
1830                                         "a database definition\n", 
1831                                         fname, lineno , 0 );
1832 #else
1833                                 Debug( LDAP_DEBUG_ANY,
1834 "%s: line %d: updatedn line must appear inside a database definition\n",
1835                                     fname, lineno, 0 );
1836 #endif
1837                                 return 1;
1838
1839                         } else {
1840                                 struct berval dn;
1841
1842                                 if ( load_ucdata( NULL ) < 0 ) return 1;
1843
1844                                 dn.bv_val = cargv[1];
1845                                 dn.bv_len = strlen( cargv[1] );
1846
1847                                 rc = dnNormalize2( NULL, &dn, &be->be_update_ndn );
1848                                 if( rc != LDAP_SUCCESS ) {
1849 #ifdef NEW_LOGGING
1850                                         LDAP_LOG( CONFIG, CRIT, 
1851                                                 "%s: line %d: updatedn DN is invalid.\n",
1852                                                 fname, lineno , 0 );
1853 #else
1854                                         Debug( LDAP_DEBUG_ANY,
1855                                                 "%s: line %d: updatedn DN is invalid\n",
1856                                             fname, lineno, 0 );
1857 #endif
1858                                         return 1;
1859                                 }
1860                         }
1861
1862                 } else if ( strcasecmp( cargv[0], "updateref" ) == 0 ) {
1863                         if ( cargc < 2 ) {
1864 #ifdef NEW_LOGGING
1865                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1866                                         "missing url in \"updateref <ldapurl>\" line.\n",
1867                                         fname, lineno , 0 );
1868 #else
1869                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1870                                         "missing url in \"updateref <ldapurl>\" line\n",
1871                                     fname, lineno, 0 );
1872 #endif
1873
1874                                 return( 1 );
1875                         }
1876                         if ( be == NULL ) {
1877 #ifdef NEW_LOGGING
1878                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: updateref"
1879                                         " line must appear inside a database definition\n",
1880                                         fname, lineno , 0 );
1881 #else
1882                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: updateref"
1883                                         " line must appear inside a database definition\n",
1884                                         fname, lineno, 0 );
1885 #endif
1886                                 return 1;
1887
1888                         } else if ( !be->be_update_ndn.bv_len ) {
1889 #ifdef NEW_LOGGING
1890                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
1891                                         "updateref line must come after updatedn.\n",
1892                                         fname, lineno , 0 );
1893 #else
1894                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1895                                         "updateref line must after updatedn.\n",
1896                                     fname, lineno, 0 );
1897 #endif
1898                                 return 1;
1899                         }
1900
1901                         if( validate_global_referral( cargv[1] ) ) {
1902 #ifdef NEW_LOGGING
1903                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1904                                         "invalid URL (%s) in \"updateref\" line.\n",
1905                                         fname, lineno, cargv[1] );
1906 #else
1907                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1908                                         "invalid URL (%s) in \"updateref\" line.\n",
1909                                     fname, lineno, cargv[1] );
1910 #endif
1911                                 return 1;
1912                         }
1913
1914                         vals[0].bv_val = cargv[1];
1915                         vals[0].bv_len = strlen( vals[0].bv_val );
1916                         value_add( &be->be_update_refs, vals );
1917
1918                 /* replication log file to which changes are appended */
1919                 } else if ( strcasecmp( cargv[0], "replogfile" ) == 0 ) {
1920                         if ( cargc < 2 ) {
1921 #ifdef NEW_LOGGING
1922                                 LDAP_LOG( CONFIG, CRIT, 
1923                                         "%s: line %d: missing filename in \"replogfile <filename>\""
1924                                         " line.\n", fname, lineno , 0 );
1925 #else
1926                                 Debug( LDAP_DEBUG_ANY,
1927             "%s: line %d: missing filename in \"replogfile <filename>\" line\n",
1928                                     fname, lineno, 0 );
1929 #endif
1930
1931                                 return( 1 );
1932                         }
1933                         if ( be ) {
1934                                 be->be_replogfile = ch_strdup( cargv[1] );
1935                         } else {
1936                                 replogfile = ch_strdup( cargv[1] );
1937                         }
1938
1939                 /* file from which to read additional rootdse attrs */
1940                 } else if ( strcasecmp( cargv[0], "rootDSE" ) == 0) {
1941                         if ( cargc < 2 ) {
1942 #ifdef NEW_LOGGING
1943                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1944                                         "missing filename in \"rootDSE <filename>\" line.\n",
1945                                         fname, lineno , 0 );
1946 #else
1947                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1948                                         "missing filename in \"rootDSE <filename>\" line.\n",
1949                                     fname, lineno, 0 );
1950 #endif
1951                                 return 1;
1952                         }
1953
1954                         if( read_root_dse_file( cargv[1] ) ) {
1955 #ifdef NEW_LOGGING
1956                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1957                                         "could not read \"rootDSE <filename>\" line.\n",
1958                                         fname, lineno , 0 );
1959 #else
1960                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1961                                         "could not read \"rootDSE <filename>\" line\n",
1962                                     fname, lineno, 0 );
1963 #endif
1964                                 return 1;
1965                         }
1966
1967                 /* maintain lastmodified{by,time} attributes */
1968                 } else if ( strcasecmp( cargv[0], "lastmod" ) == 0 ) {
1969                         if ( cargc < 2 ) {
1970 #ifdef NEW_LOGGING
1971                                 LDAP_LOG( CONFIG, CRIT, 
1972                                            "%s: line %d: missing on|off in \"lastmod <on|off>\""
1973                                            " line.\n", fname, lineno , 0 );
1974 #else
1975                                 Debug( LDAP_DEBUG_ANY,
1976             "%s: line %d: missing on|off in \"lastmod <on|off>\" line\n",
1977                                     fname, lineno, 0 );
1978 #endif
1979
1980                                 return( 1 );
1981                         }
1982                         if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1983                                 if ( be ) {
1984                                         be->be_flags &= ~SLAP_BFLAG_NOLASTMOD;
1985                                 } else {
1986                                         lastmod = 1;
1987                                 }
1988                         } else {
1989                                 if ( be ) {
1990                                         be->be_flags |= SLAP_BFLAG_NOLASTMOD;
1991                                 } else {
1992                                         lastmod = 0;
1993                                 }
1994                         }
1995
1996 #ifdef SIGHUP
1997                 /* turn on/off gentle SIGHUP handling */
1998                 } else if ( strcasecmp( cargv[0], "gentlehup" ) == 0 ) {
1999                         if ( cargc < 2 ) {
2000                                 Debug( LDAP_DEBUG_ANY,
2001     "%s: line %d: missing on|off in \"gentlehup <on|off>\" line\n",
2002                                     fname, lineno, 0 );
2003                                 return( 1 );
2004                         }
2005                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
2006                                 global_gentlehup = 0;
2007                         } else {
2008                                 global_gentlehup = 1;
2009                         }
2010 #endif
2011
2012                 /* set idle timeout value */
2013                 } else if ( strcasecmp( cargv[0], "idletimeout" ) == 0 ) {
2014                         int i;
2015                         if ( cargc < 2 ) {
2016 #ifdef NEW_LOGGING
2017                                 LDAP_LOG( CONFIG, CRIT, 
2018                                         "%s: line %d: missing timeout value in "
2019                                         "\"idletimeout <seconds>\" line.\n", fname, lineno , 0 );
2020 #else
2021                                 Debug( LDAP_DEBUG_ANY,
2022             "%s: line %d: missing timeout value in \"idletimeout <seconds>\" line\n",
2023                                     fname, lineno, 0 );
2024 #endif
2025
2026                                 return( 1 );
2027                         }
2028
2029                         i = atoi( cargv[1] );
2030
2031                         if( i < 0 ) {
2032 #ifdef NEW_LOGGING
2033                                 LDAP_LOG( CONFIG, CRIT, 
2034                                         "%s: line %d: timeout value (%d) invalid "
2035                                         "\"idletimeout <seconds>\" line.\n", fname, lineno, i );
2036 #else
2037                                 Debug( LDAP_DEBUG_ANY,
2038             "%s: line %d: timeout value (%d) invalid \"idletimeout <seconds>\" line\n",
2039                                     fname, lineno, i );
2040 #endif
2041
2042                                 return( 1 );
2043                         }
2044
2045                         global_idletimeout = i;
2046
2047                 /* include another config file */
2048                 } else if ( strcasecmp( cargv[0], "include" ) == 0 ) {
2049                         if ( cargc < 2 ) {
2050 #ifdef NEW_LOGGING
2051                                 LDAP_LOG( CONFIG, CRIT, 
2052                                         "%s: line %d: missing filename in \"include "
2053                                         "<filename>\" line.\n", fname, lineno , 0 );
2054 #else
2055                                 Debug( LDAP_DEBUG_ANY,
2056     "%s: line %d: missing filename in \"include <filename>\" line\n",
2057                                     fname, lineno, 0 );
2058 #endif
2059
2060                                 return( 1 );
2061                         }
2062                         savefname = ch_strdup( cargv[1] );
2063                         savelineno = lineno;
2064
2065                         if ( read_config( savefname, depth+1 ) != 0 ) {
2066                                 return( 1 );
2067                         }
2068
2069                         free( savefname );
2070                         lineno = savelineno - 1;
2071
2072                 /* location of kerberos srvtab file */
2073                 } else if ( strcasecmp( cargv[0], "srvtab" ) == 0 ) {
2074                         if ( cargc < 2 ) {
2075 #ifdef NEW_LOGGING
2076                                 LDAP_LOG( CONFIG, CRIT, 
2077                                         "%s: line %d: missing filename in \"srvtab "
2078                                         "<filename>\" line.\n", fname, lineno , 0 );
2079 #else
2080                                 Debug( LDAP_DEBUG_ANY,
2081             "%s: line %d: missing filename in \"srvtab <filename>\" line\n",
2082                                     fname, lineno, 0 );
2083 #endif
2084
2085                                 return( 1 );
2086                         }
2087                         ldap_srvtab = ch_strdup( cargv[1] );
2088
2089 #ifdef SLAPD_MODULES
2090                 } else if (strcasecmp( cargv[0], "moduleload") == 0 ) {
2091                    if ( cargc < 2 ) {
2092 #ifdef NEW_LOGGING
2093                            LDAP_LOG( CONFIG, INFO, 
2094                                    "%s: line %d: missing filename in \"moduleload "
2095                                    "<filename>\" line.\n", fname, lineno , 0 );
2096 #else
2097                       Debug( LDAP_DEBUG_ANY,
2098                              "%s: line %d: missing filename in \"moduleload <filename>\" line\n",
2099                              fname, lineno, 0 );
2100 #endif
2101
2102                       exit( EXIT_FAILURE );
2103                    }
2104                    if (module_load(cargv[1], cargc - 2, (cargc > 2) ? cargv + 2 : NULL)) {
2105 #ifdef NEW_LOGGING
2106                            LDAP_LOG( CONFIG, CRIT, 
2107                                    "%s: line %d: failed to load or initialize module %s\n",
2108                                    fname, lineno, cargv[1] );
2109 #else
2110                       Debug( LDAP_DEBUG_ANY,
2111                              "%s: line %d: failed to load or initialize module %s\n",
2112                              fname, lineno, cargv[1]);
2113 #endif
2114
2115                       exit( EXIT_FAILURE );
2116                    }
2117                 } else if (strcasecmp( cargv[0], "modulepath") == 0 ) {
2118                    if ( cargc != 2 ) {
2119 #ifdef NEW_LOGGING
2120                            LDAP_LOG( CONFIG, INFO, 
2121                                   "%s: line %d: missing path in \"modulepath <path>\""
2122                                   " line\n", fname, lineno , 0 );
2123 #else
2124                       Debug( LDAP_DEBUG_ANY,
2125                              "%s: line %d: missing path in \"modulepath <path>\" line\n",
2126                              fname, lineno, 0 );
2127 #endif
2128
2129                       exit( EXIT_FAILURE );
2130                    }
2131                    if (module_path( cargv[1] )) {
2132 #ifdef NEW_LOGGING
2133                            LDAP_LOG( CONFIG, CRIT, 
2134                                   "%s: line %d: failed to set module search path to %s.\n",
2135                                   fname, lineno, cargv[1] );
2136 #else
2137                            Debug( LDAP_DEBUG_ANY,
2138                                   "%s: line %d: failed to set module search path to %s\n",
2139                                   fname, lineno, cargv[1]);
2140 #endif
2141
2142                       exit( EXIT_FAILURE );
2143                    }
2144                    
2145 #endif /*SLAPD_MODULES*/
2146
2147 #ifdef HAVE_TLS
2148                 } else if ( !strcasecmp( cargv[0], "TLSRandFile" ) ) {
2149                         rc = ldap_pvt_tls_set_option( NULL,
2150                                                       LDAP_OPT_X_TLS_RANDOM_FILE,
2151                                                       cargv[1] );
2152                         if ( rc )
2153                                 return rc;
2154
2155                 } else if ( !strcasecmp( cargv[0], "TLSCipherSuite" ) ) {
2156                         rc = ldap_pvt_tls_set_option( NULL,
2157                                                       LDAP_OPT_X_TLS_CIPHER_SUITE,
2158                                                       cargv[1] );
2159                         if ( rc )
2160                                 return rc;
2161
2162                 } else if ( !strcasecmp( cargv[0], "TLSCertificateFile" ) ) {
2163                         rc = ldap_pvt_tls_set_option( NULL,
2164                                                       LDAP_OPT_X_TLS_CERTFILE,
2165                                                       cargv[1] );
2166                         if ( rc )
2167                                 return rc;
2168
2169                 } else if ( !strcasecmp( cargv[0], "TLSCertificateKeyFile" ) ) {
2170                         rc = ldap_pvt_tls_set_option( NULL,
2171                                                       LDAP_OPT_X_TLS_KEYFILE,
2172                                                       cargv[1] );
2173                         if ( rc )
2174                                 return rc;
2175
2176                 } else if ( !strcasecmp( cargv[0], "TLSCACertificatePath" ) ) {
2177                         rc = ldap_pvt_tls_set_option( NULL,
2178                                                       LDAP_OPT_X_TLS_CACERTDIR,
2179                                                       cargv[1] );
2180                         if ( rc )
2181                                 return rc;
2182
2183                 } else if ( !strcasecmp( cargv[0], "TLSCACertificateFile" ) ) {
2184                         rc = ldap_pvt_tls_set_option( NULL,
2185                                                       LDAP_OPT_X_TLS_CACERTFILE,
2186                                                       cargv[1] );
2187                         if ( rc )
2188                                 return rc;
2189                 } else if ( !strcasecmp( cargv[0], "TLSVerifyClient" ) ) {
2190                         if ( isdigit( (unsigned char) cargv[1][0] ) ) {
2191                                 i = atoi(cargv[1]);
2192                                 rc = ldap_pvt_tls_set_option( NULL,
2193                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2194                                                       &i );
2195                         } else {
2196                                 rc = ldap_int_tls_config( NULL,
2197                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2198                                                       cargv[1] );
2199                         }
2200
2201                         if ( rc )
2202                                 return rc;
2203
2204 #endif
2205
2206                 } else if ( !strcasecmp( cargv[0], "reverse-lookup" ) ) {
2207 #ifdef SLAPD_RLOOKUPS
2208                         if ( cargc < 2 ) {
2209 #ifdef NEW_LOGGING
2210                                 LDAP_LOG( CONFIG, INFO, 
2211                                         "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2212                                         fname, lineno , 0 );
2213 #else
2214                                 Debug( LDAP_DEBUG_ANY,
2215 "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2216                                         fname, lineno, 0 );
2217 #endif
2218                                 return( 1 );
2219                         }
2220
2221                         if ( !strcasecmp( cargv[1], "on" ) ) {
2222                                 use_reverse_lookup = 1;
2223                         } else if ( !strcasecmp( cargv[1], "off" ) ) {
2224                                 use_reverse_lookup = 0;
2225                         } else {
2226 #ifdef NEW_LOGGING
2227                                 LDAP_LOG( CONFIG, INFO, 
2228                                         "%s: line %d: reverse-lookup: "
2229                                         "must be \"on\" (default) or \"off\"\n", fname, lineno, 0 );
2230 #else
2231                                 Debug( LDAP_DEBUG_ANY,
2232 "%s: line %d: reverse-lookup: must be \"on\" (default) or \"off\"\n",
2233                                         fname, lineno, 0 );
2234 #endif
2235                                 return( 1 );
2236                         }
2237
2238 #else /* !SLAPD_RLOOKUPS */
2239 #ifdef NEW_LOGGING
2240                         LDAP_LOG( CONFIG, INFO, 
2241                                 "%s: line %d: reverse lookups "
2242                                 "are not configured (ignored).\n", fname, lineno , 0 );
2243 #else
2244                         Debug( LDAP_DEBUG_ANY,
2245 "%s: line %d: reverse lookups are not configured (ignored).\n",
2246                                 fname, lineno, 0 );
2247 #endif
2248 #endif /* !SLAPD_RLOOKUPS */
2249
2250                 /* pass anything else to the current backend info/db config routine */
2251                 } else {
2252                         if ( bi != NULL ) {
2253                                 if ( bi->bi_config == 0 ) {
2254 #ifdef NEW_LOGGING
2255                                         LDAP_LOG( CONFIG, INFO, 
2256                                                 "%s: line %d: unknown directive \"%s\" inside "
2257                                                 "backend info definition (ignored).\n",
2258                                                 fname, lineno, cargv[0] );
2259 #else
2260                                         Debug( LDAP_DEBUG_ANY,
2261 "%s: line %d: unknown directive \"%s\" inside backend info definition (ignored)\n",
2262                                                 fname, lineno, cargv[0] );
2263 #endif
2264
2265                                 } else {
2266                                         if ( (*bi->bi_config)( bi, fname, lineno, cargc, cargv )
2267                                                 != 0 )
2268                                         {
2269                                                 return( 1 );
2270                                         }
2271                                 }
2272                         } else if ( be != NULL ) {
2273                                 if ( be->be_config == 0 ) {
2274 #ifdef NEW_LOGGING
2275                                         LDAP_LOG( CONFIG, INFO, 
2276                                                 "%s: line %d: uknown directive \"%s\" inside "
2277                                                 "backend database definition (ignored).\n",
2278                                                 fname, lineno, cargv[0] );
2279 #else
2280                                         Debug( LDAP_DEBUG_ANY,
2281 "%s: line %d: unknown directive \"%s\" inside backend database definition (ignored)\n",
2282                                         fname, lineno, cargv[0] );
2283 #endif
2284
2285                                 } else {
2286                                         if ( (*be->be_config)( be, fname, lineno, cargc, cargv )
2287                                                 != 0 )
2288                                         {
2289                                                 return( 1 );
2290                                         }
2291                                 }
2292                         } else {
2293 #ifdef NEW_LOGGING
2294                                 LDAP_LOG( CONFIG, INFO, 
2295                                         "%s: line %d: unknown directive \"%s\" outside backend "
2296                                         "info and database definitions (ignored).\n",
2297                                         fname, lineno, cargv[0] );
2298 #else
2299                                 Debug( LDAP_DEBUG_ANY,
2300 "%s: line %d: unknown directive \"%s\" outside backend info and database definitions (ignored)\n",
2301                                     fname, lineno, cargv[0] );
2302 #endif
2303
2304                         }
2305                 }
2306                 free( saveline );
2307         }
2308         fclose( fp );
2309
2310         if ( depth == 0 ) ch_free( cargv );
2311
2312         if ( !global_schemadn.bv_val ) {
2313                 ber_str2bv( SLAPD_SCHEMA_DN, sizeof(SLAPD_SCHEMA_DN)-1, 1,
2314                         &global_schemadn );
2315                 dnNormalize2( NULL, &global_schemadn, &global_schemandn );
2316         }
2317
2318         if ( load_ucdata( NULL ) < 0 ) return 1;
2319         return( 0 );
2320 }
2321
2322 static int
2323 fp_parse_line(
2324     int         lineno,
2325     char        *line
2326 )
2327 {
2328         char *  token;
2329         char *  logline;
2330         char    logbuf[sizeof("pseudorootpw ***")];
2331
2332         cargc = 0;
2333         token = strtok_quote( line, " \t" );
2334
2335         logline = line;
2336
2337         if ( token && ( strcasecmp( token, "rootpw" ) == 0 ||
2338                 strcasecmp( token, "replica" ) == 0 ||          /* contains "credentials" */
2339                 strcasecmp( token, "bindpw" ) == 0 ||           /* used in back-ldap */
2340                 strcasecmp( token, "pseudorootpw" ) == 0 ||     /* used in back-meta */
2341                 strcasecmp( token, "dbpasswd" ) == 0 ) )        /* used in back-sql */
2342         {
2343                 snprintf( logline = logbuf, sizeof logbuf, "%s ***", token );
2344         }
2345
2346         if ( strtok_quote_ptr ) {
2347                 *strtok_quote_ptr = ' ';
2348         }
2349
2350 #ifdef NEW_LOGGING
2351         LDAP_LOG( CONFIG, DETAIL1, "line %d (%s)\n", lineno, logline , 0 );
2352 #else
2353         Debug( LDAP_DEBUG_CONFIG, "line %d (%s)\n", lineno, logline, 0 );
2354 #endif
2355
2356         if ( strtok_quote_ptr ) {
2357                 *strtok_quote_ptr = '\0';
2358         }
2359
2360         for ( ; token != NULL; token = strtok_quote( NULL, " \t" ) ) {
2361                 if ( cargc == cargv_size - 1 ) {
2362                         char **tmp;
2363                         tmp = ch_realloc( cargv, (cargv_size + ARGS_STEP) *
2364                                             sizeof(*cargv) );
2365                         if ( tmp == NULL ) {
2366 #ifdef NEW_LOGGING
2367                                 LDAP_LOG( CONFIG, ERR, "line %d: out of memory\n", lineno, 0,0 );
2368 #else
2369                                 Debug( LDAP_DEBUG_ANY, 
2370                                                 "line %d: out of memory\n", 
2371                                                 lineno, 0, 0 );
2372 #endif
2373                                 return -1;
2374                         }
2375                         cargv = tmp;
2376                         cargv_size += ARGS_STEP;
2377                 }
2378                 cargv[cargc++] = token;
2379         }
2380         cargv[cargc] = NULL;
2381         return 0;
2382 }
2383
2384 static char *
2385 strtok_quote( char *line, char *sep )
2386 {
2387         int             inquote;
2388         char            *tmp;
2389         static char     *next;
2390
2391         strtok_quote_ptr = NULL;
2392         if ( line != NULL ) {
2393                 next = line;
2394         }
2395         while ( *next && strchr( sep, *next ) ) {
2396                 next++;
2397         }
2398
2399         if ( *next == '\0' ) {
2400                 next = NULL;
2401                 return( NULL );
2402         }
2403         tmp = next;
2404
2405         for ( inquote = 0; *next; ) {
2406                 switch ( *next ) {
2407                 case '"':
2408                         if ( inquote ) {
2409                                 inquote = 0;
2410                         } else {
2411                                 inquote = 1;
2412                         }
2413                         AC_MEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
2414                         break;
2415
2416                 case '\\':
2417                         if ( next[1] )
2418                                 AC_MEMCPY( next,
2419                                             next + 1, strlen( next + 1 ) + 1 );
2420                         next++;         /* dont parse the escaped character */
2421                         break;
2422
2423                 default:
2424                         if ( ! inquote ) {
2425                                 if ( strchr( sep, *next ) != NULL ) {
2426                                         strtok_quote_ptr = next;
2427                                         *next++ = '\0';
2428                                         return( tmp );
2429                                 }
2430                         }
2431                         next++;
2432                         break;
2433                 }
2434         }
2435
2436         return( tmp );
2437 }
2438
2439 static char     buf[BUFSIZ];
2440 static char     *line;
2441 static size_t lmax, lcur;
2442
2443 #define CATLINE( buf ) \
2444         do { \
2445                 size_t len = strlen( buf ); \
2446                 while ( lcur + len + 1 > lmax ) { \
2447                         lmax += BUFSIZ; \
2448                         line = (char *) ch_realloc( line, lmax ); \
2449                 } \
2450                 strcpy( line + lcur, buf ); \
2451                 lcur += len; \
2452         } while( 0 )
2453
2454 static char *
2455 fp_getline( FILE *fp, int *lineno )
2456 {
2457         char            *p;
2458
2459         lcur = 0;
2460         CATLINE( buf );
2461         (*lineno)++;
2462
2463         /* hack attack - keeps us from having to keep a stack of bufs... */
2464         if ( strncasecmp( line, "include", 7 ) == 0 ) {
2465                 buf[0] = '\0';
2466                 return( line );
2467         }
2468
2469         while ( fgets( buf, sizeof(buf), fp ) != NULL ) {
2470                 /* trim off \r\n or \n */
2471                 if ( (p = strchr( buf, '\n' )) != NULL ) {
2472                         if( p > buf && p[-1] == '\r' ) --p;
2473                         *p = '\0';
2474                 }
2475                 
2476                 /* trim off trailing \ and append the next line */
2477                 if ( line[ 0 ] != '\0' 
2478                                 && (p = line + strlen( line ) - 1)[ 0 ] == '\\'
2479                                 && p[ -1 ] != '\\' ) {
2480                         p[ 0 ] = '\0';
2481                         lcur--;
2482
2483                 } else {
2484                         if ( ! isspace( (unsigned char) buf[0] ) ) {
2485                                 return( line );
2486                         }
2487
2488                         /* change leading whitespace to a space */
2489                         buf[0] = ' ';
2490                 }
2491
2492                 CATLINE( buf );
2493                 (*lineno)++;
2494         }
2495         buf[0] = '\0';
2496
2497         return( line[0] ? line : NULL );
2498 }
2499
2500 static void
2501 fp_getline_init( int *lineno )
2502 {
2503         *lineno = -1;
2504         buf[0] = '\0';
2505 }
2506
2507 /* Loads ucdata, returns 1 if loading, 0 if already loaded, -1 on error */
2508 static int
2509 load_ucdata( char *path )
2510 {
2511         static int loaded = 0;
2512         int err;
2513         
2514         if ( loaded ) {
2515                 return( 0 );
2516         }
2517         err = ucdata_load( path ? path : SLAPD_DEFAULT_UCDATA, UCDATA_ALL );
2518         if ( err ) {
2519 #ifdef NEW_LOGGING
2520                 LDAP_LOG( CONFIG, CRIT, 
2521                         "load_ucdata: Error %d loading ucdata.\n", err, 0,0 );
2522 #else
2523                 Debug( LDAP_DEBUG_ANY, "error loading ucdata (error %d)\n",
2524                        err, 0, 0 );
2525 #endif
2526
2527                 return( -1 );
2528         }
2529         loaded = 1;
2530         return( 1 );
2531 }
2532
2533 void
2534 config_destroy( )
2535 {
2536         ucdata_unload( UCDATA_ALL );
2537         free( global_schemandn.bv_val );
2538         free( global_schemadn.bv_val );
2539         free( line );
2540         if ( slapd_args_file )
2541                 free ( slapd_args_file );
2542         if ( slapd_pid_file )
2543                 free ( slapd_pid_file );
2544         acl_destroy( global_acl, NULL );
2545 }