]> git.sur5r.net Git - openldap/blob - servers/slapd/config.c
Sync with HEAD
[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 %d", 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         char    *saveline = NULL;
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
484         if ( ( ct->arg_type & ARG_QUOTE ) && c->line[ 0 ] != '"' ) {
485                 ber_len_t       len;
486
487                 saveline = c->line;
488                 len = strlen( c->line );
489                 c->line = ch_malloc( len + STRLENOF( "\"\"" ) + 1 );
490                 sprintf( c->line, "\"%s\"", saveline );
491         }
492
493         if ( fp_parse_line( c ) ) {
494                 rc = 1;
495         } else {
496                 rc = config_check_vals( ct, c, 1 );
497         }
498
499         if ( saveline ) {
500                 ch_free( c->line );
501                 c->line = saveline;
502         }
503
504         if ( rc )
505                 rc = LDAP_CONSTRAINT_VIOLATION;
506
507         ch_free( c->tline );
508         return rc;
509 }
510
511 int
512 config_parse_add(ConfigTable *ct, ConfigArgs *c)
513 {
514         int     rc = 0;
515         char    *saveline = NULL;
516
517         snprintf( c->log, sizeof( c->log ), "%s: value #%d",
518                 ct->ad->ad_cname.bv_val, c->valx );
519         c->argc = 1;
520         c->argv[0] = ct->ad->ad_cname.bv_val;
521
522         if ( ( ct->arg_type & ARG_QUOTE ) && c->line[ 0 ] != '"' ) {
523                 ber_len_t       len;
524
525                 saveline = c->line;
526                 len = strlen( c->line );
527                         
528                 c->line = ch_malloc( len + STRLENOF( "\"\"" ) + 1 );
529                 sprintf( c->line, "\"%s\"", saveline );
530         }
531
532         if ( fp_parse_line( c ) ) {
533                 rc = 1;
534         } else {
535                 c->op = LDAP_MOD_ADD;
536                 rc = config_add_vals( ct, c );
537         }
538
539         if ( saveline ) {
540                 ch_free( c->line );
541                 c->line = saveline;
542         }
543
544         ch_free( c->tline );
545         return rc;
546 }
547
548 int
549 read_config_file(const char *fname, int depth, ConfigArgs *cf, ConfigTable *cft)
550 {
551         FILE *fp;
552         ConfigTable *ct;
553         ConfigArgs *c;
554         int rc;
555
556         c = ch_calloc( 1, sizeof( ConfigArgs ) );
557         if ( c == NULL ) {
558                 return 1;
559         }
560
561         if ( depth ) {
562                 memcpy( c, cf, sizeof( ConfigArgs ) );
563         } else {
564                 c->depth = depth; /* XXX */
565                 c->bi = NULL;
566                 c->be = NULL;
567         }
568
569         c->valx = -1;
570         c->fname = fname;
571         init_config_argv( c );
572
573         fp = fopen( fname, "r" );
574         if ( fp == NULL ) {
575                 ldap_syslog = 1;
576                 Debug(LDAP_DEBUG_ANY,
577                     "could not open config file \"%s\": %s (%d)\n",
578                     fname, strerror(errno), errno);
579                 return(1);
580         }
581
582         Debug(LDAP_DEBUG_CONFIG, "reading config file %s\n", fname, 0, 0);
583
584         fp_getline_init(c);
585
586         c->tline = NULL;
587
588         while ( fp_getline( fp, c ) ) {
589                 /* skip comments and blank lines */
590                 if ( c->line[0] == '#' || c->line[0] == '\0' ) {
591                         continue;
592                 }
593
594                 snprintf( c->log, sizeof( c->log ), "%s: line %lu",
595                                 c->fname, c->lineno );
596
597                 c->argc = 0;
598                 ch_free( c->tline );
599                 if ( fp_parse_line( c ) ) {
600                         rc = 1;
601                         goto leave;
602                 }
603
604                 if ( c->argc < 1 ) {
605                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: bad config line" 
606                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
607                                 c->log, 0, 0);
608 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
609                         rc = 1;
610                         goto leave;
611 #else /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
612                         continue;
613 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
614                 }
615
616                 c->op = SLAP_CONFIG_ADD;
617
618                 ct = config_find_keyword( cft, c );
619                 if ( ct ) {
620                         rc = config_add_vals( ct, c );
621                         if ( !rc ) continue;
622
623                         if ( rc & ARGS_USERLAND ) {
624                                 /* XXX a usertype would be opaque here */
625                                 Debug(LDAP_DEBUG_CONFIG, "%s: unknown user type <%s>\n",
626                                         c->log, c->argv[0], 0);
627                                 rc = 1;
628                                 goto leave;
629
630                         } else if ( rc == ARG_BAD_CONF ) {
631                                 rc = 1;
632                                 goto leave;
633                         }
634                         
635                 } else if ( c->bi && !c->be ) {
636                         rc = SLAP_CONF_UNKNOWN;
637                         if ( c->bi->bi_cf_ocs ) {
638                                 ct = config_find_keyword( c->bi->bi_cf_ocs->co_table, c );
639                                 if ( ct ) {
640                                         rc = config_add_vals( ct, c );
641                                 }
642                         }
643                         if ( c->bi->bi_config && rc == SLAP_CONF_UNKNOWN ) {
644                                 rc = (*c->bi->bi_config)(c->bi, c->fname, c->lineno,
645                                         c->argc, c->argv);
646                         }
647                         if ( rc ) {
648                                 switch(rc) {
649                                 case SLAP_CONF_UNKNOWN:
650                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
651                                                 "unknown directive <%s> inside backend info definition"
652                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
653                                                 c->log, *c->argv, 0);
654 #ifndef SLAPD_CONF_UNKNOWN_BAILOUT
655                                         continue;
656 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
657                                 default:
658                                         rc = 1;
659                                         goto leave;
660                                 }
661                         }
662
663                 } else if ( c->be ) {
664                         rc = SLAP_CONF_UNKNOWN;
665                         if ( c->be->be_cf_ocs ) {
666                                 ct = config_find_keyword( c->be->be_cf_ocs->co_table, c );
667                                 if ( ct ) {
668                                         rc = config_add_vals( ct, c );
669                                 }
670                         }
671                         if ( c->be->be_config && rc == SLAP_CONF_UNKNOWN ) {
672                                 rc = (*c->be->be_config)(c->be, c->fname, c->lineno,
673                                         c->argc, c->argv);
674                         }
675                         if ( rc ) {
676                                 switch(rc) {
677                                 case SLAP_CONF_UNKNOWN:
678                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
679                                                 "unknown directive <%s> inside backend database "
680                                                 "definition" SLAPD_CONF_UNKNOWN_IGNORED ".\n",
681                                                 c->log, *c->argv, 0);
682 #ifndef SLAPD_CONF_UNKNOWN_BAILOUT
683                                         continue;
684 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
685                                 default:
686                                         rc = 1;
687                                         goto leave;
688                                 }
689                         }
690
691                 } else if ( frontendDB->be_config ) {
692                         rc = (*frontendDB->be_config)(frontendDB, c->fname, (int)c->lineno, c->argc, c->argv);
693                         if ( rc ) {
694                                 switch(rc) {
695                                 case SLAP_CONF_UNKNOWN:
696                                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
697                                                 "unknown directive <%s> inside global database definition"
698                                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
699                                                 c->log, *c->argv, 0);
700 #ifndef SLAPD_CONF_UNKNOWN_BAILOUT
701                                         continue;
702 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
703                                 default:
704                                         rc = 1;
705                                         goto leave;
706                                 }
707                         }
708                         
709                 } else {
710                         Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
711                                 "unknown directive <%s> outside backend info and database definitions"
712                                 SLAPD_CONF_UNKNOWN_IGNORED ".\n",
713                                 c->log, *c->argv, 0);
714 #ifdef SLAPD_CONF_UNKNOWN_BAILOUT
715                         rc = 1;
716                         goto leave;
717 #else /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
718                         continue;
719 #endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
720                 }
721         }
722
723         rc = 0;
724
725 leave:
726         ch_free(c->tline);
727         fclose(fp);
728         ch_free(c->argv);
729         ch_free(c);
730         return(rc);
731 }
732
733 /* restrictops, allows, disallows, requires, loglevel */
734
735 int
736 verb_to_mask(const char *word, slap_verbmasks *v) {
737         int i;
738         for(i = 0; !BER_BVISNULL(&v[i].word); i++)
739                 if(!strcasecmp(word, v[i].word.bv_val))
740                         break;
741         return(i);
742 }
743
744 int
745 verbs_to_mask(int argc, char *argv[], slap_verbmasks *v, slap_mask_t *m) {
746         int i, j;
747         for(i = 1; i < argc; i++) {
748                 j = verb_to_mask(argv[i], v);
749                 if(BER_BVISNULL(&v[j].word)) return(1);
750                 while (!v[j].mask) j--;
751                 *m |= v[j].mask;
752         }
753         return(0);
754 }
755
756 /* Mask keywords that represent multiple bits should occur before single
757  * bit keywords in the verbmasks array.
758  */
759 int
760 mask_to_verbs(slap_verbmasks *v, slap_mask_t m, BerVarray *bva) {
761         int i;
762
763         if (!m) return 1;
764         for (i=0; !BER_BVISNULL(&v[i].word); i++) {
765                 if (!v[i].mask) continue;
766                 if (( m & v[i].mask ) == v[i].mask ) {
767                         value_add_one( bva, &v[i].word );
768                         m ^= v[i].mask;
769                         if ( !m ) break;
770                 }
771         }
772         return 0;
773 }
774
775 int
776 enum_to_verb(slap_verbmasks *v, slap_mask_t m, struct berval *bv) {
777         int i;
778
779         for (i=0; !BER_BVISNULL(&v[i].word); i++) {
780                 if ( m == v[i].mask ) {
781                         if ( bv != NULL ) {
782                                 *bv = v[i].word;
783                         }
784                         return i;
785                 }
786         }
787         return -1;
788 }
789
790 static slap_verbmasks tlskey[] = {
791         { BER_BVC("no"),        SB_TLS_OFF },
792         { BER_BVC("yes"),       SB_TLS_ON },
793         { BER_BVC("critical"),  SB_TLS_CRITICAL },
794         { BER_BVNULL, 0 }
795 };
796
797 static slap_verbmasks methkey[] = {
798         { BER_BVC("none"),      LDAP_AUTH_NONE },
799         { BER_BVC("simple"),    LDAP_AUTH_SIMPLE },
800 #ifdef HAVE_CYRUS_SASL
801         { BER_BVC("sasl"),      LDAP_AUTH_SASL },
802 #endif
803         { BER_BVNULL, 0 }
804 };
805
806 typedef struct cf_aux_table {
807         struct berval key;
808         int off;
809         char type;
810         char quote;
811         slap_verbmasks *aux;
812 } cf_aux_table;
813
814 static cf_aux_table bindkey[] = {
815         { BER_BVC("starttls="), offsetof(slap_bindconf, sb_tls), 'd', 0, tlskey },
816         { BER_BVC("bindmethod="), offsetof(slap_bindconf, sb_method), 'd', 0, methkey },
817         { BER_BVC("binddn="), offsetof(slap_bindconf, sb_binddn), 'b', 1, NULL },
818         { BER_BVC("credentials="), offsetof(slap_bindconf, sb_cred), 'b', 1, NULL },
819         { BER_BVC("saslmech="), offsetof(slap_bindconf, sb_saslmech), 'b', 0, NULL },
820         { BER_BVC("secprops="), offsetof(slap_bindconf, sb_secprops), 's', 0, NULL },
821         { BER_BVC("realm="), offsetof(slap_bindconf, sb_realm), 'b', 0, NULL },
822         { BER_BVC("authcID="), offsetof(slap_bindconf, sb_authcId), 'b', 0, NULL },
823         { BER_BVC("authzID="), offsetof(slap_bindconf, sb_authzId), 'b', 1, NULL },
824         { BER_BVNULL, 0, 0, 0, NULL }
825 };
826
827 int bindconf_parse( const char *word, slap_bindconf *bc ) {
828         int rc = 0;
829         cf_aux_table *tab;
830
831         for (tab = bindkey; !BER_BVISNULL(&tab->key); tab++) {
832                 if ( !strncasecmp( word, tab->key.bv_val, tab->key.bv_len )) {
833                         char **cptr;
834                         int *iptr, j;
835                         struct berval *bptr;
836                         const char *val = word + tab->key.bv_len;
837
838                         switch ( tab->type ) {
839                         case 's':
840                                 cptr = (char **)((char *)bc + tab->off);
841                                 *cptr = ch_strdup( val );
842                                 break;
843
844                         case 'b':
845                                 bptr = (struct berval *)((char *)bc + tab->off);
846                                 ber_str2bv( val, 0, 1, bptr );
847                                 break;
848
849                         case 'd':
850                                 assert( tab->aux );
851                                 iptr = (int *)((char *)bc + tab->off);
852
853                                 rc = 1;
854                                 for ( j = 0; !BER_BVISNULL( &tab->aux[j].word ); j++ ) {
855                                         if ( !strcasecmp( val, tab->aux[j].word.bv_val ) ) {
856                                                 *iptr = tab->aux[j].mask;
857                                                 rc = 0;
858                                         }
859                                 }
860                                 break;
861                         }
862
863                         if ( rc ) {
864                                 Debug( LDAP_DEBUG_ANY, "invalid bind config value %s\n",
865                                         word, 0, 0 );
866                         }
867                         
868                         return rc;
869                 }
870         }
871
872         return rc;
873 }
874
875 int bindconf_unparse( slap_bindconf *bc, struct berval *bv ) {
876         char buf[BUFSIZ], *ptr;
877         cf_aux_table *tab;
878         struct berval tmp;
879
880         ptr = buf;
881         for (tab = bindkey; !BER_BVISNULL(&tab->key); tab++) {
882                 char **cptr;
883                 int *iptr, i;
884                 struct berval *bptr;
885
886                 cptr = (char **)((char *)bc + tab->off);
887
888                 switch ( tab->type ) {
889                 case 'b':
890                         bptr = (struct berval *)((char *)bc + tab->off);
891                         cptr = &bptr->bv_val;
892                 case 's':
893                         if ( *cptr ) {
894                                 *ptr++ = ' ';
895                                 ptr = lutil_strcopy( ptr, tab->key.bv_val );
896                                 if ( tab->quote ) *ptr++ = '"';
897                                 ptr = lutil_strcopy( ptr, *cptr );
898                                 if ( tab->quote ) *ptr++ = '"';
899                         }
900                         break;
901
902                 case 'd':
903                         assert( tab->aux );
904                         iptr = (int *)((char *)bc + tab->off);
905                 
906                         for ( i = 0; !BER_BVISNULL( &tab->aux[i].word ); i++ ) {
907                                 if ( *iptr == tab->aux[i].mask ) {
908                                         *ptr++ = ' ';
909                                         ptr = lutil_strcopy( ptr, tab->key.bv_val );
910                                         ptr = lutil_strcopy( ptr, tab->aux[i].word.bv_val );
911                                         break;
912                                 }
913                         }
914                         break;
915                 }
916         }
917         tmp.bv_val = buf;
918         tmp.bv_len = ptr - buf;
919         ber_dupbv( bv, &tmp );
920         return 0;
921 }
922
923 void bindconf_free( slap_bindconf *bc ) {
924         if ( !BER_BVISNULL( &bc->sb_binddn ) ) {
925                 ch_free( bc->sb_binddn.bv_val );
926                 BER_BVZERO( &bc->sb_binddn );
927         }
928         if ( !BER_BVISNULL( &bc->sb_cred ) ) {
929                 ch_free( bc->sb_cred.bv_val );
930                 BER_BVZERO( &bc->sb_cred );
931         }
932         if ( !BER_BVISNULL( &bc->sb_saslmech ) ) {
933                 ch_free( bc->sb_saslmech.bv_val );
934                 BER_BVZERO( &bc->sb_saslmech );
935         }
936         if ( bc->sb_secprops ) {
937                 ch_free( bc->sb_secprops );
938                 bc->sb_secprops = NULL;
939         }
940         if ( !BER_BVISNULL( &bc->sb_realm ) ) {
941                 ch_free( bc->sb_realm.bv_val );
942                 BER_BVZERO( &bc->sb_realm );
943         }
944         if ( !BER_BVISNULL( &bc->sb_authcId ) ) {
945                 ch_free( bc->sb_authcId.bv_val );
946                 BER_BVZERO( &bc->sb_authcId );
947         }
948         if ( !BER_BVISNULL( &bc->sb_authzId ) ) {
949                 ch_free( bc->sb_authzId.bv_val );
950                 BER_BVZERO( &bc->sb_authzId );
951         }
952 }
953
954
955 /* -------------------------------------- */
956
957
958 static char *
959 strtok_quote( char *line, char *sep, char **quote_ptr )
960 {
961         int             inquote;
962         char            *tmp;
963         static char     *next;
964
965         *quote_ptr = NULL;
966         if ( line != NULL ) {
967                 next = line;
968         }
969         while ( *next && strchr( sep, *next ) ) {
970                 next++;
971         }
972
973         if ( *next == '\0' ) {
974                 next = NULL;
975                 return( NULL );
976         }
977         tmp = next;
978
979         for ( inquote = 0; *next; ) {
980                 switch ( *next ) {
981                 case '"':
982                         if ( inquote ) {
983                                 inquote = 0;
984                         } else {
985                                 inquote = 1;
986                         }
987                         AC_MEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
988                         break;
989
990                 case '\\':
991                         if ( next[1] )
992                                 AC_MEMCPY( next,
993                                             next + 1, strlen( next + 1 ) + 1 );
994                         next++;         /* dont parse the escaped character */
995                         break;
996
997                 default:
998                         if ( ! inquote ) {
999                                 if ( strchr( sep, *next ) != NULL ) {
1000                                         *quote_ptr = next;
1001                                         *next++ = '\0';
1002                                         return( tmp );
1003                                 }
1004                         }
1005                         next++;
1006                         break;
1007                 }
1008         }
1009
1010         return( tmp );
1011 }
1012
1013 static char     buf[BUFSIZ];
1014 static char     *line;
1015 static size_t lmax, lcur;
1016
1017 #define CATLINE( buf ) \
1018         do { \
1019                 size_t len = strlen( buf ); \
1020                 while ( lcur + len + 1 > lmax ) { \
1021                         lmax += BUFSIZ; \
1022                         line = (char *) ch_realloc( line, lmax ); \
1023                 } \
1024                 strcpy( line + lcur, buf ); \
1025                 lcur += len; \
1026         } while( 0 )
1027
1028 static void
1029 fp_getline_init(ConfigArgs *c) {
1030         c->lineno = -1;
1031         buf[0] = '\0';
1032 }
1033
1034 static int
1035 fp_getline( FILE *fp, ConfigArgs *c )
1036 {
1037         char    *p;
1038
1039         lcur = 0;
1040         CATLINE(buf);
1041         c->lineno++;
1042
1043         /* avoid stack of bufs */
1044         if ( strncasecmp( line, "include", STRLENOF( "include" ) ) == 0 ) {
1045                 buf[0] = '\0';
1046                 c->line = line;
1047                 return(1);
1048         }
1049
1050         while ( fgets( buf, sizeof( buf ), fp ) ) {
1051                 p = strchr( buf, '\n' );
1052                 if ( p ) {
1053                         if ( p > buf && p[-1] == '\r' ) {
1054                                 --p;
1055                         }
1056                         *p = '\0';
1057                 }
1058                 /* XXX ugly */
1059                 c->line = line;
1060                 if ( line[0]
1061                                 && ( p = line + strlen( line ) - 1 )[0] == '\\'
1062                                 && p[-1] != '\\' )
1063                 {
1064                         p[0] = '\0';
1065                         lcur--;
1066                         
1067                 } else {
1068                         if ( !isspace( (unsigned char)buf[0] ) ) {
1069                                 return(1);
1070                         }
1071                         buf[0] = ' ';
1072                 }
1073                 CATLINE(buf);
1074                 c->lineno++;
1075         }
1076
1077         buf[0] = '\0';
1078         c->line = line;
1079         return(line[0] ? 1 : 0);
1080 }
1081
1082 static int
1083 fp_parse_line(ConfigArgs *c)
1084 {
1085         char *token;
1086         char *hide[] = { "rootpw", "replica", "bindpw", "pseudorootpw", "dbpasswd", '\0' };
1087         char *quote_ptr;
1088         int i;
1089
1090         c->tline = ch_strdup(c->line);
1091         token = strtok_quote(c->tline, " \t", &quote_ptr);
1092
1093         if(token) for(i = 0; hide[i]; i++) if(!strcasecmp(token, hide[i])) break;
1094         if(quote_ptr) *quote_ptr = ' ';
1095         Debug(LDAP_DEBUG_CONFIG, "line %lu (%s%s)\n", c->lineno,
1096                 hide[i] ? hide[i] : c->line, hide[i] ? " ***" : "");
1097         if(quote_ptr) *quote_ptr = '\0';
1098
1099         for(; token; token = strtok_quote(NULL, " \t", &quote_ptr)) {
1100                 if(c->argc == c->argv_size - 1) {
1101                         char **tmp;
1102                         tmp = ch_realloc(c->argv, (c->argv_size + ARGS_STEP) * sizeof(*c->argv));
1103                         if(!tmp) {
1104                                 Debug(LDAP_DEBUG_ANY, "line %lu: out of memory\n", c->lineno, 0, 0);
1105                                 return -1;
1106                         }
1107                         c->argv = tmp;
1108                         c->argv_size += ARGS_STEP;
1109                 }
1110                 c->argv[c->argc++] = token;
1111         }
1112         c->argv[c->argc] = NULL;
1113         return(0);
1114 }
1115
1116 void
1117 config_destroy( )
1118 {
1119         ucdata_unload( UCDATA_ALL );
1120         if ( frontendDB ) {
1121                 /* NOTE: in case of early exit, frontendDB can be NULL */
1122                 if ( frontendDB->be_schemandn.bv_val )
1123                         free( frontendDB->be_schemandn.bv_val );
1124                 if ( frontendDB->be_schemadn.bv_val )
1125                         free( frontendDB->be_schemadn.bv_val );
1126                 if ( frontendDB->be_acl )
1127                         acl_destroy( frontendDB->be_acl, NULL );
1128         }
1129         free( line );
1130         if ( slapd_args_file )
1131                 free ( slapd_args_file );
1132         if ( slapd_pid_file )
1133                 free ( slapd_pid_file );
1134         if ( default_passwd_hash )
1135                 ldap_charray_free( default_passwd_hash );
1136 }
1137
1138 char **
1139 slap_str2clist( char ***out, char *in, const char *brkstr )
1140 {
1141         char    *str;
1142         char    *s;
1143         char    *lasts;
1144         int     i, j;
1145         char    **new;
1146
1147         /* find last element in list */
1148         for (i = 0; *out && (*out)[i]; i++);
1149
1150         /* protect the input string from strtok */
1151         str = ch_strdup( in );
1152
1153         if ( *str == '\0' ) {
1154                 free( str );
1155                 return( *out );
1156         }
1157
1158         /* Count words in string */
1159         j=1;
1160         for ( s = str; *s; s++ ) {
1161                 if ( strchr( brkstr, *s ) != NULL ) {
1162                         j++;
1163                 }
1164         }
1165
1166         *out = ch_realloc( *out, ( i + j + 1 ) * sizeof( char * ) );
1167         new = *out + i;
1168         for ( s = ldap_pvt_strtok( str, brkstr, &lasts );
1169                 s != NULL;
1170                 s = ldap_pvt_strtok( NULL, brkstr, &lasts ) )
1171         {
1172                 *new = ch_strdup( s );
1173                 new++;
1174         }
1175
1176         *new = NULL;
1177         free( str );
1178         return( *out );
1179 }
1180
1181 int config_generic_wrapper( Backend *be, const char *fname, int lineno,
1182         int argc, char **argv )
1183 {
1184         ConfigArgs c = { 0 };
1185         ConfigTable *ct;
1186         int rc;
1187
1188         c.be = be;
1189         c.fname = fname;
1190         c.lineno = lineno;
1191         c.argc = argc;
1192         c.argv = argv;
1193         c.valx = -1;
1194         sprintf( c.log, "%s: line %d", fname, lineno );
1195
1196         rc = SLAP_CONF_UNKNOWN;
1197         ct = config_find_keyword( be->be_cf_ocs->co_table, &c );
1198         if ( ct )
1199                 rc = config_add_vals( ct, &c );
1200         return rc;
1201 }