1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 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 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
|
/*
+----------------------------------------------------------------------+
| PHP HTML Embedded Scripting Language Version 3.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2000 PHP Development Team (See Credits file) |
+----------------------------------------------------------------------+
| This program is free software; you can redistribute it and/or modify |
| it under the terms of one of the following licenses: |
| |
| A) the GNU General Public License as published by the Free Software |
| Foundation; either version 2 of the License, or (at your option) |
| any later version. |
| |
| B) the PHP License as published by the PHP Development Team and |
| included in the distribution in the file: LICENSE |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of both licenses referred to here. |
| If you did not, or have any questions about PHP licensing, please |
| contact core@php.net. |
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id: control_structures_inline.h,v 1.206 2000/07/04 16:36:07 rasmus Exp $ */
#include "php.h"
#include "internal_functions.h"
#include "functions/head.h"
#include <stdio.h>
#include <string.h>
extern pval *array_ptr;
static pval return_value;
HashTable list, plist;
extern inline int cs_global_variable(pval *varname INLINE_TLS);
extern inline int cs_static_variable(pval *varname, pval *value INLINE_TLS);
extern inline void cs_start_while(pval *while_token, pval *expr INLINE_TLS);
extern inline void cs_end_while(pval *while_token, int *yychar INLINE_TLS);
extern inline void cs_start_do_while(pval *do_token INLINE_TLS);
extern inline void cs_force_eval_do_while( INLINE_TLS_VOID);
extern inline void cs_end_do_while(pval *do_token, pval *expr, int *yychar INLINE_TLS);
extern inline void cs_start_if (pval *expr INLINE_TLS);
extern inline void cs_end_if ( INLINE_TLS_VOID);
extern inline int cs_break_continue(pval *expr, int op_type INLINE_TLS);
extern inline void cs_elseif_start_evaluate( INLINE_TLS_VOID);
extern inline void cs_elseif_end_evaluate( INLINE_TLS_VOID);
extern inline void cs_start_elseif (pval *expr INLINE_TLS);
extern inline void cs_start_else( INLINE_TLS_VOID);
extern inline void get_function_parameter(pval *varname, unsigned char type, pval *default_value INLINE_TLS);
extern inline void pass_parameter_by_value(pval *expr INLINE_TLS);
extern inline void start_function_decleration( INLINE_TLS_VOID);
extern inline void end_function_decleration(pval *function_token, pval *function_name INLINE_TLS);
extern inline void for_pre_expr1(pval *for_token INLINE_TLS);
extern inline void for_pre_expr2(pval *for_token INLINE_TLS);
extern inline void for_pre_expr3(pval *for_token, pval *expr2 INLINE_TLS);
extern inline void for_pre_statement(pval *for_token, pval *expr2, pval *expr3 INLINE_TLS);
extern inline void for_post_statement(pval *for_token, pval *first_semicolon, pval *second_semicolon, pval *close_parentheses, int *yychar INLINE_TLS);
extern inline void cs_return(pval *expr INLINE_TLS);
extern inline void php3cs_start_require(pval *include_token INLINE_TLS);
extern inline void php3cs_end_require(pval *include_token, pval *expr INLINE_TLS);
extern inline void cs_show_source(pval *expr INLINE_TLS);
extern inline void cs_pre_boolean_or(pval *left_expr INLINE_TLS);
extern inline void cs_post_boolean_or(pval *result, pval *left_expr, pval *right_expr INLINE_TLS);
extern inline void cs_pre_boolean_and(pval *left_expr INLINE_TLS);
extern inline void cs_post_boolean_and(pval *result, pval *left_expr, pval *right_expr INLINE_TLS);
extern inline void cs_questionmark_op_pre_expr1(pval *truth_value INLINE_TLS);
extern inline void cs_questionmark_op_pre_expr2(pval *truth_value INLINE_TLS);
extern inline void cs_questionmark_op_post_expr2(pval *result, pval *truth_value, pval *expr1, pval *expr2 INLINE_TLS);
extern inline void cs_functioncall_pre_variable_passing(pval *function_name, pval *class_ptr, unsigned char free_function_name INLINE_TLS);
extern inline void cs_functioncall_post_variable_passing(pval *function_name, int *yychar INLINE_TLS);
extern inline void cs_functioncall_end(pval *result, pval *function_name, pval *close_parentheses, int *yychar, unsigned char free_function_name INLINE_TLS);
extern inline void cs_switch_start(pval *switch_token, pval *expr INLINE_TLS);
extern inline void cs_switch_case_pre(pval *case_expr INLINE_TLS);
extern inline void cs_switch_case_post( INLINE_TLS_VOID);
extern inline void cs_switch_end(pval *expr INLINE_TLS);
extern inline void cs_start_class_decleration(pval *classname, pval *parent INLINE_TLS);
extern inline void cs_end_class_decleration( INLINE_TLS_VOID);
extern inline void start_array_parsing(pval *array_name,pval *class_ptr INLINE_TLS);
extern inline void start_dimensions_parsing(pval *result INLINE_TLS);
extern inline void fetch_array_index(pval *result, pval *expr, pval *dimension INLINE_TLS);
extern inline void end_array_parsing(pval *result, pval *dimensions INLINE_TLS);
extern inline void clean_unassigned_variable_top(int delete_var INLINE_TLS);
extern inline void get_class_variable_pointer(pval *result, pval *class_ptr, pval *varname INLINE_TLS);
extern inline void pass_parameter(pval *var, int by_reference INLINE_TLS);
extern inline void cs_system(pval *result, pval *expr INLINE_TLS);
extern inline void add_regular_encapsed_variable(pval *result,pval *encaps,pval *varname INLINE_TLS);
extern inline void add_assoc_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *index INLINE_TLS);
extern inline void add_regular_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *index INLINE_TLS);
extern inline void add_variable_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *var_index INLINE_TLS);
extern inline void add_encapsed_object_property(pval *result, pval *encaps, pval *object, pval *property INLINE_TLS);
extern inline void add_indirect_encapsed_variable(pval *result,pval *encaps,pval *varname INLINE_TLS);
inline int cs_global_variable(pval *varname INLINE_TLS)
{
pval *localdata;
if (GLOBAL(Execute)) {
if (!GLOBAL(function_state).function_name) {
php3_error(E_WARNING, "GLOBAL variable declaration meaningless in main() scope");
return FAILURE;
}
if ((varname->type != IS_STRING)) {
pval_destructor(varname _INLINE_TLS);
php3_error(E_WARNING, "Incorrect variable type or name in global in function %s()", GLOBAL(function_state).function_name);
return FAILURE;
}
if (_php3_hash_find(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void **) &localdata) == SUCCESS) {
php3_error(E_WARNING, "Variable used in global statement already exists in the function");
STR_FREE(varname->value.str.val);
return FAILURE;
}
if (_php3_hash_find(&GLOBAL(symbol_table), varname->value.str.val, varname->value.str.len+1, (void **) &localdata) == FAILURE) {
pval tmp;
tmp.type = IS_STRING;
tmp.value.str.val = undefined_variable_string;
tmp.value.str.len = 0;
if (_php3_hash_update(&GLOBAL(symbol_table), varname->value.str.val, varname->value.str.len+1, (void *) &tmp, sizeof(pval), (void **) &localdata)==FAILURE) {
php3_error(E_WARNING, "Unable to initialize global variable $%s",varname->value.str.val);
STR_FREE(varname->value.str.val);
return FAILURE;
}
}
if (_php3_hash_pointer_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void *) localdata) == FAILURE) {
php3_error(E_WARNING, "Error updating symbol table");
STR_FREE(varname->value.str.val);
return FAILURE;
}
STR_FREE(varname->value.str.val);
}
return SUCCESS;
}
inline int cs_static_variable(pval *varname, pval *value INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval *func_ent, *variable_entry, tmp;
if (!GLOBAL(function_state).function_name) {
php3_error(E_WARNING, "STATIC variable declaration meaningless in main() scope");
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value _INLINE_TLS);
}
return FAILURE;
}
if ((varname->type != IS_STRING)) {
pval_destructor(varname _INLINE_TLS);
pval_destructor(value _INLINE_TLS);
php3_error(E_WARNING, "Incorrect variable type or name in static in function %s()", GLOBAL(function_state).function_name);
return FAILURE;
}
if (_php3_hash_find(GLOBAL(function_state).hosting_function_table, GLOBAL(function_state).function_name, strlen(GLOBAL(function_state).function_name)+1, (void **) &func_ent) == FAILURE) {
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value _INLINE_TLS);
}
return FAILURE;
}
if (!func_ent->value.func.addr.statics) {
func_ent->value.func.addr.statics = (HashTable *) emalloc(sizeof(HashTable));
_php3_hash_init(func_ent->value.func.addr.statics, 0, NULL, PVAL_DESTRUCTOR, 0);
}
if (_php3_hash_find(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, (void **) &variable_entry) == FAILURE) {
if (value) {
_php3_hash_update(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, value, sizeof(pval), (void **) &variable_entry);
} else {
var_uninit(&tmp);
_php3_hash_update(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, &tmp, sizeof(pval), (void **) &variable_entry);
}
/*
if (_php3_hash_find(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, (void **) &variable_entry) == FAILURE) {
php3_error(E_ERROR, "Inserted static variable got lost");
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value);
}
return FAILURE;
}
*/
}
if (_php3_hash_pointer_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void *) variable_entry) == FAILURE) {
php3_error(E_ERROR, "Unable to initialize static variable");
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value _INLINE_TLS);
}
return FAILURE;
} else {
_php3_hash_find(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void **) &variable_entry);
}
STR_FREE(varname->value.str.val);
}
return SUCCESS;
}
inline void cs_start_while(pval *while_token, pval *expr INLINE_TLS)
{
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), while_token->offset, WHILE);
if (pval_is_true(expr)) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
pval_destructor(expr _INLINE_TLS);
}
}
inline void cs_end_while(pval *while_token,int *yychar INLINE_TLS)
{
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "end of while, execute=%d, changecount=%d, changetype=%d\n", Execute, GLOBAL(function_state).loop_change_level, GLOBAL(function_state).loop_change_level);
#endif
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), while_token->offset, CONTINUED_WHILE);
seek_token(&GLOBAL(token_cache_manager), while_token->offset, yychar);
} else {
if ((GLOBAL(function_state).loop_change_type != DO_NOTHING) && (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level)) {
if (GLOBAL(function_state).loop_change_type == DO_CONTINUE) {
tc_set_token(&GLOBAL(token_cache_manager), while_token->offset, CONTINUED_WHILE);
seek_token(&GLOBAL(token_cache_manager), while_token->offset, yychar);
}
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_start_do_while(pval *do_token INLINE_TLS)
{
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), do_token->offset, DO);
}
}
/* force evaluation of the expression if we're in a CONTINUE */
inline void cs_force_eval_do_while( INLINE_TLS_VOID)
{
if (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level
&& GLOBAL(function_state).loop_change_type == DO_CONTINUE) {
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_end_do_while(pval *do_token, pval *expr, int *yychar INLINE_TLS)
{
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "end of while, execute=%d, changecount=%d, changetype=%d\n", Execute, GLOBAL(function_state).loop_change_level, GLOBAL(function_state).loop_change_level);
#endif
if (GLOBAL(Execute) && pval_is_true(expr)) {
pval_destructor(expr _INLINE_TLS);
tc_set_token(&GLOBAL(token_cache_manager), do_token->offset, CONTINUED_DOWHILE);
seek_token(&GLOBAL(token_cache_manager), do_token->offset, yychar);
} else {
if (GLOBAL(Execute)) {
pval_destructor(expr _INLINE_TLS);
}
if ((GLOBAL(function_state).loop_change_type != DO_NOTHING) && (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level)) {
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_start_if (pval *expr INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int)); /* push current state to stack */
if (GLOBAL(Execute)) { /* we're in a code block that needs to be evaluated */
if (pval_is_true(expr)) { /* the IF expression is pval_is_true, execute IF code */
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else { /* the IF expression is false, don't execute IF code */
GLOBAL(ExecuteFlag) = BEFORE_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
pval_destructor(expr _INLINE_TLS);
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
}
}
inline void cs_end_if ( INLINE_TLS_VOID)
{
/* restore previous status */
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
}
inline int cs_break_continue(pval *expr, int op_type INLINE_TLS)
{
if (GLOBAL(Execute)) {
if (expr) {
convert_to_long(expr);
GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_nest_level - expr->value.lval + 1;
} else {
GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_nest_level;
}
if (GLOBAL(function_state).loop_change_level <= 0) {
php3_error(E_ERROR, "Cannot %s from %d loop(s) from nesting level %d",
(op_type == DO_BREAK ? "break" : "continue"), (expr ? expr->value.lval : 1), GLOBAL(function_state).loop_nest_level);
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
return FAILURE;
} else if (GLOBAL(function_state).loop_change_level > GLOBAL(function_state).loop_nest_level) {
php3_error(E_ERROR, "Cannot continue from %d loops", (expr ? expr->value.lval : -1));
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
return FAILURE;
}
GLOBAL(function_state).loop_change_type = op_type;
GLOBAL(Execute) = 0;
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
}
return SUCCESS;
}
inline void cs_elseif_start_evaluate( INLINE_TLS_VOID)
{
int local_stack_top;
if (GLOBAL(ExecuteFlag) == EXECUTE) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
local_stack_top = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(ExecuteFlag) == BEFORE_EXECUTE && local_stack_top == EXECUTE) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_elseif_end_evaluate( INLINE_TLS_VOID)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
}
inline void cs_start_elseif (pval *expr INLINE_TLS)
{
if (GLOBAL(ExecuteFlag) == EXECUTE) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
if (GLOBAL(ExecuteFlag) == BEFORE_EXECUTE) {
if (pval_is_true(expr)) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
pval_destructor(expr _INLINE_TLS);
}
}
inline void cs_start_else( INLINE_TLS_VOID)
{
if (GLOBAL(ExecuteFlag) == EXECUTE) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
if (GLOBAL(ExecuteFlag) == BEFORE_EXECUTE) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void get_function_parameter(pval *varname, unsigned char type, pval *default_value INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp,*data;
if (_php3_hash_index_find(GLOBAL(active_symbol_table), GLOBAL(param_index), (void **) &data) == FAILURE) {
if (default_value) {
tmp = *default_value;
} else {
php3_error(E_WARNING, "Missing argument %d in call to %s()",GLOBAL(param_index)+1,GLOBAL(function_state).function_name);
var_uninit(&tmp);
}
_php3_hash_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, &tmp, sizeof(pval), NULL);
} else if (!_php3_hash_index_is_pointer(GLOBAL(active_symbol_table), GLOBAL(param_index))) { /* passed by value */
tmp = *data;
pval_copy_constructor(&tmp);
_php3_hash_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, &tmp, sizeof(pval), NULL);
if (default_value) {
pval_destructor(default_value _INLINE_TLS);
}
} else { /* passed by reference */
_php3_hash_pointer_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, data);
_php3_hash_index_del(GLOBAL(active_symbol_table), GLOBAL(param_index));
if (default_value) {
pval_destructor(default_value _INLINE_TLS);
}
}
} else if (!GLOBAL(php3_display_source)) {
switch(type) {
case BYREF_NONE: /* passed by value */
break;
case BYREF_FORCE: /* passed by reference */
case BYREF_ALLOW: /* passed by value reference (well, not exactly:) */
if (!GLOBAL(function_state).func_arg_types) {
GLOBAL(function_state).func_arg_types = ecalloc(sizeof(unsigned char),(GLOBAL(param_index)+2));
} else {
unsigned int i;
GLOBAL(function_state).func_arg_types = erealloc(GLOBAL(function_state).func_arg_types,sizeof(unsigned char)*(GLOBAL(param_index)+2));
for (i=GLOBAL(function_state).func_arg_types[0]+1; i<GLOBAL(param_index)+2-1; i++) {
GLOBAL(function_state).func_arg_types[i]=0;
}
}
GLOBAL(function_state).func_arg_types[0] = GLOBAL(param_index)+1;
GLOBAL(function_state).func_arg_types[GLOBAL(param_index)+1]=type;
break;
}
}
GLOBAL(param_index)++;
}
inline void pass_parameter_by_value(pval *expr INLINE_TLS)
{
if (GLOBAL(Execute)) {
if (GLOBAL(function_state).func_arg_types) {
unsigned char argument_offset=(unsigned char) _php3_hash_next_free_element(GLOBAL(function_state).function_symbol_table)+1;
if (argument_offset<=GLOBAL(function_state).func_arg_types[0]
&& GLOBAL(function_state).func_arg_types[argument_offset]==BYREF_FORCE) {
php3_error(E_WARNING,"Cannot pass expression as argument %d by reference",argument_offset);
GLOBAL(function_state).function_type = 0; /* don't execute the function call */
}
}
if (_php3_hash_next_index_insert(GLOBAL(function_state).function_symbol_table, expr, sizeof(pval),NULL) == FAILURE) {
php3_error(E_WARNING, "Error updating symbol table");
pval_destructor(expr _INLINE_TLS);
GLOBAL(function_state).function_type = 0; /* don't execute the function call */
}
}
}
inline void start_function_decleration(INLINE_TLS_VOID)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).func_arg_types = NULL;
}
inline void end_function_decleration(pval *function_token, pval *function_name INLINE_TLS)
{
HashTable *target_symbol_table;
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
php3i_stack_del_top(&GLOBAL(css));
if (GLOBAL(Execute)) {
php3_str_tolower(function_name->value.str.val, function_name->value.str.len);
if (GLOBAL(class_name)) {
target_symbol_table = GLOBAL(class_symbol_table);
_php3_hash_del(GLOBAL(class_symbol_table), function_name->value.str.val, function_name->value.str.len+1); /* for inheritance */
} else {
target_symbol_table = &GLOBAL(function_table);
}
if (_php3_hash_exists(target_symbol_table, function_name->value.str.val, function_name->value.str.len+1)) {
php3_error(E_ERROR, "Can't redeclare already declared function");
return;
}
function_token->type = IS_USER_FUNCTION;
function_token->value.func.addr.statics = NULL;
function_token->value.func.arg_types = GLOBAL(function_state).func_arg_types;
_php3_hash_update(target_symbol_table, function_name->value.str.val, function_name->value.str.len+1, function_token, sizeof(pval), NULL);
} else {
if (GLOBAL(function_state).func_arg_types) {
efree(GLOBAL(function_state).func_arg_types);
}
}
GLOBAL(function_state).func_arg_types = NULL;
}
/* don't execute expr1 except for the first iteration */
inline void for_pre_expr1(pval *for_token INLINE_TLS)
{
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), for_token->offset, FOR);
if (php3i_stack_int_top(&GLOBAL(for_stack)) == (long) for_token->offset) { /* 2nd or later iteration */
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
}
/* expr2 is the increment if we're switched. don't execute it in the first
* iteration, and execute it otherwise.
* if we're not switched, it's the truth value, and we want to evaluate it anyway.
*/
inline void for_pre_expr2(pval *for_token INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (for_token->cs_data.switched && php3i_stack_int_top(&GLOBAL(for_stack)) != (long) for_token->offset) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE; /* first iteration of already switched for */
}
}
/* if we're not switched, expr3 is the increment. we shouldn't execute it
* in the first iteration. since not being switched --> first iteration,
* we don't have to check the for_stack.
*/
inline void for_pre_expr3(pval *for_token, pval *expr2 INLINE_TLS)
{
if (for_token->cs_data.switched && php3i_stack_int_top(&GLOBAL(for_stack)) != (long) for_token->offset) {
var_reset(expr2);
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute) && !for_token->cs_data.switched) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void for_pre_statement(pval *for_token, pval *expr2, pval *expr3 INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute) && !for_token->cs_data.switched) {
var_reset(expr3);
}
if (GLOBAL(Execute) && for_token->cs_data.switched) {
if (pval_is_true(expr3)) {
GLOBAL(ExecuteFlag) = EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
}
GLOBAL(Execute) = SHOULD_EXECUTE;
pval_destructor(expr2 _INLINE_TLS);
pval_destructor(expr3 _INLINE_TLS);
} else if (GLOBAL(Execute) && !for_token->cs_data.switched) {
if (pval_is_true(expr2)) {
GLOBAL(ExecuteFlag) = EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
}
GLOBAL(Execute) = SHOULD_EXECUTE;
pval_destructor(expr2 _INLINE_TLS);
pval_destructor(expr3 _INLINE_TLS);
}
}
inline void for_post_statement(pval *for_token, pval *first_semicolon, pval *second_semicolon, pval *close_parentheses, int *yychar INLINE_TLS)
{
if (php3i_stack_int_top(&GLOBAL(for_stack)) != (long) for_token->offset) { /* first iteration */
php3i_stack_push(&GLOBAL(for_stack), &for_token->offset, sizeof(int));
}
if (!for_token->cs_data.switched) {
tc_switch(&GLOBAL(token_cache_manager), first_semicolon->offset + 1, close_parentheses->offset - 1, second_semicolon->offset);
tc_set_switched(&GLOBAL(token_cache_manager), for_token->offset);
}
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), for_token->offset, CONTINUED_FOR);
seek_token(&GLOBAL(token_cache_manager), for_token->offset, yychar);
} else {
if ((GLOBAL(function_state).loop_change_type != DO_NOTHING) && (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level)) {
if (GLOBAL(function_state).loop_change_type == DO_CONTINUE) {
tc_set_token(&GLOBAL(token_cache_manager), for_token->offset, CONTINUED_FOR);
seek_token(&GLOBAL(token_cache_manager), for_token->offset, yychar);
} else {
if (php3i_stack_int_top(&GLOBAL(for_stack)) == (long) for_token->offset) {
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "Deleting for addr=%d from for stack", for_token->offset);
#endif
php3i_stack_del_top(&GLOBAL(for_stack));
}
}
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
} else {
if (php3i_stack_int_top(&GLOBAL(for_stack)) == (long) for_token->offset) {
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "Deleting for addr=%d from for stack", for_token->offset);
#endif
php3i_stack_del_top(&GLOBAL(for_stack));
}
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_return(pval *expr INLINE_TLS)
{
if (GLOBAL(Execute)) {
if (GLOBAL(function_state).function_name) {
if (expr) {
GLOBAL(return_value) = *expr;
} else {
var_reset(&GLOBAL(return_value));
}
GLOBAL(function_state).returned = 1;
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
int retval;
if (end_current_file_execution(&retval) && retval==0) {
/* the scanner return 0, terminate execution completely (behave like exit()) */
php3_header();
GLOBAL(shutdown_requested) = ABNORMAL_SHUTDOWN;
}
if (expr) {
php3i_print_variable(expr);
pval_destructor(expr);
}
}
}
}
inline void php3cs_start_require(pval *include_token INLINE_TLS)
{
/* evaluate the expression even at Execute=0, if it's the first time we see this include(), otherwise,
* don't evaluate it.
*/
if (GLOBAL(php3_display_source)) {
return;
}
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
GLOBAL(php3g_function_state_for_require) = GLOBAL(function_state);
if (!include_token->cs_data.included) {
GLOBAL(function_state).loop_nest_level = GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_change_type = 0;
GLOBAL(function_state).returned = 0;
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void php3cs_end_require(pval *include_token, pval *expr INLINE_TLS)
{
if (GLOBAL(php3_display_source)) {
return;
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(function_state) = GLOBAL(php3g_function_state_for_require);
GLOBAL(Execute) = SHOULD_EXECUTE;
if (!include_token->cs_data.included) {
if (!GLOBAL(php3_display_source)) {
include_file(expr,0);
}
tc_set_included(&GLOBAL(token_cache_manager), include_token->offset);
pval_destructor(expr _INLINE_TLS);
}
}
inline void start_display_source(int start_in_php INLINE_TLS)
{
php3_header();
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = 0;
GLOBAL(php3_display_source)=1;
php3_printf("<FONT color=%s>", (start_in_php?php3_ini.highlight_default:php3_ini.highlight_html));
}
inline void cs_show_source(pval *expr INLINE_TLS)
{
if (include_file(expr,1)==SUCCESS) {
start_display_source(0 _INLINE_TLS);
}
pval_destructor(expr _INLINE_TLS);
}
inline void cs_pre_boolean_or(pval *left_expr INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute) && pval_is_true(left_expr)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;;
}
}
inline void cs_post_boolean_or(pval *result, pval *left_expr, pval *right_expr INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute)) {
boolean_or_function(result, left_expr, right_expr);
}
}
inline void cs_pre_boolean_and(pval *left_expr INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute) && !pval_is_true(left_expr)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_post_boolean_and(pval *result, pval *left_expr, pval *right_expr INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute)) {
boolean_and_function(result, left_expr, right_expr);
}
}
inline void cs_questionmark_op_pre_expr1(pval *truth_value INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute) && !pval_is_true(truth_value)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_questionmark_op_pre_expr2(pval *truth_value INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute) && pval_is_true(truth_value)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_questionmark_op_post_expr2(pval *result, pval *truth_value, pval *expr1, pval *expr2 INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute)) {
if (pval_is_true(truth_value)) {
*result = *expr1;
} else {
*result = *expr2;
}
pval_destructor(truth_value _INLINE_TLS);
}
}
inline void cs_functioncall_pre_variable_passing(pval *function_name, pval *class_ptr, unsigned char free_function_name INLINE_TLS)
{
int minus_one = -1;
HashTable *target_symbol_table; /* the symbol table in which the function would be searched */
pval *object=NULL;
target_symbol_table = &GLOBAL(function_table);
if (GLOBAL(Execute)) {
pval *data;
if (class_ptr) { /* use member function rather than global function */
object = (pval *) class_ptr->value.varptr.pvalue;
if (!object) {
if (free_function_name) {
pval_destructor(function_name _INLINE_TLS);
}
php3_error(E_ERROR, "Member function used on a non-object");
return;
}
target_symbol_table = object->value.ht;
}
if (function_name->type != IS_STRING) {
php3_error(E_ERROR, "Function names must be strings");
if (free_function_name) {
pval_destructor(function_name _INLINE_TLS);
}
return;
}
php3_str_tolower(function_name->value.str.val, function_name->value.str.len);
if (_php3_hash_find(target_symbol_table, function_name->value.str.val, function_name->value.str.len+1, (void **) &data) == SUCCESS) {
if (!(data->type & VALID_FUNCTION)) {
php3_error(E_ERROR, "Function call to a non-function (%s)", function_name->value.str.val);
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
/* we're gonna call the function... */
php3i_stack_push(&GLOBAL(for_stack), &minus_one, sizeof(int));
php3i_stack_push(&GLOBAL(function_state_stack), &GLOBAL(function_state), sizeof(FunctionState)); /* save function state */
function_name->cs_data.function_call_type = data->type;
function_name->offset = data->offset;
GLOBAL(function_state).function_symbol_table = (HashTable *) emalloc(sizeof(HashTable));
GLOBAL(function_state).function_name = function_name->value.str.val;
GLOBAL(function_state).function_type = data->type;
GLOBAL(function_state).handler = (void (*)(INTERNAL_FUNCTION_PARAMETERS)) data->value.func.addr.internal;
GLOBAL(function_state).func_arg_types = data->value.func.arg_types;
GLOBAL(function_state).lineno = GLOBAL(current_lineno);
GLOBAL(function_state).hosting_function_table = target_symbol_table;
if (!GLOBAL(function_state).function_symbol_table) {
php3_error(E_ERROR, "Unable to allocate necessary memory for function call");
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
if (_php3_hash_init(GLOBAL(function_state).function_symbol_table, 0, NULL, PVAL_DESTRUCTOR, 0) == FAILURE) {
php3_error(E_ERROR, "Unable to initialize new symbol table in function call");
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
/* push GLOBAL */
GLOBAL(globals).type = IS_ARRAY;
GLOBAL(globals).value.ht = &GLOBAL(symbol_table);
if (data->type==IS_USER_FUNCTION) {
_php3_hash_pointer_update(GLOBAL(function_state).function_symbol_table, "GLOBALS", sizeof("GLOBALS"), (void *) &GLOBAL(globals));
}
if (object) { /* push $this */
GLOBAL(function_state).object_pointer = (pval *) emalloc(sizeof(pval));
*(GLOBAL(function_state).object_pointer) = *object;
_php3_hash_pointer_update(GLOBAL(function_state).function_symbol_table, "this", sizeof("this"), (void *) GLOBAL(function_state).object_pointer);
} else {
GLOBAL(function_state).object_pointer = NULL;
}
} else {
php3_error(E_ERROR, "Call to unsupported or undefined function %s()", function_name->value.str.val);
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
} else {
function_name->cs_data.function_call_type = 0;
}
}
inline void cs_functioncall_post_variable_passing(pval *function_name, int *yychar INLINE_TLS)
{
if (function_name->cs_data.function_call_type) {
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
/* prepare a new function state */
GLOBAL(function_state).symbol_table = GLOBAL(function_state).function_symbol_table;
GLOBAL(function_state).function_symbol_table = NULL;
GLOBAL(function_state).loop_nest_level = GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_change_type = 0;
var_reset(&GLOBAL(return_value));
switch (GLOBAL(function_state).function_type) {
case IS_USER_FUNCTION:
GLOBAL(active_symbol_table) = GLOBAL(function_state).symbol_table;
seek_token(&GLOBAL(token_cache_manager), function_name->offset, yychar);
break;
case IS_INTERNAL_FUNCTION:
GLOBAL(function_state).handler(GLOBAL(function_state).symbol_table,&GLOBAL(return_value),&GLOBAL(list),&GLOBAL(plist));
break;
default: /* don't execute the function call */
break;
}
}
}
inline void cs_functioncall_end(pval *result, pval *function_name, pval *close_parentheses, int *yychar, unsigned char free_function_name INLINE_TLS)
{
if (function_name->cs_data.function_call_type) {
FunctionState *fs_ptr;
/* handle return value for user functions (internal functions do that themselves) */
*result = GLOBAL(return_value);
if (GLOBAL(function_state).function_type==IS_USER_FUNCTION && !GLOBAL(function_state).returned) {
var_reset(result); /* default return value */
}
/* clean up */
if (GLOBAL(function_state).symbol_table) {
_php3_hash_destroy(GLOBAL(function_state).symbol_table);
efree(GLOBAL(function_state).symbol_table);
}
if (GLOBAL(function_state).object_pointer) {
efree(GLOBAL(function_state).object_pointer);
}
if (free_function_name) {
pval_destructor(function_name _INLINE_TLS);
}
while (php3i_stack_int_top(&GLOBAL(for_stack)) != -1) { /* pop FOR stack */
php3i_stack_del_top(&GLOBAL(for_stack));
}
php3i_stack_del_top(&GLOBAL(for_stack));
/* jump back */
if (GLOBAL(function_state).function_type == IS_USER_FUNCTION) {
seek_token(&GLOBAL(token_cache_manager), close_parentheses->offset + 1, yychar);
}
/* get previous function state */
php3i_stack_top(&GLOBAL(function_state_stack), (void **) &fs_ptr);
GLOBAL(function_state) = *fs_ptr;
php3i_stack_del_top(&GLOBAL(function_state_stack));
GLOBAL(active_symbol_table) = GLOBAL(function_state).symbol_table;
/* restore execution state */
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
var_reset(result);
}
}
inline void cs_switch_start(pval *switch_token, pval *expr INLINE_TLS)
{
switch_expr se;
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
se.expr = *expr;
se.offset = switch_token->offset;
se.Execute = GLOBAL(Execute);
php3i_stack_push(&GLOBAL(switch_stack), &se, sizeof(switch_expr));
}
/* if case_expr is NULL, assume default */
inline void cs_switch_case_pre(pval *case_expr INLINE_TLS)
{
if (GLOBAL(Execute)) {
switch_expr *se;
pval expr, result;
int is_equal = 0;
php3i_stack_top(&GLOBAL(switch_stack), (void **) &se);
if (se->offset != -1) { /* no matched case yet */
/* if case_expr is NULL, we're in the special 'default' case */
if (case_expr) {
expr = se->expr;
pval_copy_constructor(&expr);
is_equal_function(&result, &expr, case_expr _INLINE_TLS);
is_equal = pval_is_true(&result);
}
if (!case_expr || is_equal) {
se->offset=-1;
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
} else {
if (case_expr) {
pval_destructor(case_expr _INLINE_TLS);
}
}
}
}
inline void cs_switch_case_post( INLINE_TLS_VOID)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
}
inline void cs_switch_end(pval *expr INLINE_TLS)
{
switch_expr *se;
if (!GLOBAL(Execute)) {
if (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level) {
GLOBAL(function_state).loop_change_type = DO_NOTHING;
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
php3i_stack_top(&GLOBAL(switch_stack), (void **) &se);
if (se->Execute) {
pval_destructor(expr _INLINE_TLS);
}
php3i_stack_del_top(&GLOBAL(switch_stack));
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_start_class_decleration(pval *classname, pval *parent INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval new_class, *parent_ptr;
if (_php3_hash_exists(&GLOBAL(function_table), classname->value.str.val, classname->value.str.len+1)) {
php3_error(E_ERROR,"%s is already a function or class",classname->value.str.val);
}
if (parent) { /* inheritance */
pval *ctor_ptr, ctor;
if (_php3_hash_find(&GLOBAL(function_table), parent->value.str.val, parent->value.str.len+1, (void **) &parent_ptr) == FAILURE) {
php3_error(E_ERROR, "Cannot extend non existant class %s", parent->value.str.val);
return;
}
new_class = *parent_ptr;
pval_copy_constructor(&new_class);
if (_php3_hash_find(new_class.value.ht, parent->value.str.val, parent->value.str.len+1, (void **) &ctor_ptr)==SUCCESS) {
ctor = *ctor_ptr;
pval_copy_constructor(&ctor);
_php3_hash_update(new_class.value.ht, classname->value.str.val, classname->value.str.len+1, &ctor, sizeof(pval), NULL);
}
} else {
new_class.type = IS_CLASS;
new_class.value.ht = (HashTable *) emalloc(sizeof(HashTable));
_php3_hash_init(new_class.value.ht, 0, NULL, PVAL_DESTRUCTOR, 0);
}
if (_php3_hash_update(&GLOBAL(function_table), classname->value.str.val, classname->value.str.len+1, &new_class, sizeof(pval),NULL) == FAILURE) {
php3_error(E_ERROR, "Unable to initialize new class");
}
GLOBAL(class_name) = classname->value.str.val;
GLOBAL(class_symbol_table) = new_class.value.ht;
}
}
inline void cs_end_class_decleration( INLINE_TLS_VOID)
{
if (GLOBAL(Execute)) {
GLOBAL(class_name) = NULL;
GLOBAL(class_symbol_table) = NULL;
}
}
inline void start_array_parsing(pval *array_name,pval *class_ptr INLINE_TLS)
{
if (GLOBAL(Execute)) {
HashTable *target_symbol_table=GLOBAL(active_symbol_table);
if ((array_name->type != IS_STRING)) {
php3_error(E_WARNING,"Illegal array name");
GLOBAL(array_ptr) = NULL;
} else {
if (class_ptr) {
pval *object=(pval *) class_ptr->value.varptr.pvalue;
if (!object) {
GLOBAL(array_ptr)=NULL;
pval_destructor(array_name _INLINE_TLS);
return;
}
target_symbol_table = object->value.ht;
}
if (_php3_hash_find(target_symbol_table,array_name->value.str.val, array_name->value.str.len+1, (void **)&GLOBAL(array_ptr)) == FAILURE) {
pval tmp;
variable_tracker vt;
array_init(&tmp);
_php3_hash_update(target_symbol_table,array_name->value.str.val,array_name->value.str.len+1,(void *) &tmp, sizeof(pval),(void **) &GLOBAL(array_ptr));
GLOBAL(array_ptr)->cs_data.array_write=1;
vt.type = IS_STRING;
vt.strlen = array_name->value.str.len;
vt.strval = estrndup(array_name->value.str.val,vt.strlen);
vt.ht = target_symbol_table;
php3i_stack_push(&GLOBAL(variable_unassign_stack),(void *) &vt, sizeof(variable_tracker));
} else {
GLOBAL(array_ptr)->cs_data.array_write=0;
}
if (GLOBAL(array_ptr)->type != IS_ARRAY && GLOBAL(array_ptr)->type != IS_STRING) {
php3_error(E_WARNING, "Variable $%s is not an array or string", array_name->value.str.val);
GLOBAL(array_ptr) = NULL;
}
}
pval_destructor(array_name _INLINE_TLS);
}
}
inline void start_dimensions_parsing(pval *result INLINE_TLS)
{
if (GLOBAL(Execute)) {
result->value.varptr.pvalue = GLOBAL(array_ptr);
if (GLOBAL(array_ptr)) {
result->cs_data.array_write=GLOBAL(array_ptr)->cs_data.array_write;
}
result->value.varptr.string_offset=-1;
}
}
inline void fetch_array_index(pval *result, pval *expr, pval *dimension INLINE_TLS)
{
if (GLOBAL(Execute)) {
int original_array_write = dimension->cs_data.array_write;
result->cs_data.array_write = dimension->cs_data.array_write;
if (dimension->value.varptr.pvalue) {
pval *localdata,tmp,*arr_ptr=dimension->value.varptr.pvalue;
int new_array=0; /* whether we created the array just now */
if (arr_ptr->type==IS_STRING && arr_ptr->value.str.val!=empty_string && arr_ptr->value.str.val!=undefined_variable_string) {
if (dimension->value.varptr.string_offset == -1) { /* ok */
if (!expr) {
php3_error(E_WARNING,"No string index specified");
result->value.varptr.pvalue=NULL;
return;
}
convert_to_long(expr);
if (expr->value.lval<0 || expr->value.lval>=arr_ptr->value.str.len) {
php3_error(E_WARNING,"Illegal string index");
result->value.varptr.pvalue=NULL;
return;
}
result->value.varptr.string_offset = expr->value.lval;
return;
} else {
php3_error(E_WARNING,"Cannot index a string index");
result->value.varptr.pvalue=NULL;
return;
}
}
if (arr_ptr->type==IS_NULL || (arr_ptr->type==IS_STRING &&
(arr_ptr->value.str.val==empty_string || arr_ptr->value.str.val==undefined_variable_string))) {
array_init(arr_ptr);
new_array=1;
} else if (arr_ptr->type!=IS_ARRAY) {
php3_error(E_WARNING,"Index referencing a non-array");
result->value.varptr.pvalue=NULL;
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
return;
}
if (expr) {
switch (expr->type) {
case IS_LONG:
case IS_DOUBLE:
convert_to_long(expr);
if (new_array || _php3_hash_index_find(arr_ptr->value.ht, expr->value.lval, (void **) &localdata) == FAILURE) {
tmp.type = IS_NULL;
_php3_hash_index_update(arr_ptr->value.ht, expr->value.lval, (void *)&tmp, sizeof(pval),(void **) &localdata);
result->value.varptr.pvalue = localdata;
result->cs_data.array_write = 1;
if (!original_array_write) { /* we raised the write flag just now, record this variable */
variable_tracker vt;
vt.type = IS_LONG;
vt.lval = expr->value.lval;
vt.ht = arr_ptr->value.ht;
php3i_stack_push(&GLOBAL(variable_unassign_stack),(void *) &vt, sizeof(variable_tracker));
}
} else {
result->value.varptr.pvalue = localdata;
}
break;
case IS_STRING:
if (new_array || _php3_hash_find(arr_ptr->value.ht, expr->value.str.val, expr->value.str.len+1, (void **) &localdata)==FAILURE) {
tmp.type = IS_NULL;
if (_php3_hash_update(arr_ptr->value.ht, expr->value.str.val, expr->value.str.len+1, (void *) &tmp, sizeof(pval),(void **) &localdata)==FAILURE) {
result->value.varptr.pvalue=NULL;
STR_FREE(expr->value.str.val);
return;
}
result->value.varptr.pvalue = localdata;
result->cs_data.array_write = 1;
if (!original_array_write) { /* we raised the write flag just now, record this variable */
variable_tracker vt;
vt.type = IS_STRING;
vt.strval = estrndup(expr->value.str.val,expr->value.str.len);
vt.strlen = expr->value.str.len;
vt.ht = arr_ptr->value.ht;
php3i_stack_push(&GLOBAL(variable_unassign_stack),(void *) &vt, sizeof(variable_tracker));
}
} else {
result->value.varptr.pvalue = localdata;
}
break;
default:
result->value.varptr.pvalue = NULL;
php3_error(E_WARNING, "Illegal index type");
break;
}
} else { /* assign-next */
int new_index=_php3_hash_next_free_element(arr_ptr->value.ht);
tmp.type = IS_NULL;
_php3_hash_next_index_insert(arr_ptr->value.ht, (void *) &tmp, sizeof(pval), (void **) &localdata);
result->value.varptr.pvalue = localdata;
result->cs_data.array_write=1;
if (!original_array_write) { /* we raised the write flag just now, record this variable */
variable_tracker vt;
vt.type = IS_LONG;
vt.lval = new_index;
vt.ht = arr_ptr->value.ht;
php3i_stack_push(&GLOBAL(variable_unassign_stack),(void *) &vt, sizeof(variable_tracker));
}
}
} else {
result->value.varptr.pvalue=NULL;
}
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
}
}
inline void end_array_parsing(pval *result, pval *dimensions INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval *ptr=(pval *) dimensions->value.varptr.pvalue;
*result = *dimensions;
if (ptr && ptr->type==IS_NULL) {
var_reset(ptr);
}
}
}
inline void clean_unassigned_variable_top(int delete_var INLINE_TLS)
{
variable_tracker *vt;
if (php3i_stack_top(&GLOBAL(variable_unassign_stack),(void **) &vt)==SUCCESS) {
switch(vt->type) {
case IS_LONG:
if (delete_var) {
_php3_hash_index_del(vt->ht,vt->lval);
}
break;
case IS_STRING:
if (delete_var) {
_php3_hash_del(vt->ht,vt->strval,vt->strlen+1);
}
STR_FREE(vt->strval);
break;
}
}
php3i_stack_del_top(&GLOBAL(variable_unassign_stack));
}
inline void get_class_variable_pointer(pval *result, pval *class_ptr, pval *varname INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval *object = (pval *) class_ptr->value.varptr.pvalue;
if (!object) {
result->value.varptr.pvalue = NULL;
pval_destructor(varname _INLINE_TLS);
return;
}
if ((varname->type != IS_STRING)) {
php3_error(E_WARNING,"Illegal property name");
result->value.varptr.pvalue = NULL;
pval_destructor(varname _INLINE_TLS);
return;
} else {
pval *data;
if (_php3_hash_find(object->value.ht,varname->value.str.val, varname->value.str.len+1, (void **)&data) == FAILURE) {
pval tmp;
variable_tracker vt;
var_reset(&tmp);
_php3_hash_update(object->value.ht,varname->value.str.val,varname->value.str.len+1,(void *) &tmp, sizeof(pval),(void **) &data);
vt.type = IS_STRING;
vt.strlen = varname->value.str.len;
vt.strval = estrndup(varname->value.str.val,vt.strlen);
vt.ht = object->value.ht;
php3i_stack_push(&GLOBAL(variable_unassign_stack),(void *) &vt, sizeof(variable_tracker));
result->cs_data.array_write = 1;
} else {
result->cs_data.array_write = 0;
}
result->value.varptr.pvalue = data;
result->value.str.len = -1; /* Not indexed string */
pval_destructor(varname _INLINE_TLS);
}
}
}
inline void pass_parameter(pval *var, int by_reference INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp;
/* ... check if we need to force by reference (set by_reference=1) */
if (GLOBAL(function_state).func_arg_types) {
unsigned char argument_offset=(unsigned char) _php3_hash_next_free_element(GLOBAL(function_state).function_symbol_table)+1;
if (argument_offset<=GLOBAL(function_state).func_arg_types[0]
&& GLOBAL(function_state).func_arg_types[argument_offset]!=BYREF_NONE) {
by_reference=1;
}
}
if (!by_reference) {
read_pointer_value(&tmp,var _INLINE_TLS);
if (_php3_hash_next_index_insert(GLOBAL(function_state).function_symbol_table, &tmp, sizeof(pval),NULL) == FAILURE) {
php3_error(E_WARNING, "Error updating symbol table");
pval_destructor(&tmp _INLINE_TLS);
GLOBAL(function_state).function_type = 0; /* don't execute the function call */
return;
}
} else {
if (var->cs_data.array_write) {
clean_unassigned_variable_top(0 _INLINE_TLS);
}
if (var->value.varptr.pvalue==NULL) {
GLOBAL(function_state).function_type = 0;
return;
}
if (_php3_hash_next_index_pointer_insert(GLOBAL(function_state).function_symbol_table, (void *) var->value.varptr.pvalue) == FAILURE) {
php3_error(E_WARNING, "Error updating symbol table");
GLOBAL(function_state).function_type = 0; /* don't execute the function call */
return;
}
}
}
}
inline void cs_system(pval *result,pval *expr INLINE_TLS)
{
if (GLOBAL(Execute)) {
FILE *in;
int readbytes,total_readbytes=0,allocated_space;
if (php3_ini.safe_mode) {
php3_error(E_WARNING,"Cannot execute using backquotes in safe mode");
pval_destructor(expr _INLINE_TLS);
var_reset(result);
return;
}
convert_to_string(expr);
#if WIN32|WINNT
(void)AllocConsole();
if ((in=popen(expr->value.str.val,"rt"))==NULL) {
#else
if ((in=popen(expr->value.str.val,"r"))==NULL) {
#endif
php3_error(E_WARNING,"Unable to execute '%s'",expr->value.str.val);
}
allocated_space = EXEC_INPUT_BUF;
result->value.str.val = (char *) emalloc(allocated_space);
while (1) {
readbytes = fread(result->value.str.val+total_readbytes,1,EXEC_INPUT_BUF,in);
if (readbytes<=0) {
break;
}
total_readbytes += readbytes;
allocated_space = total_readbytes+EXEC_INPUT_BUF;
result->value.str.val = (char *) erealloc(result->value.str.val,allocated_space);
}
pclose(in);
result->value.str.val = erealloc(result->value.str.val,total_readbytes+1);
result->value.str.val[total_readbytes]=0;
result->value.str.len = total_readbytes;
result->type = IS_STRING;
STR_FREE(expr->value.str.val);
}
}
inline void add_regular_encapsed_variable(pval *result,pval *encaps,pval *varname INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp;
get_regular_variable_contents(&tmp,varname,0 _INLINE_TLS);
concat_function(result,encaps,&tmp,1 _INLINE_TLS);
}
}
inline void add_assoc_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *index INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp;
get_array_variable(&tmp,varname,index _INLINE_TLS);
concat_function(result,encaps,&tmp,1 _INLINE_TLS);
}
}
inline void add_regular_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *index INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp;
COPY_STRING(*index);
convert_to_long(index);
get_array_variable(&tmp,varname,index _INLINE_TLS);
concat_function(result,encaps,&tmp,1 _INLINE_TLS);
}
}
inline void add_variable_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *var_index INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval index,tmp;
get_regular_variable_contents(&index,var_index,0 _INLINE_TLS);
get_array_variable(&tmp,varname,&index _INLINE_TLS);
concat_function(result,encaps,&tmp,1 _INLINE_TLS);
pval_destructor(&index _INLINE_TLS);
}
}
inline void add_encapsed_object_property(pval *result, pval *encaps, pval *object, pval *property INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp;
get_array_variable(&tmp,object,property _INLINE_TLS);
concat_function(result,encaps,&tmp,1 _INLINE_TLS);
}
}
inline void add_indirect_encapsed_variable(pval *result,pval *encaps,pval *varname INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp,tmp2;
get_regular_variable_contents(&tmp,varname,0 _INLINE_TLS);
convert_to_string(&tmp);
get_regular_variable_contents(&tmp2,&tmp,1 _INLINE_TLS);
concat_function(result,encaps,&tmp2,1 _INLINE_TLS);
}
}
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/
|