]> git.sur5r.net Git - openldap/blob - servers/slapd/config.c
ec599721838d9b991d8b65e63296881f625ffc71
[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], "update_anon" ) == 0 ) {
1261                                         allows |= SLAP_ALLOW_UPDATE_ANON;
1262
1263                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1264 #ifdef NEW_LOGGING
1265                                         LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1266                                                 "unknown feature %s in \"allow <features>\" line.\n",
1267                                                 fname, lineno, cargv[1] );
1268 #else
1269                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1270                                                 "unknown feature %s in \"allow <features>\" line\n",
1271                                                 fname, lineno, cargv[i] );
1272 #endif
1273
1274                                         return( 1 );
1275                                 }
1276                         }
1277
1278                         global_allows = allows;
1279
1280                 /* disallow these features */
1281                 } else if ( strcasecmp( cargv[0], "disallows" ) == 0 ||
1282                         strcasecmp( cargv[0], "disallow" ) == 0 )
1283                 {
1284                         slap_mask_t     disallows;
1285
1286                         if ( be != NULL ) {
1287 #ifdef NEW_LOGGING
1288                                 LDAP_LOG( CONFIG, INFO, 
1289                                            "%s: line %d: disallow line must appear prior to "
1290                                            "database definitions.\n", fname, lineno ,0 );
1291 #else
1292                                 Debug( LDAP_DEBUG_ANY,
1293 "%s: line %d: disallow line must appear prior to database definitions\n",
1294                                     fname, lineno, 0 );
1295 #endif
1296
1297                         }
1298
1299                         if ( cargc < 2 ) {
1300 #ifdef NEW_LOGGING
1301                                 LDAP_LOG( CONFIG, CRIT, 
1302                                         "%s: line %d: missing feature(s) in \"disallow <features>\""
1303                                         " line.\n", fname, lineno ,0 );
1304 #else
1305                                 Debug( LDAP_DEBUG_ANY,
1306             "%s: line %d: missing feature(s) in \"disallow <features>\" line\n",
1307                                     fname, lineno, 0 );
1308 #endif
1309
1310                                 return( 1 );
1311                         }
1312
1313                         disallows = 0;
1314
1315                         for( i=1; i < cargc; i++ ) {
1316                                 if( strcasecmp( cargv[i], "bind_anon" ) == 0 ) {
1317                                         disallows |= SLAP_DISALLOW_BIND_ANON;
1318
1319                                 } else if( strcasecmp( cargv[i], "bind_simple" ) == 0 ) {
1320                                         disallows |= SLAP_DISALLOW_BIND_SIMPLE;
1321
1322                                 } else if( strcasecmp( cargv[i], "bind_krbv4" ) == 0 ) {
1323                                         disallows |= SLAP_DISALLOW_BIND_KRBV4;
1324
1325                                 } else if( strcasecmp( cargv[i], "tls_2_anon" ) == 0 ) {
1326                                         disallows |= SLAP_DISALLOW_TLS_2_ANON;
1327
1328                                 } else if( strcasecmp( cargv[i], "tls_authc" ) == 0 ) {
1329                                         disallows |= SLAP_DISALLOW_TLS_AUTHC;
1330
1331                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1332 #ifdef NEW_LOGGING
1333                                         LDAP_LOG( CONFIG, CRIT, 
1334                                                 "%s: line %d: unknown feature %s in "
1335                                                 "\"disallow <features>\" line.\n",
1336                                                 fname, lineno, cargv[i] );
1337 #else
1338                                         Debug( LDAP_DEBUG_ANY,
1339                     "%s: line %d: unknown feature %s in \"disallow <features>\" line\n",
1340                                             fname, lineno, cargv[i] );
1341 #endif
1342
1343                                         return( 1 );
1344                                 }
1345                         }
1346
1347                         global_disallows = disallows;
1348
1349                 /* require these features */
1350                 } else if ( strcasecmp( cargv[0], "requires" ) == 0 ||
1351                         strcasecmp( cargv[0], "require" ) == 0 )
1352                 {
1353                         slap_mask_t     requires;
1354
1355                         if ( cargc < 2 ) {
1356 #ifdef NEW_LOGGING
1357                                 LDAP_LOG( CONFIG, CRIT, 
1358                                            "%s: line %d: missing feature(s) in "
1359                                            "\"require <features>\" line.\n", fname, lineno ,0 );
1360 #else
1361                                 Debug( LDAP_DEBUG_ANY,
1362             "%s: line %d: missing feature(s) in \"require <features>\" line\n",
1363                                     fname, lineno, 0 );
1364 #endif
1365
1366                                 return( 1 );
1367                         }
1368
1369                         requires = 0;
1370
1371                         for( i=1; i < cargc; i++ ) {
1372                                 if( strcasecmp( cargv[i], "bind" ) == 0 ) {
1373                                         requires |= SLAP_REQUIRE_BIND;
1374
1375                                 } else if( strcasecmp( cargv[i], "LDAPv3" ) == 0 ) {
1376                                         requires |= SLAP_REQUIRE_LDAP_V3;
1377
1378                                 } else if( strcasecmp( cargv[i], "authc" ) == 0 ) {
1379                                         requires |= SLAP_REQUIRE_AUTHC;
1380
1381                                 } else if( strcasecmp( cargv[i], "SASL" ) == 0 ) {
1382                                         requires |= SLAP_REQUIRE_SASL;
1383
1384                                 } else if( strcasecmp( cargv[i], "strong" ) == 0 ) {
1385                                         requires |= SLAP_REQUIRE_STRONG;
1386
1387                                 } else if( strcasecmp( cargv[i], "none" ) != 0 ) {
1388 #ifdef NEW_LOGGING
1389                                         LDAP_LOG( CONFIG, CRIT, 
1390                                                    "%s: line %d: unknown feature %s in "
1391                                                    "\"require <features>\" line.\n", 
1392                                                    fname, lineno , cargv[i] );
1393 #else
1394                                         Debug( LDAP_DEBUG_ANY,
1395                     "%s: line %d: unknown feature %s in \"require <features>\" line\n",
1396                                             fname, lineno, cargv[i] );
1397 #endif
1398
1399                                         return( 1 );
1400                                 }
1401                         }
1402
1403                         if ( be == NULL ) {
1404                                 global_requires = requires;
1405                         } else {
1406                                 be->be_requires = requires;
1407                         }
1408
1409                 /* required security factors */
1410                 } else if ( strcasecmp( cargv[0], "security" ) == 0 ) {
1411                         slap_ssf_set_t *set;
1412
1413                         if ( cargc < 2 ) {
1414 #ifdef NEW_LOGGING
1415                                 LDAP_LOG( CONFIG, CRIT, 
1416                                         "%s: line %d: missing factor(s) in \"security <factors>\""
1417                                         " line.\n", fname, lineno ,0 );
1418 #else
1419                                 Debug( LDAP_DEBUG_ANY,
1420             "%s: line %d: missing factor(s) in \"security <factors>\" line\n",
1421                                     fname, lineno, 0 );
1422 #endif
1423
1424                                 return( 1 );
1425                         }
1426
1427                         if ( be == NULL ) {
1428                                 set = &global_ssf_set;
1429                         } else {
1430                                 set = &be->be_ssf_set;
1431                         }
1432
1433                         for( i=1; i < cargc; i++ ) {
1434                                 if( strncasecmp( cargv[i], "ssf=",
1435                                         sizeof("ssf") ) == 0 )
1436                                 {
1437                                         set->sss_ssf =
1438                                                 atoi( &cargv[i][sizeof("ssf")] );
1439
1440                                 } else if( strncasecmp( cargv[i], "transport=",
1441                                         sizeof("transport") ) == 0 )
1442                                 {
1443                                         set->sss_transport =
1444                                                 atoi( &cargv[i][sizeof("transport")] );
1445
1446                                 } else if( strncasecmp( cargv[i], "tls=",
1447                                         sizeof("tls") ) == 0 )
1448                                 {
1449                                         set->sss_tls =
1450                                                 atoi( &cargv[i][sizeof("tls")] );
1451
1452                                 } else if( strncasecmp( cargv[i], "sasl=",
1453                                         sizeof("sasl") ) == 0 )
1454                                 {
1455                                         set->sss_sasl =
1456                                                 atoi( &cargv[i][sizeof("sasl")] );
1457
1458                                 } else if( strncasecmp( cargv[i], "update_ssf=",
1459                                         sizeof("update_ssf") ) == 0 )
1460                                 {
1461                                         set->sss_update_ssf =
1462                                                 atoi( &cargv[i][sizeof("update_ssf")] );
1463
1464                                 } else if( strncasecmp( cargv[i], "update_transport=",
1465                                         sizeof("update_transport") ) == 0 )
1466                                 {
1467                                         set->sss_update_transport =
1468                                                 atoi( &cargv[i][sizeof("update_transport")] );
1469
1470                                 } else if( strncasecmp( cargv[i], "update_tls=",
1471                                         sizeof("update_tls") ) == 0 )
1472                                 {
1473                                         set->sss_update_tls =
1474                                                 atoi( &cargv[i][sizeof("update_tls")] );
1475
1476                                 } else if( strncasecmp( cargv[i], "update_sasl=",
1477                                         sizeof("update_sasl") ) == 0 )
1478                                 {
1479                                         set->sss_update_sasl =
1480                                                 atoi( &cargv[i][sizeof("update_sasl")] );
1481
1482                                 } else if( strncasecmp( cargv[i], "simple_bind=",
1483                                         sizeof("simple_bind") ) == 0 )
1484                                 {
1485                                         set->sss_simple_bind =
1486                                                 atoi( &cargv[i][sizeof("simple_bind")] );
1487
1488                                 } else {
1489 #ifdef NEW_LOGGING
1490                                         LDAP_LOG( CONFIG, CRIT, 
1491                                                    "%s: line %d: unknown factor %S in "
1492                                                    "\"security <factors>\" line.\n",
1493                                                    fname, lineno, cargv[1] );
1494 #else
1495                                         Debug( LDAP_DEBUG_ANY,
1496                     "%s: line %d: unknown factor %s in \"security <factors>\" line\n",
1497                                             fname, lineno, cargv[i] );
1498 #endif
1499
1500                                         return( 1 );
1501                                 }
1502                         }
1503                 /* where to send clients when we don't hold it */
1504                 } else if ( strcasecmp( cargv[0], "referral" ) == 0 ) {
1505                         if ( cargc < 2 ) {
1506 #ifdef NEW_LOGGING
1507                                 LDAP_LOG( CONFIG, CRIT, 
1508                                         "%s: line %d: missing URL in \"referral <URL>\""
1509                                         " line.\n", fname, lineno , 0 );
1510 #else
1511                                 Debug( LDAP_DEBUG_ANY,
1512                     "%s: line %d: missing URL in \"referral <URL>\" line\n",
1513                                     fname, lineno, 0 );
1514 #endif
1515
1516                                 return( 1 );
1517                         }
1518
1519                         if( validate_global_referral( cargv[1] ) ) {
1520 #ifdef NEW_LOGGING
1521                                 LDAP_LOG( CONFIG, CRIT, 
1522                                         "%s: line %d: invalid URL (%s) in \"referral\" line.\n",
1523                                         fname, lineno, cargv[1]  );
1524 #else
1525                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1526                                         "invalid URL (%s) in \"referral\" line.\n",
1527                                     fname, lineno, cargv[1] );
1528 #endif
1529                                 return 1;
1530                         }
1531
1532                         vals[0].bv_val = cargv[1];
1533                         vals[0].bv_len = strlen( vals[0].bv_val );
1534                         value_add( &default_referral, vals );
1535
1536 #ifdef NEW_LOGGING
1537                 } else if ( strcasecmp( cargv[0], "logfile" ) == 0 ) {
1538                         FILE *logfile;
1539                         if ( cargc < 2 ) {
1540 #ifdef NEW_LOGGING
1541                                 LDAP_LOG( CONFIG, CRIT, 
1542                                         "%s: line %d: Error in logfile directive, "
1543                                         "\"logfile <filename>\"\n", fname, lineno , 0 );
1544 #else
1545                                 Debug( LDAP_DEBUG_ANY,
1546                                        "%s: line %d: Error in logfile directive, \"logfile filename\"\n",
1547                                        fname, lineno, 0 );
1548 #endif
1549
1550                                 return( 1 );
1551                         }
1552                         logfile = fopen( cargv[1], "w" );
1553                         if ( logfile != NULL ) lutil_debug_file( logfile  );
1554
1555 #endif
1556                 /* start of a new database definition */
1557                 } else if ( strcasecmp( cargv[0], "debug" ) == 0 ) {
1558                         int level;
1559                         if ( cargc < 3 ) {
1560 #ifdef NEW_LOGGING
1561                                 LDAP_LOG( CONFIG, CRIT, 
1562                                            "%s: line %d: Error in debug directive, "
1563                                            "\"debug <subsys> <level>\"\n", fname, lineno , 0 );
1564 #else
1565                                 Debug( LDAP_DEBUG_ANY,
1566                                         "%s: line %d: Error in debug directive, \"debug subsys level\"\n",
1567                                         fname, lineno, 0 );
1568 #endif
1569
1570                                 return( 1 );
1571                         }
1572                         level = atoi( cargv[2] );
1573                         if ( level <= 0 ) level = lutil_mnem2level( cargv[2] );
1574                         lutil_set_debug_level( cargv[1], level );
1575                 /* specify an Object Identifier macro */
1576                 } else if ( strcasecmp( cargv[0], "objectidentifier" ) == 0 ) {
1577                         rc = parse_oidm( fname, lineno, cargc, cargv );
1578                         if( rc ) return rc;
1579
1580                 /* specify an objectclass */
1581                 } else if ( strcasecmp( cargv[0], "objectclass" ) == 0 ) {
1582                         if ( *cargv[1] == '('  /*')'*/) {
1583                                 char * p;
1584                                 p = strchr(saveline,'(' /*')'*/);
1585                                 rc = parse_oc( fname, lineno, p, cargv );
1586                                 if( rc ) return rc;
1587
1588                         } else {
1589 #ifdef NEW_LOGGING
1590                                 LDAP_LOG( CONFIG, INFO, 
1591                                         "%s: line %d: old objectclass format not supported\n",
1592                                         fname, lineno , 0 );
1593 #else
1594                                 Debug( LDAP_DEBUG_ANY,
1595                                        "%s: line %d: old objectclass format not supported.\n",
1596                                        fname, lineno, 0 );
1597 #endif
1598                         }
1599
1600 #ifdef SLAP_EXTENDED_SCHEMA
1601                 } else if ( strcasecmp( cargv[0], "ditcontentrule" ) == 0 ) {
1602                         char * p;
1603                         p = strchr(saveline,'(' /*')'*/);
1604                         rc = parse_cr( fname, lineno, p, cargv );
1605                         if( rc ) return rc;
1606 #endif
1607
1608                 /* specify an attribute type */
1609                 } else if (( strcasecmp( cargv[0], "attributetype" ) == 0 )
1610                         || ( strcasecmp( cargv[0], "attribute" ) == 0 ))
1611                 {
1612                         if ( *cargv[1] == '(' /*')'*/) {
1613                                 char * p;
1614                                 p = strchr(saveline,'(' /*')'*/);
1615                                 rc = parse_at( fname, lineno, p, cargv );
1616                                 if( rc ) return rc;
1617
1618                         } else {
1619 #ifdef NEW_LOGGING
1620                                 LDAP_LOG( CONFIG, INFO, 
1621                                         "%s: line %d: old attribute type format not supported.\n",
1622                                         fname, lineno , 0 );
1623 #else
1624                                 Debug( LDAP_DEBUG_ANY,
1625     "%s: line %d: old attribute type format not supported.\n",
1626                                     fname, lineno, 0 );
1627 #endif
1628
1629                         }
1630
1631                 /* turn on/off schema checking */
1632                 } else if ( strcasecmp( cargv[0], "schemacheck" ) == 0 ) {
1633                         if ( cargc < 2 ) {
1634 #ifdef NEW_LOGGING
1635                                 LDAP_LOG( CONFIG, CRIT, 
1636                                         "%s: line %d: missing on|off in \"schemacheck <on|off>\""
1637                                         " line.\n", fname, lineno , 0 );
1638 #else
1639                                 Debug( LDAP_DEBUG_ANY,
1640     "%s: line %d: missing on|off in \"schemacheck <on|off>\" line\n",
1641                                     fname, lineno, 0 );
1642 #endif
1643
1644                                 return( 1 );
1645                         }
1646                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
1647 #ifdef NEW_LOGGING
1648                                 LDAP_LOG( CONFIG, CRIT, 
1649                                         "%s: line %d: schema checking disabled! your mileage may "
1650                                         "vary!\n", fname, lineno , 0 );
1651 #else
1652                                 Debug( LDAP_DEBUG_ANY,
1653                                         "%s: line %d: schema checking disabled! your mileage may vary!\n",
1654                                     fname, lineno, 0 );
1655 #endif
1656                                 global_schemacheck = 0;
1657                         } else {
1658                                 global_schemacheck = 1;
1659                         }
1660
1661                 /* specify access control info */
1662                 } else if ( strcasecmp( cargv[0], "access" ) == 0 ) {
1663                         parse_acl( be, fname, lineno, cargc, cargv );
1664
1665                 /* debug level to log things to syslog */
1666                 } else if ( strcasecmp( cargv[0], "loglevel" ) == 0 ) {
1667                         if ( cargc < 2 ) {
1668 #ifdef NEW_LOGGING
1669                                 LDAP_LOG( CONFIG, CRIT, 
1670                                         "%s: line %d: missing level in \"loglevel <level>\""
1671                                         " line.\n", fname, lineno , 0 );
1672 #else
1673                                 Debug( LDAP_DEBUG_ANY,
1674                     "%s: line %d: missing level in \"loglevel <level>\" line\n",
1675                                     fname, lineno, 0 );
1676 #endif
1677
1678                                 return( 1 );
1679                         }
1680
1681                         ldap_syslog = 0;
1682
1683                         for( i=1; i < cargc; i++ ) {
1684                                 ldap_syslog += atoi( cargv[1] );
1685                         }
1686
1687                 /* list of replicas of the data in this backend (master only) */
1688                 } else if ( strcasecmp( cargv[0], "replica" ) == 0 ) {
1689                         if ( cargc < 2 ) {
1690 #ifdef NEW_LOGGING
1691                                 LDAP_LOG( CONFIG, CRIT, 
1692                                         "%s: line %d: missing host in \"replica "
1693                                         " <host[:port]\" line\n", fname, lineno , 0 );
1694 #else
1695                                 Debug( LDAP_DEBUG_ANY,
1696             "%s: line %d: missing host in \"replica <host[:port]>\" line\n",
1697                                     fname, lineno, 0 );
1698 #endif
1699
1700                                 return( 1 );
1701                         }
1702                         if ( be == NULL ) {
1703 #ifdef NEW_LOGGING
1704                                 LDAP_LOG( CONFIG, INFO, 
1705                                             "%s: line %d: replica line must appear inside "
1706                                             "a database definition.\n", fname, lineno, 0);
1707 #else
1708                                 Debug( LDAP_DEBUG_ANY,
1709 "%s: line %d: replica line must appear inside a database definition\n",
1710                                     fname, lineno, 0 );
1711 #endif
1712                                 return 1;
1713
1714                         } else {
1715                                 int nr = -1;
1716
1717                                 for ( i = 1; i < cargc; i++ ) {
1718                                         if ( strncasecmp( cargv[i], "host=", 5 )
1719                                             == 0 ) {
1720                                                 nr = add_replica_info( be, 
1721                                                         cargv[i] + 5 );
1722                                                 break;
1723                                         }
1724                                 }
1725                                 if ( i == cargc ) {
1726 #ifdef NEW_LOGGING
1727                                         LDAP_LOG( CONFIG, INFO, 
1728                                                 "%s: line %d: missing host in \"replica\" line\n", 
1729                                                 fname, lineno , 0 );
1730 #else
1731                                         Debug( LDAP_DEBUG_ANY,
1732                     "%s: line %d: missing host in \"replica\" line\n",
1733                                             fname, lineno, 0 );
1734 #endif
1735                                         return 1;
1736
1737                                 } else if ( nr == -1 ) {
1738 #ifdef NEW_LOGGING
1739                                         LDAP_LOG( CONFIG, INFO, 
1740                                                    "%s: line %d: unable to add"
1741                                                    " replica \"%s\"\n",
1742                                                    fname, lineno, 
1743                                                    cargv[i] + 5 );
1744 #else
1745                                         Debug( LDAP_DEBUG_ANY,
1746                 "%s: line %d: unable to add replica \"%s\"\n",
1747                                                 fname, lineno, cargv[i] + 5 );
1748 #endif
1749                                         return 1;
1750                                 } else {
1751                                         for ( i = 1; i < cargc; i++ ) {
1752                                                 if ( strncasecmp( cargv[i], "suffix=", 7 ) == 0 ) {
1753
1754                                                         switch ( add_replica_suffix( be, nr, cargv[i] + 7 ) ) {
1755                                                         case 1:
1756 #ifdef NEW_LOGGING
1757                                                                 LDAP_LOG( CONFIG, INFO, 
1758                                                                         "%s: line %d: suffix \"%s\" in \"replica\""
1759                                                                         " line is not valid for backend(ignored)\n",
1760                                                                         fname, lineno, cargv[i] + 7 );
1761 #else
1762                                                                 Debug( LDAP_DEBUG_ANY,
1763                                                                                 "%s: line %d: suffix \"%s\" in \"replica\" line is not valid for backend (ignored)\n",
1764                                                                                 fname, lineno, cargv[i] + 7 );
1765 #endif
1766                                                                 break;
1767
1768                                                         case 2:
1769 #ifdef NEW_LOGGING
1770                                                                 LDAP_LOG( CONFIG, INFO, 
1771                                                                         "%s: line %d: unable to normalize suffix"
1772                                                                         " in \"replica\" line (ignored)\n",
1773                                                                         fname, lineno , 0 );
1774 #else
1775                                                                 Debug( LDAP_DEBUG_ANY,
1776                                                                                  "%s: line %d: unable to normalize suffix in \"replica\" line (ignored)\n",
1777                                                                                  fname, lineno, 0 );
1778 #endif
1779                                                                 break;
1780                                                         }
1781
1782                                                 } else if ( strncasecmp( cargv[i], "attr", 4 ) == 0 ) {
1783                                                         int exclude = 0;
1784                                                         char *arg = cargv[i] + 4;
1785
1786                                                         if ( arg[0] == '!' ) {
1787                                                                 arg++;
1788                                                                 exclude = 1;
1789                                                         }
1790
1791                                                         if ( arg[0] != '=' ) {
1792                                                                 continue;
1793                                                         }
1794
1795                                                         if ( add_replica_attrs( be, nr, arg + 1, exclude ) ) {
1796 #ifdef NEW_LOGGING
1797                                                                 LDAP_LOG( CONFIG, INFO, 
1798                                                                         "%s: line %d: attribute \"%s\" in "
1799                                                                         "\"replica\" line is unknown\n",
1800                                                                         fname, lineno, arg + 1 ); 
1801 #else
1802                                                                 Debug( LDAP_DEBUG_ANY,
1803                                                                                 "%s: line %d: attribute \"%s\" in \"replica\" line is unknown\n",
1804                                                                                 fname, lineno, arg + 1 );
1805 #endif
1806                                                                 return( 1 );
1807                                                         }
1808                                                 }
1809                                         }
1810                                 }
1811                         }
1812
1813                 /* dn of master entity allowed to write to replica */
1814                 } else if ( strcasecmp( cargv[0], "updatedn" ) == 0 ) {
1815                         if ( cargc < 2 ) {
1816 #ifdef NEW_LOGGING
1817                                 LDAP_LOG( CONFIG, CRIT, 
1818                                         "%s: line %d: missing dn in \"updatedn <dn>\""
1819                                         " line.\n", fname, lineno , 0 );
1820 #else
1821                                 Debug( LDAP_DEBUG_ANY,
1822                     "%s: line %d: missing dn in \"updatedn <dn>\" line\n",
1823                                     fname, lineno, 0 );
1824 #endif
1825
1826                                 return( 1 );
1827                         }
1828                         if ( be == NULL ) {
1829 #ifdef NEW_LOGGING
1830                                 LDAP_LOG( CONFIG, INFO, 
1831                                         "%s: line %d: updatedn line must appear inside "
1832                                         "a database definition\n", 
1833                                         fname, lineno , 0 );
1834 #else
1835                                 Debug( LDAP_DEBUG_ANY,
1836 "%s: line %d: updatedn line must appear inside a database definition\n",
1837                                     fname, lineno, 0 );
1838 #endif
1839                                 return 1;
1840
1841                         } else {
1842                                 struct berval dn;
1843
1844                                 if ( load_ucdata( NULL ) < 0 ) return 1;
1845
1846                                 dn.bv_val = cargv[1];
1847                                 dn.bv_len = strlen( cargv[1] );
1848
1849                                 rc = dnNormalize2( NULL, &dn, &be->be_update_ndn );
1850                                 if( rc != LDAP_SUCCESS ) {
1851 #ifdef NEW_LOGGING
1852                                         LDAP_LOG( CONFIG, CRIT, 
1853                                                 "%s: line %d: updatedn DN is invalid.\n",
1854                                                 fname, lineno , 0 );
1855 #else
1856                                         Debug( LDAP_DEBUG_ANY,
1857                                                 "%s: line %d: updatedn DN is invalid\n",
1858                                             fname, lineno, 0 );
1859 #endif
1860                                         return 1;
1861                                 }
1862                         }
1863
1864                 } else if ( strcasecmp( cargv[0], "updateref" ) == 0 ) {
1865                         if ( cargc < 2 ) {
1866 #ifdef NEW_LOGGING
1867                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1868                                         "missing url in \"updateref <ldapurl>\" line.\n",
1869                                         fname, lineno , 0 );
1870 #else
1871                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1872                                         "missing url in \"updateref <ldapurl>\" line\n",
1873                                     fname, lineno, 0 );
1874 #endif
1875
1876                                 return( 1 );
1877                         }
1878                         if ( be == NULL ) {
1879 #ifdef NEW_LOGGING
1880                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: updateref"
1881                                         " line must appear inside a database definition\n",
1882                                         fname, lineno , 0 );
1883 #else
1884                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: updateref"
1885                                         " line must appear inside a database definition\n",
1886                                         fname, lineno, 0 );
1887 #endif
1888                                 return 1;
1889
1890                         } else if ( !be->be_update_ndn.bv_len ) {
1891 #ifdef NEW_LOGGING
1892                                 LDAP_LOG( CONFIG, INFO, "%s: line %d: "
1893                                         "updateref line must come after updatedn.\n",
1894                                         fname, lineno , 0 );
1895 #else
1896                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1897                                         "updateref line must after updatedn.\n",
1898                                     fname, lineno, 0 );
1899 #endif
1900                                 return 1;
1901                         }
1902
1903                         if( validate_global_referral( cargv[1] ) ) {
1904 #ifdef NEW_LOGGING
1905                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1906                                         "invalid URL (%s) in \"updateref\" line.\n",
1907                                         fname, lineno, cargv[1] );
1908 #else
1909                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1910                                         "invalid URL (%s) in \"updateref\" line.\n",
1911                                     fname, lineno, cargv[1] );
1912 #endif
1913                                 return 1;
1914                         }
1915
1916                         vals[0].bv_val = cargv[1];
1917                         vals[0].bv_len = strlen( vals[0].bv_val );
1918                         value_add( &be->be_update_refs, vals );
1919
1920                 /* replication log file to which changes are appended */
1921                 } else if ( strcasecmp( cargv[0], "replogfile" ) == 0 ) {
1922                         if ( cargc < 2 ) {
1923 #ifdef NEW_LOGGING
1924                                 LDAP_LOG( CONFIG, CRIT, 
1925                                         "%s: line %d: missing filename in \"replogfile <filename>\""
1926                                         " line.\n", fname, lineno , 0 );
1927 #else
1928                                 Debug( LDAP_DEBUG_ANY,
1929             "%s: line %d: missing filename in \"replogfile <filename>\" line\n",
1930                                     fname, lineno, 0 );
1931 #endif
1932
1933                                 return( 1 );
1934                         }
1935                         if ( be ) {
1936                                 be->be_replogfile = ch_strdup( cargv[1] );
1937                         } else {
1938                                 replogfile = ch_strdup( cargv[1] );
1939                         }
1940
1941                 /* file from which to read additional rootdse attrs */
1942                 } else if ( strcasecmp( cargv[0], "rootDSE" ) == 0) {
1943                         if ( cargc < 2 ) {
1944 #ifdef NEW_LOGGING
1945                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1946                                         "missing filename in \"rootDSE <filename>\" line.\n",
1947                                         fname, lineno , 0 );
1948 #else
1949                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1950                                         "missing filename in \"rootDSE <filename>\" line.\n",
1951                                     fname, lineno, 0 );
1952 #endif
1953                                 return 1;
1954                         }
1955
1956                         if( read_root_dse_file( cargv[1] ) ) {
1957 #ifdef NEW_LOGGING
1958                                 LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
1959                                         "could not read \"rootDSE <filename>\" line.\n",
1960                                         fname, lineno , 0 );
1961 #else
1962                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1963                                         "could not read \"rootDSE <filename>\" line\n",
1964                                     fname, lineno, 0 );
1965 #endif
1966                                 return 1;
1967                         }
1968
1969                 /* maintain lastmodified{by,time} attributes */
1970                 } else if ( strcasecmp( cargv[0], "lastmod" ) == 0 ) {
1971                         if ( cargc < 2 ) {
1972 #ifdef NEW_LOGGING
1973                                 LDAP_LOG( CONFIG, CRIT, 
1974                                            "%s: line %d: missing on|off in \"lastmod <on|off>\""
1975                                            " line.\n", fname, lineno , 0 );
1976 #else
1977                                 Debug( LDAP_DEBUG_ANY,
1978             "%s: line %d: missing on|off in \"lastmod <on|off>\" line\n",
1979                                     fname, lineno, 0 );
1980 #endif
1981
1982                                 return( 1 );
1983                         }
1984                         if ( strcasecmp( cargv[1], "on" ) == 0 ) {
1985                                 if ( be ) {
1986                                         be->be_flags &= ~SLAP_BFLAG_NOLASTMOD;
1987                                 } else {
1988                                         lastmod = 1;
1989                                 }
1990                         } else {
1991                                 if ( be ) {
1992                                         be->be_flags |= SLAP_BFLAG_NOLASTMOD;
1993                                 } else {
1994                                         lastmod = 0;
1995                                 }
1996                         }
1997
1998 #ifdef SIGHUP
1999                 /* turn on/off gentle SIGHUP handling */
2000                 } else if ( strcasecmp( cargv[0], "gentlehup" ) == 0 ) {
2001                         if ( cargc < 2 ) {
2002                                 Debug( LDAP_DEBUG_ANY,
2003     "%s: line %d: missing on|off in \"gentlehup <on|off>\" line\n",
2004                                     fname, lineno, 0 );
2005                                 return( 1 );
2006                         }
2007                         if ( strcasecmp( cargv[1], "off" ) == 0 ) {
2008                                 global_gentlehup = 0;
2009                         } else {
2010                                 global_gentlehup = 1;
2011                         }
2012 #endif
2013
2014                 /* set idle timeout value */
2015                 } else if ( strcasecmp( cargv[0], "idletimeout" ) == 0 ) {
2016                         int i;
2017                         if ( cargc < 2 ) {
2018 #ifdef NEW_LOGGING
2019                                 LDAP_LOG( CONFIG, CRIT, 
2020                                         "%s: line %d: missing timeout value in "
2021                                         "\"idletimeout <seconds>\" line.\n", fname, lineno , 0 );
2022 #else
2023                                 Debug( LDAP_DEBUG_ANY,
2024             "%s: line %d: missing timeout value in \"idletimeout <seconds>\" line\n",
2025                                     fname, lineno, 0 );
2026 #endif
2027
2028                                 return( 1 );
2029                         }
2030
2031                         i = atoi( cargv[1] );
2032
2033                         if( i < 0 ) {
2034 #ifdef NEW_LOGGING
2035                                 LDAP_LOG( CONFIG, CRIT, 
2036                                         "%s: line %d: timeout value (%d) invalid "
2037                                         "\"idletimeout <seconds>\" line.\n", fname, lineno, i );
2038 #else
2039                                 Debug( LDAP_DEBUG_ANY,
2040             "%s: line %d: timeout value (%d) invalid \"idletimeout <seconds>\" line\n",
2041                                     fname, lineno, i );
2042 #endif
2043
2044                                 return( 1 );
2045                         }
2046
2047                         global_idletimeout = i;
2048
2049                 /* include another config file */
2050                 } else if ( strcasecmp( cargv[0], "include" ) == 0 ) {
2051                         if ( cargc < 2 ) {
2052 #ifdef NEW_LOGGING
2053                                 LDAP_LOG( CONFIG, CRIT, 
2054                                         "%s: line %d: missing filename in \"include "
2055                                         "<filename>\" line.\n", fname, lineno , 0 );
2056 #else
2057                                 Debug( LDAP_DEBUG_ANY,
2058     "%s: line %d: missing filename in \"include <filename>\" line\n",
2059                                     fname, lineno, 0 );
2060 #endif
2061
2062                                 return( 1 );
2063                         }
2064                         savefname = ch_strdup( cargv[1] );
2065                         savelineno = lineno;
2066
2067                         if ( read_config( savefname, depth+1 ) != 0 ) {
2068                                 return( 1 );
2069                         }
2070
2071                         free( savefname );
2072                         lineno = savelineno - 1;
2073
2074                 /* location of kerberos srvtab file */
2075                 } else if ( strcasecmp( cargv[0], "srvtab" ) == 0 ) {
2076                         if ( cargc < 2 ) {
2077 #ifdef NEW_LOGGING
2078                                 LDAP_LOG( CONFIG, CRIT, 
2079                                         "%s: line %d: missing filename in \"srvtab "
2080                                         "<filename>\" line.\n", fname, lineno , 0 );
2081 #else
2082                                 Debug( LDAP_DEBUG_ANY,
2083             "%s: line %d: missing filename in \"srvtab <filename>\" line\n",
2084                                     fname, lineno, 0 );
2085 #endif
2086
2087                                 return( 1 );
2088                         }
2089                         ldap_srvtab = ch_strdup( cargv[1] );
2090
2091 #ifdef SLAPD_MODULES
2092                 } else if (strcasecmp( cargv[0], "moduleload") == 0 ) {
2093                    if ( cargc < 2 ) {
2094 #ifdef NEW_LOGGING
2095                            LDAP_LOG( CONFIG, INFO, 
2096                                    "%s: line %d: missing filename in \"moduleload "
2097                                    "<filename>\" line.\n", fname, lineno , 0 );
2098 #else
2099                       Debug( LDAP_DEBUG_ANY,
2100                              "%s: line %d: missing filename in \"moduleload <filename>\" line\n",
2101                              fname, lineno, 0 );
2102 #endif
2103
2104                       exit( EXIT_FAILURE );
2105                    }
2106                    if (module_load(cargv[1], cargc - 2, (cargc > 2) ? cargv + 2 : NULL)) {
2107 #ifdef NEW_LOGGING
2108                            LDAP_LOG( CONFIG, CRIT, 
2109                                    "%s: line %d: failed to load or initialize module %s\n",
2110                                    fname, lineno, cargv[1] );
2111 #else
2112                       Debug( LDAP_DEBUG_ANY,
2113                              "%s: line %d: failed to load or initialize module %s\n",
2114                              fname, lineno, cargv[1]);
2115 #endif
2116
2117                       exit( EXIT_FAILURE );
2118                    }
2119                 } else if (strcasecmp( cargv[0], "modulepath") == 0 ) {
2120                    if ( cargc != 2 ) {
2121 #ifdef NEW_LOGGING
2122                            LDAP_LOG( CONFIG, INFO, 
2123                                   "%s: line %d: missing path in \"modulepath <path>\""
2124                                   " line\n", fname, lineno , 0 );
2125 #else
2126                       Debug( LDAP_DEBUG_ANY,
2127                              "%s: line %d: missing path in \"modulepath <path>\" line\n",
2128                              fname, lineno, 0 );
2129 #endif
2130
2131                       exit( EXIT_FAILURE );
2132                    }
2133                    if (module_path( cargv[1] )) {
2134 #ifdef NEW_LOGGING
2135                            LDAP_LOG( CONFIG, CRIT, 
2136                                   "%s: line %d: failed to set module search path to %s.\n",
2137                                   fname, lineno, cargv[1] );
2138 #else
2139                            Debug( LDAP_DEBUG_ANY,
2140                                   "%s: line %d: failed to set module search path to %s\n",
2141                                   fname, lineno, cargv[1]);
2142 #endif
2143
2144                       exit( EXIT_FAILURE );
2145                    }
2146                    
2147 #endif /*SLAPD_MODULES*/
2148
2149 #ifdef HAVE_TLS
2150                 } else if ( !strcasecmp( cargv[0], "TLSRandFile" ) ) {
2151                         rc = ldap_pvt_tls_set_option( NULL,
2152                                                       LDAP_OPT_X_TLS_RANDOM_FILE,
2153                                                       cargv[1] );
2154                         if ( rc )
2155                                 return rc;
2156
2157                 } else if ( !strcasecmp( cargv[0], "TLSCipherSuite" ) ) {
2158                         rc = ldap_pvt_tls_set_option( NULL,
2159                                                       LDAP_OPT_X_TLS_CIPHER_SUITE,
2160                                                       cargv[1] );
2161                         if ( rc )
2162                                 return rc;
2163
2164                 } else if ( !strcasecmp( cargv[0], "TLSCertificateFile" ) ) {
2165                         rc = ldap_pvt_tls_set_option( NULL,
2166                                                       LDAP_OPT_X_TLS_CERTFILE,
2167                                                       cargv[1] );
2168                         if ( rc )
2169                                 return rc;
2170
2171                 } else if ( !strcasecmp( cargv[0], "TLSCertificateKeyFile" ) ) {
2172                         rc = ldap_pvt_tls_set_option( NULL,
2173                                                       LDAP_OPT_X_TLS_KEYFILE,
2174                                                       cargv[1] );
2175                         if ( rc )
2176                                 return rc;
2177
2178                 } else if ( !strcasecmp( cargv[0], "TLSCACertificatePath" ) ) {
2179                         rc = ldap_pvt_tls_set_option( NULL,
2180                                                       LDAP_OPT_X_TLS_CACERTDIR,
2181                                                       cargv[1] );
2182                         if ( rc )
2183                                 return rc;
2184
2185                 } else if ( !strcasecmp( cargv[0], "TLSCACertificateFile" ) ) {
2186                         rc = ldap_pvt_tls_set_option( NULL,
2187                                                       LDAP_OPT_X_TLS_CACERTFILE,
2188                                                       cargv[1] );
2189                         if ( rc )
2190                                 return rc;
2191                 } else if ( !strcasecmp( cargv[0], "TLSVerifyClient" ) ) {
2192                         if ( isdigit( (unsigned char) cargv[1][0] ) ) {
2193                                 i = atoi(cargv[1]);
2194                                 rc = ldap_pvt_tls_set_option( NULL,
2195                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2196                                                       &i );
2197                         } else {
2198                                 rc = ldap_int_tls_config( NULL,
2199                                                       LDAP_OPT_X_TLS_REQUIRE_CERT,
2200                                                       cargv[1] );
2201                         }
2202
2203                         if ( rc )
2204                                 return rc;
2205
2206 #endif
2207
2208                 } else if ( !strcasecmp( cargv[0], "reverse-lookup" ) ) {
2209 #ifdef SLAPD_RLOOKUPS
2210                         if ( cargc < 2 ) {
2211 #ifdef NEW_LOGGING
2212                                 LDAP_LOG( CONFIG, INFO, 
2213                                         "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2214                                         fname, lineno , 0 );
2215 #else
2216                                 Debug( LDAP_DEBUG_ANY,
2217 "%s: line %d: reverse-lookup: missing \"on\" or \"off\"\n",
2218                                         fname, lineno, 0 );
2219 #endif
2220                                 return( 1 );
2221                         }
2222
2223                         if ( !strcasecmp( cargv[1], "on" ) ) {
2224                                 use_reverse_lookup = 1;
2225                         } else if ( !strcasecmp( cargv[1], "off" ) ) {
2226                                 use_reverse_lookup = 0;
2227                         } else {
2228 #ifdef NEW_LOGGING
2229                                 LDAP_LOG( CONFIG, INFO, 
2230                                         "%s: line %d: reverse-lookup: "
2231                                         "must be \"on\" (default) or \"off\"\n", fname, lineno, 0 );
2232 #else
2233                                 Debug( LDAP_DEBUG_ANY,
2234 "%s: line %d: reverse-lookup: must be \"on\" (default) or \"off\"\n",
2235                                         fname, lineno, 0 );
2236 #endif
2237                                 return( 1 );
2238                         }
2239
2240 #else /* !SLAPD_RLOOKUPS */
2241 #ifdef NEW_LOGGING
2242                         LDAP_LOG( CONFIG, INFO, 
2243                                 "%s: line %d: reverse lookups "
2244                                 "are not configured (ignored).\n", fname, lineno , 0 );
2245 #else
2246                         Debug( LDAP_DEBUG_ANY,
2247 "%s: line %d: reverse lookups are not configured (ignored).\n",
2248                                 fname, lineno, 0 );
2249 #endif
2250 #endif /* !SLAPD_RLOOKUPS */
2251
2252                 /* pass anything else to the current backend info/db config routine */
2253                 } else {
2254                         if ( bi != NULL ) {
2255                                 if ( bi->bi_config == 0 ) {
2256 #ifdef NEW_LOGGING
2257                                         LDAP_LOG( CONFIG, INFO, 
2258                                                 "%s: line %d: unknown directive \"%s\" inside "
2259                                                 "backend info definition (ignored).\n",
2260                                                 fname, lineno, cargv[0] );
2261 #else
2262                                         Debug( LDAP_DEBUG_ANY,
2263 "%s: line %d: unknown directive \"%s\" inside backend info definition (ignored)\n",
2264                                                 fname, lineno, cargv[0] );
2265 #endif
2266
2267                                 } else {
2268                                         if ( (*bi->bi_config)( bi, fname, lineno, cargc, cargv )
2269                                                 != 0 )
2270                                         {
2271                                                 return( 1 );
2272                                         }
2273                                 }
2274                         } else if ( be != NULL ) {
2275                                 if ( be->be_config == 0 ) {
2276 #ifdef NEW_LOGGING
2277                                         LDAP_LOG( CONFIG, INFO, 
2278                                                 "%s: line %d: uknown directive \"%s\" inside "
2279                                                 "backend database definition (ignored).\n",
2280                                                 fname, lineno, cargv[0] );
2281 #else
2282                                         Debug( LDAP_DEBUG_ANY,
2283 "%s: line %d: unknown directive \"%s\" inside backend database definition (ignored)\n",
2284                                         fname, lineno, cargv[0] );
2285 #endif
2286
2287                                 } else {
2288                                         if ( (*be->be_config)( be, fname, lineno, cargc, cargv )
2289                                                 != 0 )
2290                                         {
2291                                                 return( 1 );
2292                                         }
2293                                 }
2294                         } else {
2295 #ifdef NEW_LOGGING
2296                                 LDAP_LOG( CONFIG, INFO, 
2297                                         "%s: line %d: unknown directive \"%s\" outside backend "
2298                                         "info and database definitions (ignored).\n",
2299                                         fname, lineno, cargv[0] );
2300 #else
2301                                 Debug( LDAP_DEBUG_ANY,
2302 "%s: line %d: unknown directive \"%s\" outside backend info and database definitions (ignored)\n",
2303                                     fname, lineno, cargv[0] );
2304 #endif
2305
2306                         }
2307                 }
2308                 free( saveline );
2309         }
2310         fclose( fp );
2311
2312         if ( depth == 0 ) ch_free( cargv );
2313
2314         if ( !global_schemadn.bv_val ) {
2315                 ber_str2bv( SLAPD_SCHEMA_DN, sizeof(SLAPD_SCHEMA_DN)-1, 1,
2316                         &global_schemadn );
2317                 dnNormalize2( NULL, &global_schemadn, &global_schemandn );
2318         }
2319
2320         if ( load_ucdata( NULL ) < 0 ) return 1;
2321         return( 0 );
2322 }
2323
2324 static int
2325 fp_parse_line(
2326     int         lineno,
2327     char        *line
2328 )
2329 {
2330         char *  token;
2331         char *  logline;
2332         char    logbuf[sizeof("pseudorootpw ***")];
2333
2334         cargc = 0;
2335         token = strtok_quote( line, " \t" );
2336
2337         logline = line;
2338
2339         if ( token && ( strcasecmp( token, "rootpw" ) == 0 ||
2340                 strcasecmp( token, "replica" ) == 0 ||          /* contains "credentials" */
2341                 strcasecmp( token, "bindpw" ) == 0 ||           /* used in back-ldap */
2342                 strcasecmp( token, "pseudorootpw" ) == 0 ||     /* used in back-meta */
2343                 strcasecmp( token, "dbpasswd" ) == 0 ) )        /* used in back-sql */
2344         {
2345                 snprintf( logline = logbuf, sizeof logbuf, "%s ***", token );
2346         }
2347
2348         if ( strtok_quote_ptr ) {
2349                 *strtok_quote_ptr = ' ';
2350         }
2351
2352 #ifdef NEW_LOGGING
2353         LDAP_LOG( CONFIG, DETAIL1, "line %d (%s)\n", lineno, logline , 0 );
2354 #else
2355         Debug( LDAP_DEBUG_CONFIG, "line %d (%s)\n", lineno, logline, 0 );
2356 #endif
2357
2358         if ( strtok_quote_ptr ) {
2359                 *strtok_quote_ptr = '\0';
2360         }
2361
2362         for ( ; token != NULL; token = strtok_quote( NULL, " \t" ) ) {
2363                 if ( cargc == cargv_size - 1 ) {
2364                         char **tmp;
2365                         tmp = ch_realloc( cargv, (cargv_size + ARGS_STEP) *
2366                                             sizeof(*cargv) );
2367                         if ( tmp == NULL ) {
2368 #ifdef NEW_LOGGING
2369                                 LDAP_LOG( CONFIG, ERR, "line %d: out of memory\n", lineno, 0,0 );
2370 #else
2371                                 Debug( LDAP_DEBUG_ANY, 
2372                                                 "line %d: out of memory\n", 
2373                                                 lineno, 0, 0 );
2374 #endif
2375                                 return -1;
2376                         }
2377                         cargv = tmp;
2378                         cargv_size += ARGS_STEP;
2379                 }
2380                 cargv[cargc++] = token;
2381         }
2382         cargv[cargc] = NULL;
2383         return 0;
2384 }
2385
2386 static char *
2387 strtok_quote( char *line, char *sep )
2388 {
2389         int             inquote;
2390         char            *tmp;
2391         static char     *next;
2392
2393         strtok_quote_ptr = NULL;
2394         if ( line != NULL ) {
2395                 next = line;
2396         }
2397         while ( *next && strchr( sep, *next ) ) {
2398                 next++;
2399         }
2400
2401         if ( *next == '\0' ) {
2402                 next = NULL;
2403                 return( NULL );
2404         }
2405         tmp = next;
2406
2407         for ( inquote = 0; *next; ) {
2408                 switch ( *next ) {
2409                 case '"':
2410                         if ( inquote ) {
2411                                 inquote = 0;
2412                         } else {
2413                                 inquote = 1;
2414                         }
2415                         AC_MEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
2416                         break;
2417
2418                 case '\\':
2419                         if ( next[1] )
2420                                 AC_MEMCPY( next,
2421                                             next + 1, strlen( next + 1 ) + 1 );
2422                         next++;         /* dont parse the escaped character */
2423                         break;
2424
2425                 default:
2426                         if ( ! inquote ) {
2427                                 if ( strchr( sep, *next ) != NULL ) {
2428                                         strtok_quote_ptr = next;
2429                                         *next++ = '\0';
2430                                         return( tmp );
2431                                 }
2432                         }
2433                         next++;
2434                         break;
2435                 }
2436         }
2437
2438         return( tmp );
2439 }
2440
2441 static char     buf[BUFSIZ];
2442 static char     *line;
2443 static size_t lmax, lcur;
2444
2445 #define CATLINE( buf ) \
2446         do { \
2447                 size_t len = strlen( buf ); \
2448                 while ( lcur + len + 1 > lmax ) { \
2449                         lmax += BUFSIZ; \
2450                         line = (char *) ch_realloc( line, lmax ); \
2451                 } \
2452                 strcpy( line + lcur, buf ); \
2453                 lcur += len; \
2454         } while( 0 )
2455
2456 static char *
2457 fp_getline( FILE *fp, int *lineno )
2458 {
2459         char            *p;
2460
2461         lcur = 0;
2462         CATLINE( buf );
2463         (*lineno)++;
2464
2465         /* hack attack - keeps us from having to keep a stack of bufs... */
2466         if ( strncasecmp( line, "include", 7 ) == 0 ) {
2467                 buf[0] = '\0';
2468                 return( line );
2469         }
2470
2471         while ( fgets( buf, sizeof(buf), fp ) != NULL ) {
2472                 /* trim off \r\n or \n */
2473                 if ( (p = strchr( buf, '\n' )) != NULL ) {
2474                         if( p > buf && p[-1] == '\r' ) --p;
2475                         *p = '\0';
2476                 }
2477                 
2478                 /* trim off trailing \ and append the next line */
2479                 if ( line[ 0 ] != '\0' 
2480                                 && (p = line + strlen( line ) - 1)[ 0 ] == '\\'
2481                                 && p[ -1 ] != '\\' ) {
2482                         p[ 0 ] = '\0';
2483                         lcur--;
2484
2485                 } else {
2486                         if ( ! isspace( (unsigned char) buf[0] ) ) {
2487                                 return( line );
2488                         }
2489
2490                         /* change leading whitespace to a space */
2491                         buf[0] = ' ';
2492                 }
2493
2494                 CATLINE( buf );
2495                 (*lineno)++;
2496         }
2497         buf[0] = '\0';
2498
2499         return( line[0] ? line : NULL );
2500 }
2501
2502 static void
2503 fp_getline_init( int *lineno )
2504 {
2505         *lineno = -1;
2506         buf[0] = '\0';
2507 }
2508
2509 /* Loads ucdata, returns 1 if loading, 0 if already loaded, -1 on error */
2510 static int
2511 load_ucdata( char *path )
2512 {
2513         static int loaded = 0;
2514         int err;
2515         
2516         if ( loaded ) {
2517                 return( 0 );
2518         }
2519         err = ucdata_load( path ? path : SLAPD_DEFAULT_UCDATA, UCDATA_ALL );
2520         if ( err ) {
2521 #ifdef NEW_LOGGING
2522                 LDAP_LOG( CONFIG, CRIT, 
2523                         "load_ucdata: Error %d loading ucdata.\n", err, 0,0 );
2524 #else
2525                 Debug( LDAP_DEBUG_ANY, "error loading ucdata (error %d)\n",
2526                        err, 0, 0 );
2527 #endif
2528
2529                 return( -1 );
2530         }
2531         loaded = 1;
2532         return( 1 );
2533 }
2534
2535 void
2536 config_destroy( )
2537 {
2538         ucdata_unload( UCDATA_ALL );
2539         free( global_schemandn.bv_val );
2540         free( global_schemadn.bv_val );
2541         free( line );
2542         if ( slapd_args_file )
2543                 free ( slapd_args_file );
2544         if ( slapd_pid_file )
2545                 free ( slapd_pid_file );
2546         acl_destroy( global_acl, NULL );
2547 }