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