]> git.sur5r.net Git - openldap/blob - servers/slurpd/config.c
47d8fb419add4b00f68b308c65df6cf7e9e24d5f
[openldap] / servers / slurpd / config.c
1 /*
2  * Copyright (c) 1996 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13
14 /*
15  * config.c - configuration file handling routines
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21 #include <stdlib.h>
22
23 #include <ac/string.h>
24 #include <ac/socket.h>
25 #include <ac/ctype.h>
26
27 #include <lber.h>
28 #include <ldap.h>
29
30 #include "slurp.h"
31 #include "globals.h"
32
33 #define MAXARGS 100
34
35 /* Forward declarations */
36 static void     add_replica LDAP_P(( char **, int ));
37 static int      parse_replica_line LDAP_P(( char **, int, Ri *));
38 static void     parse_line LDAP_P(( char *, int *, char ** ));
39 static char     *getline LDAP_P(( FILE * ));
40 static char     *strtok_quote LDAP_P(( char *, char * ));
41
42 /* current config file line # */
43 static int      lineno;
44
45
46
47 /*
48  * Read the slapd config file, looking only for config options we're
49  * interested in.  Since we haven't detached from the controlling
50  * terminal yet, we just perror() and fprintf here.
51  */
52 int
53 slurpd_read_config(
54     char        *fname
55 )
56 {
57     FILE        *fp;
58     char        *line;
59     int         cargc;
60     char        *cargv[MAXARGS];
61
62     Debug( LDAP_DEBUG_CONFIG, "Config: opening config file \"%s\"\n",
63             fname, 0, 0 );
64
65     if ( (fp = fopen( fname, "r" )) == NULL ) {
66         perror( fname );
67         exit( 1 );
68     }
69
70     lineno = 0;
71     while ( (line = getline( fp )) != NULL ) {
72         /* skip comments and blank lines */
73         if ( line[0] == '#' || line[0] == '\0' ) {
74             continue;
75         }
76
77         Debug( LDAP_DEBUG_CONFIG, "Config: (%s)\n", line, 0, 0 );
78
79         parse_line( line, &cargc, cargv );
80
81         if ( cargc < 1 ) {
82             fprintf( stderr, "line %d: bad config line (ignored)\n", lineno );
83             continue;
84         }
85
86         /* replication log file to which changes are appended */
87         if ( strcasecmp( cargv[0], "replogfile" ) == 0 ) {
88             /* 
89              * if slapd_replogfile has a value, the -r option was given,
90              * so use that value.  If slapd_replogfile has length == 0,
91              * then we should use the value in the config file we're reading.
92              */
93             if ( sglob->slapd_replogfile[ 0 ] == '\0' ) {
94                 if ( cargc < 2 ) {
95                     fprintf( stderr,
96                         "line %d: missing filename in \"replogfile ",
97                         lineno );
98                     fprintf( stderr, "<filename>\" line\n" );
99                     exit( 1 );
100                 } else if ( cargc > 2 && *cargv[2] != '#' ) {
101                     fprintf( stderr,
102                         "line %d: extra cruft at the end of \"replogfile %s\"",
103                         lineno, cargv[1] );
104                     fprintf( stderr, "line (ignored)\n" );
105                 }
106                 sprintf( sglob->slapd_replogfile, cargv[1] );
107             }
108         } else if ( strcasecmp( cargv[0], "replica" ) == 0 ) {
109             add_replica( cargv, cargc );
110         }
111     }
112     fclose( fp );
113     Debug( LDAP_DEBUG_CONFIG,
114             "Config: ** configuration file successfully read and parsed\n",
115             0, 0, 0 );
116     return 0;
117 }
118
119
120
121
122 /*
123  * Parse one line of input.
124  */
125 static void
126 parse_line(
127     char        *line,
128     int         *argcp,
129     char        **argv
130 )
131 {
132     char *      token;
133
134     *argcp = 0;
135     for ( token = strtok_quote( line, " \t" ); token != NULL;
136         token = strtok_quote( NULL, " \t" ) ) {
137         argv[(*argcp)++] = token;
138     }
139     argv[*argcp] = NULL;
140 }
141
142
143
144
145 static char *
146 strtok_quote(
147     char *line,
148     char *sep
149 )
150 {
151     int         inquote;
152     char        *tmp;
153     static char *next;
154
155     if ( line != NULL ) {
156         next = line;
157     }
158     while ( *next && strchr( sep, *next ) ) {
159         next++;
160     }
161
162     if ( *next == '\0' ) {
163         next = NULL;
164         return( NULL );
165     }
166     tmp = next;
167
168     for ( inquote = 0; *next; ) {
169         switch ( *next ) {
170         case '"':
171             if ( inquote ) {
172                 inquote = 0;
173             } else {
174                 inquote = 1;
175             }
176             SAFEMEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
177             break;
178
179         case '\\':
180             SAFEMEMCPY( next, next + 1, strlen( next + 1 ) + 1 );
181             break;
182
183         default:
184             if ( ! inquote ) {
185                 if ( strchr( sep, *next ) != NULL ) {
186                     *next++ = '\0';
187                     return( tmp );
188                 }
189             }
190             next++;
191             break;
192         }
193     }
194
195     return( tmp );
196 }
197
198 #define CATLINE( buf )  { \
199     int len; \
200     len = strlen( buf ); \
201     while ( lcur + len + 1 > lmax ) { \
202         lmax += BUFSIZ; \
203         line = (char *) ch_realloc( line, lmax ); \
204     } \
205     strcpy( line + lcur, buf ); \
206     lcur += len; \
207 }
208
209
210
211 /*
212  * Get a line of input.
213  */
214 static char *
215 getline(
216     FILE *fp
217 )
218 {
219     char        *p;
220     static char buf[BUFSIZ];
221     static char *line;
222     static int  lmax, lcur;
223
224     lcur = 0;
225     CATLINE( buf );
226     while ( fgets( buf, sizeof(buf), fp ) != NULL ) {
227         if ( (p = strchr( buf, '\n' )) != NULL ) {
228             *p = '\0';
229         }
230         lineno++;
231         if ( ! isspace( (unsigned char) buf[0] ) ) {
232             return( line );
233         }
234
235         CATLINE( buf );
236     }
237     buf[0] = '\0';
238
239     return( line[0] ? line : NULL );
240 }
241
242
243 /*
244  * Add a node to the array of replicas.
245  */
246 static void
247 add_replica(
248     char        **cargv,
249     int         cargc
250 )
251 {
252     int nr;
253
254     nr = ++sglob->num_replicas;
255     sglob->replicas = (Ri **) ch_realloc( sglob->replicas,
256             ( nr + 1 )  * sizeof( Re * ));
257     if ( sglob->replicas == NULL ) {
258         fprintf( stderr, "out of memory, add_replica\n" );
259         exit( 1 );
260     }
261     sglob->replicas[ nr ] = NULL; 
262
263     if ( Ri_init( &(sglob->replicas[ nr - 1 ])) < 0 ) {
264         fprintf( stderr, "out of memory, Ri_init\n" );
265         exit( 1 );
266     }
267     if ( parse_replica_line( cargv, cargc,
268             sglob->replicas[ nr - 1] ) < 0 ) {
269         /* Something bad happened - back out */
270         fprintf( stderr,
271             "Warning: failed to add replica \"%s:%d - ignoring replica\n",
272             sglob->replicas[ nr - 1 ]->ri_hostname == NULL ?
273             "(null)" : sglob->replicas[ nr - 1 ]->ri_hostname,
274             sglob->replicas[ nr - 1 ]->ri_port );
275         sglob->replicas[ nr - 1] = NULL;
276         sglob->num_replicas--;
277     } else {
278         Debug( LDAP_DEBUG_CONFIG,
279                 "Config: ** successfully added replica \"%s:%d\"\n",
280                 sglob->replicas[ nr - 1 ]->ri_hostname == NULL ?
281                 "(null)" : sglob->replicas[ nr - 1 ]->ri_hostname,
282                 sglob->replicas[ nr - 1 ]->ri_port, 0 );
283         sglob->replicas[ nr - 1]->ri_stel =
284                 sglob->st->st_add( sglob->st,
285                 sglob->replicas[ nr - 1 ] );
286         if ( sglob->replicas[ nr - 1]->ri_stel == NULL ) {
287             fprintf( stderr, "Failed to add status element structure\n" );
288             exit( 1 );
289         }
290     }
291 }
292
293
294
295 /* 
296  * Parse a "replica" line from the config file.  replica lines should be
297  * in the following format:
298  * replica    host=<hostname:portnumber> binddn=<binddn>
299  *            bindmethod="simple|kerberos" credentials=<creds>
300  *
301  * where:
302  * <hostname:portnumber> describes the host name and port number where the
303  * replica is running,
304  *
305  * <binddn> is the DN to bind to the replica slapd as,
306  *
307  * bindmethod is either "simple" or "kerberos", and
308  *
309  * <creds> are the credentials (e.g. password) for binddn.  <creds> are
310  * only used for bindmethod=simple.  For bindmethod=kerberos, the
311  * credentials= option should be omitted.  Credentials for kerberos
312  * authentication are in the system srvtab file.
313  *
314  * The "replica" config file line may be split across multiple lines.  If
315  * a line begins with whitespace, it is considered a continuation of the
316  * previous line.
317  */
318 #define GOT_HOST        1
319 #define GOT_DN          2
320 #define GOT_METHOD      4
321 #define GOT_ALL         ( GOT_HOST | GOT_DN | GOT_METHOD )
322 static int
323 parse_replica_line( 
324     char        **cargv,
325     int         cargc,
326     Ri          *ri
327 )
328 {
329     int         gots = 0;
330     int         i;
331     char        *hp, *val;
332
333     for ( i = 1; i < cargc; i++ ) {
334         if ( !strncasecmp( cargv[ i ], HOSTSTR, strlen( HOSTSTR ))) {
335             val = cargv[ i ] + strlen( HOSTSTR ) + 1;
336             if (( hp = strchr( val, ':' )) != NULL ) {
337                 *hp = '\0';
338                 hp++;
339                 ri->ri_port = atoi( hp );
340             }
341             if ( ri->ri_port <= 0 ) {
342                 ri->ri_port = 0;
343             }
344             ri->ri_hostname = strdup( val );
345             gots |= GOT_HOST;
346         } else if ( !strncasecmp( cargv[ i ],
347                 BINDDNSTR, strlen( BINDDNSTR ))) { 
348             val = cargv[ i ] + strlen( BINDDNSTR ) + 1;
349             ri->ri_bind_dn = strdup( val );
350             gots |= GOT_DN;
351         } else if ( !strncasecmp( cargv[ i ], BINDMETHSTR,
352                 strlen( BINDMETHSTR ))) {
353             val = cargv[ i ] + strlen( BINDMETHSTR ) + 1;
354             if ( !strcasecmp( val, KERBEROSSTR )) {
355 #ifdef HAVE_KERBEROS
356                 ri->ri_bind_method = AUTH_KERBEROS;
357                 if ( ri->ri_srvtab == NULL ) {
358                     ri->ri_srvtab = strdup( sglob->default_srvtab );
359                 }
360                 gots |= GOT_METHOD;
361 #else /* HAVE_KERBEROS */
362             fprintf( stderr, "Error: a bind method of \"kerberos\" was\n" );
363             fprintf( stderr, "specified in the slapd configuration file,\n" );
364             fprintf( stderr, "but slurpd was not built with kerberos.\n" );
365             fprintf( stderr, "You must rebuild the LDAP release with\n" );
366             fprintf( stderr, "kerberos support if you wish to use\n" );
367             fprintf( stderr, "bindmethod=kerberos\n" );
368             exit( 1 );
369 #endif /* HAVE_KERBEROS */
370             } else if ( !strcasecmp( val, SIMPLESTR )) {
371                 ri->ri_bind_method = AUTH_SIMPLE;
372                 gots |= GOT_METHOD;
373             } else {
374                 ri->ri_bind_method = -1;
375             }
376         } else if ( !strncasecmp( cargv[ i ], CREDSTR, strlen( CREDSTR ))) {
377             val = cargv[ i ] + strlen( CREDSTR ) + 1;
378             ri->ri_password = strdup( val );
379         } else if ( !strncasecmp( cargv[ i ], BINDPSTR, strlen( BINDPSTR ))) {
380             val = cargv[ i ] + strlen( BINDPSTR ) + 1;
381             ri->ri_principal = strdup( val );
382         } else if ( !strncasecmp( cargv[ i ], SRVTABSTR, strlen( SRVTABSTR ))) {
383             val = cargv[ i ] + strlen( SRVTABSTR ) + 1;
384             if ( ri->ri_srvtab != NULL ) {
385                 free( ri->ri_srvtab );
386             }
387             ri->ri_srvtab = strdup( val );
388         } else {
389             fprintf( stderr, 
390                     "Error: parse_replica_line: unknown keyword \"%s\"\n",
391                     cargv[ i ] );
392         }
393     }
394     if ( gots != GOT_ALL ) {
395             fprintf( stderr, "Error: Malformed \"replica\" line in slapd " );
396             fprintf( stderr, "config file, line %d\n", lineno );
397         return -1;
398     }
399     return 0;
400 }
401