Skip to content
Snippets Groups Projects
ast_expr.y 13.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mark Spencer's avatar
    Mark Spencer committed
    %{
    /* Written by Pace Willisson (pace@blitz.com) 
     * and placed in the public domain.
     *
     * Largely rewritten by J.T. Conklin (jtc@wimsey.com)
     *
     * $FreeBSD: src/bin/expr/expr.y,v 1.16 2000/07/22 10:59:36 se Exp $
     */
    
    #include <sys/types.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <locale.h>
    #include <ctype.h>
    #include <err.h>
    #include <errno.h>
    #include <regex.h>
    #include <limits.h>
    #include <asterisk/ast_expr.h>
    #include <asterisk/logger.h>
    
    #  if ! defined(QUAD_MIN)
    #   define QUAD_MIN     (-0x7fffffffffffffffL-1)
    #  endif
    #  if ! defined(QUAD_MAX)
    #   define QUAD_MAX     (0x7fffffffffffffffL)
    #  endif
    
    #define YYPARSE_PARAM kota
    #define YYLEX_PARAM kota
    
    /* #define ast_log fprintf
    #define LOG_WARNING stderr */
      
    enum valtype {
    	integer, numeric_string, string
    } ;
    
    struct val {
    	enum valtype type;
    	union {
    		char *s;
    		quad_t i;
    	} u;
    } ;
    
    struct parser_control {
    	struct val *result;
    	int pipa;
    	char *argv;
    	char *ptrptr;
    	int firsttoken;
    } ;
    
    static int		chk_div __P((quad_t, quad_t));
    static int		chk_minus __P((quad_t, quad_t, quad_t));
    static int		chk_plus __P((quad_t, quad_t, quad_t));
    static int		chk_times __P((quad_t, quad_t, quad_t));
    static void		free_value __P((struct val *));
    static int		is_zero_or_null __P((struct val *));
    static int		isstring __P((struct val *));
    static struct val	*make_integer __P((quad_t));
    static struct val	*make_str __P((const char *));
    static struct val	*op_and __P((struct val *, struct val *));
    static struct val	*op_colon __P((struct val *, struct val *));
    static struct val	*op_div __P((struct val *, struct val *));
    static struct val	*op_eq __P((struct val *, struct val *));
    static struct val	*op_ge __P((struct val *, struct val *));
    static struct val	*op_gt __P((struct val *, struct val *));
    static struct val	*op_le __P((struct val *, struct val *));
    static struct val	*op_lt __P((struct val *, struct val *));
    static struct val	*op_minus __P((struct val *, struct val *));
    static struct val	*op_ne __P((struct val *, struct val *));
    static struct val	*op_or __P((struct val *, struct val *));
    static struct val	*op_plus __P((struct val *, struct val *));
    static struct val	*op_rem __P((struct val *, struct val *));
    static struct val	*op_times __P((struct val *, struct val *));
    static quad_t		to_integer __P((struct val *));
    static void		to_string __P((struct val *));
    static int		ast_yyerror __P((const char *));
    %}
    
    %pure-parser
    /* %name-prefix="ast_yy" */
    
    %union
    {
    	struct val *val;
    }
    
    
    Mark Spencer's avatar
    Mark Spencer committed
    %{
    static int		ast_yylex __P((YYSTYPE *, struct parser_control *));
    %}
    
    
    
    Mark Spencer's avatar
    Mark Spencer committed
    %left <val> '|'
    %left <val> '&'
    %left <val> '=' '>' '<' GE LE NE
    %left <val> '+' '-'
    %left <val> '*' '/' '%'
    %left <val> ':'
    
    %token <val> TOKEN
    %type <val> start expr
    
    %%
    
    start: expr { ((struct parser_control *)kota)->result = $$; }
    
    Mark Spencer's avatar
    Mark Spencer committed
    	;
    
    Mark Spencer's avatar
    Mark Spencer committed
    
    expr:	TOKEN
    	| '(' expr ')' { $$ = $2; }
    	| expr '|' expr { $$ = op_or ($1, $3); }
    	| expr '&' expr { $$ = op_and ($1, $3); }
    	| expr '=' expr { $$ = op_eq ($1, $3); }
    	| expr '>' expr { $$ = op_gt ($1, $3); }
    	| expr '<' expr { $$ = op_lt ($1, $3); }
    	| expr GE expr  { $$ = op_ge ($1, $3); }
    	| expr LE expr  { $$ = op_le ($1, $3); }
    	| expr NE expr  { $$ = op_ne ($1, $3); }
    	| expr '+' expr { $$ = op_plus ($1, $3); }
    	| expr '-' expr { $$ = op_minus ($1, $3); }
    	| expr '*' expr { $$ = op_times ($1, $3); }
    	| expr '/' expr { $$ = op_div ($1, $3); }
    	| expr '%' expr { $$ = op_rem ($1, $3); }
    	| expr ':' expr { $$ = op_colon ($1, $3); }
    	;
    
    
    %%
    
    static struct val *
    make_integer (i)
    quad_t i;
    {
    	struct val *vp;
    
    	vp = (struct val *) malloc (sizeof (*vp));
    	if (vp == NULL) {
    		ast_log(LOG_WARNING, "malloc() failed\n");
    		return(NULL);
    	}
    
    	vp->type = integer;
    	vp->u.i  = i;
    	return vp; 
    }
    
    static struct val *
    make_str (s)
    const char *s;
    {
    	struct val *vp;
    	size_t i;
    	int isint;
    
    	vp = (struct val *) malloc (sizeof (*vp));
    	if (vp == NULL || ((vp->u.s = strdup (s)) == NULL)) {
    		ast_log(LOG_WARNING,"malloc() failed\n");
    		return(NULL);
    	}
    
    	for(i = 1, isint = isdigit(s[0]) || s[0] == '-';
    	    isint && i < strlen(s);
    	    i++)
    	{
    		if(!isdigit(s[i]))
    			 isint = 0;
    	}
    
    	if (isint)
    		vp->type = numeric_string;
    	else	
    		vp->type = string;
    
    	return vp;
    }
    
    
    static void
    free_value (vp)
    struct val *vp;
    {	
    	if (vp==NULL) {
    		return;
    	}
    	if (vp->type == string || vp->type == numeric_string)
    		free (vp->u.s);	
    }
    
    
    static quad_t
    to_integer (vp)
    struct val *vp;
    {
    	quad_t i;
    
    	if (vp == NULL) {
    		ast_log(LOG_WARNING,"vp==NULL in to_integer()\n");
    		return(0);
    	}
    
    	if (vp->type == integer)
    		return 1;
    
    	if (vp->type == string)
    		return 0;
    
    	/* vp->type == numeric_string, make it numeric */
    	errno = 0;
    	i  = strtoq(vp->u.s, (char**)NULL, 10);
    	if (errno != 0) {
    		free(vp->u.s);
    		ast_log(LOG_WARNING,"overflow\n");
    		return(0);
    	}
    	free (vp->u.s);
    	vp->u.i = i;
    	vp->type = integer;
    	return 1;
    }
    
    static void
    to_string (vp)
    struct val *vp;
    {
    	char *tmp;
    
    	if (vp->type == string || vp->type == numeric_string)
    		return;
    
    	tmp = malloc ((size_t)25);
    	if (tmp == NULL) {
    		ast_log(LOG_WARNING,"malloc() failed\n");
    		return;
    	}
    
    	sprintf (tmp, "%lld", (long long)vp->u.i);
    	vp->type = string;
    	vp->u.s  = tmp;
    }
    
    
    static int
    isstring (vp)
    struct val *vp;
    {
    	/* only TRUE if this string is not a valid integer */
    	return (vp->type == string);
    }
    
    
    static int
    ast_yylex (YYSTYPE *lvalp, struct parser_control *karoto)
    {
    	char *p;
    
    	if (karoto->firsttoken==1) {
    		p=strtok_r(karoto->argv," ",&(karoto->ptrptr));
    		karoto->firsttoken=0;
    	} else {
    		p=strtok_r(NULL," ",&(karoto->ptrptr));
    	}
    
    	if (p==NULL) {
    		return (0);
    	}
    
    
    	if (strlen (p) == 1) {
    		if (strchr ("|&=<>+-*/%:()", *p))
    			return (*p);
    	} else if (strlen (p) == 2 && p[1] == '=') {
    		switch (*p) {
    		case '>': return (GE);
    		case '<': return (LE);
    		case '!': return (NE);
    		}
    	}
    
    	lvalp->val = make_str (p);
    	return (TOKEN);
    }
    
    static int
    is_zero_or_null (vp)
    struct val *vp;
    {
    	if (vp->type == integer) {
    		return (vp->u.i == 0);
    	} else {
    		return (*vp->u.s == 0 || (to_integer (vp) && vp->u.i == 0));
    	}
    	/* NOTREACHED */
    }
    
    char *ast_expr (char *arg)
    {
    	struct parser_control karoto;
    
    	char *kota;
    	char *pirouni;
    	
    	kota=strdup(arg);
    
    Mark Spencer's avatar
    Mark Spencer committed
    	karoto.result = NULL;
    
    Mark Spencer's avatar
    Mark Spencer committed
    307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
    	karoto.firsttoken=1;
    	karoto.argv=kota;
    
    	ast_yyparse ((void *)&karoto);
    
    	free(kota);
    
    	if (karoto.result==NULL) {
    		pirouni=strdup("0");
    		return(pirouni);
    	} else {
    		if (karoto.result->type == integer) {
    			pirouni=malloc(256);
    			sprintf (pirouni,"%lld", (long long)karoto.result->u.i);
    		}
    		else {
    			pirouni=strdup(karoto.result->u.s);
    		}
    		free(karoto.result);
    	}
    	return(pirouni);
    }
    
    #ifdef STANDALONE
    
    int main(int argc,char **argv) {
    	char *s;
    
    	s=ast_expr(argv[1]);
    
    	printf("=====%s======\n",s);
    }
    
    #endif
    
    static int
    ast_yyerror (s)
    const char *s;
    {	
    	ast_log(LOG_WARNING,"ast_yyerror(): syntax error: %s\n",s);
    	return(0);
    }
    
    
    static struct val *
    op_or (a, b)
    struct val *a, *b;
    {
    	if (is_zero_or_null (a)) {
    		free_value (a);
    		return (b);
    	} else {
    		free_value (b);
    		return (a);
    	}
    }
    		
    static struct val *
    op_and (a, b)
    struct val *a, *b;
    {
    	if (is_zero_or_null (a) || is_zero_or_null (b)) {
    		free_value (a);
    		free_value (b);
    		return (make_integer ((quad_t)0));
    	} else {
    		free_value (b);
    		return (a);
    	}
    }
    
    static struct val *
    op_eq (a, b)
    struct val *a, *b;
    {
    	struct val *r; 
    
    	if (isstring (a) || isstring (b)) {
    		to_string (a);
    		to_string (b);	
    		r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) == 0));
    	} else {
    		(void)to_integer(a);
    		(void)to_integer(b);
    		r = make_integer ((quad_t)(a->u.i == b->u.i));
    	}
    
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static struct val *
    op_gt (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (isstring (a) || isstring (b)) {
    		to_string (a);
    		to_string (b);
    		r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) > 0));
    	} else {
    		(void)to_integer(a);
    		(void)to_integer(b);
    		r = make_integer ((quad_t)(a->u.i > b->u.i));
    	}
    
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static struct val *
    op_lt (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (isstring (a) || isstring (b)) {
    		to_string (a);
    		to_string (b);
    		r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) < 0));
    	} else {
    		(void)to_integer(a);
    		(void)to_integer(b);
    		r = make_integer ((quad_t)(a->u.i < b->u.i));
    	}
    
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static struct val *
    op_ge (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (isstring (a) || isstring (b)) {
    		to_string (a);
    		to_string (b);
    		r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) >= 0));
    	} else {
    		(void)to_integer(a);
    		(void)to_integer(b);
    		r = make_integer ((quad_t)(a->u.i >= b->u.i));
    	}
    
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static struct val *
    op_le (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (isstring (a) || isstring (b)) {
    		to_string (a);
    		to_string (b);
    		r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) <= 0));
    	} else {
    		(void)to_integer(a);
    		(void)to_integer(b);
    		r = make_integer ((quad_t)(a->u.i <= b->u.i));
    	}
    
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static struct val *
    op_ne (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (isstring (a) || isstring (b)) {
    		to_string (a);
    		to_string (b);
    		r = make_integer ((quad_t)(strcoll (a->u.s, b->u.s) != 0));
    	} else {
    		(void)to_integer(a);
    		(void)to_integer(b);
    		r = make_integer ((quad_t)(a->u.i != b->u.i));
    	}
    
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static int
    chk_plus (a, b, r)
    quad_t a, b, r;
    {
    	/* sum of two positive numbers must be positive */
    	if (a > 0 && b > 0 && r <= 0)
    		return 1;
    	/* sum of two negative numbers must be negative */
    	if (a < 0 && b < 0 && r >= 0)
    		return 1;
    	/* all other cases are OK */
    	return 0;
    }
    
    static struct val *
    op_plus (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (!to_integer (a) || !to_integer (b)) {
    		ast_log(LOG_WARNING,"non-numeric argument\n");
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    
    	r = make_integer (/*(quad_t)*/(a->u.i + b->u.i));
    	if (chk_plus (a->u.i, b->u.i, r->u.i)) {
    		ast_log(LOG_WARNING,"overflow\n");
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static int
    chk_minus (a, b, r)
    quad_t a, b, r;
    {
    	/* special case subtraction of QUAD_MIN */
    	if (b == QUAD_MIN) {
    		if (a >= 0)
    			return 1;
    		else
    			return 0;
    	}
    	/* this is allowed for b != QUAD_MIN */
    	return chk_plus (a, -b, r);
    }
    
    static struct val *
    op_minus (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (!to_integer (a) || !to_integer (b)) {
    		free_value(a);
    		free_value(b);
    		ast_log(LOG_WARNING, "non-numeric argument\n");
    		return(NULL);
    	}
    
    	r = make_integer (/*(quad_t)*/(a->u.i - b->u.i));
    	if (chk_minus (a->u.i, b->u.i, r->u.i)) {
    		free_value(a);
    		free_value(b);
    		ast_log(LOG_WARNING, "overload\n");
    		return(NULL);
    	}
    	free_value (a);
    	free_value (b);
    	return r;
    }
    
    static int
    chk_times (a, b, r)
    quad_t a, b, r;
    {
    	/* special case: first operand is 0, no overflow possible */
    	if (a == 0)
    		return 0;
    	/* cerify that result of division matches second operand */
    	if (r / a != b)
    		return 1;
    	return 0;
    }
    
    static struct val *
    op_times (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (!to_integer (a) || !to_integer (b)) {
    		free_value(a);
    		free_value(b);
    		ast_log(LOG_WARNING, "non-numeric argument\n");
    		return(NULL);
    	}
    
    	r = make_integer (/*(quad_t)*/(a->u.i * b->u.i));
    	if (chk_times (a->u.i, b->u.i, r->u.i)) {
    		ast_log(LOG_WARNING, "overflow\n");
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    	free_value (a);
    	free_value (b);
    	return (r);
    }
    
    static int
    chk_div (a, b)
    quad_t a, b;
    {
    	/* div by zero has been taken care of before */
    	/* only QUAD_MIN / -1 causes overflow */
    	if (a == QUAD_MIN && b == -1)
    		return 1;
    	/* everything else is OK */
    	return 0;
    }
    
    static struct val *
    op_div (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (!to_integer (a) || !to_integer (b)) {
    		free_value(a);
    		free_value(b);
    		ast_log(LOG_WARNING, "non-numeric argument\n");
    		return(NULL);
    	}
    
    	if (b->u.i == 0) {
    		ast_log(LOG_WARNING, "division by zero\n");		
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    
    	r = make_integer (/*(quad_t)*/(a->u.i / b->u.i));
    	if (chk_div (a->u.i, b->u.i)) {
    		ast_log(LOG_WARNING, "overflow\n");
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    	free_value (a);
    	free_value (b);
    	return r;
    }
    	
    static struct val *
    op_rem (a, b)
    struct val *a, *b;
    {
    	struct val *r;
    
    	if (!to_integer (a) || !to_integer (b)) {
    		ast_log(LOG_WARNING, "non-numeric argument\n");
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    
    	if (b->u.i == 0) {
    		ast_log(LOG_WARNING, "div by zero\n");
    		free_value(a);
    		free_value(b);
    		return(NULL);
    	}
    
    	r = make_integer (/*(quad_t)*/(a->u.i % b->u.i));
    	/* chk_rem necessary ??? */
    	free_value (a);
    	free_value (b);
    	return r;
    }
    	
    static struct val *
    op_colon (a, b)
    struct val *a, *b;
    {
    	regex_t rp;
    	regmatch_t rm[2];
    	char errbuf[256];
    	int eval;
    	struct val *v;
    
    	/* coerce to both arguments to strings */
    	to_string(a);
    	to_string(b);
    
    	/* compile regular expression */
    	if ((eval = regcomp (&rp, b->u.s, 0)) != 0) {
    		regerror (eval, &rp, errbuf, sizeof(errbuf));
    		ast_log(LOG_WARNING,"regcomp() error : %s",errbuf);
    		free_value(a);
    		free_value(b);
    		return(NULL);		
    	}
    
    	/* compare string against pattern */
    	/* remember that patterns are anchored to the beginning of the line */
    	if (regexec(&rp, a->u.s, (size_t)2, rm, 0) == 0 && rm[0].rm_so == 0) {
    		if (rm[1].rm_so >= 0) {
    			*(a->u.s + rm[1].rm_eo) = '\0';
    			v = make_str (a->u.s + rm[1].rm_so);
    
    		} else {
    			v = make_integer ((quad_t)(rm[0].rm_eo - rm[0].rm_so));
    		}
    	} else {
    		if (rp.re_nsub == 0) {
    			v = make_integer ((quad_t)0);
    		} else {
    			v = make_str ("");
    		}
    	}
    
    	/* free arguments and pattern buffer */
    	free_value (a);
    	free_value (b);
    	regfree (&rp);
    
    	return v;
    }