]> git.sur5r.net Git - openldap/blob - servers/slapd/config.c
3147c4ede93c31e5cd8f10d06c87f95ce213892e
[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                 /* specify an attribute type */
1599                 } else if (( strcasecmp( cargv[0], "attributetype" ) == 0 )
1600                         || ( strcasecmp( cargv[0], "attribute" ) == 0 ))
1601                 {
1602                         if ( *cargv[1] == '(' ) {
1603                                 char * p;
1604                                 p = strchr(saveline,'(');
1605                                 rc = parse_at( fname, lineno, p, cargv );
1606                                 if( rc ) return rc;
1607
1608                         } else {
1609 #ifdef NEW_LOGGING
1610                                 LDAP_LOG( CONFIG, INFO, 
1611                                         "%s: line %d: old attribute type format not supported.\n",
1612                                         fname, lineno , 0 );
1613 #else
1614                                 Debug( LDAP_DEBUG_ANY,
1615     "%s: line %d: old attribute type format not supported.\n",
1616                                     fname, lineno, 0 );
1617 #endif
1618
1619                         }
1620
1621                 /* turn on/off schema checking */
1622                 } else if ( strcasecmp( cargv[0], "schemacheck" ) == 0 ) {
1623                         if ( cargc < 2 ) {
1624 #ifdef NEW_LOGGING
1625                                 LDAP_LOG( CONFIG, CRIT, 
1626                                         "%s: line %d: missing on|off in \"schemacheck <on|off>\""
1627                                         " line.\n", fname, lineno , 0 );
1628 #else
1629                                 Debug( LDAP_DEBUG_ANY,
1630     "%s: line %d: missing on|off in \"schemacheck <on|off>\" line\n",
1631                                     fname, lineno, 0 );
1632 #endif
1633
1634                                 return( 1 );
1635                         }
1636                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
1637 #ifdef NEW_LOGGING
1638                                 LDAP_LOG( CONFIG, CRIT, 
1639                                         "%s: line %d: schema checking disabled! your mileage may "
1640                                         "vary!\n", fname, lineno , 0 );
1641 #else
1642                                 Debug( LDAP_DEBUG_ANY,
1643                                         "%s: line %d: schema checking disabled! your mileage may vary!\n",
1644                                     fname, lineno, 0 );
1645 #endif
1646                                 global_schemacheck = 0;
1647                         } else {
1648                                 global_schemacheck = 1;
1649                         }
1650
1651                 /* specify access control info */
1652                 } else if ( strcasecmp( cargv[0], "access" ) == 0 ) {
1653                         parse_acl( be, fname, lineno, cargc, cargv );
1654
1655                 /* debug level to log things to syslog */
1656                 } else if ( strcasecmp( cargv[0], "loglevel" ) == 0 ) {
1657                         if ( cargc < 2 ) {
1658 #ifdef NEW_LOGGING
1659                                 LDAP_LOG( CONFIG, CRIT, 
1660                                         "%s: line %d: missing level in \"loglevel <level>\""
1661                                         " line.\n", fname, lineno , 0 );
1662 #else
1663                                 Debug( LDAP_DEBUG_ANY,
1664                     "%s: line %d: missing level in \"loglevel <level>\" line\n",
1665                                     fname, lineno, 0 );
1666 #endif
1667
1668                                 return( 1 );
1669                         }
1670
1671                         ldap_syslog = 0;
1672
1673                         for( i=1; i < cargc; i++ ) {
1674                                 ldap_syslog += atoi( cargv[1] );
1675                         }
1676
1677                 /* list of replicas of the data in this backend (master only) */
1678                 } else if ( strcasecmp( cargv[0], "replica" ) == 0 ) {
1679                         if ( cargc < 2 ) {
1680 #ifdef NEW_LOGGING
1681                                 LDAP_LOG( CONFIG, CRIT, 
1682                                         "%s: line %d: missing host in \"replica "
1683                                         " <host[:port]\" line\n", fname, lineno , 0 );
1684 #else
1685                                 Debug( LDAP_DEBUG_ANY,
1686             "%s: line %d: missing host in \"replica <host[:port]>\" line\n",
1687                                     fname, lineno, 0 );
1688 #endif
1689
1690                                 return( 1 );
1691                         }
1692                         if ( be == NULL ) {
1693 #ifdef NEW_LOGGING
1694                                 LDAP_LOG( CONFIG, INFO, 
1695                                             "%s: line %d: replica line must appear inside "
1696                                             "a database definition.\n", fname, lineno, 0);
1697 #else
1698                                 Debug( LDAP_DEBUG_ANY,
1699 "%s: line %d: replica line must appear inside a database definition\n",
1700                                     fname, lineno, 0 );
1701 #endif
1702                                 return 1;
1703
1704                         } else {
1705                                 int nr = -1;
1706
1707                                 for ( i = 1; i < cargc; i++ ) {
1708                                         if ( strncasecmp( cargv[i], "host=", 5 )
1709                                             == 0 ) {
1710                                                 nr = add_replica_info( be, 
1711                                                         cargv[i] + 5 );
1712                                                 break;
1713                                         }
1714                                 }
1715                                 if ( i == cargc ) {
1716 #ifdef NEW_LOGGING
1717                                         LDAP_LOG( CONFIG, INFO, 
1718                                                 "%s: line %d: missing host in \"replica\" line\n", 
1719                                                 fname, lineno , 0 );
1720 #else
1721                                         Debug( LDAP_DEBUG_ANY,
1722                     "%s: line %d: missing host in \"replica\" line\n",
1723                                             fname, lineno, 0 );
1724 #endif
1725                                         return 1;
1726
1727                                 } else if ( nr == -1 ) {
1728 #ifdef NEW_LOGGING
1729                                         LDAP_LOG( CONFIG, INFO, 
1730                                                    "%s: line %d: unable to add"
1731                                                    " replica \"%s\"\n",
1732                                                    fname, lineno, 
1733                                                    cargv[i] + 5 );
1734 #else
1735                                         Debug( LDAP_DEBUG_ANY,
1736                 "%s: line %d: unable to add replica \"%s\"\n",
1737                                                 fname, lineno, cargv[i] + 5 );
1738 #endif
1739                                         return 1;
1740                                 } else {
1741                                         for ( i = 1; i < cargc; i++ ) {
1742                                                 if ( strncasecmp( cargv[i], "suffix=", 7 ) == 0 ) {
1743
1744                                                         switch ( add_replica_suffix( be, nr, cargv[i] + 7 ) ) {
1745                                                         case 1:
1746 #ifdef NEW_LOGGING
1747                                                                 LDAP_LOG( CONFIG, INFO, 
1748                                                                         "%s: line %d: suffix \"%s\" in \"replica\""
1749                                                                         " line is not valid for backend(ignored)\n",
1750                                                                         fname, lineno, cargv[i] + 7 );
1751 #else
1752                                                                 Debug( LDAP_DEBUG_ANY,
1753                                                                                 "%s: line %d: suffix \"%s\" in \"replica\" line is not valid for backend (ignored)\n",
1754                                                                                 fname, lineno, cargv[i] + 7 );
1755 #endif
1756                                                                 break;
1757
1758                                                         case 2:
1759 #ifdef NEW_LOGGING
1760                                                                 LDAP_LOG( CONFIG, INFO, 
1761                                                                         "%s: line %d: unable to normalize suffix"
1762                                                                         " in \"replica\" line (ignored)\n",
1763                                                                         fname, lineno , 0 );
1764 #else
1765                                                                 Debug( LDAP_DEBUG_ANY,
1766                                                                                  "%s: line %d: unable to normalize suffix in \"replica\" line (ignored)\n",
1767                                                                                  fname, lineno, 0 );
1768 #endif
1769                                                                 break;
1770                                                         }
1771
1772                                                 } else if ( strncasecmp( cargv[i], "attr", 4 ) == 0 ) {
1773                                                         int exclude = 0;
1774                                                         char *arg = cargv[i] + 4;
1775
1776                                                         if ( arg[0] == '!' ) {
1777                                                                 arg++;
1778                                                                 exclude = 1;
1779                                                         }
1780
1781                                                         if ( arg[0] != '=' ) {
1782                                                                 continue;
1783                                                         }
1784
1785                                                         if ( add_replica_attrs( be, nr, arg + 1, exclude ) ) {
1786 #ifdef NEW_LOGGING
1787                                                                 LDAP_LOG( CONFIG, INFO, 
1788                                                                         "%s: line %d: attribute \"%s\" in "
1789                                                                         "\"replica\" line is unknown\n",
1790                                                                         fname, lineno, arg + 1 ); 
1791 #else
1792                                                                 Debug( LDAP_DEBUG_ANY,
1793                                                                                 "%s: line %d: attribute \"%s\" in \"replica\" line is unknown\n",
1794                                                                                 fname, lineno, arg + 1 );
1795 #endif
1796                                                                 return( 1 );
1797                                                         }
1798                                                 }
1799                                         }
1800                                 }
1801                         }
1802
1803                 /* dn of master entity allowed to write to replica */
1804                 } else if ( strcasecmp( cargv[0], "updatedn" ) == 0 ) {
1805                         if ( cargc < 2 ) {
1806 #ifdef NEW_LOGGING
1807                                 LDAP_LOG( CONFIG, CRIT, 
1808                                         "%s: line %d: missing dn in \"updatedn <dn>\""
1809                                         " line.\n", fname, lineno , 0 );
1810 #else
1811                                 Debug( LDAP_DEBUG_ANY,
1812                     "%s: line %d: missing dn in \"updatedn <dn>\" line\n",
1813                                     fname, lineno, 0 );
1814 #endif
1815
1816                                 return( 1 );
1817                         }
1818                         if ( be == NULL ) {
1819 #ifdef NEW_LOGGING
1820                                 LDAP_LOG( CONFIG, INFO, 
1821                                         "%s: line %d: updatedn line must appear inside "
1822                                         "a database definition\n", 
1823                                         fname, lineno , 0 );
1824 #else
1825                                 Debug( LDAP_DEBUG_ANY,
1826 "%s: line %d: updatedn line must appear inside a database definition\n",
1827                                     fname, lineno, 0 );
1828 #endif
1829                                 return 1;
1830
1831                         } else {
1832                                 struct berval dn;
1833
1834                                 if ( load_ucdata( NULL ) < 0 ) return 1;
1835
1836                                 dn.bv_val = cargv[1];
1837                                 dn.bv_len = strlen( cargv[1] );
1838
1839                                 rc = dnNormalize2( NULL, &dn, &be->be_update_ndn );
1840                                 if( rc != LDAP_SUCCESS ) {
1841 #ifdef NEW_LOGGING
1842                                         LDAP_LOG( CONFIG, CRIT, 
1843                                                 "%s: line %d: updatedn DN is invalid.\n",
1844                                                 fname, lineno , 0 );
1845 #else
1846                                         Debug( LDAP_DEBUG_ANY,
1847                                                 "%s: line %d: updatedn DN is invalid\n",
1848                                             fname, lineno, 0 );
1849 #endif
1850                                         return 1;
1851                                 }
1852                         }
1853
1854                 } else if ( strcasecmp( cargv[0], "updateref" ) == 0 ) {
1855                         if ( cargc < 2 ) {
1856 #ifdef NEW_LOGGING
1857                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1858                                         "missing url in \"updateref <ldapurl>\" line.\n",
1859                                         fname, lineno , 0 );
1860 #else
1861                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1862                                         "missing url in \"updateref <ldapurl>\" line\n",
1863                                     fname, lineno, 0 );
1864 #endif
1865
1866                                 return( 1 );
1867                         }
1868                         if ( be == NULL ) {
1869 #ifdef NEW_LOGGING
1870                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: updateref"
1871                                         " line must appear inside a database definition\n",
1872                                         fname, lineno , 0 );
1873 #else
1874                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: updateref"
1875                                         " line must appear inside a database definition\n",
1876                                         fname, lineno, 0 );
1877 #endif
1878                                 return 1;
1879
1880                         } else if ( !be->be_update_ndn.bv_len ) {
1881 #ifdef NEW_LOGGING
1882                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
1883                                         "updateref line must come after updatedn.\n",
1884                                         fname, lineno , 0 );
1885 #else
1886                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1887                                         "updateref line must after updatedn.\n",
1888                                     fname, lineno, 0 );
1889 #endif
1890                                 return 1;
1891                         }
1892
1893                         if( validate_global_referral( cargv[1] ) ) {
1894 #ifdef NEW_LOGGING
1895                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1896                                         "invalid URL (%s) in \"updateref\" line.\n",
1897                                         fname, lineno, cargv[1] );
1898 #else
1899                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1900                                         "invalid URL (%s) in \"updateref\" line.\n",
1901                                     fname, lineno, cargv[1] );
1902 #endif
1903                                 return 1;
1904                         }
1905
1906                         vals[0].bv_val = cargv[1];
1907                         vals[0].bv_len = strlen( vals[0].bv_val );
1908                         value_add( &be->be_update_refs, vals );
1909
1910                 /* replication log file to which changes are appended */
1911                 } else if ( strcasecmp( cargv[0], "replogfile" ) == 0 ) {
1912                         if ( cargc < 2 ) {
1913 #ifdef NEW_LOGGING
1914                                 LDAP_LOG( CONFIG, CRIT, 
1915                                         "%s: line %d: missing filename in \"replogfile <filename>\""
1916                                         " line.\n", fname, lineno , 0 );
1917 #else
1918                                 Debug( LDAP_DEBUG_ANY,
1919             "%s: line %d: missing filename in \"replogfile <filename>\" line\n",
1920                                     fname, lineno, 0 );
1921 #endif
1922
1923                                 return( 1 );
1924                         }
1925                         if ( be ) {
1926                                 be->be_replogfile = ch_strdup( cargv[1] );
1927                         } else {
1928                                 replogfile = ch_strdup( cargv[1] );
1929                         }
1930
1931                 /* file from which to read additional rootdse attrs */
1932                 } else if ( strcasecmp( cargv[0], "rootDSE" ) == 0) {
1933                         if ( cargc < 2 ) {
1934 #ifdef NEW_LOGGING
1935                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1936                                         "missing filename in \"rootDSE <filename>\" line.\n",
1937                                         fname, lineno , 0 );
1938 #else
1939                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1940                                         "missing filename in \"rootDSE <filename>\" line.\n",
1941                                     fname, lineno, 0 );
1942 #endif
1943                                 return 1;
1944                         }
1945
1946                         if( read_root_dse_file( cargv[1] ) ) {
1947 #ifdef NEW_LOGGING
1948                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1949                                         "could not read \"rootDSE <filename>\" line.\n",
1950                                         fname, lineno , 0 );
1951 #else
1952                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1953                                         "could not read \"rootDSE <filename>\" line\n",
1954                                     fname, lineno, 0 );
1955 #endif
1956                                 return 1;
1957                         }
1958
1959                 /* maintain lastmodified{by,time} attributes */
1960                 } else if ( strcasecmp( cargv[0], "lastmod" ) == 0 ) {
1961                         if ( cargc < 2 ) {
1962 #ifdef NEW_LOGGING
1963                                 LDAP_LOG( CONFIG, CRIT, 
1964                                            "%s: line %d: missing on|off in \"lastmod <on|off>\""
1965                                            " line.\n", fname, lineno , 0 );
1966 #else
1967                                 Debug( LDAP_DEBUG_ANY,
1968             "%s: line %d: missing on|off in \"lastmod <on|off>\" line\n",
1969                                     fname, lineno, 0 );
1970 #endif
1971
1972                                 return( 1 );
1973                         }
1974                         if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1975                                 if ( be ) {
1976                                         be->be_flags &= ~SLAP_BFLAG_NOLASTMOD;
1977                                 } else {
1978                                         lastmod = 1;
1979                                 }
1980                         } else {
1981                                 if ( be ) {
1982                                         be->be_flags |= SLAP_BFLAG_NOLASTMOD;
1983                                 } else {
1984                                         lastmod = 0;
1985                                 }
1986                         }
1987
1988 #ifdef SIGHUP
1989                 /* turn on/off gentle SIGHUP handling */
1990                 } else if ( strcasecmp( cargv[0], "gentlehup" ) == 0 ) {
1991                         if ( cargc < 2 ) {
1992                                 Debug( LDAP_DEBUG_ANY,
1993     "%s: line %d: missing on|off in \"gentlehup <on|off>\" line\n",
1994                                     fname, lineno, 0 );
1995                                 return( 1 );
1996                         }
1997                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
1998                                 global_gentlehup = 0;
1999                         } else {
2000                                 global_gentlehup = 1;
2001                         }
2002 #endif
2003
2004                 /* set idle timeout value */
2005                 } else if ( strcasecmp( cargv[0], "idletimeout" ) == 0 ) {
2006                         int i;
2007                         if ( cargc < 2 ) {
2008 #ifdef NEW_LOGGING
2009                                 LDAP_LOG( CONFIG, CRIT, 
2010                                         "%s: line %d: missing timeout value in "
2011                                         "\"idletimeout <seconds>\" line.\n", fname, lineno , 0 );
2012 #else
2013                                 Debug( LDAP_DEBUG_ANY,
2014             "%s: line %d: missing timeout value in \"idletimeout <seconds>\" line\n",
2015                                     fname, lineno, 0 );
2016 #endif
2017
2018                                 return( 1 );
2019                         }
2020
2021                         i = atoi( cargv[1] );
2022
2023                         if( i < 0 ) {
2024 #ifdef NEW_LOGGING
2025                                 LDAP_LOG( CONFIG, CRIT, 
2026                                         "%s: line %d: timeout value (%d) invalid "
2027                                         "\"idletimeout <seconds>\" line.\n", fname, lineno, i );
2028 #else
2029                                 Debug( LDAP_DEBUG_ANY,
2030             "%s: line %d: timeout value (%d) invalid \"idletimeout <seconds>\" line\n",
2031                                     fname, lineno, i );
2032 #endif
2033
2034                                 return( 1 );
2035                         }
2036
2037                         global_idletimeout = i;
2038
2039                 /* include another config file */
2040                 } else if ( strcasecmp( cargv[0], "include" ) == 0 ) {
2041                         if ( cargc < 2 ) {
2042 #ifdef NEW_LOGGING
2043                                 LDAP_LOG( CONFIG, CRIT, 
2044                                         "%s: line %d: missing filename in \"include "
2045                                         "<filename>\" line.\n", fname, lineno , 0 );
2046 #else
2047                                 Debug( LDAP_DEBUG_ANY,
2048     "%s: line %d: missing filename in \"include <filename>\" line\n",
2049                                     fname, lineno, 0 );
2050 #endif
2051
2052                                 return( 1 );
2053                         }
2054                         savefname = ch_strdup( cargv[1] );
2055                         savelineno = lineno;
2056
2057                         if ( read_config( savefname, depth+1 ) != 0 ) {
2058                                 return( 1 );
2059                         }
2060
2061                         free( savefname );
2062                         lineno = savelineno - 1;
2063
2064                 /* location of kerberos srvtab file */
2065                 } else if ( strcasecmp( cargv[0], "srvtab" ) == 0 ) {
2066                         if ( cargc < 2 ) {
2067 #ifdef NEW_LOGGING
2068                                 LDAP_LOG( CONFIG, CRIT, 
2069                                         "%s: line %d: missing filename in \"srvtab "
2070                                         "<filename>\" line.\n", fname, lineno , 0 );
2071 #else
2072                                 Debug( LDAP_DEBUG_ANY,
2073             "%s: line %d: missing filename in \"srvtab <filename>\" line\n",
2074                                     fname, lineno, 0 );
2075 #endif
2076
2077                                 return( 1 );
2078                         }
2079                         ldap_srvtab = ch_strdup( cargv[1] );
2080
2081 #ifdef SLAPD_MODULES
2082                 } else if (strcasecmp( cargv[0], "moduleload") == 0 ) {
2083                    if ( cargc < 2 ) {
2084 #ifdef NEW_LOGGING
2085                            LDAP_LOG( CONFIG, INFO, 
2086                                    "%s: line %d: missing filename in \"moduleload "
2087                                    "<filename>\" line.\n", fname, lineno , 0 );
2088 #else
2089                       Debug( LDAP_DEBUG_ANY,
2090                              "%s: line %d: missing filename in \"moduleload <filename>\" line\n",
2091                              fname, lineno, 0 );
2092 #endif
2093
2094                       exit( EXIT_FAILURE );
2095                    }
2096                    if (module_load(cargv[1], cargc - 2, (cargc > 2) ? cargv + 2 : NULL)) {
2097 #ifdef NEW_LOGGING
2098                            LDAP_LOG( CONFIG, CRIT, 
2099                                    "%s: line %d: failed to load or initialize module %s\n",
2100                                    fname, lineno, cargv[1] );
2101 #else
2102                       Debug( LDAP_DEBUG_ANY,
2103                              "%s: line %d: failed to load or initialize module %s\n",
2104                              fname, lineno, cargv[1]);
2105 #endif
2106
2107                       exit( EXIT_FAILURE );
2108                    }
2109                 } else if (strcasecmp( cargv[0], "modulepath") == 0 ) {
2110                    if ( cargc != 2 ) {
2111 #ifdef NEW_LOGGING
2112                            LDAP_LOG( CONFIG, INFO, 
2113                                   "%s: line %d: missing path in \"modulepath <path>\""
2114                                   " line\n", fname, lineno , 0 );
2115 #else
2116                       Debug( LDAP_DEBUG_ANY,
2117                              "%s: line %d: missing path in \"modulepath <path>\" line\n",
2118                              fname, lineno, 0 );
2119 #endif
2120
2121                       exit( EXIT_FAILURE );
2122                    }
2123                    if (module_path( cargv[1] )) {
2124 #ifdef NEW_LOGGING
2125                            LDAP_LOG( CONFIG, CRIT, 
2126                                   "%s: line %d: failed to set module search path to %s.\n",
2127                                   fname, lineno, cargv[1] );
2128 #else
2129                            Debug( LDAP_DEBUG_ANY,
2130                                   "%s: line %d: failed to set module search path to %s\n",
2131                                   fname, lineno, cargv[1]);
2132 #endif
2133
2134                       exit( EXIT_FAILURE );
2135                    }
2136                    
2137 #endif /*SLAPD_MODULES*/
2138
2139 #ifdef HAVE_TLS
2140                 } else if ( !strcasecmp( cargv[0], "TLSRandFile" ) ) {
2141                         rc = ldap_pvt_tls_set_option( NULL,
2142                                                       LDAP_OPT_X_TLS_RANDOM_FILE,
2143                                                       cargv[1] );
2144                         if ( rc )
2145                                 return rc;
2146
2147                 } else if ( !strcasecmp( cargv[0], "TLSCipherSuite" ) ) {
2148                         rc = ldap_pvt_tls_set_option( NULL,
2149                                                       LDAP_OPT_X_TLS_CIPHER_SUITE,
2150                                                       cargv[1] );
2151                         if ( rc )
2152                                 return rc;
2153
2154                 } else if ( !strcasecmp( cargv[0], "TLSCertificateFile" ) ) {
2155                         rc = ldap_pvt_tls_set_option( NULL,
2156                                                       LDAP_OPT_X_TLS_CERTFILE,
2157                                                       cargv[1] );
2158                         if ( rc )
2159                                 return rc;
2160
2161                 } else if ( !strcasecmp( cargv[0], "TLSCertificateKeyFile" ) ) {
2162                         rc = ldap_pvt_tls_set_option( NULL,
2163                                                       LDAP_OPT_X_TLS_KEYFILE,
2164                                                       cargv[1] );
2165                         if ( rc )
2166                                 return rc;
2167
2168                 } else if ( !strcasecmp( cargv[0], "TLSCACertificatePath" ) ) {
2169                         rc = ldap_pvt_tls_set_option( NULL,
2170                                                       LDAP_OPT_X_TLS_CACERTDIR,
2171                                                       cargv[1] );
2172                         if ( rc )
2173                                 return rc;
2174
2175                 } else if ( !strcasecmp( cargv[0], "TLSCACertificateFile" ) ) {
2176                         rc = ldap_pvt_tls_set_option( NULL,
2177                                                       LDAP_OPT_X_TLS_CACERTFILE,
2178                                                       cargv[1] );
2179                         if ( rc )
2180                                 return rc;
2181                 } else if ( !strcasecmp( cargv[0], "TLSVerifyClient" ) ) {
2182                         if ( isdigit( (unsigned char) cargv[1][0] ) ) {
2183                                 i = atoi(cargv[1]);
2184                                 rc = ldap_pvt_tls_set_option( NULL,
2185                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2186                                                       &i );
2187                         } else {
2188                                 rc = ldap_int_tls_config( NULL,
2189                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2190                                                       cargv[1] );
2191                         }
2192
2193                         if ( rc )
2194                                 return rc;
2195
2196 #endif
2197
2198                 } else if ( !strcasecmp( cargv[0], "reverse-lookup" ) ) {
2199 #ifdef SLAPD_RLOOKUPS
2200                         if ( cargc < 2 ) {
2201 #ifdef NEW_LOGGING
2202                                 LDAP_LOG( CONFIG, INFO, 
2203                                         "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2204                                         fname, lineno , 0 );
2205 #else
2206                                 Debug( LDAP_DEBUG_ANY,
2207 "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2208                                         fname, lineno, 0 );
2209 #endif
2210                                 return( 1 );
2211                         }
2212
2213                         if ( !strcasecmp( cargv[1], "on" ) ) {
2214                                 use_reverse_lookup = 1;
2215                         } else if ( !strcasecmp( cargv[1], "off" ) ) {
2216                                 use_reverse_lookup = 0;
2217                         } else {
2218 #ifdef NEW_LOGGING
2219                                 LDAP_LOG( CONFIG, INFO, 
2220                                         "%s: line %d: reverse-lookup: "
2221                                         "must be \"on\" (default) or \"off\"\n", fname, lineno, 0 );
2222 #else
2223                                 Debug( LDAP_DEBUG_ANY,
2224 "%s: line %d: reverse-lookup: must be \"on\" (default) or \"off\"\n",
2225                                         fname, lineno, 0 );
2226 #endif
2227                                 return( 1 );
2228                         }
2229
2230 #else /* !SLAPD_RLOOKUPS */
2231 #ifdef NEW_LOGGING
2232                         LDAP_LOG( CONFIG, INFO, 
2233                                 "%s: line %d: reverse lookups "
2234                                 "are not configured (ignored).\n", fname, lineno , 0 );
2235 #else
2236                         Debug( LDAP_DEBUG_ANY,
2237 "%s: line %d: reverse lookups are not configured (ignored).\n",
2238                                 fname, lineno, 0 );
2239 #endif
2240 #endif /* !SLAPD_RLOOKUPS */
2241
2242                 /* pass anything else to the current backend info/db config routine */
2243                 } else {
2244                         if ( bi != NULL ) {
2245                                 if ( bi->bi_config == 0 ) {
2246 #ifdef NEW_LOGGING
2247                                         LDAP_LOG( CONFIG, INFO, 
2248                                                 "%s: line %d: unknown directive \"%s\" inside "
2249                                                 "backend info definition (ignored).\n",
2250                                                 fname, lineno, cargv[0] );
2251 #else
2252                                         Debug( LDAP_DEBUG_ANY,
2253 "%s: line %d: unknown directive \"%s\" inside backend info definition (ignored)\n",
2254                                                 fname, lineno, cargv[0] );
2255 #endif
2256
2257                                 } else {
2258                                         if ( (*bi->bi_config)( bi, fname, lineno, cargc, cargv )
2259                                                 != 0 )
2260                                         {
2261                                                 return( 1 );
2262                                         }
2263                                 }
2264                         } else if ( be != NULL ) {
2265                                 if ( be->be_config == 0 ) {
2266 #ifdef NEW_LOGGING
2267                                         LDAP_LOG( CONFIG, INFO, 
2268                                                 "%s: line %d: uknown directive \"%s\" inside "
2269                                                 "backend database definition (ignored).\n",
2270                                                 fname, lineno, cargv[0] );
2271 #else
2272                                         Debug( LDAP_DEBUG_ANY,
2273 "%s: line %d: unknown directive \"%s\" inside backend database definition (ignored)\n",
2274                                         fname, lineno, cargv[0] );
2275 #endif
2276
2277                                 } else {
2278                                         if ( (*be->be_config)( be, fname, lineno, cargc, cargv )
2279                                                 != 0 )
2280                                         {
2281                                                 return( 1 );
2282                                         }
2283                                 }
2284                         } else {
2285 #ifdef NEW_LOGGING
2286                                 LDAP_LOG( CONFIG, INFO, 
2287                                         "%s: line %d: unknown directive \"%s\" outside backend "
2288                                         "info and database definitions (ignored).\n",
2289                                         fname, lineno, cargv[0] );
2290 #else
2291                                 Debug( LDAP_DEBUG_ANY,
2292 "%s: line %d: unknown directive \"%s\" outside backend info and database definitions (ignored)\n",
2293                                     fname, lineno, cargv[0] );
2294 #endif
2295
2296                         }
2297                 }
2298                 free( saveline );
2299         }
2300         fclose( fp );
2301
2302         if ( depth == 0 ) ch_free( cargv );
2303
2304         if ( !global_schemadn.bv_val ) {
2305                 ber_str2bv( SLAPD_SCHEMA_DN, sizeof(SLAPD_SCHEMA_DN)-1, 1,
2306                         &global_schemadn );
2307                 dnNormalize2( NULL, &global_schemadn, &global_schemandn );
2308         }
2309
2310         if ( load_ucdata( NULL ) < 0 ) return 1;
2311         return( 0 );
2312 }
2313
2314 static int
2315 fp_parse_line(
2316     int         lineno,
2317     char        *line
2318 )
2319 {
2320         char *  token;
2321         char *  logline;
2322         char    logbuf[sizeof("pseudorootpw ***")];
2323
2324         cargc = 0;
2325         token = strtok_quote( line, " \t" );
2326
2327         logline = line;
2328
2329         if ( token && ( strcasecmp( token, "rootpw" ) == 0 ||
2330                 strcasecmp( token, "replica" ) == 0 ||          /* contains "credentials" */
2331                 strcasecmp( token, "bindpw" ) == 0 ||           /* used in back-ldap */
2332                 strcasecmp( token, "pseudorootpw" ) == 0 ||     /* used in back-meta */
2333                 strcasecmp( token, "dbpasswd" ) == 0 ) )        /* used in back-sql */
2334         {
2335                 snprintf( logline = logbuf, sizeof logbuf, "%s ***", token );
2336         }
2337
2338         if ( strtok_quote_ptr ) {
2339                 *strtok_quote_ptr = ' ';
2340         }
2341
2342 #ifdef NEW_LOGGING
2343         LDAP_LOG( CONFIG, DETAIL1, "line %d (%s)\n", lineno, logline , 0 );
2344 #else
2345         Debug( LDAP_DEBUG_CONFIG, "line %d (%s)\n", lineno, logline, 0 );
2346 #endif
2347
2348         if ( strtok_quote_ptr ) {
2349                 *strtok_quote_ptr = '\0';
2350         }
2351
2352         for ( ; token != NULL; token = strtok_quote( NULL, " \t" ) ) {
2353                 if ( cargc == cargv_size - 1 ) {
2354                         char **tmp;
2355                         tmp = ch_realloc( cargv, (cargv_size + ARGS_STEP) *
2356                                             sizeof(*cargv) );
2357                         if ( tmp == NULL ) {
2358 #ifdef NEW_LOGGING
2359                                 LDAP_LOG( CONFIG, ERR, "line %d: out of memory\n", lineno, 0,0 );
2360 #else
2361                                 Debug( LDAP_DEBUG_ANY, 
2362                                                 "line %d: out of memory\n", 
2363                                                 lineno, 0, 0 );
2364 #endif
2365                                 return -1;
2366                         }
2367                         cargv = tmp;
2368                         cargv_size += ARGS_STEP;
2369                 }
2370                 cargv[cargc++] = token;
2371         }
2372         cargv[cargc] = NULL;
2373         return 0;
2374 }
2375
2376 static char *
2377 strtok_quote( char *line, char *sep )
2378 {
2379         int             inquote;
2380         char            *tmp;
2381         static char     *next;
2382
2383         strtok_quote_ptr = NULL;
2384         if ( line != NULL ) {
2385                 next = line;
2386         }
2387         while ( *next && strchr( sep, *next ) ) {
2388                 next++;
2389         }
2390
2391         if ( *next == '\0' ) {
2392                 next = NULL;
2393                 return( NULL );
2394         }
2395         tmp = next;
2396
2397         for ( inquote = 0; *next; ) {
2398                 switch ( *next ) {
2399                 case '"':
2400                         if ( inquote ) {
2401                                 inquote = 0;
2402                         } else {
2403                                 inquote = 1;
2404                         }
2405                         AC_MEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
2406                         break;
2407
2408                 case '\\':
2409                         if ( next[1] )
2410                                 AC_MEMCPY( next,
2411                                             next + 1, strlen( next + 1 ) + 1 );
2412                         next++;         /* dont parse the escaped character */
2413                         break;
2414
2415                 default:
2416                         if ( ! inquote ) {
2417                                 if ( strchr( sep, *next ) != NULL ) {
2418                                         strtok_quote_ptr = next;
2419                                         *next++ = '\0';
2420                                         return( tmp );
2421                                 }
2422                         }
2423                         next++;
2424                         break;
2425                 }
2426         }
2427
2428         return( tmp );
2429 }
2430
2431 static char     buf[BUFSIZ];
2432 static char     *line;
2433 static size_t lmax, lcur;
2434
2435 #define CATLINE( buf ) \
2436         do { \
2437                 size_t len = strlen( buf ); \
2438                 while ( lcur + len + 1 > lmax ) { \
2439                         lmax += BUFSIZ; \
2440                         line = (char *) ch_realloc( line, lmax ); \
2441                 } \
2442                 strcpy( line + lcur, buf ); \
2443                 lcur += len; \
2444         } while( 0 )
2445
2446 static char *
2447 fp_getline( FILE *fp, int *lineno )
2448 {
2449         char            *p;
2450
2451         lcur = 0;
2452         CATLINE( buf );
2453         (*lineno)++;
2454
2455         /* hack attack - keeps us from having to keep a stack of bufs... */
2456         if ( strncasecmp( line, "include", 7 ) == 0 ) {
2457                 buf[0] = '\0';
2458                 return( line );
2459         }
2460
2461         while ( fgets( buf, sizeof(buf), fp ) != NULL ) {
2462                 /* trim off \r\n or \n */
2463                 if ( (p = strchr( buf, '\n' )) != NULL ) {
2464                         if( p > buf && p[-1] == '\r' ) --p;
2465                         *p = '\0';
2466                 }
2467                 
2468                 /* trim off trailing \ and append the next line */
2469                 if ( line[ 0 ] != '\0' 
2470                                 && (p = line + strlen( line ) - 1)[ 0 ] == '\\'
2471                                 && p[ -1 ] != '\\' ) {
2472                         p[ 0 ] = '\0';
2473                         lcur--;
2474
2475                 } else {
2476                         if ( ! isspace( (unsigned char) buf[0] ) ) {
2477                                 return( line );
2478                         }
2479
2480                         /* change leading whitespace to a space */
2481                         buf[0] = ' ';
2482                 }
2483
2484                 CATLINE( buf );
2485                 (*lineno)++;
2486         }
2487         buf[0] = '\0';
2488
2489         return( line[0] ? line : NULL );
2490 }
2491
2492 static void
2493 fp_getline_init( int *lineno )
2494 {
2495         *lineno = -1;
2496         buf[0] = '\0';
2497 }
2498
2499 /* Loads ucdata, returns 1 if loading, 0 if already loaded, -1 on error */
2500 static int
2501 load_ucdata( char *path )
2502 {
2503         static int loaded = 0;
2504         int err;
2505         
2506         if ( loaded ) {
2507                 return( 0 );
2508         }
2509         err = ucdata_load( path ? path : SLAPD_DEFAULT_UCDATA, UCDATA_ALL );
2510         if ( err ) {
2511 #ifdef NEW_LOGGING
2512                 LDAP_LOG( CONFIG, CRIT, 
2513                         "load_ucdata: Error %d loading ucdata.\n", err, 0,0 );
2514 #else
2515                 Debug( LDAP_DEBUG_ANY, "error loading ucdata (error %d)\n",
2516                        err, 0, 0 );
2517 #endif
2518
2519                 return( -1 );
2520         }
2521         loaded = 1;
2522         return( 1 );
2523 }
2524
2525 void
2526 config_destroy( )
2527 {
2528         ucdata_unload( UCDATA_ALL );
2529         free( global_schemandn.bv_val );
2530         free( global_schemadn.bv_val );
2531         free( line );
2532         if ( slapd_args_file )
2533                 free ( slapd_args_file );
2534         if ( slapd_pid_file )
2535                 free ( slapd_pid_file );
2536         acl_destroy( global_acl, NULL );
2537 }