logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

expr.y (12405B)


  1. %{
  2. // SPDX-License-Identifier: 0BSD
  3. // Copyright Pace Willisson (pace@blitz.com), J.T. Conklin (jtc@wimsey.com)
  4. /*-
  5. * Written by Pace Willisson (pace@blitz.com)
  6. * and placed in the public domain.
  7. *
  8. * Largely rewritten by J.T. Conklin (jtc@wimsey.com)
  9. */
  10. /*
  11. * Warning: OpenBSD yacc prints the following at the very beginning:
  12. * #include <string.h>
  13. * #include <stdlib.h>
  14. */
  15. #include <assert.h>
  16. #include <sys/types.h>
  17. #include <ctype.h>
  18. #include "../lib/err.h"
  19. #include "../lib/getopt_nolong.h"
  20. #include <errno.h>
  21. #include <inttypes.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <regex.h>
  28. #include <unistd.h>
  29. /*
  30. * POSIX specifies a specific error code for syntax errors. We exit
  31. * with this code for all errors.
  32. */
  33. #define ERR_EXIT 2
  34. enum valtype {
  35. integer, numeric_string, string
  36. } ;
  37. struct val {
  38. enum valtype type;
  39. union {
  40. char *s;
  41. intmax_t i;
  42. } u;
  43. } ;
  44. char **av;
  45. int nonposix;
  46. struct val *result;
  47. static void assert_to_integer(struct val *);
  48. static void assert_div(intmax_t, intmax_t);
  49. static void assert_minus(intmax_t, intmax_t, intmax_t);
  50. static void assert_plus(intmax_t, intmax_t, intmax_t);
  51. static void assert_times(intmax_t, intmax_t, intmax_t);
  52. static int compare_vals(struct val *, struct val *);
  53. static void free_value(struct val *);
  54. static int is_integer(const char *);
  55. static int is_string(struct val *);
  56. static int is_zero_or_null(struct val *);
  57. static struct val *make_integer(intmax_t);
  58. static struct val *make_str(const char *);
  59. static struct val *op_and(struct val *, struct val *);
  60. static struct val *op_colon(struct val *, struct val *);
  61. static struct val *op_div(struct val *, struct val *);
  62. static struct val *op_eq(struct val *, struct val *);
  63. static struct val *op_ge(struct val *, struct val *);
  64. static struct val *op_gt(struct val *, struct val *);
  65. static struct val *op_le(struct val *, struct val *);
  66. static struct val *op_lt(struct val *, struct val *);
  67. static struct val *op_minus(struct val *, struct val *);
  68. static struct val *op_ne(struct val *, struct val *);
  69. static struct val *op_or(struct val *, struct val *);
  70. static struct val *op_plus(struct val *, struct val *);
  71. static struct val *op_rem(struct val *, struct val *);
  72. static struct val *op_times(struct val *, struct val *);
  73. static int to_integer(struct val *);
  74. static void to_string(struct val *);
  75. #define YYERROR_IS_DECLARED
  76. static int yyerror(const char *);
  77. static int yylex(void);
  78. const char *argv0 = "expr";
  79. %}
  80. %union
  81. {
  82. struct val *val;
  83. }
  84. %left <val> '|'
  85. %left <val> '&'
  86. %left <val> '=' '>' '<' GE LE NE
  87. %left <val> '+' '-'
  88. %left <val> '*' '/' '%'
  89. %left <val> ':'
  90. %token <val> TOKEN
  91. %type <val> start expr
  92. %%
  93. start: expr { result = $$; }
  94. expr: TOKEN
  95. | '(' expr ')' { $$ = $2; }
  96. | expr '|' expr { $$ = op_or($1, $3); }
  97. | expr '&' expr { $$ = op_and($1, $3); }
  98. | expr '=' expr { $$ = op_eq($1, $3); }
  99. | expr '>' expr { $$ = op_gt($1, $3); }
  100. | expr '<' expr { $$ = op_lt($1, $3); }
  101. | expr GE expr { $$ = op_ge($1, $3); }
  102. | expr LE expr { $$ = op_le($1, $3); }
  103. | expr NE expr { $$ = op_ne($1, $3); }
  104. | expr '+' expr { $$ = op_plus($1, $3); }
  105. | expr '-' expr { $$ = op_minus($1, $3); }
  106. | expr '*' expr { $$ = op_times($1, $3); }
  107. | expr '/' expr { $$ = op_div($1, $3); }
  108. | expr '%' expr { $$ = op_rem($1, $3); }
  109. | expr ':' expr { $$ = op_colon($1, $3); }
  110. ;
  111. %%
  112. static struct val *
  113. make_integer(intmax_t i)
  114. {
  115. struct val *vp;
  116. vp = (struct val *)malloc(sizeof(*vp));
  117. if (vp == NULL)
  118. utils_errx(ERR_EXIT, "malloc(vp) failed");
  119. vp->type = integer;
  120. vp->u.i = i;
  121. return (vp);
  122. }
  123. static struct val *
  124. make_str(const char *s)
  125. {
  126. struct val *vp;
  127. vp = (struct val *)malloc(sizeof(*vp));
  128. if (vp == NULL)
  129. utils_errx(ERR_EXIT, "malloc(vp) failed");
  130. if ((vp->u.s = strdup(s)) == NULL)
  131. utils_errx(ERR_EXIT, "strdup(s) failed");
  132. if (is_integer(s))
  133. vp->type = numeric_string;
  134. else
  135. vp->type = string;
  136. return (vp);
  137. }
  138. static void
  139. free_value(struct val *vp)
  140. {
  141. if (vp->type == string || vp->type == numeric_string)
  142. free(vp->u.s);
  143. if (vp->type == string || vp->type == numeric_string || vp->type == integer)
  144. free(vp);
  145. }
  146. static int
  147. to_integer(struct val *vp)
  148. {
  149. intmax_t i;
  150. /* we can only convert numeric_string to integer, here */
  151. if (vp->type == numeric_string) {
  152. errno = 0;
  153. i = strtoimax(vp->u.s, (char **)NULL, 10);
  154. /* just keep as numeric_string, if the conversion fails */
  155. if (errno != ERANGE) {
  156. free(vp->u.s);
  157. vp->u.i = i;
  158. vp->type = integer;
  159. }
  160. }
  161. return (vp->type == integer);
  162. }
  163. static void
  164. assert_to_integer(struct val *vp)
  165. {
  166. if (vp->type == string)
  167. utils_errx(ERR_EXIT, "not a decimal number: '%s'", vp->u.s);
  168. if (!to_integer(vp))
  169. utils_errx(ERR_EXIT, "operand too large: '%s'", vp->u.s);
  170. }
  171. static void
  172. to_string(struct val *vp)
  173. {
  174. char *tmp;
  175. if (vp->type == string || vp->type == numeric_string)
  176. return;
  177. /*
  178. * log_10(x) ~= 0.3 * log_2(x). Rounding up gives the number
  179. * of digits; add one each for the sign and terminating null
  180. * character, respectively.
  181. */
  182. #define NDIGITS(x) (3 * (sizeof(x) * CHAR_BIT) / 10 + 1 + 1 + 1)
  183. tmp = malloc(NDIGITS(vp->u.i));
  184. if (tmp == NULL)
  185. utils_errx(ERR_EXIT, "malloc() failed");
  186. sprintf(tmp, "%jd", vp->u.i);
  187. vp->type = string;
  188. vp->u.s = tmp;
  189. }
  190. static int
  191. is_integer(const char *s)
  192. {
  193. if (nonposix) {
  194. if (*s == '\0')
  195. return (1);
  196. while (isspace((unsigned char)*s))
  197. s++;
  198. }
  199. if (*s == '-' || (nonposix && *s == '+'))
  200. s++;
  201. if (*s == '\0')
  202. return (0);
  203. while (isdigit((unsigned char)*s))
  204. s++;
  205. return (*s == '\0');
  206. }
  207. static int
  208. is_string(struct val *vp)
  209. {
  210. /* only TRUE if this string is not a valid integer */
  211. return (vp->type == string);
  212. }
  213. static int
  214. yylex(void)
  215. {
  216. char *p;
  217. if (*av == NULL)
  218. return (0);
  219. p = *av++;
  220. if (strlen(p) == 1) {
  221. if (strchr("|&=<>+-*/%:()", *p))
  222. return (*p);
  223. } else if (strlen(p) == 2 && p[1] == '=') {
  224. switch (*p) {
  225. case '>': return (GE);
  226. case '<': return (LE);
  227. case '!': return (NE);
  228. }
  229. }
  230. yylval.val = make_str(p);
  231. return (TOKEN);
  232. }
  233. static int
  234. is_zero_or_null(struct val *vp)
  235. {
  236. if (vp->type == integer)
  237. return (vp->u.i == 0);
  238. return (*vp->u.s == 0 || (to_integer(vp) && vp->u.i == 0));
  239. }
  240. int
  241. main(int argc, char *argv[])
  242. {
  243. int c;
  244. char *lc_all = setlocale(LC_ALL, "");
  245. if(lc_all == NULL)
  246. {
  247. fprintf(stderr, "%s: warning: Failed loading locales. setlocale(LC_ALL, \"\"): %s\n", argv0, strerror(errno));
  248. }
  249. errno = 0;
  250. if (getenv("EXPR_COMPAT") != NULL
  251. || getenv("POSIXLY_CORRECT") != NULL) {
  252. av = argv + 1;
  253. nonposix = 1;
  254. } else {
  255. while ((c = getopt_nolong(argc, argv, ":e")) != -1) {
  256. switch (c) {
  257. case 'e':
  258. nonposix = 1;
  259. break;
  260. case ':':
  261. utils_errx(1, "Missing operand for option: '-%c'", optopt);
  262. break;
  263. case '?':
  264. utils_errx(1, "Unrecognised option: '-%c'", optopt);
  265. break;
  266. default:
  267. abort();
  268. }
  269. }
  270. av = argv + optind;
  271. }
  272. yyparse();
  273. assert(result);
  274. if (result->type == integer)
  275. printf("%jd\n", result->u.i);
  276. else
  277. printf("%s\n", result->u.s);
  278. int err = is_zero_or_null(result);
  279. free_value(result);
  280. return err;
  281. }
  282. static int
  283. yyerror(const char *s)
  284. {
  285. utils_errx(ERR_EXIT, "syntax error: %s", s);
  286. }
  287. static struct val *
  288. op_or(struct val *a, struct val *b)
  289. {
  290. if (!is_zero_or_null(a)) {
  291. free_value(b);
  292. return (a);
  293. }
  294. free_value(a);
  295. if (!is_zero_or_null(b))
  296. return (b);
  297. free_value(b);
  298. return (make_integer((intmax_t)0));
  299. }
  300. static struct val *
  301. op_and(struct val *a, struct val *b)
  302. {
  303. if (is_zero_or_null(a) || is_zero_or_null(b)) {
  304. free_value(a);
  305. free_value(b);
  306. return (make_integer((intmax_t)0));
  307. } else {
  308. free_value(b);
  309. return (a);
  310. }
  311. }
  312. static int
  313. compare_vals(struct val *a, struct val *b)
  314. {
  315. int r;
  316. if (is_string(a) || is_string(b)) {
  317. to_string(a);
  318. to_string(b);
  319. r = strcoll(a->u.s, b->u.s);
  320. } else {
  321. assert_to_integer(a);
  322. assert_to_integer(b);
  323. if (a->u.i > b->u.i)
  324. r = 1;
  325. else if (a->u.i < b->u.i)
  326. r = -1;
  327. else
  328. r = 0;
  329. }
  330. free_value(a);
  331. free_value(b);
  332. return (r);
  333. }
  334. static struct val *
  335. op_eq(struct val *a, struct val *b)
  336. {
  337. return (make_integer((intmax_t)(compare_vals(a, b) == 0)));
  338. }
  339. static struct val *
  340. op_gt(struct val *a, struct val *b)
  341. {
  342. return (make_integer((intmax_t)(compare_vals(a, b) > 0)));
  343. }
  344. static struct val *
  345. op_lt(struct val *a, struct val *b)
  346. {
  347. return (make_integer((intmax_t)(compare_vals(a, b) < 0)));
  348. }
  349. static struct val *
  350. op_ge(struct val *a, struct val *b)
  351. {
  352. return (make_integer((intmax_t)(compare_vals(a, b) >= 0)));
  353. }
  354. static struct val *
  355. op_le(struct val *a, struct val *b)
  356. {
  357. return (make_integer((intmax_t)(compare_vals(a, b) <= 0)));
  358. }
  359. static struct val *
  360. op_ne(struct val *a, struct val *b)
  361. {
  362. return (make_integer((intmax_t)(compare_vals(a, b) != 0)));
  363. }
  364. static void
  365. assert_plus(intmax_t a, intmax_t b, intmax_t r)
  366. {
  367. /*
  368. * sum of two positive numbers must be positive,
  369. * sum of two negative numbers must be negative
  370. */
  371. if ((a > 0 && b > 0 && r <= 0) ||
  372. (a < 0 && b < 0 && r >= 0))
  373. utils_errx(ERR_EXIT, "overflow");
  374. }
  375. static struct val *
  376. op_plus(struct val *a, struct val *b)
  377. {
  378. struct val *r;
  379. assert_to_integer(a);
  380. assert_to_integer(b);
  381. r = make_integer(a->u.i + b->u.i);
  382. assert_plus(a->u.i, b->u.i, r->u.i);
  383. free_value(a);
  384. free_value(b);
  385. return (r);
  386. }
  387. static void
  388. assert_minus(intmax_t a, intmax_t b, intmax_t r)
  389. {
  390. if ((a >= 0 && b < 0 && r <= 0) ||
  391. (a < 0 && b > 0 && r >= 0))
  392. utils_errx(ERR_EXIT, "overflow");
  393. }
  394. static struct val *
  395. op_minus(struct val *a, struct val *b)
  396. {
  397. struct val *r;
  398. assert_to_integer(a);
  399. assert_to_integer(b);
  400. r = make_integer(a->u.i - b->u.i);
  401. assert_minus(a->u.i, b->u.i, r->u.i);
  402. free_value(a);
  403. free_value(b);
  404. return (r);
  405. }
  406. /*
  407. * We depend on undefined behaviour giving a result (in r).
  408. * To test this result, pass it as volatile. This prevents
  409. * optimizing away of the test based on the undefined behaviour.
  410. */
  411. static void
  412. assert_times(intmax_t a, intmax_t b, volatile intmax_t r)
  413. {
  414. /*
  415. * If the first operand is 0, no overflow is possible,
  416. * else the result of the division test must match the
  417. * second operand.
  418. *
  419. * Be careful to avoid overflow in the overflow test, as
  420. * in assert_div(). Overflow in division would kill us
  421. * with a SIGFPE before getting the test wrong. In old
  422. * buggy versions, optimization used to give a null test
  423. * instead of a SIGFPE.
  424. */
  425. if ((a == -1 && b == INTMAX_MIN) || (a != 0 && r / a != b))
  426. utils_errx(ERR_EXIT, "overflow");
  427. }
  428. static struct val *
  429. op_times(struct val *a, struct val *b)
  430. {
  431. struct val *r;
  432. assert_to_integer(a);
  433. assert_to_integer(b);
  434. r = make_integer(a->u.i * b->u.i);
  435. assert_times(a->u.i, b->u.i, r->u.i);
  436. free_value(a);
  437. free_value(b);
  438. return (r);
  439. }
  440. static void
  441. assert_div(intmax_t a, intmax_t b)
  442. {
  443. if (b == 0)
  444. utils_errx(ERR_EXIT, "division by zero");
  445. /* only INTMAX_MIN / -1 causes overflow */
  446. if (a == INTMAX_MIN && b == -1)
  447. utils_errx(ERR_EXIT, "overflow");
  448. }
  449. static struct val *
  450. op_div(struct val *a, struct val *b)
  451. {
  452. struct val *r;
  453. assert_to_integer(a);
  454. assert_to_integer(b);
  455. /* assert based on operands only, not on result */
  456. assert_div(a->u.i, b->u.i);
  457. r = make_integer(a->u.i / b->u.i);
  458. free_value(a);
  459. free_value(b);
  460. return (r);
  461. }
  462. static struct val *
  463. op_rem(struct val *a, struct val *b)
  464. {
  465. struct val *r;
  466. assert_to_integer(a);
  467. assert_to_integer(b);
  468. /* pass a=1 to only check for div by zero */
  469. assert_div(1, b->u.i);
  470. r = make_integer(a->u.i % b->u.i);
  471. free_value(a);
  472. free_value(b);
  473. return (r);
  474. }
  475. static struct val *
  476. op_colon(struct val *a, struct val *b)
  477. {
  478. regex_t rp;
  479. regmatch_t rm[2];
  480. char errbuf[256];
  481. int eval;
  482. struct val *v;
  483. /* coerce both arguments to strings */
  484. to_string(a);
  485. to_string(b);
  486. /* compile regular expression */
  487. if ((eval = regcomp(&rp, b->u.s, 0)) != 0) {
  488. regerror(eval, &rp, errbuf, sizeof(errbuf));
  489. utils_errx(ERR_EXIT, "%s", errbuf);
  490. }
  491. /* compare string against pattern */
  492. /* remember that patterns are anchored to the beginning of the line */
  493. if (regexec(&rp, a->u.s, (size_t)2, rm, 0) == 0 && rm[0].rm_so == 0)
  494. if (rm[1].rm_so >= 0) {
  495. *(a->u.s + rm[1].rm_eo) = '\0';
  496. v = make_str(a->u.s + rm[1].rm_so);
  497. } else
  498. v = make_integer((intmax_t)(rm[0].rm_eo));
  499. else
  500. if (rp.re_nsub == 0)
  501. v = make_integer((intmax_t)0);
  502. else
  503. v = make_str("");
  504. /* free arguments and pattern buffer */
  505. free_value(a);
  506. free_value(b);
  507. regfree(&rp);
  508. return (v);
  509. }