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