#include <errno.h>
#include "make.h"
#include "dir.h"
MAKE_RCSID("$NetBSD: cond.c,v 1.378 2025/07/06 07:56:16 rillig Exp $");
typedef enum Token {
TOK_FALSE, TOK_TRUE, TOK_AND, TOK_OR, TOK_NOT,
TOK_LPAREN, TOK_RPAREN, TOK_EOF, TOK_NONE, TOK_ERROR
} Token;
typedef enum ComparisonOp {
LT, LE, GT, GE, EQ, NE
} ComparisonOp;
typedef struct CondParser {
bool plain;
bool (*evalBare)(const char *);
bool negateEvalBare;
bool leftUnquotedOK;
const char *p;
Token curr;
} CondParser;
static CondResult CondParser_Or(CondParser *, bool);
unsigned cond_depth = 0;
static const char opname[][3] = { "<", "<=", ">", ">=", "==", "!=" };
MAKE_INLINE bool
skip_string(const char **pp, const char *str)
{
size_t len = strlen(str);
bool ok = strncmp(*pp, str, len) == 0;
if (ok)
*pp += len;
return ok;
}
static Token
ToToken(bool cond)
{
return cond ? TOK_TRUE : TOK_FALSE;
}
static void
CondParser_SkipWhitespace(CondParser *par)
{
cpp_skip_whitespace(&par->p);
}
static char *
ParseWord(const char **pp, bool doEval)
{
const char *p = *pp;
Buffer word;
int depth;
Buf_Init(&word);
depth = 0;
for (;;) {
char ch = *p;
if (ch == '\0' || ch == ' ' || ch == '\t')
break;
if ((ch == '&' || ch == '|') && depth == 0)
break;
if (ch == '$') {
VarEvalMode emode = doEval ? VARE_EVAL : VARE_PARSE;
FStr nestedVal = Var_Parse(&p, SCOPE_CMDLINE, emode);
Buf_AddStr(&word, nestedVal.str);
FStr_Done(&nestedVal);
continue;
}
if (ch == '(')
depth++;
else if (ch == ')' && --depth < 0)
break;
Buf_AddByte(&word, ch);
p++;
}
*pp = p;
return Buf_DoneData(&word);
}
static char *
ParseFuncArg(const char **pp, bool doEval, const char *func)
{
const char *p = *pp, *argStart, *argEnd;
char *res;
p++;
cpp_skip_hspace(&p);
argStart = p;
res = ParseWord(&p, doEval);
argEnd = p;
cpp_skip_hspace(&p);
if (*p++ != ')') {
int len = 0;
while (ch_isalpha(func[len]))
len++;
Parse_Error(PARSE_FATAL,
"Missing \")\" after argument \"%.*s\" for \"%.*s\"",
(int)(argEnd - argStart), argStart, len, func);
free(res);
return NULL;
}
*pp = p;
return res;
}
static bool
FuncDefined(const char *var)
{
return Var_Exists(SCOPE_CMDLINE, var);
}
static bool
FuncMake(const char *targetPattern)
{
StringListNode *ln;
bool warned = false;
for (ln = opts.create.first; ln != NULL; ln = ln->next) {
StrMatchResult res = Str_Match(ln->datum, targetPattern);
if (res.error != NULL && !warned) {
warned = true;
Parse_Error(PARSE_WARNING,
"%s in pattern argument \"%s\" "
"to function \"make\"",
res.error, targetPattern);
}
if (res.matched)
return true;
}
return false;
}
static bool
FuncExists(const char *file)
{
bool result;
char *path;
path = Dir_FindFile(file, &dirSearchPath);
result = path != NULL;
if (result)
DEBUG2(COND, "\"%s\" exists in \"%s\"\n", file, path);
else
DEBUG1(COND, "\"%s\" does not exist\n", file);
free(path);
return result;
}
static bool
FuncTarget(const char *node)
{
GNode *gn = Targ_FindNode(node);
return gn != NULL && GNode_IsTarget(gn);
}
static bool
FuncCommands(const char *node)
{
GNode *gn = Targ_FindNode(node);
return gn != NULL && GNode_IsTarget(gn) &&
!Lst_IsEmpty(&gn->commands);
}
static bool
TryParseNumber(const char *str, double *out_value)
{
char *end;
unsigned long ul_val;
double dbl_val;
if (str[0] == '\0') {
*out_value = 0.0;
return true;
}
errno = 0;
ul_val = strtoul(str, &end, str[1] == 'x' ? 16 : 10);
if (*end == '\0' && errno != ERANGE) {
*out_value = str[0] == '-' ? -(double)-ul_val : (double)ul_val;
return true;
}
if (*end != '\0' && *end != '.' && *end != 'e' && *end != 'E')
return false;
dbl_val = strtod(str, &end);
if (*end != '\0')
return false;
*out_value = dbl_val;
return true;
}
static bool
is_separator(char ch)
{
return ch == '\0' || ch_isspace(ch) || ch == '!' || ch == '=' ||
ch == '>' || ch == '<' || ch == ')' ;
}
static bool
CondParser_StringExpr(CondParser *par, const char *start,
bool doEval, bool quoted,
Buffer *buf, FStr *out_str)
{
VarEvalMode emode;
const char *p;
bool outsideQuotes;
emode = doEval && quoted ? VARE_EVAL
: doEval ? VARE_EVAL_DEFINED_LOUD
: VARE_PARSE;
p = par->p;
outsideQuotes = p == start;
*out_str = Var_Parse(&p, SCOPE_CMDLINE, emode);
if (out_str->str == var_Error) {
FStr_Done(out_str);
*out_str = FStr_InitRefer(NULL);
return false;
}
par->p = p;
if (outsideQuotes && is_separator(par->p[0]))
return false;
Buf_AddStr(buf, out_str->str);
FStr_Done(out_str);
*out_str = FStr_InitRefer(NULL);
return true;
}
static FStr
CondParser_Leaf(CondParser *par, bool doEval, bool unquotedOK,
bool *out_quoted)
{
Buffer buf;
FStr str;
bool quoted;
const char *start;
Buf_Init(&buf);
str = FStr_InitRefer(NULL);
*out_quoted = quoted = par->p[0] == '"';
start = par->p;
if (quoted)
par->p++;
while (par->p[0] != '\0' && str.str == NULL) {
switch (par->p[0]) {
case '\\':
par->p++;
if (par->p[0] != '\0') {
Buf_AddByte(&buf, par->p[0]);
par->p++;
} else
Parse_Error(PARSE_FATAL,
"Unfinished backslash escape sequence");
continue;
case '"':
par->p++;
if (quoted)
goto return_buf;
Buf_AddByte(&buf, '"');
continue;
case ')':
case '!':
case '=':
case '>':
case '<':
case ' ':
case '\t':
if (!quoted)
goto return_buf;
Buf_AddByte(&buf, par->p[0]);
par->p++;
continue;
case '$':
if (!CondParser_StringExpr(par,
start, doEval, quoted, &buf, &str))
goto return_str;
continue;
default:
if (!unquotedOK && !quoted && *start != '$' &&
!ch_isdigit(*start)) {
str = FStr_InitRefer(NULL);
goto return_str;
}
Buf_AddByte(&buf, par->p[0]);
par->p++;
continue;
}
}
if (quoted)
Parse_Error(PARSE_FATAL,
"Unfinished string literal \"%s\"", start);
return_buf:
str = FStr_InitOwn(buf.data);
buf.data = NULL;
return_str:
Buf_Done(&buf);
return str;
}
static bool
EvalTruthy(CondParser *par, const char *value, bool quoted)
{
double num;
if (quoted)
return value[0] != '\0';
if (TryParseNumber(value, &num))
return num != 0.0;
if (par->plain)
return value[0] != '\0';
return par->evalBare(value) != par->negateEvalBare;
}
static bool
EvalCompareNum(double lhs, ComparisonOp op, double rhs)
{
DEBUG3(COND, "Comparing %f %s %f\n", lhs, opname[op], rhs);
switch (op) {
case LT:
return lhs < rhs;
case LE:
return lhs <= rhs;
case GT:
return lhs > rhs;
case GE:
return lhs >= rhs;
case EQ:
return lhs == rhs;
default:
return lhs != rhs;
}
}
static Token
EvalCompareStr(const char *lhs, ComparisonOp op, const char *rhs)
{
if (op != EQ && op != NE) {
Parse_Error(PARSE_FATAL,
"Comparison with \"%s\" requires both operands "
"\"%s\" and \"%s\" to be numeric",
opname[op], lhs, rhs);
return TOK_ERROR;
}
DEBUG3(COND, "Comparing \"%s\" %s \"%s\"\n", lhs, opname[op], rhs);
return ToToken((op == EQ) == (strcmp(lhs, rhs) == 0));
}
static Token
EvalCompare(const char *lhs, bool lhsQuoted,
ComparisonOp op, const char *rhs, bool rhsQuoted)
{
double left, right;
if (!rhsQuoted && !lhsQuoted)
if (TryParseNumber(lhs, &left) && TryParseNumber(rhs, &right))
return ToToken(EvalCompareNum(left, op, right));
return EvalCompareStr(lhs, op, rhs);
}
static bool
CondParser_ComparisonOp(CondParser *par, ComparisonOp *out_op)
{
const char *p = par->p;
if (p[0] == '<' && p[1] == '=')
return par->p += 2, *out_op = LE, true;
if (p[0] == '<')
return par->p += 1, *out_op = LT, true;
if (p[0] == '>' && p[1] == '=')
return par->p += 2, *out_op = GE, true;
if (p[0] == '>')
return par->p += 1, *out_op = GT, true;
if (p[0] == '=' && p[1] == '=')
return par->p += 2, *out_op = EQ, true;
if (p[0] == '!' && p[1] == '=')
return par->p += 2, *out_op = NE, true;
return false;
}
static Token
CondParser_Comparison(CondParser *par, bool doEval)
{
Token t = TOK_ERROR;
FStr lhs, rhs;
ComparisonOp op;
bool lhsQuoted, rhsQuoted;
lhs = CondParser_Leaf(par, doEval, par->leftUnquotedOK, &lhsQuoted);
if (lhs.str == NULL)
goto done_lhs;
CondParser_SkipWhitespace(par);
if (!CondParser_ComparisonOp(par, &op)) {
t = ToToken(doEval && EvalTruthy(par, lhs.str, lhsQuoted));
goto done_lhs;
}
CondParser_SkipWhitespace(par);
if (par->p[0] == '\0') {
Parse_Error(PARSE_FATAL,
"Missing right-hand side of operator \"%s\"", opname[op]);
goto done_lhs;
}
rhs = CondParser_Leaf(par, doEval, true, &rhsQuoted);
t = rhs.str == NULL ? TOK_ERROR
: !doEval ? TOK_FALSE
: EvalCompare(lhs.str, lhsQuoted, op, rhs.str, rhsQuoted);
FStr_Done(&rhs);
done_lhs:
FStr_Done(&lhs);
return t;
}
static bool
CondParser_FuncCallEmpty(CondParser *par, bool doEval, Token *out_token)
{
const char *p = par->p;
Token tok;
FStr val;
if (!skip_string(&p, "empty"))
return false;
cpp_skip_whitespace(&p);
if (*p != '(')
return false;
p--;
val = Var_Parse(&p, SCOPE_CMDLINE, doEval ? VARE_EVAL : VARE_PARSE);
if (val.str == var_Error)
tok = TOK_ERROR;
else {
cpp_skip_whitespace(&val.str);
tok = ToToken(doEval && val.str[0] == '\0');
}
FStr_Done(&val);
*out_token = tok;
par->p = p;
return true;
}
static bool
CondParser_FuncCall(CondParser *par, bool doEval, Token *out_token)
{
char *arg;
const char *p = par->p;
bool (*fn)(const char *);
const char *fn_name = p;
if (skip_string(&p, "defined"))
fn = FuncDefined;
else if (skip_string(&p, "make"))
fn = FuncMake;
else if (skip_string(&p, "exists"))
fn = FuncExists;
else if (skip_string(&p, "target"))
fn = FuncTarget;
else if (skip_string(&p, "commands"))
fn = FuncCommands;
else
return false;
cpp_skip_whitespace(&p);
if (*p != '(')
return false;
arg = ParseFuncArg(&p, doEval, fn_name);
*out_token = ToToken(doEval &&
arg != NULL && arg[0] != '\0' && fn(arg));
free(arg);
par->p = p;
return true;
}
static Token
CondParser_ComparisonOrLeaf(CondParser *par, bool doEval)
{
Token t;
char *arg;
const char *p;
p = par->p;
if (ch_isdigit(p[0]) || p[0] == '-' || p[0] == '+')
return CondParser_Comparison(par, doEval);
arg = ParseWord(&p, doEval);
assert(arg[0] != '\0');
cpp_skip_hspace(&p);
if (*p == '=' || *p == '!' || *p == '<' || *p == '>') {
free(arg);
return CondParser_Comparison(par, doEval);
}
par->p = p;
t = ToToken(doEval && par->evalBare(arg) != par->negateEvalBare);
free(arg);
return t;
}
static Token
CondParser_Token(CondParser *par, bool doEval)
{
Token t;
t = par->curr;
if (t != TOK_NONE) {
par->curr = TOK_NONE;
return t;
}
cpp_skip_hspace(&par->p);
switch (par->p[0]) {
case '(':
par->p++;
return TOK_LPAREN;
case ')':
par->p++;
return TOK_RPAREN;
case '|':
par->p++;
if (par->p[0] == '|')
par->p++;
else {
Parse_Error(PARSE_FATAL, "Unknown operator \"|\"");
return TOK_ERROR;
}
return TOK_OR;
case '&':
par->p++;
if (par->p[0] == '&')
par->p++;
else {
Parse_Error(PARSE_FATAL, "Unknown operator \"&\"");
return TOK_ERROR;
}
return TOK_AND;
case '!':
par->p++;
return TOK_NOT;
case '#':
case '\n':
case '\0':
return TOK_EOF;
case '"':
case '$':
return CondParser_Comparison(par, doEval);
default:
if (CondParser_FuncCallEmpty(par, doEval, &t))
return t;
if (CondParser_FuncCall(par, doEval, &t))
return t;
return CondParser_ComparisonOrLeaf(par, doEval);
}
}
static bool
CondParser_Skip(CondParser *par, Token t)
{
Token actual;
actual = CondParser_Token(par, false);
if (actual == t)
return true;
assert(par->curr == TOK_NONE);
assert(actual != TOK_NONE);
par->curr = actual;
return false;
}
static CondResult
CondParser_Term(CondParser *par, bool doEval)
{
CondResult res;
Token t;
bool neg = false;
while ((t = CondParser_Token(par, doEval)) == TOK_NOT)
neg = !neg;
if (t == TOK_TRUE || t == TOK_FALSE)
return neg == (t == TOK_FALSE) ? CR_TRUE : CR_FALSE;
if (t == TOK_LPAREN) {
res = CondParser_Or(par, doEval);
if (res == CR_ERROR)
return CR_ERROR;
if (CondParser_Token(par, doEval) != TOK_RPAREN)
return CR_ERROR;
return neg == (res == CR_FALSE) ? CR_TRUE : CR_FALSE;
}
return CR_ERROR;
}
static CondResult
CondParser_And(CondParser *par, bool doEval)
{
CondResult res, rhs;
res = CR_TRUE;
do {
if ((rhs = CondParser_Term(par, doEval)) == CR_ERROR)
return CR_ERROR;
if (rhs == CR_FALSE) {
res = CR_FALSE;
doEval = false;
}
} while (CondParser_Skip(par, TOK_AND));
return res;
}
static CondResult
CondParser_Or(CondParser *par, bool doEval)
{
CondResult res, rhs;
res = CR_FALSE;
do {
if ((rhs = CondParser_And(par, doEval)) == CR_ERROR)
return CR_ERROR;
if (rhs == CR_TRUE) {
res = CR_TRUE;
doEval = false;
}
} while (CondParser_Skip(par, TOK_OR));
return res;
}
static CondResult
CondEvalExpression(const char *cond, bool plain,
bool (*evalBare)(const char *), bool negate,
bool eprint, bool leftUnquotedOK)
{
CondParser par;
CondResult rval;
int parseErrorsBefore = parseErrors;
cpp_skip_hspace(&cond);
par.plain = plain;
par.evalBare = evalBare;
par.negateEvalBare = negate;
par.leftUnquotedOK = leftUnquotedOK;
par.p = cond;
par.curr = TOK_NONE;
DEBUG1(COND, "CondParser_Eval: %s\n", par.p);
rval = CondParser_Or(&par, true);
if (par.curr != TOK_EOF)
rval = CR_ERROR;
if (parseErrors != parseErrorsBefore)
rval = CR_ERROR;
else if (rval == CR_ERROR && eprint)
Parse_Error(PARSE_FATAL, "Malformed conditional \"%s\"", cond);
return rval;
}
CondResult
Cond_EvalCondition(const char *cond)
{
return CondEvalExpression(cond, true,
FuncDefined, false, false, true);
}
static bool
IsEndif(const char *p)
{
return p[0] == 'e' && p[1] == 'n' && p[2] == 'd' &&
p[3] == 'i' && p[4] == 'f' && !ch_isalpha(p[5]);
}
static bool
DetermineKindOfConditional(const char **pp, bool *out_plain,
bool (**out_evalBare)(const char *),
bool *out_negate)
{
const char *p = *pp + 2;
*out_plain = false;
*out_evalBare = FuncDefined;
*out_negate = skip_string(&p, "n");
if (skip_string(&p, "def")) {
} else if (skip_string(&p, "make"))
*out_evalBare = FuncMake;
else if (!*out_negate)
*out_plain = true;
else
goto unknown_directive;
if (ch_isalpha(*p))
goto unknown_directive;
*pp = p;
return true;
unknown_directive:
return false;
}
CondResult
Cond_EvalLine(const char *line)
{
typedef enum IfState {
IFS_INITIAL = 0,
IFS_ACTIVE = 1 << 0,
IFS_SEEN_ELSE = 1 << 1,
IFS_WAS_ACTIVE = 1 << 2
} IfState;
static enum IfState *cond_states = NULL;
static unsigned cond_states_cap = 128;
bool plain;
bool (*evalBare)(const char *);
bool negate;
bool isElif;
CondResult res;
IfState state;
const char *p = line;
if (cond_states == NULL) {
cond_states = bmake_malloc(
cond_states_cap * sizeof *cond_states);
cond_states[0] = IFS_ACTIVE;
}
p++;
cpp_skip_hspace(&p);
if (IsEndif(p)) {
if (p[5] != '\0') {
Parse_Error(PARSE_FATAL,
"The .endif directive does not take arguments");
}
if (cond_depth == CurFile_CondMinDepth()) {
Parse_Error(PARSE_FATAL, "if-less endif");
return CR_TRUE;
}
cond_depth--;
Parse_GuardEndif();
return cond_states[cond_depth] & IFS_ACTIVE
? CR_TRUE : CR_FALSE;
}
if (p[0] == 'e') {
if (p[1] != 'l')
return CR_ERROR;
p += 2;
if (strncmp(p, "se", 2) == 0 && !ch_isalpha(p[2])) {
if (p[2] != '\0')
Parse_Error(PARSE_FATAL,
"The .else directive "
"does not take arguments");
if (cond_depth == CurFile_CondMinDepth()) {
Parse_Error(PARSE_FATAL, "if-less else");
return CR_TRUE;
}
Parse_GuardElse();
state = cond_states[cond_depth];
if (state == IFS_INITIAL) {
state = IFS_ACTIVE | IFS_SEEN_ELSE;
} else {
if (state & IFS_SEEN_ELSE)
Parse_Error(PARSE_WARNING,
"extra else");
state = IFS_WAS_ACTIVE | IFS_SEEN_ELSE;
}
cond_states[cond_depth] = state;
return state & IFS_ACTIVE ? CR_TRUE : CR_FALSE;
}
isElif = true;
} else
isElif = false;
if (p[0] != 'i' || p[1] != 'f')
return CR_ERROR;
if (!DetermineKindOfConditional(&p, &plain, &evalBare, &negate))
return CR_ERROR;
if (isElif) {
if (cond_depth == CurFile_CondMinDepth()) {
Parse_Error(PARSE_FATAL, "if-less elif");
return CR_TRUE;
}
Parse_GuardElse();
state = cond_states[cond_depth];
if (state & IFS_SEEN_ELSE) {
Parse_Error(PARSE_WARNING, "extra elif");
cond_states[cond_depth] =
IFS_WAS_ACTIVE | IFS_SEEN_ELSE;
return CR_FALSE;
}
if (state != IFS_INITIAL) {
cond_states[cond_depth] = IFS_WAS_ACTIVE;
return CR_FALSE;
}
} else {
if (cond_depth + 1 >= cond_states_cap) {
cond_states_cap += 32;
cond_states = bmake_realloc(cond_states,
cond_states_cap * sizeof *cond_states);
}
state = cond_states[cond_depth];
cond_depth++;
if (!(state & IFS_ACTIVE)) {
cond_states[cond_depth] = IFS_WAS_ACTIVE;
return CR_FALSE;
}
}
res = CondEvalExpression(p, plain, evalBare, negate, true, false);
if (res == CR_ERROR) {
cond_states[cond_depth] = IFS_WAS_ACTIVE;
return CR_FALSE;
}
cond_states[cond_depth] = res == CR_TRUE ? IFS_ACTIVE : IFS_INITIAL;
return res;
}
static bool
ParseVarnameGuard(const char **pp, const char **varname)
{
const char *p = *pp;
if (ch_isalpha(*p) || *p == '_') {
while (ch_isalnum(*p) || *p == '_')
p++;
*varname = *pp;
*pp = p;
return true;
}
return false;
}
Guard *
Cond_ExtractGuard(const char *line)
{
const char *p, *varname;
Substring dir;
Guard *guard;
p = line + 1;
cpp_skip_hspace(&p);
dir.start = p;
while (ch_isalpha(*p))
p++;
dir.end = p;
cpp_skip_hspace(&p);
if (Substring_Equals(dir, "if")) {
if (skip_string(&p, "!defined(")) {
if (ParseVarnameGuard(&p, &varname)
&& strcmp(p, ")") == 0)
goto found_variable;
} else if (skip_string(&p, "!target(")) {
const char *arg_p = p;
free(ParseWord(&p, false));
if (strcmp(p, ")") == 0) {
guard = bmake_malloc(sizeof(*guard));
guard->kind = GK_TARGET;
guard->name = ParseWord(&arg_p, true);
return guard;
}
}
} else if (Substring_Equals(dir, "ifndef")) {
if (ParseVarnameGuard(&p, &varname) && *p == '\0')
goto found_variable;
}
return NULL;
found_variable:
guard = bmake_malloc(sizeof(*guard));
guard->kind = GK_VARIABLE;
guard->name = bmake_strsedup(varname, p);
return guard;
}
void
Cond_EndFile(void)
{
unsigned open_conds = cond_depth - CurFile_CondMinDepth();
if (open_conds != 0) {
Parse_Error(PARSE_FATAL, "%u open conditional%s",
open_conds, open_conds == 1 ? "" : "s");
cond_depth = CurFile_CondMinDepth();
}
}