blob: 5d2fbf2f76513a4fd6aa771d8ff96e5ffc5a0ee4 [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 */
Eric Andersen1b355eb2000-09-05 17:37:48 +000016/* This program evaluates expressions. Each token (operator, operand,
Eric Andersenaff114c2004-04-14 17:51:38 +000017 * parenthesis) of the expression must be a separate argument. The
Eric Andersen1b355eb2000-09-05 17:37:48 +000018 * parser used is a reasonably general one, though any incarnation of
19 * it is language-specific. It is especially nice for expressions.
20 *
21 * No parse tree is needed; a new node is evaluated immediately.
22 * One function can handle multiple operators all of equal precedence,
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010023 * provided they all associate ((x op x) op x).
24 */
25//config:config EXPR
26//config: bool "expr"
27//config: default y
28//config: help
29//config: expr is used to calculate numbers and print the result
30//config: to standard output.
31//config:
32//config:config EXPR_MATH_SUPPORT_64
33//config: bool "Extend Posix numbers support to 64 bit"
34//config: default y
35//config: depends on EXPR
36//config: help
37//config: Enable 64-bit math support in the expr applet. This will make
38//config: the applet slightly larger, but will allow computation with very
39//config: large numbers.
Eric Andersen1b355eb2000-09-05 17:37:48 +000040
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010041//applet:IF_EXPR(APPLET(expr, BB_DIR_USR_BIN, BB_SUID_DROP))
42
43//kbuild:lib-$(CONFIG_EXPR) += expr.o
Mark Whitley827e45c2001-03-09 23:59:51 +000044
Pere Orga34425382011-03-31 14:43:25 +020045//usage:#define expr_trivial_usage
46//usage: "EXPRESSION"
47//usage:#define expr_full_usage "\n\n"
48//usage: "Print the value of EXPRESSION to stdout\n"
49//usage: "\n"
50//usage: "EXPRESSION may be:\n"
51//usage: " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n"
52//usage: " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n"
53//usage: " ARG1 < ARG2 1 if ARG1 is less than ARG2, else 0. Similarly:\n"
54//usage: " ARG1 <= ARG2\n"
55//usage: " ARG1 = ARG2\n"
56//usage: " ARG1 != ARG2\n"
57//usage: " ARG1 >= ARG2\n"
58//usage: " ARG1 > ARG2\n"
59//usage: " ARG1 + ARG2 Sum of ARG1 and ARG2. Similarly:\n"
60//usage: " ARG1 - ARG2\n"
61//usage: " ARG1 * ARG2\n"
62//usage: " ARG1 / ARG2\n"
63//usage: " ARG1 % ARG2\n"
64//usage: " STRING : REGEXP Anchored pattern match of REGEXP in STRING\n"
65//usage: " match STRING REGEXP Same as STRING : REGEXP\n"
66//usage: " substr STRING POS LENGTH Substring of STRING, POS counted from 1\n"
67//usage: " index STRING CHARS Index in STRING where any CHARS is found, or 0\n"
68//usage: " length STRING Length of STRING\n"
69//usage: " quote TOKEN Interpret TOKEN as a string, even if\n"
70//usage: " it is a keyword like 'match' or an\n"
71//usage: " operator like '/'\n"
72//usage: " (EXPRESSION) Value of EXPRESSION\n"
73//usage: "\n"
74//usage: "Beware that many operators need to be escaped or quoted for shells.\n"
75//usage: "Comparisons are arithmetic if both ARGs are numbers, else\n"
76//usage: "lexicographical. Pattern matches return the string matched between\n"
77//usage: "\\( and \\) or null; if \\( and \\) are not used, they return the number\n"
78//usage: "of characters matched or 0."
79
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000080#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020081#include "common_bufsiz.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000082#include "xregex.h"
Eric Andersen1b355eb2000-09-05 17:37:48 +000083
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000084#if ENABLE_EXPR_MATH_SUPPORT_64
85typedef int64_t arith_t;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000086
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000087#define PF_REZ "ll"
Eric Andersen5e678872006-01-30 19:48:23 +000088#define PF_REZ_TYPE (long long)
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000089#define STRTOL(s, e, b) strtoll(s, e, b)
90#else
91typedef long arith_t;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000092
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000093#define PF_REZ "l"
Eric Andersen5e678872006-01-30 19:48:23 +000094#define PF_REZ_TYPE (long)
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +000095#define STRTOL(s, e, b) strtol(s, e, b)
96#endif
97
Denis Vlasenkod686a042006-11-27 14:43:21 +000098/* TODO: use bb_strtol[l]? It's easier to check for errors... */
99
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000100/* The kinds of value we can have. */
101enum {
102 INTEGER,
103 STRING
104};
105
Eric Andersen1b355eb2000-09-05 17:37:48 +0000106/* A value is.... */
107struct valinfo {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000108 smallint type; /* Which kind. */
109 union { /* The value itself. */
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000110 arith_t i;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000111 char *s;
112 } u;
113};
114typedef struct valinfo VALUE;
115
116/* The arguments given to the program, minus the program name. */
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000117struct globals {
118 char **args;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100119} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200120#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200121#define INIT_G() do { setup_common_bufsiz(); } while (0)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000122
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000123/* forward declarations */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000124static VALUE *eval(void);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000125
Eric Andersen1b355eb2000-09-05 17:37:48 +0000126
127/* Return a VALUE for I. */
128
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000129static VALUE *int_value(arith_t i)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000130{
131 VALUE *v;
132
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000133 v = xzalloc(sizeof(VALUE));
Denys Vlasenko73737592016-09-17 20:58:22 +0200134 if (INTEGER) /* otherwise xzalloc did it already */
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000135 v->type = INTEGER;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000136 v->u.i = i;
137 return v;
138}
139
140/* Return a VALUE for S. */
141
Denis Vlasenkoa41fdf32007-01-29 22:51:00 +0000142static VALUE *str_value(const char *s)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000143{
144 VALUE *v;
145
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000146 v = xzalloc(sizeof(VALUE));
Denys Vlasenko73737592016-09-17 20:58:22 +0200147 if (STRING) /* otherwise xzalloc did it already */
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000148 v->type = STRING;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000149 v->u.s = xstrdup(s);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000150 return v;
151}
152
153/* Free VALUE V, including structure components. */
154
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000155static void freev(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000156{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000157 if (v->type == STRING)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000158 free(v->u.s);
159 free(v);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000160}
161
162/* Return nonzero if V is a null-string or zero-number. */
163
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000164static int null(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000165{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000166 if (v->type == INTEGER)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000167 return v->u.i == 0;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000168 /* STRING: */
Denis Vlasenkocd27c422007-03-08 13:37:43 +0000169 return v->u.s[0] == '\0' || LONE_CHAR(v->u.s, '0');
Eric Andersen1b355eb2000-09-05 17:37:48 +0000170}
171
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000172/* Coerce V to a STRING value (can't fail). */
Eric Andersen1b355eb2000-09-05 17:37:48 +0000173
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000174static void tostring(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000175{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000176 if (v->type == INTEGER) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000177 v->u.s = xasprintf("%" PF_REZ "d", PF_REZ_TYPE v->u.i);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000178 v->type = STRING;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000179 }
180}
181
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000182/* Coerce V to an INTEGER value. Return 1 on success, 0 on failure. */
Eric Andersen1b355eb2000-09-05 17:37:48 +0000183
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000184static bool toarith(VALUE *v)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000185{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000186 if (v->type == STRING) {
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000187 arith_t i;
Manuel Novoa III 70183852004-01-25 19:47:10 +0000188 char *e;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000189
Manuel Novoa III 70183852004-01-25 19:47:10 +0000190 /* Don't interpret the empty string as an integer. */
191 /* Currently does not worry about overflow or int/long differences. */
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000192 i = STRTOL(v->u.s, &e, 10);
Manuel Novoa III 70183852004-01-25 19:47:10 +0000193 if ((v->u.s == e) || *e)
194 return 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000195 free(v->u.s);
Manuel Novoa III 70183852004-01-25 19:47:10 +0000196 v->u.i = i;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000197 v->type = INTEGER;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000198 }
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000199 return 1;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000200}
201
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000202/* Return str[0]+str[1] if the next token matches STR exactly.
Eric Andersen1b355eb2000-09-05 17:37:48 +0000203 STR must not be NULL. */
204
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000205static int nextarg(const char *str)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000206{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000207 if (*G.args == NULL || strcmp(*G.args, str) != 0)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000208 return 0;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000209 return (unsigned char)str[0] + (unsigned char)str[1];
Eric Andersen1b355eb2000-09-05 17:37:48 +0000210}
211
212/* The comparison operator handling functions. */
213
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000214static int cmp_common(VALUE *l, VALUE *r, int op)
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000215{
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000216 arith_t ll, rr;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000217
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000218 ll = l->u.i;
219 rr = r->u.i;
220 if (l->type == STRING || r->type == STRING) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000221 tostring(l);
222 tostring(r);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000223 ll = strcmp(l->u.s, r->u.s);
224 rr = 0;
225 }
226 /* calculating ll - rr and checking the result is prone to overflows.
227 * We'll do it differently: */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000228 if (op == '<')
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000229 return ll < rr;
230 if (op == ('<' + '='))
231 return ll <= rr;
232 if (op == '=' || (op == '=' + '='))
233 return ll == rr;
234 if (op == '!' + '=')
235 return ll != rr;
Denis Vlasenkocd27c422007-03-08 13:37:43 +0000236 if (op == '>')
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000237 return ll > rr;
Denis Vlasenkocd27c422007-03-08 13:37:43 +0000238 /* >= */
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000239 return ll >= rr;
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000240}
Eric Andersen1b355eb2000-09-05 17:37:48 +0000241
242/* The arithmetic operator handling functions. */
243
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000244static arith_t arithmetic_common(VALUE *l, VALUE *r, int op)
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000245{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000246 arith_t li, ri;
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000247
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000248 if (!toarith(l) || !toarith(r))
249 bb_error_msg_and_die("non-numeric argument");
250 li = l->u.i;
251 ri = r->u.i;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000252 if (op == '+')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000253 return li + ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000254 if (op == '-')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000255 return li - ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000256 if (op == '*')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000257 return li * ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000258 if (ri == 0)
259 bb_error_msg_and_die("division by zero");
260 if (op == '/')
Glenn L McGrath7b8765c2003-08-29 07:29:30 +0000261 return li / ri;
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000262 return li % ri;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000263}
264
Eric Andersen1b355eb2000-09-05 17:37:48 +0000265/* Do the : operator.
266 SV is the VALUE for the lhs (the string),
267 PV is the VALUE for the rhs (the pattern). */
268
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000269static VALUE *docolon(VALUE *sv, VALUE *pv)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000270{
Denys Vlasenko043b1e52009-09-06 12:47:55 +0200271 enum { NMATCH = 2 };
Eric Andersen1b355eb2000-09-05 17:37:48 +0000272 VALUE *v;
Rob Landley540d3f62005-05-09 21:42:42 +0000273 regex_t re_buffer;
Rob Landley540d3f62005-05-09 21:42:42 +0000274 regmatch_t re_regs[NMATCH];
Eric Andersen1b355eb2000-09-05 17:37:48 +0000275
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000276 tostring(sv);
277 tostring(pv);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000278
279 if (pv->u.s[0] == '^') {
Denis Vlasenko230997b2009-03-03 14:27:36 +0000280 bb_error_msg(
281"warning: '%s': using '^' as the first character\n"
282"of a basic regular expression is not portable; it is ignored", pv->u.s);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000283 }
284
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000285 memset(&re_buffer, 0, sizeof(re_buffer));
Denis Vlasenko230997b2009-03-03 14:27:36 +0000286 memset(re_regs, 0, sizeof(re_regs));
Bernhard Reutner-Fischer8025afa2007-04-02 16:54:41 +0000287 xregcomp(&re_buffer, pv->u.s, 0);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000288
Rob Landley540d3f62005-05-09 21:42:42 +0000289 /* expr uses an anchored pattern match, so check that there was a
290 * match and that the match starts at offset 0. */
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000291 if (regexec(&re_buffer, sv->u.s, NMATCH, re_regs, 0) != REG_NOMATCH
292 && re_regs[0].rm_so == 0
293 ) {
Eric Andersen1b355eb2000-09-05 17:37:48 +0000294 /* Were \(...\) used? */
Denis Vlasenko230997b2009-03-03 14:27:36 +0000295 if (re_buffer.re_nsub > 0 && re_regs[1].rm_so >= 0) {
Rob Landley540d3f62005-05-09 21:42:42 +0000296 sv->u.s[re_regs[1].rm_eo] = '\0';
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000297 v = str_value(sv->u.s + re_regs[1].rm_so);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000298 } else {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000299 v = int_value(re_regs[0].rm_eo);
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000300 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000301 } else {
Eric Andersen1b355eb2000-09-05 17:37:48 +0000302 /* Match failed -- return the right kind of null. */
303 if (re_buffer.re_nsub > 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000304 v = str_value("");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000305 else
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000306 v = int_value(0);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000307 }
Denis Vlasenko230997b2009-03-03 14:27:36 +0000308 regfree(&re_buffer);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000309 return v;
310}
311
312/* Handle bare operands and ( expr ) syntax. */
313
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000314static VALUE *eval7(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000315{
316 VALUE *v;
317
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000318 if (!*G.args)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000319 bb_error_msg_and_die("syntax error");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000320
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000321 if (nextarg("(")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000322 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000323 v = eval();
324 if (!nextarg(")"))
325 bb_error_msg_and_die("syntax error");
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000326 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000327 return v;
328 }
Eric Andersen1b355eb2000-09-05 17:37:48 +0000329
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000330 if (nextarg(")"))
331 bb_error_msg_and_die("syntax error");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000332
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000333 return str_value(*G.args++);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000334}
335
336/* Handle match, substr, index, length, and quote keywords. */
337
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000338static VALUE *eval6(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000339{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000340 static const char keywords[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000341 "quote\0""length\0""match\0""index\0""substr\0";
Eric Andersen1b355eb2000-09-05 17:37:48 +0000342
Denis Vlasenkoc6753c12007-07-01 18:33:35 +0000343 VALUE *r, *i1, *i2;
344 VALUE *l = l; /* silence gcc */
345 VALUE *v = v; /* silence gcc */
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000346 int key = *G.args ? index_in_strings(keywords, *G.args) + 1 : 0;
Denis Vlasenkoc6753c12007-07-01 18:33:35 +0000347
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000348 if (key == 0) /* not a keyword */
349 return eval7();
350 G.args++; /* We have a valid token, so get the next argument. */
351 if (key == 1) { /* quote */
352 if (!*G.args)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000353 bb_error_msg_and_die("syntax error");
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000354 return str_value(*G.args++);
355 }
356 if (key == 2) { /* length */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000357 r = eval6();
358 tostring(r);
359 v = int_value(strlen(r->u.s));
360 freev(r);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000361 } else
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000362 l = eval6();
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000363
364 if (key == 3) { /* match */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000365 r = eval6();
366 v = docolon(l, r);
367 freev(l);
368 freev(r);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000369 }
370 if (key == 4) { /* index */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000371 r = eval6();
372 tostring(l);
373 tostring(r);
374 v = int_value(strcspn(l->u.s, r->u.s) + 1);
375 if (v->u.i == (arith_t) strlen(l->u.s) + 1)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000376 v->u.i = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000377 freev(l);
378 freev(r);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000379 }
380 if (key == 5) { /* substr */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000381 i1 = eval6();
382 i2 = eval6();
383 tostring(l);
384 if (!toarith(i1) || !toarith(i2)
Denis Vlasenkoc6753c12007-07-01 18:33:35 +0000385 || i1->u.i > (arith_t) strlen(l->u.s)
386 || i1->u.i <= 0 || i2->u.i <= 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000387 v = str_value("");
Eric Andersen1b355eb2000-09-05 17:37:48 +0000388 else {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000389 v = xmalloc(sizeof(VALUE));
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000390 v->type = STRING;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000391 v->u.s = xstrndup(l->u.s + i1->u.i - 1, i2->u.i);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000392 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000393 freev(l);
394 freev(i1);
395 freev(i2);
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000396 }
397 return v;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000398}
399
400/* Handle : operator (pattern matching).
401 Calls docolon to do the real work. */
402
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000403static VALUE *eval5(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000404{
405 VALUE *l, *r, *v;
406
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000407 l = eval6();
408 while (nextarg(":")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000409 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000410 r = eval6();
411 v = docolon(l, r);
412 freev(l);
413 freev(r);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000414 l = v;
415 }
416 return l;
417}
418
419/* Handle *, /, % operators. */
420
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000421static VALUE *eval4(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000422{
423 VALUE *l, *r;
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000424 int op;
425 arith_t val;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000426
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000427 l = eval5();
Eric Andersen1b355eb2000-09-05 17:37:48 +0000428 while (1) {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000429 op = nextarg("*");
430 if (!op) { op = nextarg("/");
431 if (!op) { op = nextarg("%");
432 if (!op) return l;
433 }}
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000434 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000435 r = eval5();
436 val = arithmetic_common(l, r, op);
437 freev(l);
438 freev(r);
439 l = int_value(val);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000440 }
441}
442
443/* Handle +, - operators. */
444
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000445static VALUE *eval3(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000446{
447 VALUE *l, *r;
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000448 int op;
449 arith_t val;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000450
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000451 l = eval4();
Eric Andersen1b355eb2000-09-05 17:37:48 +0000452 while (1) {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000453 op = nextarg("+");
454 if (!op) {
455 op = nextarg("-");
456 if (!op) return l;
457 }
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000458 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000459 r = eval4();
460 val = arithmetic_common(l, r, op);
461 freev(l);
462 freev(r);
463 l = int_value(val);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000464 }
465}
466
467/* Handle comparisons. */
468
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000469static VALUE *eval2(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000470{
471 VALUE *l, *r;
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000472 int op;
473 arith_t val;
Eric Andersen1b355eb2000-09-05 17:37:48 +0000474
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000475 l = eval3();
Eric Andersen1b355eb2000-09-05 17:37:48 +0000476 while (1) {
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000477 op = nextarg("<");
478 if (!op) { op = nextarg("<=");
479 if (!op) { op = nextarg("=");
480 if (!op) { op = nextarg("==");
481 if (!op) { op = nextarg("!=");
482 if (!op) { op = nextarg(">=");
483 if (!op) { op = nextarg(">");
484 if (!op) return l;
485 }}}}}}
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000486 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000487 r = eval3();
488 toarith(l);
489 toarith(r);
490 val = cmp_common(l, r, op);
491 freev(l);
492 freev(r);
493 l = int_value(val);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000494 }
495}
496
497/* Handle &. */
498
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000499static VALUE *eval1(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000500{
501 VALUE *l, *r;
502
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000503 l = eval2();
504 while (nextarg("&")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000505 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000506 r = eval2();
507 if (null(l) || null(r)) {
508 freev(l);
509 freev(r);
510 l = int_value(0);
511 } else
512 freev(r);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000513 }
514 return l;
515}
516
517/* Handle |. */
518
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000519static VALUE *eval(void)
Eric Andersen1b355eb2000-09-05 17:37:48 +0000520{
521 VALUE *l, *r;
522
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000523 l = eval1();
524 while (nextarg("|")) {
Bernhard Reutner-Fischeradb01b12007-04-02 16:38:13 +0000525 G.args++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000526 r = eval1();
527 if (null(l)) {
528 freev(l);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000529 l = r;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000530 } else
531 freev(r);
Eric Andersen1b355eb2000-09-05 17:37:48 +0000532 }
533 return l;
534}
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000535
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000536int expr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko272710f2008-11-11 22:36:58 +0000537int expr_main(int argc UNUSED_PARAM, char **argv)
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000538{
539 VALUE *v;
540
Denys Vlasenko16714242011-09-21 01:59:15 +0200541 INIT_G();
542
Denis Vlasenko272710f2008-11-11 22:36:58 +0000543 xfunc_error_retval = 2; /* coreutils compat */
544 G.args = argv + 1;
545 if (*G.args == NULL) {
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000546 bb_error_msg_and_die("too few arguments");
547 }
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000548 v = eval();
549 if (*G.args)
550 bb_error_msg_and_die("syntax error");
Denis Vlasenkoa7f4e4b2008-04-02 20:24:09 +0000551 if (v->type == INTEGER)
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000552 printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i);
553 else
554 puts(v->u.s);
Bernhard Reutner-Fischer3c5929a2007-04-02 16:41:24 +0000555 fflush_stdout_and_exit(null(v));
556}