]> git.sur5r.net Git - openldap/blob - servers/slapd/config.c
14d684d605994361666cd1185f09a10ea2580672
[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-2005 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 #include "config.h"
43
44 #define ARGS_STEP       512
45
46 /*
47  * defaults for various global variables
48  */
49 slap_mask_t             global_allows = 0;
50 slap_mask_t             global_disallows = 0;
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 struct berval default_search_base = BER_BVNULL;
58 struct berval default_search_nbase = BER_BVNULL;
59
60 ber_len_t sockbuf_max_incoming = SLAP_SB_MAX_INCOMING_DEFAULT;
61 ber_len_t sockbuf_max_incoming_auth= SLAP_SB_MAX_INCOMING_AUTH;
62
63 int     slap_conn_max_pending = SLAP_CONN_MAX_PENDING_DEFAULT;
64 int     slap_conn_max_pending_auth = SLAP_CONN_MAX_PENDING_AUTH;
65
66 char   *slapd_pid_file  = NULL;
67 char   *slapd_args_file = NULL;
68
69 int use_reverse_lookup = 0;
70
71 #ifdef LDAP_SLAPI
72 int slapi_plugins_used = 0;
73 #endif
74
75 static int fp_getline(FILE *fp, ConfigArgs *c);
76 static void fp_getline_init(ConfigArgs *c);
77 static int fp_parse_line(ConfigArgs *c);
78
79 static char     *strtok_quote(char *line, char *sep, char **quote_ptr);
80
81 int read_config_file(const char *fname, int depth, ConfigArgs *cf,
82         ConfigTable *cft );
83
84 ConfigArgs *
85 new_config_args( BackendDB *be, const char *fname, int lineno, int argc, char **argv )
86 {
87         ConfigArgs *c;
88         c = ch_calloc( 1, sizeof( ConfigArgs ) );
89         if ( c == NULL ) return(NULL);
90         c->be     = be; 
91         c->fname  = fname;
92         c->argc   = argc;
93         c->argv   = argv; 
94         c->lineno = lineno;
95         snprintf( c->log, sizeof( c->log ), "%s: line %lu", fname, lineno );
96         return(c);
97 }
98
99 void
100 init_config_argv( ConfigArgs *c )
101 {
102         c->argv = ch_calloc( ARGS_STEP + 1, sizeof( *c->argv ) );
103         c->argv_size = ARGS_STEP + 1;
104 }
105
106 ConfigTable *config_find_keyword(ConfigTable *Conf, ConfigArgs *c) {
107         int i;
108
109         for(i = 0; Conf[i].name; i++)
110                 if( (Conf[i].length && (!strncasecmp(c->argv[0], Conf[i].name, Conf[i].length))) ||
111                         (!strcasecmp(c->argv[0], Conf[i].name)) ) break;
112         if ( !Conf[i].name ) return NULL;
113         return Conf+i;
114 }
115
116 int config_check_vals(ConfigTable *Conf, ConfigArgs *c, int check_only ) {
117         int rc, arg_user, arg_type, iarg;
118         long larg;
119         ber_len_t barg;
120         
121         arg_type = Conf->arg_type;
122         if(arg_type == ARG_IGNORED) {
123                 Debug(LDAP_DEBUG_CONFIG, "%s: keyword <%s> ignored\n",
124                         c->log, Conf->name, 0);
125                 return(0);
126         }
127         if((arg_type & ARG_DN) && c->argc == 1) {
128                 c->argc = 2;
129                 c->argv[1] = "";
130         }
131         if(Conf->min_args && (c->argc < Conf->min_args)) {
132                 sprintf( c->msg, "<%s> missing <%s> argument",
133                         c->argv[0], Conf->what );
134                 Debug(LDAP_DEBUG_CONFIG, "%s: keyword %s\n", c->log, c->msg, 0 );
135                 return(ARG_BAD_CONF);
136         }
137         if(Conf->max_args && (c->argc > Conf->max_args)) {
138                 sprintf( c->msg, "<%s> extra cruft after <%s> ignored",
139                         c->argv[0], Conf->what );
140                 Debug(LDAP_DEBUG_CONFIG, "%s: %s\n", c->log, c->msg, 0 );
141         }
142         if((arg_type & ARG_DB) && !c->be) {
143                 sprintf( c->msg, "<%s> only allowed within database declaration",
144                         c->argv[0] );
145                 Debug(LDAP_DEBUG_CONFIG, "%s: keyword %s\n",
146                         c->log, c->msg, 0);
147                 return(ARG_BAD_CONF);
148         }
149         if((arg_type & ARG_PRE_BI) && c->bi) {
150                 sprintf( c->msg, "<%s> must occur before any backend %sdeclaration",
151                         c->argv[0], (arg_type & ARG_PRE_DB) ? "or database " : "" );
152                 Debug(LDAP_DEBUG_CONFIG, "%s: keyword %s\n",
153                         c->log, c->msg, 0 );
154                 return(ARG_BAD_CONF);
155         }
156         if((arg_type & ARG_PRE_DB) && c->be && c->be != frontendDB) {
157                 sprintf( c->msg, "<%s> must occur before any database declaration",
158                         c->argv[0] );
159                 Debug(LDAP_DEBUG_CONFIG, "%s: keyword %s\n",
160                         c->log, c->msg, 0);
161                 return(ARG_BAD_CONF);
162         }
163         if((arg_type & ARG_PAREN) && *c->argv[1] != '(' /*')'*/) {
164                 sprintf( c->msg, "<%s> old format not supported", c->argv[0] );
165                 Debug(LDAP_DEBUG_CONFIG, "%s: %s\n",
166                         c->log, c->msg, 0);
167                 return(ARG_BAD_CONF);
168         }
169         if((arg_type & ARGS_POINTER) && !Conf->arg_item && !(arg_type & ARG_OFFSET)) {
170                 sprintf( c->msg, "<%s> invalid config_table, arg_item is NULL",
171                         c->argv[0] );
172                 Debug(LDAP_DEBUG_CONFIG, "%s: %s\n",
173                         c->log, c->msg, 0);
174                 return(ARG_BAD_CONF);
175         }
176         c->type = arg_user = (arg_type & ARGS_USERLAND);
177         memset(&c->values, 0, sizeof(c->values));
178         if(arg_type & ARGS_NUMERIC) {
179                 int j;
180                 iarg = 0; larg = 0; barg = 0;
181                 switch(arg_type & ARGS_NUMERIC) {
182                         case ARG_INT:           iarg = atoi(c->argv[1]);                break;
183                         case ARG_LONG:          larg = strtol(c->argv[1], NULL, 0);     break;
184                         case ARG_BER_LEN_T:     barg = (ber_len_t)atol(c->argv[1]);     break;
185                         case ARG_ON_OFF:
186                                 if(c->argc == 1) {
187                                         iarg = 1;
188                                 } else if(!strcasecmp(c->argv[1], "on") ||
189                                         !strcasecmp(c->argv[1], "true")) {
190                                         iarg = 1;
191                                 } else if(!strcasecmp(c->argv[1], "off") ||
192                                         !strcasecmp(c->argv[1], "false")) {
193                                         iarg = 0;
194                                 } else {
195                                         sprintf( c->msg, "<%s> invalid value, ignored",
196                                                 c->argv[0] );
197                                         Debug(LDAP_DEBUG_CONFIG, "%s: %s\n",
198                                                 c->log, c->msg, 0 );
199                                         return(0);
200                                 }
201                                 break;
202                 }
203                 j = (arg_type & ARG_NONZERO) ? 1 : 0;
204                 if(iarg < j && larg < j && barg < j ) {
205                         larg = larg ? larg : (barg ? barg : iarg);
206                         sprintf( c->msg, "<%s> invalid value, ignored",
207                                 c->argv[0] );
208                         Debug(LDAP_DEBUG_CONFIG, "%s: %s\n",
209                                 c->log, c->msg, 0 );
210                         return(ARG_BAD_CONF);
211                 }
212                 switch(arg_type & ARGS_NUMERIC) {
213                         case ARG_ON_OFF:
214                         case ARG_INT:           c->value_int = iarg;            break;
215                         case ARG_LONG:          c->value_long = larg;           break;
216                         case ARG_BER_LEN_T:     c->value_ber_t = barg;          break;
217                 }
218         } else if(arg_type & ARG_STRING) {
219                 if ( !check_only )
220                         c->value_string = ch_strdup(c->argv[1]);
221         } else if(arg_type & ARG_BERVAL) {
222                 if ( !check_only )
223                         ber_str2bv( c->argv[1], 0, 1, &c->value_bv );
224         } else if(arg_type & ARG_DN) {
225                 struct berval bv;
226                 ber_str2bv( c->argv[1], 0, 0, &bv );
227                 rc = dnPrettyNormal( NULL, &bv, &c->value_dn, &c->value_ndn, NULL );
228                 if ( rc != LDAP_SUCCESS ) {
229                         sprintf( c->msg, "<%s> invalid DN %d (%s)",
230                                 c->argv[0], rc, ldap_err2string( rc ));
231                         Debug(LDAP_DEBUG_CONFIG, "%s: %s\n" , c->log, c->msg, 0);
232                         return(ARG_BAD_CONF);
233                 }
234                 if ( check_only ) {
235                         ch_free( c->value_ndn.bv_val );
236                         ch_free( c->value_dn.bv_val );
237                 }
238         }
239         return 0;
240 }
241
242 int config_set_vals(ConfigTable *Conf, ConfigArgs *c) {
243         int rc, arg_type;
244         void *ptr;
245
246         arg_type = Conf->arg_type;
247         if(arg_type & ARG_MAGIC) {
248                 if(!c->be) c->be = frontendDB;
249                 c->msg[0] = '\0';
250                 rc = (*((ConfigDriver*)Conf->arg_item))(c);
251 #if 0
252                 if(c->be == frontendDB) c->be = NULL;
253 #endif
254                 if(rc) {
255                         if ( !c->msg[0] ) {
256                                 sprintf( c->msg, "<%s> handler exited with %d",
257                                         c->argv[0], rc );
258                                 Debug(LDAP_DEBUG_CONFIG, "%s: %s!\n",
259                                         c->log, c->msg, 0 );
260                         }
261                         return(ARG_BAD_CONF);
262                 }
263                 return(0);
264         }
265         if(arg_type & ARG_OFFSET) {
266                 if (c->be)
267                         ptr = c->be->be_private;
268                 else if (c->bi)
269                         ptr = c->bi->bi_private;
270                 else {
271                         sprintf( c->msg, "<%s> offset is missing base pointer",
272                                 c->argv[0] );
273                         Debug(LDAP_DEBUG_CONFIG, "%s: %s!\n",
274                                 c->log, c->msg, 0);
275                         return(ARG_BAD_CONF);
276                 }
277                 ptr = (void *)((char *)ptr + (int)Conf->arg_item);
278         } else if (arg_type & ARGS_POINTER) {
279                 ptr = Conf->arg_item;
280         }
281         if(arg_type & ARGS_POINTER)
282                 switch(arg_type & ARGS_POINTER) {
283                         case ARG_ON_OFF:
284                         case ARG_INT:           *(int*)ptr = c->value_int;                      break;
285                         case ARG_LONG:          *(long*)ptr = c->value_long;                    break;
286                         case ARG_BER_LEN_T:     *(ber_len_t*)ptr = c->value_ber_t;                      break;
287                         case ARG_STRING: {
288                                 char *cc = *(char**)ptr;
289                                 if(cc) {
290                                         if ((arg_type & ARG_UNIQUE) && c->op == SLAP_CONFIG_ADD ) {
291                                                 Debug(LDAP_DEBUG_CONFIG, "%s: already set %s!\n",
292                                                         c->log, Conf->name, 0 );
293                                                 return(ARG_BAD_CONF);
294                                         }
295                                         ch_free(cc);
296                                 }
297                                 *(char **)ptr = c->value_string;
298                                 break;
299                                 }
300                         case ARG_BERVAL:
301                                 *(struct berval *)ptr = c->value_bv;
302                                 break;
303                 }
304         return(0);
305 }
306
307 int config_add_vals(ConfigTable *Conf, ConfigArgs *c) {
308         int rc, arg_type;
309
310         arg_type = Conf->arg_type;
311         if(arg_type == ARG_IGNORED) {
312                 Debug(LDAP_DEBUG_CONFIG, "%s: keyword <%s> ignored\n",
313                         c->log, Conf->name, 0);
314                 return(0);
315         }
316         rc = config_check_vals( Conf, c, 0 );
317         if ( rc ) return rc;
318         return config_set_vals( Conf, c );
319 }
320
321 int
322 config_del_vals(ConfigTable *cf, ConfigArgs *c)
323 {
324         int rc = 0;
325
326         /* If there is no handler, just ignore it */
327         if ( cf->arg_type & ARG_MAGIC ) {
328                 c->op = LDAP_MOD_DELETE;
329                 c->type = cf->arg_type & ARGS_USERLAND;
330                 rc = (*((ConfigDriver*)cf->arg_item))(c);
331         }
332         return rc;
333 }
334
335 int
336 config_get_vals(ConfigTable *cf, ConfigArgs *c)
337 {
338         int rc = 0;
339         struct berval bv;
340         void *ptr;
341
342         if ( cf->arg_type & ARG_IGNORED ) {
343                 return 1;
344         }
345
346         memset(&c->values, 0, sizeof(c->values));
347         c->rvalue_vals = NULL;
348         c->rvalue_nvals = NULL;
349         c->op = SLAP_CONFIG_EMIT;
350         c->type = cf->arg_type & ARGS_USERLAND;
351
352         if ( cf->arg_type & ARG_MAGIC ) {
353                 rc = (*((ConfigDriver*)cf->arg_item))(c);
354                 if ( rc ) return rc;
355         } else {
356                 if ( cf->arg_type & ARG_OFFSET ) {
357                         if ( c->be )
358                                 ptr = c->be->be_private;
359                         else if ( c->bi )
360                                 ptr = c->bi->bi_private;
361                         else
362                                 return 1;
363                         ptr = (void *)((char *)ptr + (int)cf->arg_item);
364                 } else {
365                         ptr = cf->arg_item;
366                 }
367                 
368                 switch(cf->arg_type & ARGS_POINTER) {
369                 case ARG_ON_OFF:
370                 case ARG_INT:   c->value_int = *(int *)ptr; break;
371                 case ARG_LONG:  c->value_long = *(long *)ptr; break;
372                 case ARG_BER_LEN_T:     c->value_ber_t = *(ber_len_t *)ptr; break;
373                 case ARG_STRING:
374                         if ( *(char **)ptr )
375                                 c->value_string = ch_strdup(*(char **)ptr);
376                         break;
377                 case ARG_BERVAL:
378                         ber_dupbv( &c->value_bv, (struct berval *)ptr ); break;
379                 }
380         }
381         if ( cf->arg_type & ARGS_POINTER) {
382                 bv.bv_val = c->log;
383                 switch(cf->arg_type & ARGS_POINTER) {
384                 case ARG_INT: bv.bv_len = sprintf(bv.bv_val, "%d", c->value_int); break;
385                 case ARG_LONG: bv.bv_len = sprintf(bv.bv_val, "%ld", c->value_long); break;
386                 case ARG_BER_LEN_T: bv.bv_len = sprintf(bv.bv_val, "%ld", c->value_ber_t); break;
387                 case ARG_ON_OFF: bv.bv_len = sprintf(bv.bv_val, "%s",
388                         c->value_int ? "TRUE" : "FALSE"); break;
389                 case ARG_STRING:
390                         if ( c->value_string && c->value_string[0]) {
391                                 ber_str2bv( c->value_string, 0, 0, &bv);
392                         } else {
393                                 return 1;
394                         }
395                         break;
396                 case ARG_BERVAL:
397                         if ( !BER_BVISEMPTY( &c->value_bv )) {
398                                 bv = c->value_bv;
399                         } else {
400                                 return 1;
401                         }
402                         break;
403                 }
404                 if (( cf->arg_type & ARGS_POINTER ) == ARG_STRING )
405                         ber_bvarray_add(&c->rvalue_vals, &bv);
406                 else
407                         value_add_one(&c->rvalue_vals, &bv);
408         }
409         return rc;
410 }
411
412 int
413 init_config_attrs(ConfigTable *ct) {
414         LDAPAttributeType *at;
415         int i, code;
416         const char *err;
417
418         for (i=0; ct[i].name; i++ ) {
419                 if ( !ct[i].attribute ) continue;
420                 at = ldap_str2attributetype( ct[i].attribute,
421                         &code, &err, LDAP_SCHEMA_ALLOW_ALL );
422                 if ( !at ) {
423                         fprintf( stderr, "init_config_attrs: AttributeType \"%s\": %s, %s\n",
424                                 ct[i].attribute, ldap_scherr2str(code), err );
425                         return code;
426                 }
427                 code = at_add( at, 0, NULL, &err );
428                 if ( code && code != SLAP_SCHERR_ATTR_DUP ) {
429                         fprintf( stderr, "init_config_attrs: AttributeType \"%s\": %s, %s\n",
430                                 ct[i].attribute, scherr2str(code), err );
431                         return code;
432                 }
433                 code = slap_str2ad( at->at_names[0], &ct[i].ad, &err );
434                 if ( code ) {
435                         fprintf( stderr, "init_config_attrs: AttributeType \"%s\": %s\n",
436                                 ct[i].attribute, err );
437                         return code;
438                 }
439                 ldap_memfree( at );
440         }
441
442         return 0;
443 }
444
445 int
446 init_config_ocs( ConfigOCs *ocs ) {
447         int i;
448
449         for (i=0;ocs[i].co_def;i++) {
450                 LDAPObjectClass *oc;
451                 int code;
452                 const char *err;
453
454                 oc = ldap_str2objectclass( ocs[i].co_def, &code, &err,
455                         LDAP_SCHEMA_ALLOW_ALL );
456                 if ( !oc ) {
457                         fprintf( stderr, "init_config_ocs: objectclass \"%s\": %s, %s\n",
458                                 ocs[i].co_def, ldap_scherr2str(code), err );
459                         return code;
460                 }
461                 code = oc_add(oc,0,NULL,&err);
462                 if ( code && code != SLAP_SCHERR_CLASS_DUP ) {
463                         fprintf( stderr, "init_config_ocs: objectclass \"%s\": %s, %s\n",
464                                 ocs[i].co_def, scherr2str(code), err );
465                         return code;
466                 }
467                 ocs[i].co_oc = oc_find(oc->oc_names[0]);
468                 ldap_memfree(oc);
469         }
470         return 0;
471 }
472
473 int
474 config_parse_vals(ConfigTable *ct, ConfigArgs *c, int valx)
475 {
476         int rc = 0;
477
478         snprintf( c->log, sizeof( c->log ), "%s: value #%d",
479                 ct->ad->ad_cname.bv_val, valx );
480         c->argc = 1;
481         c->argv[0] = ct->ad->ad_cname.bv_val;
482         if ( fp_parse_line( c ) ) {
483                 rc = 1;
484         } else {
485                 rc = config_check_vals( ct, c, 1 );
486         }
487         if ( rc )
488                 rc = LDAP_CONSTRAINT_VIOLATION;
489
490         ch_free( c->tline );
491         return rc;
492 }
493
494 int
495 config_parse_add(ConfigTable *ct, ConfigArgs *c)
496 {
497         int rc = 0;
498
499         snprintf( c->log, sizeof( c->log ), "%s: value #%d",
500                 ct->ad->ad_cname.bv_val, c->valx );
501         c->argc = 1;
502         c->argv[0] = ct->ad->ad_cname.bv_val;
503         if ( fp_parse_line( c ) ) {
504                 rc = 1;
505         } else {
506                 c->op = LDAP_MOD_ADD;
507                 rc = config_add_vals( ct, c );
508         }
509
510         ch_free( c->tline );
511         return rc;
512 }
513
514 int
515 read_config_file(const char *fname, int depth, ConfigArgs *cf, ConfigTable *cft)
516 {
517         FILE *fp;
518         ConfigTable *ct;
519         ConfigArgs *c;
520         int rc;
521
522         c = ch_calloc( 1, sizeof( ConfigArgs ) );
523         if ( c == NULL ) {
524                 return 1;
525         }
526
527         if ( depth ) {
528                 memcpy( c, cf, sizeof( ConfigArgs ) );
529         } else {
530                 c->depth = depth; /* XXX */
531                 c->bi = NULL;
532                 c->be = NULL;
533         }
534
535         c->valx = -1;
536         c->fname = fname;
537         init_config_argv( c );
538
539         fp = fopen( fname, "r" );
540         if ( fp == NULL ) {
541                 ldap_syslog = 1;
542                 Debug(LDAP_DEBUG_ANY,
543                     "could not open config file \"%s\": %s (%d)\n",
544                     fname, strerror(errno), errno);
545                 return(1);
546         }
547
548         Debug(LDAP_DEBUG_CONFIG, "reading config file %s\n", fname, 0, 0);
549
550         fp_getline_init(c);
551
552         c->tline = NULL;
553
554         while ( fp_getline( fp, c ) ) {
555                 /* skip comments and blank lines */
556                 if ( c->line[0] == '#' || c->line[0] == '\0' ) {
557                         continue;
558                 }
559
560                 snprintf( c->log, sizeof( c->log ), "%s: line %lu",
561                                 c->fname, c->lineno );
562
563                 c->argc = 0;
564                 ch_free( c->tline );
565                 if ( fp_parse_line( c ) ) {
566                         rc = 1;
567                         goto leave;
568                 }
569
570                 if ( c->argc < 1 ) {
571                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: bad config line" 
572                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
573                                 c->log, 0, 0);
574 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
575                         rc = 1;
576                         goto leave;
577 #else /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
578                         continue;
579 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
580                 }
581
582                 c->op = SLAP_CONFIG_ADD;
583
584                 ct = config_find_keyword( cft, c );
585                 if ( ct ) {
586                         rc = config_add_vals( ct, c );
587                         if ( !rc ) continue;
588
589                         if ( rc & ARGS_USERLAND ) {
590                                 /* XXX a usertype would be opaque here */
591                                 Debug(LDAP_DEBUG_CONFIG, "%s: unknown user type <%s>\n",
592                                         c->log, c->argv[0], 0);
593                                 rc = 1;
594                                 goto leave;
595
596                         } else if ( rc == ARG_BAD_CONF ) {
597                                 rc = 1;
598                                 goto leave;
599                         }
600                         
601                 } else if ( c->bi ) {
602                         rc = SLAP_CONF_UNKNOWN;
603                         if ( c->bi->bi_cf_ocs ) {
604                                 ct = config_find_keyword( c->bi->bi_cf_ocs->co_table, c );
605                                 if ( ct ) {
606                                         rc = config_add_vals( ct, c );
607                                 }
608                         }
609                         if ( c->bi->bi_config && rc == SLAP_CONF_UNKNOWN ) {
610                                 rc = (*c->bi->bi_config)(c->bi, c->fname, c->lineno,
611                                         c->argc, c->argv);
612                         }
613                         if ( rc ) {
614                                 switch(rc) {
615                                 case SLAP_CONF_UNKNOWN:
616                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
617                                                 "unknown directive <%s> inside backend info definition"
618                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
619                                                 c->log, *c->argv, 0);
620 #ifndef SLAPD_CONF_UNKNOWN_BAILOUT
621                                         continue;
622 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
623                                 default:
624                                         rc = 1;
625                                         goto leave;
626                                 }
627                         }
628
629                 } else if ( c->be ) {
630                         rc = SLAP_CONF_UNKNOWN;
631                         if ( c->be->be_cf_ocs ) {
632                                 ct = config_find_keyword( c->be->be_cf_ocs->co_table, c );
633                                 if ( ct ) {
634                                         rc = config_add_vals( ct, c );
635                                 }
636                         }
637                         if ( c->be->be_config && rc == SLAP_CONF_UNKNOWN ) {
638                                 rc = (*c->be->be_config)(c->be, c->fname, c->lineno,
639                                         c->argc, c->argv);
640                         }
641                         if ( rc ) {
642                                 switch(rc) {
643                                 case SLAP_CONF_UNKNOWN:
644                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
645                                                 "unknown directive <%s> inside backend database "
646                                                 "definition" SLAPD_CONF_UNKNOWN_IGNORED ".\n",
647                                                 c->log, *c->argv, 0);
648 #ifndef SLAPD_CONF_UNKNOWN_BAILOUT
649                                         continue;
650 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
651                                 default:
652                                         rc = 1;
653                                         goto leave;
654                                 }
655                         }
656
657                 } else if ( frontendDB->be_config ) {
658                         rc = (*frontendDB->be_config)(frontendDB, c->fname, (int)c->lineno, c->argc, c->argv);
659                         if ( rc ) {
660                                 switch(rc) {
661                                 case SLAP_CONF_UNKNOWN:
662                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
663                                                 "unknown directive <%s> inside global database definition"
664                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
665                                                 c->log, *c->argv, 0);
666 #ifndef SLAPD_CONF_UNKNOWN_BAILOUT
667                                         continue;
668 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
669                                 default:
670                                         rc = 1;
671                                         goto leave;
672                                 }
673                         }
674                         
675                 } else {
676                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
677                                 "unknown directive <%s> outside backend info and database definitions"
678                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
679                                 c->log, *c->argv, 0);
680 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
681                         rc = 1;
682                         goto leave;
683 #else /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
684                         continue;
685 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
686                 }
687         }
688
689         if ( BER_BVISNULL( &frontendDB->be_schemadn ) ) {
690                 ber_str2bv( SLAPD_SCHEMA_DN, STRLENOF( SLAPD_SCHEMA_DN ), 1,
691                         &frontendDB->be_schemadn );
692                 rc = dnNormalize( 0, NULL, NULL, &frontendDB->be_schemadn, &frontendDB->be_schemandn, NULL );
693                 if ( rc != LDAP_SUCCESS ) {
694                         Debug(LDAP_DEBUG_ANY, "%s: "
695                                 "unable to normalize default schema DN \"%s\"\n",
696                                 c->log, frontendDB->be_schemadn.bv_val, 0 );
697                         /* must not happen */
698                         assert( 0 );
699                 }
700         }
701         rc = 0;
702
703 leave:
704         ch_free(c->tline);
705         fclose(fp);
706         ch_free(c->argv);
707         ch_free(c);
708         return(rc);
709 }
710
711 /* restrictops, allows, disallows, requires, loglevel */
712
713 int
714 verb_to_mask(const char *word, slap_verbmasks *v) {
715         int i;
716         for(i = 0; !BER_BVISNULL(&v[i].word); i++)
717                 if(!strcasecmp(word, v[i].word.bv_val))
718                         break;
719         return(i);
720 }
721
722 int
723 verbs_to_mask(int argc, char *argv[], slap_verbmasks *v, slap_mask_t *m) {
724         int i, j;
725         for(i = 1; i < argc; i++) {
726                 j = verb_to_mask(argv[i], v);
727                 if(BER_BVISNULL(&v[j].word)) return(1);
728                 while (!v[j].mask) j--;
729                 *m |= v[j].mask;
730         }
731         return(0);
732 }
733
734 int
735 mask_to_verbs(slap_verbmasks *v, slap_mask_t m, BerVarray *bva) {
736         int i;
737
738         if (!m) return 1;
739         for (i=0; !BER_BVISNULL(&v[i].word); i++) {
740                 if (!v[i].mask) continue;
741                 if (( m & v[i].mask ) == v[i].mask ) {
742                         value_add_one( bva, &v[i].word );
743                 }
744         }
745         return 0;
746 }
747
748 static slap_verbmasks tlskey[] = {
749         { BER_BVC("no"),        SB_TLS_OFF },
750         { BER_BVC("yes"),       SB_TLS_ON },
751         { BER_BVC("critical"),  SB_TLS_CRITICAL },
752         { BER_BVNULL, 0 }
753 };
754
755 static slap_verbmasks methkey[] = {
756 #if 0
757         { BER_BVC("none"),      LDAP_AUTH_NONE },
758 #endif
759         { BER_BVC("simple"),    LDAP_AUTH_SIMPLE },
760 #ifdef HAVE_CYRUS_SASL
761         { BER_BVC("sasl"),      LDAP_AUTH_SASL },
762 #endif
763         { BER_BVNULL, 0 }
764 };
765
766 typedef struct cf_aux_table {
767         struct berval key;
768         int off;
769         char type;
770         char quote;
771         slap_verbmasks *aux;
772 } cf_aux_table;
773
774 static cf_aux_table bindkey[] = {
775         { BER_BVC("starttls="), offsetof(slap_bindconf, sb_tls), 'd', 0, tlskey },
776         { BER_BVC("bindmethod="), offsetof(slap_bindconf, sb_method), 'd', 0, methkey },
777         { BER_BVC("binddn="), offsetof(slap_bindconf, sb_binddn), 'b', 1, NULL },
778         { BER_BVC("credentials="), offsetof(slap_bindconf, sb_cred), 'b', 1, NULL },
779         { BER_BVC("saslmech="), offsetof(slap_bindconf, sb_saslmech), 'b', 0, NULL },
780         { BER_BVC("secprops="), offsetof(slap_bindconf, sb_secprops), 's', 0, NULL },
781         { BER_BVC("realm="), offsetof(slap_bindconf, sb_realm), 'b', 0, NULL },
782         { BER_BVC("authcID="), offsetof(slap_bindconf, sb_authcId), 'b', 0, NULL },
783         { BER_BVC("authzID="), offsetof(slap_bindconf, sb_authzId), 'b', 1, NULL },
784         { BER_BVNULL, 0, 0, 0, NULL }
785 };
786
787 int bindconf_parse( const char *word, slap_bindconf *bc ) {
788         int rc = 0;
789         cf_aux_table *tab;
790
791         for (tab = bindkey; !BER_BVISNULL(&tab->key); tab++) {
792                 if ( !strncasecmp( word, tab->key.bv_val, tab->key.bv_len )) {
793                         char **cptr;
794                         int *iptr, j;
795                         struct berval *bptr;
796                         const char *val = word + tab->key.bv_len;
797
798                         switch ( tab->type ) {
799                         case 's':
800                                 cptr = (char **)((char *)bc + tab->off);
801                                 *cptr = ch_strdup( val );
802                                 break;
803
804                         case 'b':
805                                 bptr = (struct berval *)((char *)bc + tab->off);
806                                 ber_str2bv( val, 0, 1, bptr );
807                                 break;
808
809                         case 'd':
810                                 assert( tab->aux );
811                                 iptr = (int *)((char *)bc + tab->off);
812
813                                 rc = 1;
814                                 for ( j = 0; !BER_BVISNULL( &tab->aux[j].word ); j++ ) {
815                                         if ( !strcasecmp( val, tab->aux[j].word.bv_val ) ) {
816                                                 *iptr = tab->aux[j].mask;
817                                                 rc = 0;
818                                         }
819                                 }
820                                 break;
821                         }
822
823                         if ( rc ) {
824                                 Debug( LDAP_DEBUG_ANY, "invalid bind config value %s\n",
825                                         word, 0, 0 );
826                         }
827                         
828                         return rc;
829                 }
830         }
831
832         return rc;
833 }
834
835 int bindconf_unparse( slap_bindconf *bc, struct berval *bv ) {
836         char buf[BUFSIZ], *ptr;
837         cf_aux_table *tab;
838         struct berval tmp;
839
840         ptr = buf;
841         for (tab = bindkey; !BER_BVISNULL(&tab->key); tab++) {
842                 char **cptr;
843                 int *iptr, i;
844                 struct berval *bptr;
845
846                 cptr = (char **)((char *)bc + tab->off);
847
848                 switch ( tab->type ) {
849                 case 'b':
850                         bptr = (struct berval *)((char *)bc + tab->off);
851                         cptr = &bptr->bv_val;
852                 case 's':
853                         if ( *cptr ) {
854                                 *ptr++ = ' ';
855                                 ptr = lutil_strcopy( ptr, tab->key.bv_val );
856                                 if ( tab->quote ) *ptr++ = '"';
857                                 ptr = lutil_strcopy( ptr, *cptr );
858                                 if ( tab->quote ) *ptr++ = '"';
859                         }
860                         break;
861
862                 case 'd':
863                         assert( tab->aux );
864                         iptr = (int *)((char *)bc + tab->off);
865                 
866                         for ( i = 0; !BER_BVISNULL( &tab->aux[i].word ); i++ ) {
867                                 if ( *iptr == tab->aux[i].mask ) {
868                                         *ptr++ = ' ';
869                                         ptr = lutil_strcopy( ptr, tab->key.bv_val );
870                                         ptr = lutil_strcopy( ptr, tab->aux[i].word.bv_val );
871                                         break;
872                                 }
873                         }
874                         break;
875                 }
876         }
877         tmp.bv_val = buf;
878         tmp.bv_len = ptr - buf;
879         ber_dupbv( bv, &tmp );
880         return 0;
881 }
882
883 void bindconf_free( slap_bindconf *bc ) {
884         if ( !BER_BVISNULL( &bc->sb_binddn ) ) {
885                 ch_free( bc->sb_binddn.bv_val );
886                 BER_BVZERO( &bc->sb_binddn );
887         }
888         if ( !BER_BVISNULL( &bc->sb_cred ) ) {
889                 ch_free( bc->sb_cred.bv_val );
890                 BER_BVZERO( &bc->sb_cred );
891         }
892         if ( !BER_BVISNULL( &bc->sb_saslmech ) ) {
893                 ch_free( bc->sb_saslmech.bv_val );
894                 BER_BVZERO( &bc->sb_saslmech );
895         }
896         if ( bc->sb_secprops ) {
897                 ch_free( bc->sb_secprops );
898                 bc->sb_secprops = NULL;
899         }
900         if ( !BER_BVISNULL( &bc->sb_realm ) ) {
901                 ch_free( bc->sb_realm.bv_val );
902                 BER_BVZERO( &bc->sb_realm );
903         }
904         if ( !BER_BVISNULL( &bc->sb_authcId ) ) {
905                 ch_free( bc->sb_authcId.bv_val );
906                 BER_BVZERO( &bc->sb_authcId );
907         }
908         if ( !BER_BVISNULL( &bc->sb_authzId ) ) {
909                 ch_free( bc->sb_authzId.bv_val );
910                 BER_BVZERO( &bc->sb_authzId );
911         }
912 }
913
914
915 /* -------------------------------------- */
916
917
918 static char *
919 strtok_quote( char *line, char *sep, char **quote_ptr )
920 {
921         int             inquote;
922         char            *tmp;
923         static char     *next;
924
925         *quote_ptr = NULL;
926         if ( line != NULL ) {
927                 next = line;
928         }
929         while ( *next && strchr( sep, *next ) ) {
930                 next++;
931         }
932
933         if ( *next == '\0' ) {
934                 next = NULL;
935                 return( NULL );
936         }
937         tmp = next;
938
939         for ( inquote = 0; *next; ) {
940                 switch ( *next ) {
941                 case '"':
942                         if ( inquote ) {
943                                 inquote = 0;
944                         } else {
945                                 inquote = 1;
946                         }
947                         AC_MEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
948                         break;
949
950                 case '\\':
951                         if ( next[1] )
952                                 AC_MEMCPY( next,
953                                             next + 1, strlen( next + 1 ) + 1 );
954                         next++;         /* dont parse the escaped character */
955                         break;
956
957                 default:
958                         if ( ! inquote ) {
959                                 if ( strchr( sep, *next ) != NULL ) {
960                                         *quote_ptr = next;
961                                         *next++ = '\0';
962                                         return( tmp );
963                                 }
964                         }
965                         next++;
966                         break;
967                 }
968         }
969
970         return( tmp );
971 }
972
973 static char     buf[BUFSIZ];
974 static char     *line;
975 static size_t lmax, lcur;
976
977 #define CATLINE( buf ) \
978         do { \
979                 size_t len = strlen( buf ); \
980                 while ( lcur + len + 1 > lmax ) { \
981                         lmax += BUFSIZ; \
982                         line = (char *) ch_realloc( line, lmax ); \
983                 } \
984                 strcpy( line + lcur, buf ); \
985                 lcur += len; \
986         } while( 0 )
987
988 static void
989 fp_getline_init(ConfigArgs *c) {
990         c->lineno = -1;
991         buf[0] = '\0';
992 }
993
994 static int
995 fp_getline( FILE *fp, ConfigArgs *c )
996 {
997         char    *p;
998
999         lcur = 0;
1000         CATLINE(buf);
1001         c->lineno++;
1002
1003         /* avoid stack of bufs */
1004         if ( strncasecmp( line, "include", STRLENOF( "include" ) ) == 0 ) {
1005                 buf[0] = '\0';
1006                 c->line = line;
1007                 return(1);
1008         }
1009
1010         while ( fgets( buf, sizeof( buf ), fp ) ) {
1011                 p = strchr( buf, '\n' );
1012                 if ( p ) {
1013                         if ( p > buf && p[-1] == '\r' ) {
1014                                 --p;
1015                         }
1016                         *p = '\0';
1017                 }
1018                 /* XXX ugly */
1019                 c->line = line;
1020                 if ( line[0]
1021                                 && ( p = line + strlen( line ) - 1 )[0] == '\\'
1022                                 && p[-1] != '\\' )
1023                 {
1024                         p[0] = '\0';
1025                         lcur--;
1026                         
1027                 } else {
1028                         if ( !isspace( (unsigned char)buf[0] ) ) {
1029                                 return(1);
1030                         }
1031                         buf[0] = ' ';
1032                 }
1033                 CATLINE(buf);
1034                 c->lineno++;
1035         }
1036
1037         buf[0] = '\0';
1038         c->line = line;
1039         return(line[0] ? 1 : 0);
1040 }
1041
1042 static int
1043 fp_parse_line(ConfigArgs *c)
1044 {
1045         char *token;
1046         char *hide[] = { "rootpw", "replica", "bindpw", "pseudorootpw", "dbpasswd", '\0' };
1047         char *quote_ptr;
1048         int i;
1049
1050         c->tline = ch_strdup(c->line);
1051         token = strtok_quote(c->tline, " \t", &quote_ptr);
1052
1053         if(token) for(i = 0; hide[i]; i++) if(!strcasecmp(token, hide[i])) break;
1054         if(quote_ptr) *quote_ptr = ' ';
1055         Debug(LDAP_DEBUG_CONFIG, "line %lu (%s%s)\n", c->lineno,
1056                 hide[i] ? hide[i] : c->line, hide[i] ? " ***" : "");
1057         if(quote_ptr) *quote_ptr = '\0';
1058
1059         for(; token; token = strtok_quote(NULL, " \t", &quote_ptr)) {
1060                 if(c->argc == c->argv_size - 1) {
1061                         char **tmp;
1062                         tmp = ch_realloc(c->argv, (c->argv_size + ARGS_STEP) * sizeof(*c->argv));
1063                         if(!tmp) {
1064                                 Debug(LDAP_DEBUG_ANY, "line %lu: out of memory\n", c->lineno, 0, 0);
1065                                 return -1;
1066                         }
1067                         c->argv = tmp;
1068                         c->argv_size += ARGS_STEP;
1069                 }
1070                 c->argv[c->argc++] = token;
1071         }
1072         c->argv[c->argc] = NULL;
1073         return(0);
1074 }
1075
1076 void
1077 config_destroy( )
1078 {
1079         ucdata_unload( UCDATA_ALL );
1080         if ( frontendDB ) {
1081                 /* NOTE: in case of early exit, frontendDB can be NULL */
1082                 if ( frontendDB->be_schemandn.bv_val )
1083                         free( frontendDB->be_schemandn.bv_val );
1084                 if ( frontendDB->be_schemadn.bv_val )
1085                         free( frontendDB->be_schemadn.bv_val );
1086                 if ( frontendDB->be_acl )
1087                         acl_destroy( frontendDB->be_acl, NULL );
1088         }
1089         free( line );
1090         if ( slapd_args_file )
1091                 free ( slapd_args_file );
1092         if ( slapd_pid_file )
1093                 free ( slapd_pid_file );
1094         if ( default_passwd_hash )
1095                 ldap_charray_free( default_passwd_hash );
1096 }
1097
1098 char **
1099 slap_str2clist( char ***out, char *in, const char *brkstr )
1100 {
1101         char    *str;
1102         char    *s;
1103         char    *lasts;
1104         int     i, j;
1105         char    **new;
1106
1107         /* find last element in list */
1108         for (i = 0; *out && (*out)[i]; i++);
1109
1110         /* protect the input string from strtok */
1111         str = ch_strdup( in );
1112
1113         if ( *str == '\0' ) {
1114                 free( str );
1115                 return( *out );
1116         }
1117
1118         /* Count words in string */
1119         j=1;
1120         for ( s = str; *s; s++ ) {
1121                 if ( strchr( brkstr, *s ) != NULL ) {
1122                         j++;
1123                 }
1124         }
1125
1126         *out = ch_realloc( *out, ( i + j + 1 ) * sizeof( char * ) );
1127         new = *out + i;
1128         for ( s = ldap_pvt_strtok( str, brkstr, &lasts );
1129                 s != NULL;
1130                 s = ldap_pvt_strtok( NULL, brkstr, &lasts ) )
1131         {
1132                 *new = ch_strdup( s );
1133                 new++;
1134         }
1135
1136         *new = NULL;
1137         free( str );
1138         return( *out );
1139 }
1140
1141 int config_generic_wrapper( Backend *be, const char *fname, int lineno,
1142         int argc, char **argv )
1143 {
1144         ConfigArgs c = { 0 };
1145         ConfigTable *ct;
1146         int rc;
1147
1148         c.be = be;
1149         c.fname = fname;
1150         c.lineno = lineno;
1151         c.argc = argc;
1152         c.argv = argv;
1153         c.valx = -1;
1154         sprintf( c.log, "%s: line %lu", fname, lineno );
1155
1156         rc = SLAP_CONF_UNKNOWN;
1157         ct = config_find_keyword( be->be_cf_ocs->co_table, &c );
1158         if ( ct )
1159                 rc = config_add_vals( ct, &c );
1160         return rc;
1161 }