mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 00:37:00 +08:00
1430 lines
37 KiB
C
1430 lines
37 KiB
C
/**
|
|
* \file configfile.c
|
|
*
|
|
* Time-stamp: "2012-03-31 13:56:11 bkorb"
|
|
*
|
|
* configuration/rc/ini file handling.
|
|
*
|
|
* This file is part of AutoOpts, a companion to AutoGen.
|
|
* AutoOpts is free software.
|
|
* AutoOpts is Copyright (c) 1992-2012 by Bruce Korb - all rights reserved
|
|
*
|
|
* AutoOpts is available under any one of two licenses. The license
|
|
* in use must be one of these two and the choice is under the control
|
|
* of the user of the license.
|
|
*
|
|
* The GNU Lesser General Public License, version 3 or later
|
|
* See the files "COPYING.lgplv3" and "COPYING.gplv3"
|
|
*
|
|
* The Modified Berkeley Software Distribution License
|
|
* See the file "COPYING.mbsd"
|
|
*
|
|
* These files have the following md5sums:
|
|
*
|
|
* 43b91e8ca915626ed3818ffb1b71248b pkg/libopts/COPYING.gplv3
|
|
* 06a1a2e4760c90ea5e1dad8dfaac4d39 pkg/libopts/COPYING.lgplv3
|
|
* 66a5cedaf62c4b2637025f049f9b826f pkg/libopts/COPYING.mbsd
|
|
*/
|
|
|
|
/* = = = START-STATIC-FORWARD = = = */
|
|
static void
|
|
file_preset(tOptions * opts, char const * fname, int dir);
|
|
|
|
static char*
|
|
handle_comment(char* pzText);
|
|
|
|
static char *
|
|
handle_cfg(tOptions * pOpts, tOptState * pOS, char * pzText, int dir);
|
|
|
|
static char *
|
|
handle_directive(tOptions * pOpts, char * pzText);
|
|
|
|
static char *
|
|
aoflags_directive(tOptions * pOpts, char * pzText);
|
|
|
|
static char *
|
|
program_directive(tOptions * pOpts, char * pzText);
|
|
|
|
static char *
|
|
handle_section(tOptions * pOpts, char * pzText);
|
|
|
|
static int
|
|
parse_xml_encoding(char ** ppz);
|
|
|
|
static char *
|
|
trim_xml_text(char * intxt, char const * pznm, tOptionLoadMode mode);
|
|
|
|
static void
|
|
cook_xml_text(char * pzData);
|
|
|
|
static char *
|
|
handle_struct(tOptions * pOpts, tOptState * pOS, char * pzText, int dir);
|
|
|
|
static char*
|
|
parse_keyword(tOptions * pOpts, char * pzText, tOptionValue * pType);
|
|
|
|
static char*
|
|
parse_set_mem(tOptions * pOpts, char * pzText, tOptionValue * pType);
|
|
|
|
static char *
|
|
parse_value(char * pzText, tOptionValue * pType);
|
|
|
|
static char *
|
|
skip_unkn(char* pzText);
|
|
/* = = = END-STATIC-FORWARD = = = */
|
|
|
|
|
|
/*=export_func configFileLoad
|
|
*
|
|
* what: parse a configuration file
|
|
* arg: + char const* + pzFile + the file to load +
|
|
*
|
|
* ret_type: const tOptionValue*
|
|
* ret_desc: An allocated, compound value structure
|
|
*
|
|
* doc:
|
|
* This routine will load a named configuration file and parse the
|
|
* text as a hierarchically valued option. The option descriptor
|
|
* created from an option definition file is not used via this interface.
|
|
* The returned value is "named" with the input file name and is of
|
|
* type "@code{OPARG_TYPE_HIERARCHY}". It may be used in calls to
|
|
* @code{optionGetValue()}, @code{optionNextValue()} and
|
|
* @code{optionUnloadNested()}.
|
|
*
|
|
* err:
|
|
* If the file cannot be loaded or processed, @code{NULL} is returned and
|
|
* @var{errno} is set. It may be set by a call to either @code{open(2)}
|
|
* @code{mmap(2)} or other file system calls, or it may be:
|
|
* @itemize @bullet
|
|
* @item
|
|
* @code{ENOENT} - the file was not found.
|
|
* @item
|
|
* @code{ENOMSG} - the file was empty.
|
|
* @item
|
|
* @code{EINVAL} - the file contents are invalid -- not properly formed.
|
|
* @item
|
|
* @code{ENOMEM} - not enough memory to allocate the needed structures.
|
|
* @end itemize
|
|
=*/
|
|
const tOptionValue*
|
|
configFileLoad(char const* pzFile)
|
|
{
|
|
tmap_info_t cfgfile;
|
|
tOptionValue* pRes = NULL;
|
|
tOptionLoadMode save_mode = option_load_mode;
|
|
|
|
char* pzText =
|
|
text_mmap(pzFile, PROT_READ, MAP_PRIVATE, &cfgfile);
|
|
|
|
if (TEXT_MMAP_FAILED_ADDR(pzText))
|
|
return NULL; /* errno is set */
|
|
|
|
option_load_mode = OPTION_LOAD_COOKED;
|
|
pRes = optionLoadNested(pzText, pzFile, strlen(pzFile));
|
|
|
|
if (pRes == NULL) {
|
|
int err = errno;
|
|
text_munmap(&cfgfile);
|
|
errno = err;
|
|
} else
|
|
text_munmap(&cfgfile);
|
|
|
|
option_load_mode = save_mode;
|
|
return pRes;
|
|
}
|
|
|
|
|
|
/*=export_func optionFindValue
|
|
*
|
|
* what: find a hierarcicaly valued option instance
|
|
* arg: + const tOptDesc* + pOptDesc + an option with a nested arg type +
|
|
* arg: + char const* + name + name of value to find +
|
|
* arg: + char const* + value + the matching value +
|
|
*
|
|
* ret_type: const tOptionValue*
|
|
* ret_desc: a compound value structure
|
|
*
|
|
* doc:
|
|
* This routine will find an entry in a nested value option or configurable.
|
|
* It will search through the list and return a matching entry.
|
|
*
|
|
* err:
|
|
* The returned result is NULL and errno is set:
|
|
* @itemize @bullet
|
|
* @item
|
|
* @code{EINVAL} - the @code{pOptValue} does not point to a valid
|
|
* hierarchical option value.
|
|
* @item
|
|
* @code{ENOENT} - no entry matched the given name.
|
|
* @end itemize
|
|
=*/
|
|
const tOptionValue*
|
|
optionFindValue(const tOptDesc* pOptDesc, char const* pzName,
|
|
char const* pzVal)
|
|
{
|
|
const tOptionValue* pRes = NULL;
|
|
|
|
if ( (pOptDesc == NULL)
|
|
|| (OPTST_GET_ARGTYPE(pOptDesc->fOptState) != OPARG_TYPE_HIERARCHY)) {
|
|
errno = EINVAL;
|
|
}
|
|
|
|
else if (pOptDesc->optCookie == NULL) {
|
|
errno = ENOENT;
|
|
}
|
|
|
|
else do {
|
|
tArgList* pAL = pOptDesc->optCookie;
|
|
int ct = pAL->useCt;
|
|
void** ppOV = (void**)(pAL->apzArgs);
|
|
|
|
if (ct == 0) {
|
|
errno = ENOENT;
|
|
break;
|
|
}
|
|
|
|
if (pzName == NULL) {
|
|
pRes = (tOptionValue*)*ppOV;
|
|
break;
|
|
}
|
|
|
|
while (--ct >= 0) {
|
|
const tOptionValue* pOV = *(ppOV++);
|
|
const tOptionValue* pRV = optionGetValue(pOV, pzName);
|
|
|
|
if (pRV == NULL)
|
|
continue;
|
|
|
|
if (pzVal == NULL) {
|
|
pRes = pOV;
|
|
break;
|
|
}
|
|
}
|
|
if (pRes == NULL)
|
|
errno = ENOENT;
|
|
} while (false);
|
|
|
|
return pRes;
|
|
}
|
|
|
|
|
|
/*=export_func optionFindNextValue
|
|
*
|
|
* FIXME: the handling of 'pzName' and 'pzVal' is just wrong.
|
|
*
|
|
* what: find a hierarcicaly valued option instance
|
|
* arg: + const tOptDesc* + pOptDesc + an option with a nested arg type +
|
|
* arg: + const tOptionValue* + pPrevVal + the last entry +
|
|
* arg: + char const* + name + name of value to find +
|
|
* arg: + char const* + value + the matching value +
|
|
*
|
|
* ret_type: const tOptionValue*
|
|
* ret_desc: a compound value structure
|
|
*
|
|
* doc:
|
|
* This routine will find the next entry in a nested value option or
|
|
* configurable. It will search through the list and return the next entry
|
|
* that matches the criteria.
|
|
*
|
|
* err:
|
|
* The returned result is NULL and errno is set:
|
|
* @itemize @bullet
|
|
* @item
|
|
* @code{EINVAL} - the @code{pOptValue} does not point to a valid
|
|
* hierarchical option value.
|
|
* @item
|
|
* @code{ENOENT} - no entry matched the given name.
|
|
* @end itemize
|
|
=*/
|
|
tOptionValue const *
|
|
optionFindNextValue(const tOptDesc * pOptDesc, const tOptionValue * pPrevVal,
|
|
char const * pzName, char const * pzVal)
|
|
{
|
|
bool old_found = false;
|
|
tOptionValue* pRes = NULL;
|
|
|
|
(void)pzName;
|
|
(void)pzVal;
|
|
|
|
if ( (pOptDesc == NULL)
|
|
|| (OPTST_GET_ARGTYPE(pOptDesc->fOptState) != OPARG_TYPE_HIERARCHY)) {
|
|
errno = EINVAL;
|
|
}
|
|
|
|
else if (pOptDesc->optCookie == NULL) {
|
|
errno = ENOENT;
|
|
}
|
|
|
|
else do {
|
|
tArgList* pAL = pOptDesc->optCookie;
|
|
int ct = pAL->useCt;
|
|
void** ppOV = (void**)pAL->apzArgs;
|
|
|
|
while (--ct >= 0) {
|
|
tOptionValue* pOV = *(ppOV++);
|
|
if (old_found) {
|
|
pRes = pOV;
|
|
break;
|
|
}
|
|
if (pOV == pPrevVal)
|
|
old_found = true;
|
|
}
|
|
if (pRes == NULL)
|
|
errno = ENOENT;
|
|
} while (false);
|
|
|
|
return pRes;
|
|
}
|
|
|
|
|
|
/*=export_func optionGetValue
|
|
*
|
|
* what: get a specific value from a hierarcical list
|
|
* arg: + const tOptionValue* + pOptValue + a hierarchcal value +
|
|
* arg: + char const* + valueName + name of value to get +
|
|
*
|
|
* ret_type: const tOptionValue*
|
|
* ret_desc: a compound value structure
|
|
*
|
|
* doc:
|
|
* This routine will find an entry in a nested value option or configurable.
|
|
* If "valueName" is NULL, then the first entry is returned. Otherwise,
|
|
* the first entry with a name that exactly matches the argument will be
|
|
* returned. If there is no matching value, NULL is returned and errno is
|
|
* set to ENOENT. If the provided option value is not a hierarchical value,
|
|
* NULL is also returned and errno is set to EINVAL.
|
|
*
|
|
* err:
|
|
* The returned result is NULL and errno is set:
|
|
* @itemize @bullet
|
|
* @item
|
|
* @code{EINVAL} - the @code{pOptValue} does not point to a valid
|
|
* hierarchical option value.
|
|
* @item
|
|
* @code{ENOENT} - no entry matched the given name.
|
|
* @end itemize
|
|
=*/
|
|
const tOptionValue*
|
|
optionGetValue(tOptionValue const * pOld, char const * pzValName)
|
|
{
|
|
tArgList * pAL;
|
|
tOptionValue * pRes = NULL;
|
|
|
|
if ((pOld == NULL) || (pOld->valType != OPARG_TYPE_HIERARCHY)) {
|
|
errno = EINVAL;
|
|
return pRes;
|
|
}
|
|
pAL = pOld->v.nestVal;
|
|
|
|
if (pAL->useCt > 0) {
|
|
int ct = pAL->useCt;
|
|
void ** papOV = (void**)(pAL->apzArgs);
|
|
|
|
if (pzValName == NULL) {
|
|
pRes = (tOptionValue*)*papOV;
|
|
|
|
} else do {
|
|
tOptionValue * pOV = *(papOV++);
|
|
if (strcmp(pOV->pzName, pzValName) == 0) {
|
|
pRes = pOV;
|
|
break;
|
|
}
|
|
} while (--ct > 0);
|
|
}
|
|
if (pRes == NULL)
|
|
errno = ENOENT;
|
|
return pRes;
|
|
}
|
|
|
|
|
|
/*=export_func optionNextValue
|
|
*
|
|
* what: get the next value from a hierarchical list
|
|
* arg: + const tOptionValue* + pOptValue + a hierarchcal list value +
|
|
* arg: + const tOptionValue* + pOldValue + a value from this list +
|
|
*
|
|
* ret_type: const tOptionValue*
|
|
* ret_desc: a compound value structure
|
|
*
|
|
* doc:
|
|
* This routine will return the next entry after the entry passed in. At the
|
|
* end of the list, NULL will be returned. If the entry is not found on the
|
|
* list, NULL will be returned and "@var{errno}" will be set to EINVAL.
|
|
* The "@var{pOldValue}" must have been gotten from a prior call to this
|
|
* routine or to "@code{opitonGetValue()}".
|
|
*
|
|
* err:
|
|
* The returned result is NULL and errno is set:
|
|
* @itemize @bullet
|
|
* @item
|
|
* @code{EINVAL} - the @code{pOptValue} does not point to a valid
|
|
* hierarchical option value or @code{pOldValue} does not point to a
|
|
* member of that option value.
|
|
* @item
|
|
* @code{ENOENT} - the supplied @code{pOldValue} pointed to the last entry.
|
|
* @end itemize
|
|
=*/
|
|
tOptionValue const *
|
|
optionNextValue(tOptionValue const * pOVList,tOptionValue const * pOldOV )
|
|
{
|
|
tArgList* pAL;
|
|
tOptionValue* pRes = NULL;
|
|
int err = EINVAL;
|
|
|
|
if ((pOVList == NULL) || (pOVList->valType != OPARG_TYPE_HIERARCHY)) {
|
|
errno = EINVAL;
|
|
return NULL;
|
|
}
|
|
pAL = pOVList->v.nestVal;
|
|
{
|
|
int ct = pAL->useCt;
|
|
void** papNV = (void**)(pAL->apzArgs);
|
|
|
|
while (ct-- > 0) {
|
|
tOptionValue* pNV = *(papNV++);
|
|
if (pNV == pOldOV) {
|
|
if (ct == 0) {
|
|
err = ENOENT;
|
|
|
|
} else {
|
|
err = 0;
|
|
pRes = (tOptionValue*)*papNV;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (err != 0)
|
|
errno = err;
|
|
return pRes;
|
|
}
|
|
|
|
|
|
/**
|
|
* Load a file containing presetting information (a configuration file).
|
|
*/
|
|
static void
|
|
file_preset(tOptions * opts, char const * fname, int dir)
|
|
{
|
|
tmap_info_t cfgfile;
|
|
tOptState optst = OPTSTATE_INITIALIZER(PRESET);
|
|
unsigned long st_flags = optst.flags;
|
|
char * ftext =
|
|
text_mmap(fname, PROT_READ|PROT_WRITE, MAP_PRIVATE, &cfgfile);
|
|
|
|
if (TEXT_MMAP_FAILED_ADDR(ftext))
|
|
return;
|
|
|
|
if (dir == DIRECTION_CALLED) {
|
|
st_flags = OPTST_DEFINED;
|
|
dir = DIRECTION_PROCESS;
|
|
}
|
|
|
|
/*
|
|
* IF this is called via "optionProcess", then we are presetting.
|
|
* This is the default and the PRESETTING bit will be set.
|
|
* If this is called via "optionFileLoad", then the bit is not set
|
|
* and we consider stuff set herein to be "set" by the client program.
|
|
*/
|
|
if ((opts->fOptSet & OPTPROC_PRESETTING) == 0)
|
|
st_flags = OPTST_SET;
|
|
|
|
do {
|
|
optst.flags = st_flags;
|
|
ftext = SPN_WHITESPACE_CHARS(ftext);
|
|
|
|
if (IS_VAR_FIRST_CHAR(*ftext)) {
|
|
ftext = handle_cfg(opts, &optst, ftext, dir);
|
|
|
|
} else switch (*ftext) {
|
|
case '<':
|
|
if (IS_VAR_FIRST_CHAR(ftext[1]))
|
|
ftext = handle_struct(opts, &optst, ftext, dir);
|
|
|
|
else switch (ftext[1]) {
|
|
case '?':
|
|
ftext = handle_directive(opts, ftext);
|
|
break;
|
|
|
|
case '!':
|
|
ftext = handle_comment(ftext);
|
|
break;
|
|
|
|
case '/':
|
|
ftext = strchr(ftext + 2, '>');
|
|
if (ftext++ != NULL)
|
|
break;
|
|
|
|
default:
|
|
goto all_done;
|
|
}
|
|
break;
|
|
|
|
case '[':
|
|
ftext = handle_section(opts, ftext);
|
|
break;
|
|
|
|
case '#':
|
|
ftext = strchr(ftext + 1, NL);
|
|
break;
|
|
|
|
default:
|
|
goto all_done; /* invalid format */
|
|
}
|
|
} while (ftext != NULL);
|
|
|
|
all_done:
|
|
text_munmap(&cfgfile);
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to a "<!" sequence.
|
|
* Theoretically, we should ensure that it begins with "<!--",
|
|
* but actually I don't care that much. It ends with "-->".
|
|
*/
|
|
static char*
|
|
handle_comment(char* pzText)
|
|
{
|
|
char* pz = strstr(pzText, "-->");
|
|
if (pz != NULL)
|
|
pz += 3;
|
|
return pz;
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to the start of some value name.
|
|
* The end of the entry is the end of the line that is not preceded by
|
|
* a backslash escape character. The string value is always processed
|
|
* in "cooked" mode.
|
|
*/
|
|
static char *
|
|
handle_cfg(tOptions * pOpts, tOptState * pOS, char * pzText, int dir)
|
|
{
|
|
char* pzName = pzText++;
|
|
char* pzEnd = strchr(pzText, NL);
|
|
|
|
if (pzEnd == NULL)
|
|
return pzText + strlen(pzText);
|
|
|
|
pzText = SPN_VALUE_NAME_CHARS(pzText);
|
|
pzText = SPN_WHITESPACE_CHARS(pzText);
|
|
if (pzText > pzEnd) {
|
|
name_only:
|
|
*pzEnd++ = NUL;
|
|
loadOptionLine(pOpts, pOS, pzName, dir, OPTION_LOAD_UNCOOKED);
|
|
return pzEnd;
|
|
}
|
|
|
|
/*
|
|
* Either the first character after the name is a ':' or '=',
|
|
* or else we must have skipped over white space. Anything else
|
|
* is an invalid format and we give up parsing the text.
|
|
*/
|
|
if ((*pzText == '=') || (*pzText == ':')) {
|
|
pzText = SPN_WHITESPACE_CHARS(pzText+1);
|
|
if (pzText > pzEnd)
|
|
goto name_only;
|
|
} else if (! IS_WHITESPACE_CHAR(pzText[-1]))
|
|
return NULL;
|
|
|
|
/*
|
|
* IF the value is continued, remove the backslash escape and push "pzEnd"
|
|
* on to a newline *not* preceded by a backslash.
|
|
*/
|
|
if (pzEnd[-1] == '\\') {
|
|
char* pcD = pzEnd-1;
|
|
char* pcS = pzEnd;
|
|
|
|
for (;;) {
|
|
char ch = *(pcS++);
|
|
switch (ch) {
|
|
case NUL:
|
|
pcS = NULL;
|
|
|
|
case NL:
|
|
*pcD = NUL;
|
|
pzEnd = pcS;
|
|
goto copy_done;
|
|
|
|
case '\\':
|
|
if (*pcS == NL) {
|
|
ch = *(pcS++);
|
|
}
|
|
/* FALLTHROUGH */
|
|
default:
|
|
*(pcD++) = ch;
|
|
}
|
|
} copy_done:;
|
|
|
|
} else {
|
|
/*
|
|
* The newline was not preceded by a backslash. NUL it out
|
|
*/
|
|
*(pzEnd++) = NUL;
|
|
}
|
|
|
|
/*
|
|
* "pzName" points to what looks like text for one option/configurable.
|
|
* It is NUL terminated. Process it.
|
|
*/
|
|
loadOptionLine(pOpts, pOS, pzName, dir, OPTION_LOAD_UNCOOKED);
|
|
|
|
return pzEnd;
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to a "<?" sequence.
|
|
* We handle "<?program" and "<?auto-options" directives.
|
|
* All others are treated as comments.
|
|
*/
|
|
static char *
|
|
handle_directive(tOptions * pOpts, char * pzText)
|
|
{
|
|
# define DIRECTIVE_TABLE \
|
|
_dt_(zCfgProg, program_directive) \
|
|
_dt_(zCfgAO_Flags, aoflags_directive)
|
|
|
|
typedef char * (directive_func_t)(tOptions *, char *);
|
|
# define _dt_(_s, _fn) _fn,
|
|
static directive_func_t * dir_disp[] = {
|
|
DIRECTIVE_TABLE
|
|
};
|
|
# undef _dt_
|
|
|
|
# define _dt_(_s, _fn) 1 +
|
|
static int const dir_ct = DIRECTIVE_TABLE 0;
|
|
static char const * dir_names[DIRECTIVE_TABLE 0];
|
|
# undef _dt_
|
|
|
|
int ix;
|
|
|
|
if (dir_names[0] == NULL) {
|
|
ix = 0;
|
|
# define _dt_(_s, _fn) dir_names[ix++] = _s;
|
|
DIRECTIVE_TABLE;
|
|
# undef _dt_
|
|
}
|
|
|
|
for (ix = 0; ix < dir_ct; ix++) {
|
|
size_t len = strlen(dir_names[ix]);
|
|
if ( (strncmp(pzText + 2, dir_names[ix], len) == 0)
|
|
&& (! IS_VALUE_NAME_CHAR(pzText[len+2])) )
|
|
return dir_disp[ix](pOpts, pzText + len + 2);
|
|
}
|
|
|
|
/*
|
|
* We don't know what this is. Skip it.
|
|
*/
|
|
pzText = strchr(pzText+2, '>');
|
|
if (pzText != NULL)
|
|
pzText++;
|
|
return pzText;
|
|
}
|
|
|
|
/**
|
|
* handle AutoOpts mode flags
|
|
*/
|
|
static char *
|
|
aoflags_directive(tOptions * pOpts, char * pzText)
|
|
{
|
|
char * pz;
|
|
|
|
pz = SPN_WHITESPACE_CHARS(pzText+1);
|
|
pzText = strchr(pz, '>');
|
|
if (pzText != NULL) {
|
|
|
|
size_t len = pzText - pz;
|
|
char * ftxt = AGALOC(len + 1, "aoflags");
|
|
|
|
memcpy(ftxt, pz, len);
|
|
ftxt[len] = NUL;
|
|
set_usage_flags(pOpts, ftxt);
|
|
AGFREE(ftxt);
|
|
|
|
pzText++;
|
|
}
|
|
|
|
return pzText;
|
|
}
|
|
|
|
/**
|
|
* handle program segmentation of config file.
|
|
*/
|
|
static char *
|
|
program_directive(tOptions * pOpts, char * pzText)
|
|
{
|
|
static char const ttlfmt[] = "<?";
|
|
size_t ttl_len = sizeof(ttlfmt) + strlen(zCfgProg);
|
|
char * ttl = AGALOC(ttl_len, "prog title");
|
|
size_t name_len = strlen(pOpts->pzProgName);
|
|
|
|
memcpy(ttl, ttlfmt, sizeof(ttlfmt) - 1);
|
|
memcpy(ttl + sizeof(ttlfmt) - 1, zCfgProg, ttl_len - (sizeof(ttlfmt) - 1));
|
|
|
|
do {
|
|
pzText = SPN_WHITESPACE_CHARS(pzText+1);
|
|
|
|
if ( (strneqvcmp(pzText, pOpts->pzProgName, (int)name_len) == 0)
|
|
&& (IS_END_XML_TOKEN_CHAR(pzText[name_len])) ) {
|
|
pzText += name_len;
|
|
break;
|
|
}
|
|
|
|
pzText = strstr(pzText, ttl);
|
|
} while (pzText != NULL);
|
|
|
|
AGFREE(ttl);
|
|
if (pzText != NULL)
|
|
for (;;) {
|
|
if (*pzText == NUL) {
|
|
pzText = NULL;
|
|
break;
|
|
}
|
|
if (*(pzText++) == '>')
|
|
break;
|
|
}
|
|
|
|
return pzText;
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to a '[' character.
|
|
* The "traditional" [PROG_NAME] segmentation of the config file.
|
|
* Do not ever mix with the "<?program prog-name>" variation.
|
|
*/
|
|
static char *
|
|
handle_section(tOptions * pOpts, char * pzText)
|
|
{
|
|
size_t len = strlen(pOpts->pzPROGNAME);
|
|
if ( (strncmp(pzText+1, pOpts->pzPROGNAME, len) == 0)
|
|
&& (pzText[len+1] == ']'))
|
|
return strchr(pzText + len + 2, NL);
|
|
|
|
if (len > 16)
|
|
return NULL;
|
|
|
|
{
|
|
char z[24];
|
|
sprintf(z, "[%s]", pOpts->pzPROGNAME);
|
|
pzText = strstr(pzText, z);
|
|
}
|
|
|
|
if (pzText != NULL)
|
|
pzText = strchr(pzText, NL);
|
|
return pzText;
|
|
}
|
|
|
|
/**
|
|
* parse XML encodings
|
|
*/
|
|
static int
|
|
parse_xml_encoding(char ** ppz)
|
|
{
|
|
# define XMLTABLE \
|
|
_xmlNm_(amp, '&') \
|
|
_xmlNm_(lt, '<') \
|
|
_xmlNm_(gt, '>') \
|
|
_xmlNm_(ff, '\f') \
|
|
_xmlNm_(ht, '\t') \
|
|
_xmlNm_(cr, '\r') \
|
|
_xmlNm_(vt, '\v') \
|
|
_xmlNm_(bel, '\a') \
|
|
_xmlNm_(nl, NL) \
|
|
_xmlNm_(space, ' ') \
|
|
_xmlNm_(quot, '"') \
|
|
_xmlNm_(apos, '\'')
|
|
|
|
static struct {
|
|
char const * const nm_str;
|
|
unsigned short nm_len;
|
|
short nm_val;
|
|
} const xml_names[] = {
|
|
# define _xmlNm_(_n, _v) { #_n ";", sizeof(#_n), _v },
|
|
XMLTABLE
|
|
# undef _xmlNm_
|
|
# undef XMLTABLE
|
|
};
|
|
|
|
static int const nm_ct = sizeof(xml_names) / sizeof(xml_names[0]);
|
|
int base = 10;
|
|
|
|
char * pz = *ppz;
|
|
|
|
if (*pz == '#') {
|
|
pz++;
|
|
goto parse_number;
|
|
}
|
|
|
|
if (IS_DEC_DIGIT_CHAR(*pz)) {
|
|
unsigned long v;
|
|
|
|
parse_number:
|
|
switch (*pz) {
|
|
case 'x': case 'X':
|
|
/*
|
|
* Some forms specify hex with: &#xNN;
|
|
*/
|
|
base = 16;
|
|
pz++;
|
|
break;
|
|
|
|
case '0':
|
|
/*
|
|
*  is hex and  is decimal. Cool.
|
|
* Ya gotta love it.
|
|
*/
|
|
if (pz[1] == '0')
|
|
base = 16;
|
|
break;
|
|
}
|
|
|
|
v = strtoul(pz, &pz, base);
|
|
if ((*pz != ';') || (v > 0x7F))
|
|
return NUL;
|
|
*ppz = pz + 1;
|
|
return (int)v;
|
|
}
|
|
|
|
{
|
|
int ix = 0;
|
|
do {
|
|
if (strncmp(pz, xml_names[ix].nm_str, xml_names[ix].nm_len)
|
|
== 0) {
|
|
*ppz = pz + xml_names[ix].nm_len;
|
|
return xml_names[ix].nm_val;
|
|
}
|
|
} while (++ix < nm_ct);
|
|
}
|
|
|
|
return NUL;
|
|
}
|
|
|
|
/**
|
|
* Find the end marker for the named section of XML.
|
|
* Trim that text there, trimming trailing white space for all modes
|
|
* except for OPTION_LOAD_UNCOOKED.
|
|
*/
|
|
static char *
|
|
trim_xml_text(char * intxt, char const * pznm, tOptionLoadMode mode)
|
|
{
|
|
static char const fmt[] = "</%s>";
|
|
size_t len = strlen(pznm) + sizeof(fmt) - 2 /* for %s */;
|
|
char * etext;
|
|
|
|
{
|
|
char z[64], *pz = z;
|
|
if (len >= sizeof(z))
|
|
pz = AGALOC(len, "scan name");
|
|
|
|
len = sprintf(pz, fmt, pznm);
|
|
*intxt = ' ';
|
|
etext = strstr(intxt, pz);
|
|
if (pz != z) AGFREE(pz);
|
|
}
|
|
|
|
if (etext == NULL)
|
|
return etext;
|
|
|
|
{
|
|
char * result = etext + len;
|
|
|
|
if (mode != OPTION_LOAD_UNCOOKED)
|
|
etext = SPN_WHITESPACE_BACK(intxt, etext);
|
|
|
|
*etext = NUL;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
/**
|
|
*/
|
|
static void
|
|
cook_xml_text(char * pzData)
|
|
{
|
|
char * pzs = pzData;
|
|
char * pzd = pzData;
|
|
char bf[4];
|
|
bf[2] = NUL;
|
|
|
|
for (;;) {
|
|
int ch = ((int)*(pzs++)) & 0xFF;
|
|
switch (ch) {
|
|
case NUL:
|
|
*pzd = NUL;
|
|
return;
|
|
|
|
case '&':
|
|
ch = parse_xml_encoding(&pzs);
|
|
*(pzd++) = (char)ch;
|
|
if (ch == NUL)
|
|
return;
|
|
break;
|
|
|
|
case '%':
|
|
bf[0] = *(pzs++);
|
|
bf[1] = *(pzs++);
|
|
if ((bf[0] == NUL) || (bf[1] == NUL)) {
|
|
*pzd = NUL;
|
|
return;
|
|
}
|
|
|
|
ch = strtoul(bf, NULL, 16);
|
|
/* FALLTHROUGH */
|
|
|
|
default:
|
|
*(pzd++) = (char)ch;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* "pzText" points to a '<' character, followed by an alpha.
|
|
* The end of the entry is either the "/>" following the name, or else a
|
|
* "</name>" string.
|
|
*/
|
|
static char *
|
|
handle_struct(tOptions * pOpts, tOptState * pOS, char * pzText, int dir)
|
|
{
|
|
tOptionLoadMode mode = option_load_mode;
|
|
tOptionValue valu;
|
|
|
|
char* pzName = ++pzText;
|
|
char* pzData;
|
|
char* pcNulPoint;
|
|
|
|
pzText = SPN_VALUE_NAME_CHARS(pzText);
|
|
pcNulPoint = pzText;
|
|
valu.valType = OPARG_TYPE_STRING;
|
|
|
|
switch (*pzText) {
|
|
case ' ':
|
|
case '\t':
|
|
pzText = parse_attrs(pOpts, pzText, &mode, &valu);
|
|
if (*pzText == '>')
|
|
break;
|
|
if (*pzText != '/')
|
|
return NULL;
|
|
/* FALLTHROUGH */
|
|
|
|
case '/':
|
|
if (pzText[1] != '>')
|
|
return NULL;
|
|
*pzText = NUL;
|
|
pzText += 2;
|
|
loadOptionLine(pOpts, pOS, pzName, dir, mode);
|
|
return pzText;
|
|
|
|
case '>':
|
|
break;
|
|
|
|
default:
|
|
pzText = strchr(pzText, '>');
|
|
if (pzText != NULL)
|
|
pzText++;
|
|
return pzText;
|
|
}
|
|
|
|
/*
|
|
* If we are here, we have a value. "pzText" points to a closing angle
|
|
* bracket. Separate the name from the value for a moment.
|
|
*/
|
|
*pcNulPoint = NUL;
|
|
pzData = ++pzText;
|
|
pzText = trim_xml_text(pzText, pzName, mode);
|
|
if (pzText == NULL)
|
|
return pzText;
|
|
|
|
/*
|
|
* Rejoin the name and value for parsing by "loadOptionLine()".
|
|
* Erase any attributes parsed by "parse_attrs()".
|
|
*/
|
|
memset(pcNulPoint, ' ', pzData - pcNulPoint);
|
|
|
|
/*
|
|
* If we are getting a "string" value that is to be cooked,
|
|
* then process the XML-ish &xx; XML-ish and %XX hex characters.
|
|
*/
|
|
if ( (valu.valType == OPARG_TYPE_STRING)
|
|
&& (mode == OPTION_LOAD_COOKED))
|
|
cook_xml_text(pzData);
|
|
|
|
/*
|
|
* "pzName" points to what looks like text for one option/configurable.
|
|
* It is NUL terminated. Process it.
|
|
*/
|
|
loadOptionLine(pOpts, pOS, pzName, dir, mode);
|
|
|
|
return pzText;
|
|
}
|
|
|
|
|
|
/**
|
|
* Load a configuration file. This may be invoked either from
|
|
* scanning the "homerc" list, or from a specific file request.
|
|
* (see "optionFileLoad()", the implementation for --load-opts)
|
|
*/
|
|
LOCAL void
|
|
intern_file_load(tOptions* pOpts)
|
|
{
|
|
uint32_t svfl;
|
|
int idx;
|
|
int inc;
|
|
char zFileName[ AG_PATH_MAX+1 ];
|
|
|
|
if (pOpts->papzHomeList == NULL)
|
|
return;
|
|
|
|
svfl = pOpts->fOptSet;
|
|
inc = DIRECTION_PRESET;
|
|
|
|
/*
|
|
* Never stop on errors in config files.
|
|
*/
|
|
pOpts->fOptSet &= ~OPTPROC_ERRSTOP;
|
|
|
|
/*
|
|
* Find the last RC entry (highest priority entry)
|
|
*/
|
|
for (idx = 0; pOpts->papzHomeList[ idx+1 ] != NULL; ++idx) ;
|
|
|
|
/*
|
|
* For every path in the home list, ... *TWICE* We start at the last
|
|
* (highest priority) entry, work our way down to the lowest priority,
|
|
* handling the immediate options.
|
|
* Then we go back up, doing the normal options.
|
|
*/
|
|
for (;;) {
|
|
struct stat StatBuf;
|
|
cch_t* pzPath;
|
|
|
|
/*
|
|
* IF we've reached the bottom end, change direction
|
|
*/
|
|
if (idx < 0) {
|
|
inc = DIRECTION_PROCESS;
|
|
idx = 0;
|
|
}
|
|
|
|
pzPath = pOpts->papzHomeList[ idx ];
|
|
|
|
/*
|
|
* IF we've reached the top end, bail out
|
|
*/
|
|
if (pzPath == NULL)
|
|
break;
|
|
|
|
idx += inc;
|
|
|
|
if (! optionMakePath(zFileName, (int)sizeof(zFileName),
|
|
pzPath, pOpts->pzProgPath))
|
|
continue;
|
|
|
|
/*
|
|
* IF the file name we constructed is a directory,
|
|
* THEN append the Resource Configuration file name
|
|
* ELSE we must have the complete file name
|
|
*/
|
|
if (stat(zFileName, &StatBuf) != 0)
|
|
continue; /* bogus name - skip the home list entry */
|
|
|
|
if (S_ISDIR(StatBuf.st_mode)) {
|
|
size_t len = strlen(zFileName);
|
|
size_t nln = strlen(pOpts->pzRcName) + 1;
|
|
char * pz = zFileName + len;
|
|
|
|
if (len + 1 + nln >= sizeof(zFileName))
|
|
continue;
|
|
|
|
if (pz[-1] != DIRCH)
|
|
*(pz++) = DIRCH;
|
|
memcpy(pz, pOpts->pzRcName, nln);
|
|
}
|
|
|
|
file_preset(pOpts, zFileName, inc);
|
|
|
|
/*
|
|
* IF we are now to skip config files AND we are presetting,
|
|
* THEN change direction. We must go the other way.
|
|
*/
|
|
{
|
|
tOptDesc * pOD = pOpts->pOptDesc + pOpts->specOptIdx.save_opts+1;
|
|
if (DISABLED_OPT(pOD) && PRESETTING(inc)) {
|
|
idx -= inc; /* go back and reprocess current file */
|
|
inc = DIRECTION_PROCESS;
|
|
}
|
|
}
|
|
} /* twice for every path in the home list, ... */
|
|
|
|
pOpts->fOptSet = svfl;
|
|
}
|
|
|
|
|
|
/*=export_func optionFileLoad
|
|
*
|
|
* what: Load the locatable config files, in order
|
|
*
|
|
* arg: + tOptions* + pOpts + program options descriptor +
|
|
* arg: + char const* + pzProg + program name +
|
|
*
|
|
* ret_type: int
|
|
* ret_desc: 0 -> SUCCESS, -1 -> FAILURE
|
|
*
|
|
* doc:
|
|
*
|
|
* This function looks in all the specified directories for a configuration
|
|
* file ("rc" file or "ini" file) and processes any found twice. The first
|
|
* time through, they are processed in reverse order (last file first). At
|
|
* that time, only "immediate action" configurables are processed. For
|
|
* example, if the last named file specifies not processing any more
|
|
* configuration files, then no more configuration files will be processed.
|
|
* Such an option in the @strong{first} named directory will have no effect.
|
|
*
|
|
* Once the immediate action configurables have been handled, then the
|
|
* directories are handled in normal, forward order. In that way, later
|
|
* config files can override the settings of earlier config files.
|
|
*
|
|
* See the AutoOpts documentation for a thorough discussion of the
|
|
* config file format.
|
|
*
|
|
* Configuration files not found or not decipherable are simply ignored.
|
|
*
|
|
* err: Returns the value, "-1" if the program options descriptor
|
|
* is out of date or indecipherable. Otherwise, the value "0" will
|
|
* always be returned.
|
|
=*/
|
|
int
|
|
optionFileLoad(tOptions * pOpts, char const * pzProgram)
|
|
{
|
|
if (! SUCCESSFUL(validate_struct(pOpts, pzProgram)))
|
|
return -1;
|
|
|
|
{
|
|
char const ** pp =
|
|
(char const **)(void *)&(pOpts->pzProgName);
|
|
*pp = pzProgram;
|
|
}
|
|
|
|
intern_file_load(pOpts);
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*=export_func optionLoadOpt
|
|
* private:
|
|
*
|
|
* what: Load an option rc/ini file
|
|
* arg: + tOptions* + pOpts + program options descriptor +
|
|
* arg: + tOptDesc* + pOptDesc + the descriptor for this arg +
|
|
*
|
|
* doc:
|
|
* Processes the options found in the file named with
|
|
* pOptDesc->optArg.argString.
|
|
=*/
|
|
void
|
|
optionLoadOpt(tOptions * pOpts, tOptDesc * pOptDesc)
|
|
{
|
|
struct stat sb;
|
|
|
|
/*
|
|
* IF the option is not being disabled, THEN load the file. There must
|
|
* be a file. (If it is being disabled, then the disablement processing
|
|
* already took place. It must be done to suppress preloading of ini/rc
|
|
* files.)
|
|
*/
|
|
if ( DISABLED_OPT(pOptDesc)
|
|
|| ((pOptDesc->fOptState & OPTST_RESET) != 0))
|
|
return;
|
|
|
|
if (stat(pOptDesc->optArg.argString, &sb) != 0) {
|
|
if ((pOpts->fOptSet & OPTPROC_ERRSTOP) == 0)
|
|
return;
|
|
|
|
fprintf(stderr, zFSErrOptLoad, errno, strerror(errno),
|
|
pOptDesc->optArg.argString);
|
|
exit(EX_NOINPUT);
|
|
/* NOT REACHED */
|
|
}
|
|
|
|
if (! S_ISREG(sb.st_mode)) {
|
|
if ((pOpts->fOptSet & OPTPROC_ERRSTOP) == 0)
|
|
return;
|
|
|
|
fprintf(stderr, zNotFile, pOptDesc->optArg.argString);
|
|
exit(EX_NOINPUT);
|
|
/* NOT REACHED */
|
|
}
|
|
|
|
file_preset(pOpts, pOptDesc->optArg.argString, DIRECTION_CALLED);
|
|
}
|
|
|
|
|
|
/**
|
|
* Parse the various attributes of an XML-styled config file entry
|
|
*/
|
|
LOCAL char*
|
|
parse_attrs(tOptions * pOpts, char * pzText, tOptionLoadMode * pMode,
|
|
tOptionValue * pType)
|
|
{
|
|
size_t len;
|
|
|
|
do {
|
|
if (! IS_WHITESPACE_CHAR(*pzText))
|
|
switch (*pzText) {
|
|
case '/': pType->valType = OPARG_TYPE_NONE;
|
|
case '>': return pzText;
|
|
|
|
default:
|
|
case NUL: return NULL;
|
|
}
|
|
|
|
pzText = SPN_WHITESPACE_CHARS(pzText+1);
|
|
len = SPN_LOWER_CASE_CHARS(pzText) - pzText;
|
|
|
|
switch (find_xat_attribute_id(pzText, len)) {
|
|
case XAT_KWD_TYPE:
|
|
pzText = parse_value(pzText+len, pType);
|
|
break;
|
|
|
|
case XAT_KWD_WORDS:
|
|
pzText = parse_keyword(pOpts, pzText+len, pType);
|
|
break;
|
|
|
|
case XAT_KWD_MEMBERS:
|
|
pzText = parse_set_mem(pOpts, pzText+len, pType);
|
|
break;
|
|
|
|
case XAT_KWD_COOKED:
|
|
pzText += len;
|
|
if (! IS_END_XML_TOKEN_CHAR(*pzText))
|
|
goto invalid_kwd;
|
|
|
|
*pMode = OPTION_LOAD_COOKED;
|
|
break;
|
|
|
|
case XAT_KWD_UNCOOKED:
|
|
pzText += len;
|
|
if (! IS_END_XML_TOKEN_CHAR(*pzText))
|
|
goto invalid_kwd;
|
|
|
|
*pMode = OPTION_LOAD_UNCOOKED;
|
|
break;
|
|
|
|
case XAT_KWD_KEEP:
|
|
pzText += len;
|
|
if (! IS_END_XML_TOKEN_CHAR(*pzText))
|
|
goto invalid_kwd;
|
|
|
|
*pMode = OPTION_LOAD_KEEP;
|
|
break;
|
|
|
|
default:
|
|
case XAT_KWD_INVALID:
|
|
invalid_kwd:
|
|
pType->valType = OPARG_TYPE_NONE;
|
|
return skip_unkn(pzText);
|
|
}
|
|
} while (pzText != NULL);
|
|
|
|
return pzText;
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to the character after "words=".
|
|
* What should follow is a name of a keyword (enumeration) list.
|
|
*/
|
|
static char*
|
|
parse_keyword(tOptions * pOpts, char * pzText, tOptionValue * pType)
|
|
{
|
|
(void)pOpts;
|
|
(void)pType;
|
|
|
|
return skip_unkn(pzText);
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to the character after "members="
|
|
* What should follow is a name of a "set membership".
|
|
* A collection of bit flags.
|
|
*/
|
|
static char*
|
|
parse_set_mem(tOptions * pOpts, char * pzText, tOptionValue * pType)
|
|
{
|
|
(void)pOpts;
|
|
(void)pType;
|
|
|
|
return skip_unkn(pzText);
|
|
}
|
|
|
|
|
|
/**
|
|
* "pzText" points to the character after "type="
|
|
*/
|
|
static char *
|
|
parse_value(char * pzText, tOptionValue * pType)
|
|
{
|
|
size_t len = 0;
|
|
|
|
if (*(pzText++) != '=')
|
|
goto woops;
|
|
|
|
len = SPN_OPTION_NAME_CHARS(pzText) - pzText;
|
|
|
|
if ((len == 0) || (! IS_END_XML_TOKEN_CHAR(pzText[len]))) {
|
|
woops:
|
|
pType->valType = OPARG_TYPE_NONE;
|
|
return skip_unkn(pzText + len);
|
|
}
|
|
|
|
switch (find_value_type_id(pzText, len)) {
|
|
default:
|
|
case VTP_KWD_INVALID: goto woops;
|
|
|
|
case VTP_KWD_STRING:
|
|
pType->valType = OPARG_TYPE_STRING;
|
|
break;
|
|
|
|
case VTP_KWD_INTEGER:
|
|
pType->valType = OPARG_TYPE_NUMERIC;
|
|
break;
|
|
|
|
case VTP_KWD_BOOL:
|
|
case VTP_KWD_BOOLEAN:
|
|
pType->valType = OPARG_TYPE_BOOLEAN;
|
|
break;
|
|
|
|
case VTP_KWD_KEYWORD:
|
|
pType->valType = OPARG_TYPE_ENUMERATION;
|
|
break;
|
|
|
|
case VTP_KWD_SET:
|
|
case VTP_KWD_SET_MEMBERSHIP:
|
|
pType->valType = OPARG_TYPE_MEMBERSHIP;
|
|
break;
|
|
|
|
case VTP_KWD_NESTED:
|
|
case VTP_KWD_HIERARCHY:
|
|
pType->valType = OPARG_TYPE_HIERARCHY;
|
|
}
|
|
|
|
return pzText + len;
|
|
}
|
|
|
|
|
|
/**
|
|
* Skip over some unknown attribute
|
|
*/
|
|
static char *
|
|
skip_unkn(char* pzText)
|
|
{
|
|
for (;; pzText++) {
|
|
if (IS_END_XML_TOKEN_CHAR(*pzText)) return pzText;
|
|
if (*pzText == NUL) return NULL;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Make sure the option descriptor is there and that we understand it.
|
|
* This should be called from any user entry point where one needs to
|
|
* worry about validity. (Some entry points are free to assume that
|
|
* the call is not the first to the library and, thus, that this has
|
|
* already been called.)
|
|
*
|
|
* Upon successful completion, pzProgName and pzProgPath are set.
|
|
*
|
|
* @param pOpts program options descriptor
|
|
* @param pzProgram name of program, from argv[]
|
|
* @returns SUCCESS or FAILURE
|
|
*/
|
|
LOCAL tSuccess
|
|
validate_struct(tOptions * pOpts, char const * pzProgram)
|
|
{
|
|
if (pOpts == NULL) {
|
|
fputs(zAO_Bad, stderr);
|
|
return FAILURE;
|
|
}
|
|
|
|
/*
|
|
* IF the client has enabled translation and the translation procedure
|
|
* is available, then go do it.
|
|
*/
|
|
if ( ((pOpts->fOptSet & OPTPROC_TRANSLATE) != 0)
|
|
&& (pOpts->pTransProc != NULL) ) {
|
|
/*
|
|
* If option names are not to be translated at all, then do not do
|
|
* it for configuration parsing either. (That is the bit that really
|
|
* gets tested anyway.)
|
|
*/
|
|
if ((pOpts->fOptSet & OPTPROC_NO_XLAT_MASK) == OPTPROC_NXLAT_OPT)
|
|
pOpts->fOptSet |= OPTPROC_NXLAT_OPT_CFG;
|
|
(*pOpts->pTransProc)();
|
|
pOpts->fOptSet &= ~OPTPROC_TRANSLATE;
|
|
}
|
|
|
|
/*
|
|
* IF the struct version is not the current, and also
|
|
* either too large (?!) or too small,
|
|
* THEN emit error message and fail-exit
|
|
*/
|
|
if ( ( pOpts->structVersion != OPTIONS_STRUCT_VERSION )
|
|
&& ( (pOpts->structVersion > OPTIONS_STRUCT_VERSION )
|
|
|| (pOpts->structVersion < OPTIONS_MINIMUM_VERSION )
|
|
) ) {
|
|
static char const aover[] =
|
|
STR(AO_CURRENT)":"STR(AO_REVISION)":"STR(AO_AGE)"\n";
|
|
|
|
fprintf(stderr, zAO_Err, pzProgram, NUM_TO_VER(pOpts->structVersion));
|
|
if (pOpts->structVersion > OPTIONS_STRUCT_VERSION )
|
|
fputs(zAO_Big, stderr);
|
|
else
|
|
fputs(zAO_Sml, stderr);
|
|
|
|
fwrite(aover, sizeof(aover) - 1, 1, stderr);
|
|
return FAILURE;
|
|
}
|
|
|
|
/*
|
|
* If the program name hasn't been set, then set the name and the path
|
|
* and the set of equivalent characters.
|
|
*/
|
|
if (pOpts->pzProgName == NULL) {
|
|
char const * pz = strrchr(pzProgram, DIRCH);
|
|
char const ** pp =
|
|
(char const **)(void **)&(pOpts->pzProgName);
|
|
|
|
if (pz != NULL) {
|
|
*pp = pz+1;
|
|
} else {
|
|
*pp = pzProgram;
|
|
pz = pathfind(getenv("PATH"), (char *)pzProgram, "rx");
|
|
if (pz != NULL)
|
|
pzProgram = (void *)pz;
|
|
}
|
|
|
|
pp = (char const **)(void **)&(pOpts->pzProgPath);
|
|
*pp = pzProgram;
|
|
|
|
/*
|
|
* when comparing long names, these are equivalent
|
|
*/
|
|
strequate(zSepChars);
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
|
|
/**
|
|
* Local Variables:
|
|
* mode: C
|
|
* c-file-style: "stroustrup"
|
|
* indent-tabs-mode: nil
|
|
* End:
|
|
* end of autoopts/configfile.c */
|