blob: 24e75b5565a8f31985bb9233abd0a8072ebb8141 [file] [log] [blame]
Eric Andersen1b355eb2000-09-05 17:37:48 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini expr implementation for busybox
4 *
5 * based on GNU expr Mike Parker.
6 * Copyright (C) 86, 1991-1997, 1999 Free Software Foundation, Inc.
7 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00008 * Busybox modifications
Eric Andersen1b355eb2000-09-05 17:37:48 +00009 * Copyright (c) 2000 Edward Betts <edward@debian.org>.
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000010 * Copyright (C) 2003-2005 Vladimir Oleynik <dzo@simtreas.ru>
11 * - reduced 464 bytes.
12 * - 64 math support
Eric Andersen1b355eb2000-09-05 17:37:48 +000013 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020014 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen1b355eb2000-09-05 17:37:48 +000015 */
16
17/* This program evaluates expressions. Each token (operator, operand,
Eric Andersenaff114c2004-04-14 17:51:38 +000018 * parenthesis) of the expression must be a separate argument. The
Eric Andersen1b355eb2000-09-05 17:37:48 +000019 * parser used is a reasonably general one, though any incarnation of
20 * it is language-specific. It is especially nice for expressions.
21 *
22 * No parse tree is needed; a new node is evaluated immediately.
23 * One function can handle multiple operators all of equal precedence,
24 * provided they all associate ((x op x) op x). */
25
Mark Whitley827e45c2001-03-09 23:59:51 +000026/* no getopt needed */
27
Pere Orga34425382011-03-31 14:43:25 +020028//usage:#define expr_trivial_usage
29//usage: "EXPRESSION"
30//usage:#define expr_full_usage "\n\n"
31//usage: "Print the value of EXPRESSION to stdout\n"
32//usage: "\n"
33//usage: "EXPRESSION may be:\n"
34//usage: " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n"
35//usage: " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n"
36//usage: " ARG1 < ARG2 1 if ARG1 is less than ARG2, else 0. Similarly:\n"
37//usage: " ARG1 <= ARG2\n"
38//usage: " ARG1 = ARG2\n"
39//usage: " ARG1 != ARG2\n"
40//usage: " ARG1 >= ARG2\n"
41//usage: " ARG1 > ARG2\n"
42//usage: " ARG1 + ARG2 Sum of ARG1 and ARG2. Similarly:\n"
43//usage: " ARG1 - ARG2\n"
44//usage: " ARG1 * ARG2\n"
45//usage: " ARG1 / ARG2\n"
46//usage: " ARG1 % ARG2\n"
47//usage: " STRING : REGEXP Anchored pattern match of REGEXP in STRING\n"
48//usage: " match STRING REGEXP Same as STRING : REGEXP\n"
49//usage: " substr STRING POS LENGTH Substring of STRING, POS counted from 1\n"
50//usage: " index STRING CHARS Index in STRING where any CHARS is found, or 0\n"
51//usage: " length STRING Length of STRING\n"
52//usage: " quote TOKEN Interpret TOKEN as a string, even if\n"
53//usage: " it is a keyword like 'match' or an\n"
54//usage: " operator like '/'\n"
55//usage: " (EXPRESSION) Value of EXPRESSION\n"
56//usage: "\n"
57//usage: "Beware that many operators need to be escaped or quoted for shells.\n"
58//usage: "Comparisons are arithmetic if both ARGs are numbers, else\n"
59//usage: "lexicographical. Pattern matches return the string matched between\n"
60//usage: "\\( and \\) or null; if \\( and \\) are not used, they return the number\n"
61//usage: "of characters matched or 0."
62
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000063#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000064#include "xregex.h"
Eric Andersen1b355eb2000-09-05 17:37:48 +000065
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000066#if ENABLE_EXPR_MATH_SUPPORT_64
67typedef int64_t arith_t;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000068
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000069#define PF_REZ "ll"
Eric Andersen5e678872006-01-30 19:48:23 +000070#define PF_REZ_TYPE (long long)
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000071#define STRTOL(s, e, b) strtoll(s, e, b)
72#else
73typedef long arith_t;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000074
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000075#define PF_REZ "l"
Eric Andersen5e678872006-01-30 19:48:23 +000076#define PF_REZ_TYPE (long)
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000077#define STRTOL(s, e, b) strtol(s, e, b)
78#endif
79
Denis Vlasenkod686a042006-11-27 14:43:21 +000080/* TODO: use bb_strtol[l]? It's easier to check for errors... */
81
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +000082/* The kinds of value we can have. */
83enum {
84 INTEGER,
85 STRING
86};
87
Eric Andersen1b355eb2000-09-05 17:37:48 +000088/* A value is.... */
89struct valinfo {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +000090 smallint type; /* Which kind. */
91 union { /* The value itself. */
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000092 arith_t i;
Eric Andersen1b355eb2000-09-05 17:37:48 +000093 char *s;
94 } u;
95};
96typedef struct valinfo VALUE;
97
98/* The arguments given to the program, minus the program name. */
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +000099struct globals {
100 char **args;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100101} FIX_ALIASING;
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000102#define G (*(struct globals*)&bb_common_bufsiz1)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000103
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000104/* forward declarations */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000105static VALUE *eval(void);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000106
Eric Andersen1b355eb2000-09-05 17:37:48 +0000107
108/* Return a VALUE for I. */
109
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000110static VALUE *int_value(arith_t i)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000111{
112 VALUE *v;
113
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000114 v = xzalloc(sizeof(VALUE));
115 if (INTEGER) /* otherwise xzaaloc did it already */
116 v->type = INTEGER;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000117 v->u.i = i;
118 return v;
119}
120
121/* Return a VALUE for S. */
122
Denis Vlasenkoa41fdf32007-01-29 22:51:00 +0000123static VALUE *str_value(const char *s)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000124{
125 VALUE *v;
126
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000127 v = xzalloc(sizeof(VALUE));
128 if (STRING) /* otherwise xzaaloc did it already */
129 v->type = STRING;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000130 v->u.s = xstrdup(s);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000131 return v;
132}
133
134/* Free VALUE V, including structure components. */
135
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000136static void freev(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000137{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000138 if (v->type == STRING)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000139 free(v->u.s);
140 free(v);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000141}
142
143/* Return nonzero if V is a null-string or zero-number. */
144
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000145static int null(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000146{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000147 if (v->type == INTEGER)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000148 return v->u.i == 0;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000149 /* STRING: */
Denis Vlasenkocd27c422007-03-08 13:37:43 +0000150 return v->u.s[0] == '\0' || LONE_CHAR(v->u.s, '0');
Eric Andersen1b355eb2000-09-05 17:37:48 +0000151}
152
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000153/* Coerce V to a STRING value (can't fail). */
Eric Andersen1b355eb2000-09-05 17:37:48 +0000154
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000155static void tostring(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000156{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000157 if (v->type == INTEGER) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000158 v->u.s = xasprintf("%" PF_REZ "d", PF_REZ_TYPE v->u.i);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000159 v->type = STRING;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000160 }
161}
162
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000163/* Coerce V to an INTEGER value. Return 1 on success, 0 on failure. */
Eric Andersen1b355eb2000-09-05 17:37:48 +0000164
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000165static bool toarith(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000166{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000167 if (v->type == STRING) {
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000168 arith_t i;
Manuel Novoa III 70183852004-01-25 19:47:10 +0000169 char *e;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000170
Manuel Novoa III 70183852004-01-25 19:47:10 +0000171 /* Don't interpret the empty string as an integer. */
172 /* Currently does not worry about overflow or int/long differences. */
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000173 i = STRTOL(v->u.s, &e, 10);
Manuel Novoa III 70183852004-01-25 19:47:10 +0000174 if ((v->u.s == e) || *e)
175 return 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000176 free(v->u.s);
Manuel Novoa III 70183852004-01-25 19:47:10 +0000177 v->u.i = i;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000178 v->type = INTEGER;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000179 }
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000180 return 1;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000181}
182
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000183/* Return str[0]+str[1] if the next token matches STR exactly.
Eric Andersen1b355eb2000-09-05 17:37:48 +0000184 STR must not be NULL. */
185
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000186static int nextarg(const char *str)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000187{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000188 if (*G.args == NULL || strcmp(*G.args, str) != 0)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000189 return 0;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000190 return (unsigned char)str[0] + (unsigned char)str[1];
Eric Andersen1b355eb2000-09-05 17:37:48 +0000191}
192
193/* The comparison operator handling functions. */
194
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000195static int cmp_common(VALUE *l, VALUE *r, int op)
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000196{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000197 arith_t ll, rr;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000198
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000199 ll = l->u.i;
200 rr = r->u.i;
201 if (l->type == STRING || r->type == STRING) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000202 tostring(l);
203 tostring(r);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000204 ll = strcmp(l->u.s, r->u.s);
205 rr = 0;
206 }
207 /* calculating ll - rr and checking the result is prone to overflows.
208 * We'll do it differently: */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000209 if (op == '<')
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000210 return ll < rr;
211 if (op == ('<' + '='))
212 return ll <= rr;
213 if (op == '=' || (op == '=' + '='))
214 return ll == rr;
215 if (op == '!' + '=')
216 return ll != rr;
Denis Vlasenkocd27c422007-03-08 13:37:43 +0000217 if (op == '>')
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000218 return ll > rr;
Denis Vlasenkocd27c422007-03-08 13:37:43 +0000219 /* >= */
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000220 return ll >= rr;
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000221}
Eric Andersen1b355eb2000-09-05 17:37:48 +0000222
223/* The arithmetic operator handling functions. */
224
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000225static arith_t arithmetic_common(VALUE *l, VALUE *r, int op)
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000226{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000227 arith_t li, ri;
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000228
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000229 if (!toarith(l) || !toarith(r))
230 bb_error_msg_and_die("non-numeric argument");
231 li = l->u.i;
232 ri = r->u.i;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000233 if (op == '+')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000234 return li + ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000235 if (op == '-')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000236 return li - ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000237 if (op == '*')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000238 return li * ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000239 if (ri == 0)
240 bb_error_msg_and_die("division by zero");
241 if (op == '/')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000242 return li / ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000243 return li % ri;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000244}
245
Eric Andersen1b355eb2000-09-05 17:37:48 +0000246/* Do the : operator.
247 SV is the VALUE for the lhs (the string),
248 PV is the VALUE for the rhs (the pattern). */
249
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000250static VALUE *docolon(VALUE *sv, VALUE *pv)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000251{
Denys Vlasenko043b1e52009-09-06 12:47:55 +0200252 enum { NMATCH = 2 };
Eric Andersen1b355eb2000-09-05 17:37:48 +0000253 VALUE *v;
Rob Landley540d3f62005-05-09 21:42:42 +0000254 regex_t re_buffer;
Rob Landley540d3f62005-05-09 21:42:42 +0000255 regmatch_t re_regs[NMATCH];
Eric Andersen1b355eb2000-09-05 17:37:48 +0000256
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000257 tostring(sv);
258 tostring(pv);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000259
260 if (pv->u.s[0] == '^') {
Denis Vlasenko230997b2009-03-03 14:27:36 +0000261 bb_error_msg(
262"warning: '%s': using '^' as the first character\n"
263"of a basic regular expression is not portable; it is ignored", pv->u.s);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000264 }
265
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000266 memset(&re_buffer, 0, sizeof(re_buffer));
Denis Vlasenko230997b2009-03-03 14:27:36 +0000267 memset(re_regs, 0, sizeof(re_regs));
Bernhard Reutner-Fischer8025afa2007-04-02 16:54:41 +0000268 xregcomp(&re_buffer, pv->u.s, 0);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000269
Rob Landley540d3f62005-05-09 21:42:42 +0000270 /* expr uses an anchored pattern match, so check that there was a
271 * match and that the match starts at offset 0. */
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000272 if (regexec(&re_buffer, sv->u.s, NMATCH, re_regs, 0) != REG_NOMATCH
273 && re_regs[0].rm_so == 0
274 ) {
Eric Andersen1b355eb2000-09-05 17:37:48 +0000275 /* Were \(...\) used? */
Denis Vlasenko230997b2009-03-03 14:27:36 +0000276 if (re_buffer.re_nsub > 0 && re_regs[1].rm_so >= 0) {
Rob Landley540d3f62005-05-09 21:42:42 +0000277 sv->u.s[re_regs[1].rm_eo] = '\0';
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000278 v = str_value(sv->u.s + re_regs[1].rm_so);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000279 } else {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000280 v = int_value(re_regs[0].rm_eo);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000281 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000282 } else {
Eric Andersen1b355eb2000-09-05 17:37:48 +0000283 /* Match failed -- return the right kind of null. */
284 if (re_buffer.re_nsub > 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000285 v = str_value("");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000286 else
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000287 v = int_value(0);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000288 }
Denis Vlasenko230997b2009-03-03 14:27:36 +0000289 regfree(&re_buffer);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000290 return v;
291}
292
293/* Handle bare operands and ( expr ) syntax. */
294
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000295static VALUE *eval7(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000296{
297 VALUE *v;
298
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000299 if (!*G.args)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000300 bb_error_msg_and_die("syntax error");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000301
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000302 if (nextarg("(")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000303 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000304 v = eval();
305 if (!nextarg(")"))
306 bb_error_msg_and_die("syntax error");
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000307 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000308 return v;
309 }
Eric Andersen1b355eb2000-09-05 17:37:48 +0000310
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000311 if (nextarg(")"))
312 bb_error_msg_and_die("syntax error");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000313
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000314 return str_value(*G.args++);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000315}
316
317/* Handle match, substr, index, length, and quote keywords. */
318
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000319static VALUE *eval6(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000320{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000321 static const char keywords[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000322 "quote\0""length\0""match\0""index\0""substr\0";
Eric Andersen1b355eb2000-09-05 17:37:48 +0000323
Denis Vlasenkoc6753c12007-07-01 18:33:35 +0000324 VALUE *r, *i1, *i2;
325 VALUE *l = l; /* silence gcc */
326 VALUE *v = v; /* silence gcc */
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000327 int key = *G.args ? index_in_strings(keywords, *G.args) + 1 : 0;
Denis Vlasenkoc6753c12007-07-01 18:33:35 +0000328
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000329 if (key == 0) /* not a keyword */
330 return eval7();
331 G.args++; /* We have a valid token, so get the next argument. */
332 if (key == 1) { /* quote */
333 if (!*G.args)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000334 bb_error_msg_and_die("syntax error");
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000335 return str_value(*G.args++);
336 }
337 if (key == 2) { /* length */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000338 r = eval6();
339 tostring(r);
340 v = int_value(strlen(r->u.s));
341 freev(r);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000342 } else
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000343 l = eval6();
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000344
345 if (key == 3) { /* match */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000346 r = eval6();
347 v = docolon(l, r);
348 freev(l);
349 freev(r);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000350 }
351 if (key == 4) { /* index */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000352 r = eval6();
353 tostring(l);
354 tostring(r);
355 v = int_value(strcspn(l->u.s, r->u.s) + 1);
356 if (v->u.i == (arith_t) strlen(l->u.s) + 1)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000357 v->u.i = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000358 freev(l);
359 freev(r);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000360 }
361 if (key == 5) { /* substr */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000362 i1 = eval6();
363 i2 = eval6();
364 tostring(l);
365 if (!toarith(i1) || !toarith(i2)
Denis Vlasenkoc6753c12007-07-01 18:33:35 +0000366 || i1->u.i > (arith_t) strlen(l->u.s)
367 || i1->u.i <= 0 || i2->u.i <= 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000368 v = str_value("");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000369 else {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000370 v = xmalloc(sizeof(VALUE));
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000371 v->type = STRING;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000372 v->u.s = xstrndup(l->u.s + i1->u.i - 1, i2->u.i);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000373 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000374 freev(l);
375 freev(i1);
376 freev(i2);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000377 }
378 return v;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000379}
380
381/* Handle : operator (pattern matching).
382 Calls docolon to do the real work. */
383
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000384static VALUE *eval5(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000385{
386 VALUE *l, *r, *v;
387
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000388 l = eval6();
389 while (nextarg(":")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000390 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000391 r = eval6();
392 v = docolon(l, r);
393 freev(l);
394 freev(r);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000395 l = v;
396 }
397 return l;
398}
399
400/* Handle *, /, % operators. */
401
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000402static VALUE *eval4(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000403{
404 VALUE *l, *r;
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000405 int op;
406 arith_t val;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000407
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000408 l = eval5();
Eric Andersen1b355eb2000-09-05 17:37:48 +0000409 while (1) {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000410 op = nextarg("*");
411 if (!op) { op = nextarg("/");
412 if (!op) { op = nextarg("%");
413 if (!op) return l;
414 }}
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000415 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000416 r = eval5();
417 val = arithmetic_common(l, r, op);
418 freev(l);
419 freev(r);
420 l = int_value(val);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000421 }
422}
423
424/* Handle +, - operators. */
425
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000426static VALUE *eval3(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000427{
428 VALUE *l, *r;
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000429 int op;
430 arith_t val;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000431
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000432 l = eval4();
Eric Andersen1b355eb2000-09-05 17:37:48 +0000433 while (1) {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000434 op = nextarg("+");
435 if (!op) {
436 op = nextarg("-");
437 if (!op) return l;
438 }
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000439 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000440 r = eval4();
441 val = arithmetic_common(l, r, op);
442 freev(l);
443 freev(r);
444 l = int_value(val);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000445 }
446}
447
448/* Handle comparisons. */
449
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000450static VALUE *eval2(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000451{
452 VALUE *l, *r;
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000453 int op;
454 arith_t val;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000455
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000456 l = eval3();
Eric Andersen1b355eb2000-09-05 17:37:48 +0000457 while (1) {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000458 op = nextarg("<");
459 if (!op) { op = nextarg("<=");
460 if (!op) { op = nextarg("=");
461 if (!op) { op = nextarg("==");
462 if (!op) { op = nextarg("!=");
463 if (!op) { op = nextarg(">=");
464 if (!op) { op = nextarg(">");
465 if (!op) return l;
466 }}}}}}
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000467 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000468 r = eval3();
469 toarith(l);
470 toarith(r);
471 val = cmp_common(l, r, op);
472 freev(l);
473 freev(r);
474 l = int_value(val);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000475 }
476}
477
478/* Handle &. */
479
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000480static VALUE *eval1(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000481{
482 VALUE *l, *r;
483
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000484 l = eval2();
485 while (nextarg("&")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000486 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000487 r = eval2();
488 if (null(l) || null(r)) {
489 freev(l);
490 freev(r);
491 l = int_value(0);
492 } else
493 freev(r);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000494 }
495 return l;
496}
497
498/* Handle |. */
499
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000500static VALUE *eval(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000501{
502 VALUE *l, *r;
503
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000504 l = eval1();
505 while (nextarg("|")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000506 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000507 r = eval1();
508 if (null(l)) {
509 freev(l);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000510 l = r;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000511 } else
512 freev(r);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000513 }
514 return l;
515}
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000516
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000517int expr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko272710f2008-11-11 22:36:58 +0000518int expr_main(int argc UNUSED_PARAM, char **argv)
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000519{
520 VALUE *v;
521
Denis Vlasenko272710f2008-11-11 22:36:58 +0000522 xfunc_error_retval = 2; /* coreutils compat */
523 G.args = argv + 1;
524 if (*G.args == NULL) {
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000525 bb_error_msg_and_die("too few arguments");
526 }
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000527 v = eval();
528 if (*G.args)
529 bb_error_msg_and_die("syntax error");
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000530 if (v->type == INTEGER)
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000531 printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i);
532 else
533 puts(v->u.s);
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000534 fflush_stdout_and_exit(null(v));
535}