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