1 /* This modules is based on the params.c module from Samba, written by Karl Auer
2 and much modified by Christopher Hertel. */
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, visit the http://fsf.org website.
19 /* -------------------------------------------------------------------------- **
23 * -------------------------------------------------------------------------- **
25 * This module performs lexical analysis and initial parsing of a
26 * Windows-like parameter file. It recognizes and handles four token
27 * types: section-name, parameter-name, parameter-value, and
28 * end-of-file. Comments and line continuation are handled
31 * The entry point to the module is function pm_process(). This
32 * function opens the source file, calls the Parse() function to parse
33 * the input, and then closes the file when either the EOF is reached
34 * or a fatal error is encountered.
36 * A sample parameter file might look like this:
39 * parameter one = value string
40 * parameter two = another value
42 * new parameter = some value or t'other
44 * The parameter file is divided into sections by section headers:
45 * section names enclosed in square brackets (eg. [section one]).
46 * Each section contains parameter lines, each of which consist of a
47 * parameter name and value delimited by an equal sign. Roughly, the
50 * <file> :== { <section> } EOF
52 * <section> :== <section header> { <parameter line> }
54 * <section header> :== '[' NAME ']'
56 * <parameter line> :== NAME '=' VALUE '\n'
58 * Blank lines and comment lines are ignored. Comment lines are lines
59 * beginning with either a semicolon (';') or a pound sign ('#').
61 * All whitespace in section names and parameter names is compressed
62 * to single spaces. Leading and trailing whitespace is stripped from
63 * both names and values.
65 * Only the first equals sign in a parameter line is significant.
66 * Parameter values may contain equals signs, square brackets and
67 * semicolons. Internal whitespace is retained in parameter values,
68 * with the exception of the '\r' character, which is stripped for
69 * historic reasons. Parameter names may not start with a left square
70 * bracket, an equal sign, a pound sign, or a semicolon, because these
71 * are used to identify other tokens.
73 * -------------------------------------------------------------------------- **
80 /* -------------------------------------------------------------------------- **
87 /* -------------------------------------------------------------------------- **
90 * bufr - pointer to a global buffer. This is probably a kludge,
91 * but it was the nicest kludge I could think of (for now).
92 * bSize - The size of the global buffer <bufr>.
95 static char *bufr
= NULL
;
97 static BOOL (*the_sfunc
)(char *);
98 static BOOL (*the_pfunc
)(char *, char *);
100 /* -------------------------------------------------------------------------- **
104 static int EatWhitespace( FILE *InFile
)
105 /* ------------------------------------------------------------------------ **
106 * Scan past whitespace (see ctype(3C)) and return the first non-whitespace
107 * character, or newline, or EOF.
109 * Input: InFile - Input source.
111 * Output: The next non-whitespace character in the input stream.
113 * Notes: Because the config files use a line-oriented grammar, we
114 * explicitly exclude the newline character from the list of
115 * whitespace characters.
116 * - Note that both EOF (-1) and the nul character ('\0') are
117 * considered end-of-file markers.
119 * ------------------------------------------------------------------------ **
124 for( c
= getc( InFile
); isspace( c
) && ('\n' != c
); c
= getc( InFile
) )
127 } /* EatWhitespace */
129 static int EatComment( FILE *InFile
)
130 /* ------------------------------------------------------------------------ **
131 * Scan to the end of a comment.
133 * Input: InFile - Input source.
135 * Output: The character that marks the end of the comment. Normally,
136 * this will be a newline, but it *might* be an EOF.
138 * Notes: Because the config files use a line-oriented grammar, we
139 * explicitly exclude the newline character from the list of
140 * whitespace characters.
141 * - Note that both EOF (-1) and the nul character ('\0') are
142 * considered end-of-file markers.
144 * ------------------------------------------------------------------------ **
149 for( c
= getc( InFile
); ('\n'!=c
) && (EOF
!=c
) && (c
>0); c
= getc( InFile
) )
154 static int Continuation( char *line
, int pos
)
155 /* ------------------------------------------------------------------------ **
156 * Scan backwards within a string to discover if the last non-whitespace
157 * character is a line-continuation character ('\\').
159 * Input: line - A pointer to a buffer containing the string to be
161 * pos - This is taken to be the offset of the end of the
162 * string. This position is *not* scanned.
164 * Output: The offset of the '\\' character if it was found, or -1 to
165 * indicate that it was not.
167 * ------------------------------------------------------------------------ **
171 while( pos
>= 0 && isSpace(line
+ pos
) )
174 return( ((pos
>= 0) && ('\\' == line
[pos
])) ? pos
: -1 );
178 static BOOL
Section( FILE *InFile
, BOOL (*sfunc
)(char *) )
179 /* ------------------------------------------------------------------------ **
180 * Scan a section name, and pass the name to function sfunc().
182 * Input: InFile - Input source.
183 * sfunc - Pointer to the function to be called if the section
184 * name is successfully read.
186 * Output: True if the section name was read and True was returned from
187 * <sfunc>. False if <sfunc> failed or if a lexical error was
190 * ------------------------------------------------------------------------ **
196 char *func
= "params.c:Section() -";
198 i
= 0; /* <i> is the offset of the next free byte in bufr[] and */
199 end
= 0; /* <end> is the current "end of string" offset. In most */
200 /* cases these will be the same, but if the last */
201 /* character written to bufr[] is a space, then <end> */
202 /* will be one less than <i>. */
204 c
= EatWhitespace( InFile
); /* We've already got the '['. Scan */
205 /* past initial white space. */
207 while( (EOF
!= c
) && (c
> 0) )
210 /* Check that the buffer is big enough for the next character. */
211 if( i
> (bSize
- 2) )
214 bufr
= realloc_array( bufr
, char, bSize
);
217 rprintf(FLOG
, "%s Memory re-allocation failure.", func
);
222 /* Handle a single character. */
225 case ']': /* Found the closing bracket. */
227 if( 0 == end
) /* Don't allow an empty name. */
229 rprintf(FLOG
, "%s Empty section name in config file.\n", func
);
232 if( !sfunc( bufr
) ) /* Got a valid name. Deal with it. */
234 (void)EatComment( InFile
); /* Finish off the line. */
237 case '\n': /* Got newline before closing ']'. */
238 i
= Continuation( bufr
, i
); /* Check for line continuation. */
242 rprintf(FLOG
, "%s Badly formed line in config file: %s\n",
246 end
= ( (i
> 0) && (' ' == bufr
[i
- 1]) ) ? (i
- 1) : (i
);
247 c
= getc( InFile
); /* Continue with next line. */
250 default: /* All else are a valid name chars. */
251 if( isspace( c
) ) /* One space per whitespace region. */
255 c
= EatWhitespace( InFile
);
257 else /* All others copy verbatim. */
266 /* We arrive here if we've met the EOF before the closing bracket. */
267 rprintf(FLOG
, "%s Unexpected EOF in the config file: %s\n", func
, bufr
);
271 static BOOL
Parameter( FILE *InFile
, BOOL (*pfunc
)(char *, char *), int c
)
272 /* ------------------------------------------------------------------------ **
273 * Scan a parameter name and value, and pass these two fields to pfunc().
275 * Input: InFile - The input source.
276 * pfunc - A pointer to the function that will be called to
277 * process the parameter, once it has been scanned.
278 * c - The first character of the parameter name, which
279 * would have been read by Parse(). Unlike a comment
280 * line or a section header, there is no lead-in
281 * character that can be discarded.
283 * Output: True if the parameter name and value were scanned and processed
284 * successfully, else False.
286 * Notes: This function is in two parts. The first loop scans the
287 * parameter name. Internal whitespace is compressed, and an
288 * equal sign (=) terminates the token. Leading and trailing
289 * whitespace is discarded. The second loop scans the parameter
290 * value. When both have been successfully identified, they are
291 * passed to pfunc() for processing.
293 * ------------------------------------------------------------------------ **
296 int i
= 0; /* Position within bufr. */
297 int end
= 0; /* bufr[end] is current end-of-string. */
298 int vstart
= 0; /* Starting position of the parameter value. */
299 char *func
= "params.c:Parameter() -";
301 /* Read the parameter name. */
302 while( 0 == vstart
) /* Loop until we've found the start of the value. */
305 if( i
> (bSize
- 2) ) /* Ensure there's space for next char. */
308 bufr
= realloc_array( bufr
, char, bSize
);
311 rprintf(FLOG
, "%s Memory re-allocation failure.", func
) ;
318 case '=': /* Equal sign marks end of param name. */
319 if( 0 == end
) /* Don't allow an empty name. */
321 rprintf(FLOG
, "%s Invalid parameter name in config file.\n", func
);
324 bufr
[end
++] = '\0'; /* Mark end of string & advance. */
325 i
= vstart
= end
; /* New string starts here. */
326 c
= EatWhitespace(InFile
);
329 case '\n': /* Find continuation char, else error. */
330 i
= Continuation( bufr
, i
);
334 rprintf(FLOG
, "%s Ignoring badly formed line in config file: %s\n",
338 end
= ( (i
> 0) && (' ' == bufr
[i
- 1]) ) ? (i
- 1) : (i
);
339 c
= getc( InFile
); /* Read past eoln. */
342 case '\0': /* Shouldn't have EOF within param name. */
345 rprintf(FLOG
, "%s Unexpected end-of-file at: %s\n", func
, bufr
);
350 /* A directive divides at the first space or tab. */
354 c
= EatWhitespace(InFile
);
356 c
= EatWhitespace(InFile
);
362 if( isspace( c
) ) /* One ' ' per whitespace region. */
366 c
= EatWhitespace( InFile
);
368 else /* All others verbatim. */
377 /* Now parse the value. */
378 while( (EOF
!=c
) && (c
> 0) )
381 if( i
> (bSize
- 2) ) /* Make sure there's enough room. */
384 bufr
= realloc_array( bufr
, char, bSize
);
387 rprintf(FLOG
, "%s Memory re-allocation failure.", func
) ;
394 case '\r': /* Explicitly remove '\r' because the older */
395 c
= getc( InFile
); /* version called fgets_slash() which also */
396 break; /* removes them. */
398 case '\n': /* Marks end of value unless there's a '\'. */
399 i
= Continuation( bufr
, i
);
404 for( end
= i
; end
>= 0 && isSpace(bufr
+ end
); end
-- )
410 default: /* All others verbatim. Note that spaces do */
411 bufr
[i
++] = c
; /* not advance <end>. This allows trimming */
412 if( !isspace( c
) ) /* of whitespace at the end of the line. */
418 bufr
[end
] = '\0'; /* End of value. */
420 return( pfunc( bufr
, &bufr
[vstart
] ) ); /* Pass name & value to pfunc(). */
423 static int name_cmp(const void *n1
, const void *n2
)
425 return strcmp(*(char * const *)n1
, *(char * const *)n2
);
428 static int include_config(char *include
, int manage_globals
)
431 char *match
= manage_globals
? "*.conf" : "*.inc";
434 if (do_stat(include
, &sb
) < 0) {
435 rsyserr(FLOG
, errno
, "unable to stat config file \"%s\"", include
);
439 if (S_ISREG(sb
.st_mode
)) {
440 if (manage_globals
&& the_sfunc
)
442 ret
= pm_process(include
, the_sfunc
, the_pfunc
);
443 if (manage_globals
&& the_sfunc
)
445 } else if (S_ISDIR(sb
.st_mode
)) {
446 char buf
[MAXPATHLEN
], **bpp
;
452 if (!(d
= opendir(include
))) {
453 rsyserr(FLOG
, errno
, "unable to open config dir \"%s\"", include
);
457 memset(&conf_list
, 0, sizeof conf_list
);
459 while ((di
= readdir(d
)) != NULL
) {
460 char *dname
= d_name(di
);
461 if (!wildmatch(match
, dname
))
463 bpp
= EXPAND_ITEM_LIST(&conf_list
, char *, 32);
464 pathjoin(buf
, sizeof buf
, include
, dname
);
469 if (!(bpp
= conf_list
.items
))
472 if (conf_list
.count
> 1)
473 qsort(bpp
, conf_list
.count
, sizeof (char *), name_cmp
);
475 for (j
= 0, ret
= 1; j
< conf_list
.count
; j
++) {
476 if (manage_globals
&& the_sfunc
)
477 the_sfunc(j
== 0 ? "]push" : "]reset");
478 if ((ret
= pm_process(bpp
[j
], the_sfunc
, the_pfunc
)) != 1)
482 if (manage_globals
&& the_sfunc
)
485 for (j
= 0; j
< conf_list
.count
; j
++)
494 static int parse_directives(char *name
, char *val
)
496 if (strcasecmp(name
, "&include") == 0)
497 return include_config(val
, 1);
498 if (strcasecmp(name
, "&merge") == 0)
499 return include_config(val
, 0);
500 rprintf(FLOG
, "Unknown directive: %s.\n", name
);
504 static int Parse( FILE *InFile
,
505 BOOL (*sfunc
)(char *),
506 BOOL (*pfunc
)(char *, char *) )
507 /* ------------------------------------------------------------------------ **
508 * Scan & parse the input.
510 * Input: InFile - Input source.
511 * sfunc - Function to be called when a section name is scanned.
513 * pfunc - Function to be called when a parameter is scanned.
516 * Output: 1 if the file was successfully scanned, 2 if the file was
517 * scanned until a section header with no section function, else 0.
519 * Notes: The input can be viewed in terms of 'lines'. There are four
521 * Blank - May contain whitespace, otherwise empty.
522 * Comment - First non-whitespace character is a ';' or '#'.
523 * The remainder of the line is ignored.
524 * Section - First non-whitespace character is a '['.
525 * Parameter - The default case.
527 * ------------------------------------------------------------------------ **
532 c
= EatWhitespace( InFile
);
533 while( (EOF
!= c
) && (c
> 0) )
537 case '\n': /* Blank line. */
538 c
= EatWhitespace( InFile
);
541 case ';': /* Comment line. */
543 c
= EatComment( InFile
);
546 case '[': /* Section Header. */
549 if( !Section( InFile
, sfunc
) )
551 c
= EatWhitespace( InFile
);
554 case '\\': /* Bogus backslash. */
555 c
= EatWhitespace( InFile
);
558 case '&': /* Handle directives */
561 c
= Parameter( InFile
, parse_directives
, c
);
564 c
= EatWhitespace( InFile
);
567 default: /* Parameter line. */
568 if( !Parameter( InFile
, pfunc
, c
) )
570 c
= EatWhitespace( InFile
);
577 static FILE *OpenConfFile( char *FileName
)
578 /* ------------------------------------------------------------------------ **
579 * Open a config file.
581 * Input: FileName - The pathname of the config file to be opened.
583 * Output: A pointer of type (FILE *) to the opened file, or NULL if the
584 * file could not be opened.
586 * ------------------------------------------------------------------------ **
590 char *func
= "params.c:OpenConfFile() -";
592 if( NULL
== FileName
|| 0 == *FileName
)
594 rprintf(FLOG
, "%s No config filename specified.\n", func
);
598 OpenedFile
= fopen( FileName
, "r" );
599 if( NULL
== OpenedFile
)
601 rsyserr(FLOG
, errno
, "unable to open config file \"%s\"",
605 return( OpenedFile
);
608 int pm_process( char *FileName
,
609 BOOL (*sfunc
)(char *),
610 BOOL (*pfunc
)(char *, char *) )
611 /* ------------------------------------------------------------------------ **
612 * Process the named parameter file.
614 * Input: FileName - The pathname of the parameter file to be opened.
615 * sfunc - A pointer to a function that will be called when
616 * a section name is discovered.
617 * pfunc - A pointer to a function that will be called when
618 * a parameter name and value are discovered.
620 * Output: 1 if the file was successfully parsed, 2 if parsing ended at a
621 * section header w/o a section function, else 0.
623 * ------------------------------------------------------------------------ **
628 char *func
= "params.c:pm_process() -";
630 InFile
= OpenConfFile( FileName
); /* Open the config file. */
634 if( NULL
!= bufr
) /* If we already have a buffer */
635 result
= Parse( InFile
, sfunc
, pfunc
); /* (recursive call), then just */
638 else /* If we don't have a buffer */
639 { /* allocate one, then parse, */
640 bSize
= BUFR_INC
; /* then free. */
641 bufr
= new_array( char, bSize
);
644 rprintf(FLOG
, "%s memory allocation failure.\n", func
);
648 result
= Parse( InFile
, sfunc
, pfunc
);
656 if( !result
) /* Generic failure. */
658 rprintf(FLOG
, "%s Failed. Error returned from params.c:parse().\n", func
);
665 /* -------------------------------------------------------------------------- */