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 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
|
/****************************************************************
* *
* Copyright (c) 2010-2024 Fidelity National Information *
* Services, Inc. and/or its subsidiaries. All rights reserved. *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#include "mdef.h"
#ifdef GTM_TRIGGER
#include "gdsroot.h" /* for gdsfhead.h */
#include "gdsbt.h" /* for gdsfhead.h */
#include "gdsfhead.h" /* For gvcst_protos.h */
#include "dpgbldir.h"
#include "gvcst_protos.h"
#include <rtnhdr.h>
#include "io.h"
#include "iormdef.h"
#include "hashtab_str.h"
#include "wbox_test_init.h"
#include "gv_trigger.h"
#include "trigger_delete_protos.h"
#include "trigger.h"
#include "trigger_incr_cycle.h"
#include "trigger_parse_protos.h"
#include "trigger_update_protos.h"
#include "trigger_compare_protos.h"
#include "trigger_user_name.h"
#include "gtm_trigger_trc.h"
#include "gtm_string.h"
#include "mv_stent.h" /* for COPY_SUBS_TO_GVCURRKEY macro */
#include "gvsub2str.h" /* for COPY_SUBS_TO_GVCURRKEY */
#include "format_targ_key.h" /* for COPY_SUBS_TO_GVCURRKEY */
#include "targ_alloc.h" /* for SET_GVTARGET_TO_HASHT_GBL */
#include "gdsblk.h"
#include "gdscc.h" /* needed for tp.h */
#include "gdskill.h" /* needed for tp.h */
#include "buddy_list.h" /* needed for tp.h */
#include "filestruct.h" /* needed for jnl.h */
#include "jnl.h" /* needed for tp.h */
#include "tp.h"
#include "min_max.h" /* Needed for MIN */
#include "mvalconv.h" /* Needed for MV_FORCE_* */
#include "op.h"
#include "util.h"
#include "op_tcommit.h"
#include "tp_restart.h"
#include "error.h"
#include "file_input.h"
#include "stack_frame.h"
#include "tp_frame.h"
#include "t_retry.h"
#include "gtmimagename.h"
#include "hashtab_mname.h"
#include "zshow.h" /* for "format2disp" prototype */
#include "compiler.h"
#include "t_begin.h"
#include "repl_msg.h"
#include "gtmsource.h"
#include "change_reg.h" /* for "change_reg" prototype */
#include "gvnh_spanreg.h" /* for "gvnh_spanreg_subs_gvt_init" prototype */
#include "mu_interactive.h" /* for prompt looping */
#include "is_file_identical.h"
#include "anticipatory_freeze.h"
#include "gtm_repl_multi_inst.h" /* for DISALLOW_MULTIINST_UPDATE_IN_TP */
#include "stringpool.h"
GBLREF sgmnt_data_ptr_t cs_data;
GBLREF uint4 dollar_tlevel;
GBLREF boolean_t dollar_ztrigger_invoked;
GBLREF sgm_info *first_sgm_info;
GBLREF gd_region *gv_cur_region;
GBLREF gv_key *gv_currkey;
GBLREF gd_addr *gd_header;
GBLREF io_pair io_curr_device;
GBLREF jnlpool_addrs_ptr_t jnlpool;
GBLREF jnlpool_addrs_ptr_t jnlpool_head;
GBLREF trans_num local_tn;
GBLREF gv_namehead *reset_gv_target;
GBLREF sgm_info *sgm_info_ptr;
GBLREF int tprestart_state;
GBLREF volatile boolean_t timer_in_handler;
GBLREF unsigned int t_tries;
GBLREF unsigned char t_fail_hist[CDB_MAX_TRIES];
#ifdef DEBUG
GBLREF boolean_t donot_INVOKE_MUMTSTART;
#endif
error_def(ERR_DBROLLEDBACK);
error_def(ERR_NEEDTRIGUPGRD);
error_def(ERR_REMOTEDBNOTRIG);
error_def(ERR_TEXT);
error_def(ERR_TPRETRY);
error_def(ERR_TPRETRY);
error_def(ERR_TRIGDEFBAD);
error_def(ERR_TRIGLOADFAIL);
error_def(ERR_TRIGMODREGNOTRW);
error_def(ERR_TRIGNAMBAD);
LITREF mval gvtr_cmd_mval[GVTR_CMDTYPES];
LITREF int4 gvtr_cmd_mask[GVTR_CMDTYPES];
LITREF mval literal_one;
LITREF char *trigger_subs[];
static boolean_t mustprompt = TRUE;
static boolean_t promptanswer = TRUE;
#define MAX_COMMANDS_LEN 32 /* Need room for S,K,ZK,ZTK + room for expansion */
#define MAX_OPTIONS_LEN 32 /* Need room for NOI,NOC + room for expansion */
#define MAX_TRIGNAME_SEQ_NUM 999999
#define LITERAL_M "M"
#define OPTIONS_I 1
#define OPTIONS_NOI 2
#define OPTIONS_C 4
#define OPTIONS_NOC 8
#define NO_NAME_CHANGE 0
#define NO_CMD_CHANGE 0
#define NO_OPTIONS_CHANGE 0
#define ADD_UPDATE_NAME 0x01
#define ADD_UPDATE_CMDS 0x02
#define ADD_UPDATE_OPTIONS 0x04
#define SUB_UPDATE_NAME 0x10
#define SUB_UPDATE_CMDS 0x20
#define DELETE_REC 0x80
/* Defines macros for types of triggers; one is SET type triggers, one is Non-SET type triggers */
#define OPR_KILL 0
#define OPR_SET 1
#define NUM_OPRS 2
#define OPR_SETKILL 2
#define SEQ_SUCCESS 0
#define MAX_HASH_LEN MAX_HASH_INDEX_LEN + 1 + MAX_DIGITS_IN_INT
#define BUILD_COMMAND_BITMAP(BITMAP, COMMANDS) \
{ \
char lcl_cmds[MAX_COMMANDS_LEN + 1]; \
char *lcl_ptr, *strtok_ptr; \
\
assert(MAX_COMMANDS_LEN >= STRLEN(COMMANDS)); \
memcpy(lcl_cmds, COMMANDS, STRLEN(COMMANDS) + 1); \
BITMAP = 0; \
lcl_ptr = STRTOK_R(lcl_cmds, ",", &strtok_ptr); \
while (NULL != lcl_ptr) \
{ \
switch (*lcl_ptr) \
{ \
case 'S': \
BITMAP |= gvtr_cmd_mask[GVTR_CMDTYPE_SET]; \
break; \
case 'K': \
BITMAP |= gvtr_cmd_mask[GVTR_CMDTYPE_KILL]; \
break; \
case 'Z': \
switch (*(lcl_ptr + 1)) \
{ \
case 'K': \
BITMAP |= gvtr_cmd_mask[GVTR_CMDTYPE_ZKILL]; \
break; \
case 'T': \
switch(*(lcl_ptr + 2)) \
{ \
case 'K': \
BITMAP |= gvtr_cmd_mask[GVTR_CMDTYPE_ZTKILL]; \
break; \
case 'R': \
BITMAP |= gvtr_cmd_mask[GVTR_CMDTYPE_ZTRIGGER]; \
break; \
default: \
/* Parsing should have found invalid command */ \
assertpro(FALSE && lcl_ptr[2]); \
break; \
} \
break; \
default: \
/* Parsing should have found invalid command */ \
assertpro(FALSE && lcl_ptr[1]); \
break; \
} \
break; \
default: \
/* Parsing should have found invalid command */ \
assertpro(FALSE && lcl_ptr[0]); \
break; \
} \
lcl_ptr = STRTOK_R(NULL, ",", &strtok_ptr); \
} \
}
#define COMMAND_BITMAP_TO_STR(COMMANDS, BITMAP, LEN) \
{ \
int count, cmdtype, lcl_len; \
char *lcl_ptr; \
\
count = 0; \
lcl_ptr = COMMANDS; \
lcl_len = LEN; \
for (cmdtype = 0; cmdtype < GVTR_CMDTYPES; cmdtype++) \
{ \
if (gvtr_cmd_mask[cmdtype] & (BITMAP)) \
{ \
ADD_COMMA_IF_NEEDED(count, lcl_ptr, lcl_len); \
ADD_STRING(count, lcl_ptr, gvtr_cmd_mval[cmdtype].str.len, gvtr_cmd_mval[cmdtype].str.addr, lcl_len); \
} \
} \
*lcl_ptr = '\0'; \
LEN = STRLEN(COMMANDS); \
}
#define BUILD_OPTION_BITMAP(BITMAP, OPTIONS) \
{ \
char lcl_options[MAX_OPTIONS_LEN + 1]; \
char *lcl_ptr, *strtok_ptr; \
\
assert(MAX_OPTIONS_LEN >= STRLEN(OPTIONS)); \
memcpy(lcl_options, OPTIONS, STRLEN(OPTIONS) + 1); \
BITMAP = 0; \
lcl_ptr = STRTOK_R(lcl_options, ",", &strtok_ptr); \
while (NULL != lcl_ptr) \
{ \
switch (*lcl_ptr) \
{ \
case 'C': \
BITMAP |= OPTIONS_C; \
break; \
case 'I': \
BITMAP |= OPTIONS_I; \
break; \
case 'N': \
assert('O' == *(lcl_ptr + 1)); \
switch (*(lcl_ptr + 2)) \
{ \
case 'C': \
BITMAP |= OPTIONS_NOC; \
break; \
case 'I': \
BITMAP |= OPTIONS_NOI; \
break; \
default: \
/* Parsing should have found invalid command */ \
assertpro(FALSE && lcl_ptr[2]); \
break; \
} \
break; \
default: \
/* Parsing should have found invalid command */ \
assertpro(FALSE && lcl_ptr[0]); \
break; \
} \
lcl_ptr = STRTOK_R(NULL, ",", &strtok_ptr); \
} \
}
#define OPTION_BITMAP_TO_STR(OPTIONS, BITMAP, LEN) \
{ \
int count, lcl_len; \
char *lcl_ptr; \
\
count = 0; \
lcl_len = LEN; \
lcl_ptr = OPTIONS; \
if (OPTIONS_I & BITMAP) \
{ \
ADD_COMMA_IF_NEEDED(count, lcl_ptr, lcl_len); \
ADD_STRING(count, lcl_ptr, STRLEN(HASHT_OPT_ISOLATION), HASHT_OPT_ISOLATION, lcl_len); \
} \
if (OPTIONS_NOI & BITMAP) \
{ \
ADD_COMMA_IF_NEEDED(count, lcl_ptr, lcl_len); \
ADD_STRING(count, lcl_ptr, STRLEN(HASHT_OPT_NOISOLATION), HASHT_OPT_NOISOLATION, lcl_len); \
} \
if (OPTIONS_C & BITMAP) \
{ \
ADD_COMMA_IF_NEEDED(count, lcl_ptr, lcl_len); \
ADD_STRING(count, lcl_ptr, STRLEN(HASHT_OPT_CONSISTENCY), HASHT_OPT_CONSISTENCY, lcl_len); \
} \
if (OPTIONS_NOC & BITMAP) \
{ \
ADD_COMMA_IF_NEEDED(count, lcl_ptr, lcl_len); \
ADD_STRING(count, lcl_ptr, STRLEN(HASHT_OPT_NOCONSISTENCY), HASHT_OPT_NOCONSISTENCY, lcl_len); \
} \
*lcl_ptr = '\0'; \
LEN = STRLEN(OPTIONS); \
}
#define TOO_LONG_REC_KEY_ERROR_MSG \
{ \
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen); \
if (KEY_TOO_LONG == result) \
util_out_print_gtmio("Error : ^!AD trigger - key larger than max key size", \
FLUSH, disp_trigvn_len, disp_trigvn); \
else \
util_out_print_gtmio("Error : ^!AD trigger - value larger than max record size", \
FLUSH, disp_trigvn_len, disp_trigvn); \
}
#define IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(RESULT) \
{ \
if (PUT_SUCCESS != RESULT) \
{ \
TOO_LONG_REC_KEY_ERROR_MSG; \
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE); \
} \
}
#define TRIGGER_SAME_NAME_EXISTS_ERROR(OPNAME, DISP_TRIGVN_LEN, DISP_TRIGVN) \
{ \
assert(dollar_tlevel); \
if (CDB_STAGNATE > t_tries) \
{ /* Directly jump to final retry since we cannot issue this error accurately \
* unless we are in the final retry. Dont waste time in intermediate tries. \
* But before then record the fact that the intermediate tries had normal status. \
*/ \
for ( ; t_tries < (CDB_STAGNATE - 1); t_tries++) \
t_fail_hist[t_tries] = cdb_sc_normal; \
t_retry(cdb_sc_triggermod); \
} \
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen); \
util_out_print_gtmio("Error : !AZ trigger on ^!AD not added as another trigger named !AD already exists", \
FLUSH, OPNAME, DISP_TRIGVN_LEN, DISP_TRIGVN, \
value_len[TRIGNAME_SUB], values[TRIGNAME_SUB]); \
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE); \
}
/* This error macro is used for all definition errors where the target is ^#t(GVN,<#LABEL|#COUNT|#CYCLE>) */
#define HASHT_DEFINITION_RETRY_OR_ERROR(SUBSCRIPT, MOREINFO, CSA) \
{ \
if (UPDATE_CAN_RETRY(t_tries, t_fail_hist[t_tries])) \
t_retry(cdb_sc_triggermod); \
else \
{ \
HASHT_DEFINITION_ERROR(SUBSCRIPT, MOREINFO, CSA); \
} \
}
#define HASHT_DEFINITION_ERROR(SUBSCRIPT, MOREINFO, CSA) \
{ \
assert(WBTEST_HELPOUT_TRIGDEFBAD == gtm_white_box_test_case_number); \
rts_error_csa(CSA_ARG(CSA) VARLSTCNT(12) ERR_TRIGDEFBAD, 6, trigvn_len, trigvn, \
trigvn_len, trigvn, LEN_AND_LIT(SUBSCRIPT), \
ERR_TEXT, 2, RTS_ERROR_TEXT(MOREINFO)); \
}
STATICFNDEF boolean_t validate_label(char *trigvn, int trigvn_len)
{
mval trigger_label;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
BUILD_HASHT_SUB_SUB_CURRKEY(trigvn, trigvn_len, LITERAL_HASHLABEL, STRLEN(LITERAL_HASHLABEL));
if (!gvcst_get(&trigger_label)) /* There has to be a #LABEL */
HASHT_DEFINITION_RETRY_OR_ERROR("\"#LABEL\"","#LABEL was not found", REG2CSA(gv_cur_region))
return ((trigger_label.str.len == STRLEN(HASHT_GBL_CURLABEL))
&& (0 == memcmp(trigger_label.str.addr, HASHT_GBL_CURLABEL, trigger_label.str.len)));
}
STATICFNDEF int4 update_commands(char *trigvn, int trigvn_len, int trigger_index, char *new_trig_cmds, char *orig_db_cmds)
{
mval mv_trig_indx;
uint4 orig_cmd_bm, new_cmd_bm;
int4 result;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
if (!validate_label(trigvn, trigvn_len))
return INVALID_LABEL;
BUILD_COMMAND_BITMAP(orig_cmd_bm, orig_db_cmds);
BUILD_COMMAND_BITMAP(new_cmd_bm, new_trig_cmds);
i2mval(&mv_trig_indx, trigger_index);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[CMD_SUB], STRLEN(trigger_subs[CMD_SUB]),
new_trig_cmds, STRLEN(new_trig_cmds), result);
if (PUT_SUCCESS != result)
return result;
if ((gvtr_cmd_mask[GVTR_CMDTYPE_SET] & orig_cmd_bm) && !(gvtr_cmd_mask[GVTR_CMDTYPE_SET] & new_cmd_bm))
{ /* SET was removed from the commands, so delete the SET specific attributes */
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, mv_trig_indx,
trigger_subs[DELIM_SUB], STRLEN(trigger_subs[DELIM_SUB]));
gvcst_kill(TRUE);
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, mv_trig_indx,
trigger_subs[ZDELIM_SUB], STRLEN(trigger_subs[ZDELIM_SUB]));
gvcst_kill(TRUE);
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, mv_trig_indx,
trigger_subs[PIECES_SUB], STRLEN(trigger_subs[PIECES_SUB]));
gvcst_kill(TRUE);
}
return SUB_UPDATE_CMDS;
}
STATICFNDEF int4 update_trigger_name(char *trigvn, int trigvn_len, int trigger_index, char *db_trig_name, char *tf_trig_name,
uint4 tf_trig_name_len)
{
mval mv_trig_indx;
int4 result;
uint4 retval;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
retval = NO_NAME_CHANGE;
if ((tf_trig_name_len && (tf_trig_name_len != STRLEN(db_trig_name) - 1))
|| memcmp(tf_trig_name, db_trig_name, tf_trig_name_len))
{
if (!validate_label(trigvn, trigvn_len))
return INVALID_LABEL;
i2mval(&mv_trig_indx, trigger_index);
tf_trig_name[tf_trig_name_len++] = TRIGNAME_SEQ_DELIM;
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx,
trigger_subs[TRIGNAME_SUB], STRLEN(trigger_subs[TRIGNAME_SUB]), tf_trig_name, tf_trig_name_len, result);
if (PUT_SUCCESS != result)
return result;
cleanup_trigger_name(trigvn, trigvn_len, db_trig_name, STRLEN(db_trig_name));
retval = ADD_UPDATE_NAME;
}
return retval;
}
/*
* Input: trigger_name and trigger_name_length
* [optional] srch_reg (when non-NULL this is the only region to search)
*
* Output: returns TRUE if trigger name is found, false if not.
* srch_reg set to the region the name was found in.
* val is the "<gbl>\0<trigindx>" string to which the name points
*
* This function is similar to check_unique_trigger_name_full(), but is only called from
* trigger_source_read_andor_verify()
*/
boolean_t trigger_name_search(char *trigger_name, uint4 trigger_name_len, mval *val, gd_region **srch_reg)
{
boolean_t name_found;
char *ptr, *ptr2;
gd_region *reg, *reg_top;
gd_region *save_gv_cur_region;
gv_key_buf save_currkey;
gv_namehead *save_gv_target;
gvnh_reg_t *gvnh_reg;
int len;
mname_entry gvname;
sgm_info *save_sgm_info_ptr;
jnlpool_addrs_ptr_t save_jnlpool;
/* Example trigger name could be x#1#A:BREG to indicate trigger on global ^x with an autogenerated name x#1
* that exists in multiple regions and hence had a runtime disambiguator of x#1#A. The :BREG is a region-level
* disambiguator to indicate we want to focus on BREG region to search for triggers with the name x#1.
* We dont expect the input trigger name to contain the runtime and region-level disambiguator but in case both
* are present we treat it as if the runtime disambiguator was absent.
*/
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
/* Remove trailing # (if any) in trigger name before searching in ^#t as it is not stored in the ^#t("#TNAME",...) node */
assert('#' == trigger_name[trigger_name_len - 1]);
if ('#' == trigger_name[trigger_name_len - 1])
trigger_name_len--;
/* We only check user supplied names for uniqueness. With autogenerated names it is possible for
* same name to exist in multiple regions (in case two globals with global name > 21 chars map to
* different regions and have one trigger per global name installed with auto-generated names.
* But even in that case, at most one auto-generated name per region is possible. So we have a limit
* on the max # of duplicated auto-generated names.
*/
assert(0 < trigger_name_len);
SAVE_REGION_INFO(save_currkey, save_gv_target, save_gv_cur_region, save_sgm_info_ptr, save_jnlpool);
name_found = FALSE;
reg = *srch_reg;
if (NULL != reg)
reg_top = reg + 1; /* make sure we dont go in the for loop more than once */
else
{
reg = gd_header->regions;
reg_top = reg + gd_header->n_regions;
assert(reg < reg_top);
}
for ( ; reg < reg_top; reg++)
{
if (IS_STATSDB_REGNAME(reg))
continue;
GVTR_SWITCH_REG_AND_HASHT_BIND_NAME(reg);
if (NULL == cs_addrs) /* not BG or MM access method */
continue;
/* gv_target now points to ^#t in region "reg" */
if (0 == gv_target->root)
continue;
/* $get(^#t("#TNAME",trigger_name)) */
BUILD_HASHT_SUB_SUB_CURRKEY(LITERAL_HASHTNAME, STRLEN(LITERAL_HASHTNAME), trigger_name, trigger_name_len);
if (!gvcst_get(val))
continue;
ptr = val->str.addr;
ptr2 = memchr(ptr, '\0', val->str.len); /* Do it this way since "val" has multiple fields null separated */
if (NULL == ptr2)
{ /* We expect $c(0) in the middle of ptr. If we dont find it, this is a restartable situation */
if (UPDATE_CAN_RETRY(t_tries, t_fail_hist[t_tries]))
t_retry(cdb_sc_triggermod);
assert(WBTEST_HELPOUT_TRIGDEFBAD == gtm_white_box_test_case_number);
RTS_ERROR_CSA_ABT(NULL, VARLSTCNT(6) ERR_TRIGNAMBAD, 4, LEN_AND_LIT("\"#TNAME\""),
trigger_name_len, trigger_name);
}
len = ptr2 - ptr;
assert(('\0' == *ptr2) && (val->str.len > len));
gvname.var_name.addr = val->str.addr;
gvname.var_name.len = len;
/* Check if global name is indeed mapped to this region by the gld.
* If not treat this case as if the trigger is invisible to us i.e. move on to next region.
*/
COMPUTE_HASH_MNAME(&gvname);
GV_BIND_NAME_ONLY(gd_header, &gvname, gvnh_reg); /* does tp_set_sgm() */
if (((NULL == gvnh_reg->gvspan) && (gv_cur_region != reg))
|| ((NULL != gvnh_reg->gvspan) && !gvnh_spanreg_ismapped(gvnh_reg, gd_header, reg)))
continue;
*srch_reg = reg;
name_found = TRUE;
break;
}
RESTORE_REGION_INFO(save_currkey, save_gv_target, save_gv_cur_region, save_sgm_info_ptr, save_jnlpool);
return name_found;
}
/* Returns TRUE if name is NOT found. FALSE if name is found. If name is found, "val" holds the value of the found node */
boolean_t check_unique_trigger_name_full(char **values, uint4 *value_len, mval *val, boolean_t *new_match,
char *trigvn, int trigvn_len, stringkey *kill_trigger_hash, stringkey *set_trigger_hash)
{
boolean_t overall_name_found, this_name_found;
gd_region *reg, *reg_top;
gv_key_buf save_currkey;
gd_region *save_gv_cur_region;
gv_namehead *save_gv_target;
sgm_info *save_sgm_info_ptr;
jnlpool_addrs_ptr_t save_jnlpool;
int set_index, kill_index;
boolean_t db_matched_set, db_matched_kill, full_match, trigger_exists;
mval setname, killname;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
DEBUG_ONLY(if (WBTEST_HELPOUT_TRIGNAMEUNIQ == gtm_white_box_test_case_number) return TRUE;)
/* We only check user supplied names for uniqueness. With autogenerated names it is possible for
* same name to exist in multiple regions (in case two globals with global name > 21 chars map to
* different regions and have one trigger per global name installed with auto-generated names.
* But even in that case, at most one auto-generated name per region is possible. So we have a limit
* on the max # of duplicated auto-generated names.
*/
*new_match = TRUE;
if (0 == value_len[TRIGNAME_SUB])
return TRUE;
SAVE_REGION_INFO(save_currkey, save_gv_target, save_gv_cur_region, save_sgm_info_ptr, save_jnlpool);
overall_name_found = FALSE;
for (reg = gd_header->regions, reg_top = reg + gd_header->n_regions; reg < reg_top; reg++)
{
if (IS_STATSDB_REGNAME(reg))
continue;
GVTR_SWITCH_REG_AND_HASHT_BIND_NAME(reg);
if (NULL == cs_addrs) /* not BG or MM access method */
continue;
/* gv_target now points to ^#t in region "reg" */
if (0 == gv_target->root)
continue;
/* $get(^#t("#TNAME",trigger_name) */
BUILD_HASHT_SUB_SUB_CURRKEY(LITERAL_HASHTNAME, STRLEN(LITERAL_HASHTNAME),
values[TRIGNAME_SUB], value_len[TRIGNAME_SUB]);
this_name_found = gvcst_get(val);
if (this_name_found)
{
overall_name_found = TRUE;
trigger_exists = trigger_already_exists(trigvn, trigvn_len, values, value_len,
set_trigger_hash, kill_trigger_hash,
&set_index, &kill_index, &db_matched_set, &db_matched_kill,
&full_match, &setname, &killname);
if (!full_match)
{
*new_match = FALSE;
break;
}
}
}
RESTORE_REGION_INFO(save_currkey, save_gv_target, save_gv_cur_region, save_sgm_info_ptr, save_jnlpool);
return !overall_name_found;
}
STATICFNDEF int4 add_trigger_hash_entry(char *trigvn, int trigvn_len, char *cmd_value, int trigindx, boolean_t add_kill_hash,
stringkey *kill_hash, stringkey *set_hash)
{
int hash_indx;
char indx_str[MAX_DIGITS_IN_INT];
uint4 len;
mval mv_hash;
mval mv_indx, *mv_indx_ptr;
char name_and_index[MAX_MIDENT_LEN + 1 + MAX_DIGITS_IN_INT];
int num_len;
char *ptr;
int4 result;
boolean_t set_cmp;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
assert(!gv_cur_region->read_only); /* caller should have already checked this */
assert(cs_addrs->hasht_tree == gv_target); /* should have been set up by caller */
assert(gv_target->root); /* should have been ensured by caller */
set_cmp = (NULL != strchr(cmd_value, 'S'));
mv_indx_ptr = &mv_indx;
num_len = 0;
I2A(indx_str, num_len, trigindx);
assert(MAX_MIDENT_LEN >= trigvn_len);
memcpy(name_and_index, trigvn, trigvn_len);
ptr = name_and_index + trigvn_len;
*ptr++ = '\0';
memcpy(ptr, indx_str, num_len);
len = trigvn_len + 1 + num_len;
if (set_cmp)
{
if (set_hash->hash_code != kill_hash->hash_code)
{
MV_FORCE_UMVAL(&mv_hash, set_hash->hash_code);
if (gv_target->root)
{
BUILD_HASHT_SUB_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len,
LITERAL_HASHTRHASH, STRLEN(LITERAL_HASHTRHASH), mv_hash, "", 0);
op_zprevious(&mv_indx);
hash_indx = (0 == mv_indx.str.len) ? 1 : (mval2i(mv_indx_ptr) + 1);
} else
hash_indx = 1;
i2mval(&mv_indx, hash_indx);
SET_TRIGGER_GLOBAL_SUB_SUB_MSUB_MSUB_STR(trigvn, trigvn_len,
LITERAL_HASHTRHASH, STRLEN(LITERAL_HASHTRHASH), mv_hash, mv_indx, name_and_index, len, result);
if (PUT_SUCCESS != result)
return result;
}
/* else: the next block of code for kill hash processing will add this hashcode in ^#t("#TRHASH",...) */
} else
set_hash->hash_code = 0;
if (add_kill_hash)
{
MV_FORCE_UMVAL(&mv_hash, kill_hash->hash_code);
if (gv_target->root)
{
BUILD_HASHT_SUB_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len,
LITERAL_HASHTRHASH, STRLEN(LITERAL_HASHTRHASH), mv_hash, "", 0);
op_zprevious(&mv_indx);
hash_indx = (0 == mv_indx.str.len) ? 1 : (mval2i(mv_indx_ptr) + 1);
} else
hash_indx = 1;
i2mval(&mv_indx, hash_indx);
SET_TRIGGER_GLOBAL_SUB_SUB_MSUB_MSUB_STR(trigvn, trigvn_len,
LITERAL_HASHTRHASH, STRLEN(LITERAL_HASHTRHASH), mv_hash, mv_indx, name_and_index, len, result);
if (PUT_SUCCESS != result)
return result;
} else
kill_hash->hash_code = 0;
return PUT_SUCCESS;
}
STATICFNDEF boolean_t trigger_already_exists(char *trigvn, int trigvn_len, char **values, uint4 *value_len, /* input parm */
stringkey *set_trigger_hash, stringkey *kill_trigger_hash, /* input parm */
int *set_index, int *kill_index, boolean_t *set_cmp_result, /* output parm */
boolean_t *kill_cmp_result, boolean_t *full_match, /* output parm */
mval *setname, mval *killname) /* output parm */
{
sgmnt_addrs *csa;
boolean_t db_has_K;
boolean_t db_has_S;
int hash_indx;
boolean_t kill_cmp, kill_found;
int kill_indx;
boolean_t set_cmp, set_found, set_name_match, kill_name_match;
int set_indx;
mval trigindx;
unsigned char util_buff[MAX_TRIG_UTIL_LEN]; /* needed for HASHT_GVN_DEFINITION_RETRY_OR_ERROR macro */
int4 util_len;
mval val;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
assert(cs_addrs->hasht_tree == gv_target); /* should have been set up by caller */
assert(gv_target->root); /* should have been ensured by caller */
/* Test with BHASH or LHASH.
* ^#t("GBL",1,"CMD") could contain one or more of "S,K,ZK,ZTK,ZTR".
* Out of the 5 commands above, a S type trigger uses the "BHASH" hash value.
* Everything else (K, ZK, ZTK, ZTR) uses the "LHASH" value.
* An easy check of one of these 4 commands is a chek for the letter K or R.
*/
set_cmp = (NULL != strchr(values[CMD_SUB], 'S'));
kill_cmp = ((NULL != strchr(values[CMD_SUB], 'K')) || (NULL != strchr(values[CMD_SUB], 'R')));
set_found = kill_found = set_name_match = kill_name_match = FALSE;
csa = cs_addrs;
if (set_cmp)
{ /* test for SET hash match if SET command specified */
set_found = search_triggers(trigvn, trigvn_len, values, value_len, set_trigger_hash, &hash_indx, &set_indx, TRUE);
if (set_found)
{
i2mval(&trigindx, set_indx);
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, trigindx, trigger_subs[TRIGNAME_SUB],
STRLEN(trigger_subs[TRIGNAME_SUB]));
if (!gvcst_get(setname)) /* There has to be a name value */
HASHT_GVN_DEFINITION_RETRY_OR_ERROR(set_indx, ",\"TRIGNAME\"", csa);
setname->str.len--; /* remove the # at the tail of the trigger name */
set_name_match = ((value_len[TRIGNAME_SUB] == setname->str.len)
&& !memcmp(setname->str.addr, values[TRIGNAME_SUB], value_len[TRIGNAME_SUB]));
}
} else
set_indx = 0;
*set_cmp_result = set_found;
kill_indx = -1;
if (kill_cmp || !set_found)
{ /* if SET is not found OR KILL is specified in commands, test for KILL hash match */
kill_found = search_triggers(trigvn, trigvn_len, values, value_len, kill_trigger_hash,
&hash_indx, &kill_indx, FALSE);
if (kill_found)
{
if (!set_found || (kill_indx != set_indx))
{
i2mval(&trigindx, kill_indx);
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, trigindx, trigger_subs[CMD_SUB],
STRLEN(trigger_subs[CMD_SUB]));
if (!gvcst_get(&val)) /* There has to be a command string */
HASHT_GVN_DEFINITION_RETRY_OR_ERROR(kill_indx, ",\"CMD\"", csa);
/* val.str.addr would contain something like the following
* ^#t("GBL",1,"CMD")="S,K,ZK,ZTK,ZTR".
* Out of the 5 commands above, a S type trigger uses the "BHASH" hash value.
* Everything else (K, ZK, ZTK, ZTR) uses the "LHASH" value.
*/
db_has_S = (NULL != memchr(val.str.addr, 'S', val.str.len));
db_has_K = ((NULL != memchr(val.str.addr, 'K', val.str.len))
|| (NULL != memchr(val.str.addr, 'R', val.str.len)));
if (!kill_cmp)
kill_found = (db_has_K && !db_has_S);
/* $get(^#t(trigvn,trigindx,"TRIGNAME") */
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, trigindx, trigger_subs[TRIGNAME_SUB],
STRLEN(trigger_subs[TRIGNAME_SUB]));
if (!gvcst_get(killname)) /* There has to be a name string */
HASHT_GVN_DEFINITION_RETRY_OR_ERROR(kill_indx, ",\"TRIGNAME\"", csa);
killname->str.len--; /* remove the # at the tail of the trigger name */
kill_name_match = ((value_len[TRIGNAME_SUB] == killname->str.len)
&& !memcmp(killname->str.addr, values[TRIGNAME_SUB], value_len[TRIGNAME_SUB]));
if (set_cmp && !set_found && !db_has_S)
{
*setname = *killname;
set_indx = kill_indx;
}
} else
*killname = *setname;
} else
{
kill_indx = -1;
if (!set_found)
set_indx = 0;
}
if (set_cmp && (kill_indx == set_indx))
kill_indx = -1;
}
*kill_index = kill_indx;
*kill_cmp_result = kill_found ? TRUE : set_found;
*set_index = set_indx;
/* If there is both a set and a kill and the set components don't match, there is no name match no matter if the kill
* components match or not. If there is no set, then the name match is only based on the kill components.
*/
*full_match = (set_cmp ? set_name_match : kill_name_match);
return (set_found || kill_found);
}
STATICFNDEF int4 add_trigger_cmd_attributes(char *trigvn, int trigvn_len, int trigger_index, char *trig_cmds, char **values,
uint4 *value_len, boolean_t db_matched_set, boolean_t db_matched_kill, stringkey *kill_hash, stringkey *set_hash,
uint4 db_cmd_bm, uint4 tf_cmd_bm)
{
char cmd_str[MAX_COMMANDS_LEN];
int cmd_str_len;
mval mv_hash;
mval mv_trig_indx;
int4 result;
uint4 tmp_bm;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
if (!validate_label(trigvn, trigvn_len))
return INVALID_LABEL;
/* If the trigger file command string is contained in the database command and either
* 1. the trigger file command has no SET components or
* 2. the trigger file command matched a database SET component
* then the trigger file command is already in the database, so return.
*/
if ((tf_cmd_bm == (db_cmd_bm & tf_cmd_bm)) && (!(tf_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_SET]) || db_matched_set))
return NO_CMD_CHANGE;
assert(!db_matched_set || db_matched_kill);
/* If merge would combine K and ZTK, it's an error */
if (((db_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_KILL]) && (tf_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_ZTKILL]))
|| ((db_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_ZTKILL]) && (tf_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_KILL])))
return K_ZTK_CONFLICT;
if (!db_matched_set && db_matched_kill
&& (tf_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_SET]) && (db_cmd_bm & gvtr_cmd_mask[GVTR_CMDTYPE_SET]))
{
tmp_bm = (db_cmd_bm | tf_cmd_bm);
if (tmp_bm == db_cmd_bm)
{ /* No change to commands in the KILL trigger entry in db.
* SET trigger (if it exists and is in a different trigger) to be processed separately.
*/
return ADD_SET_NOCHNG_KILL_TRIG;
}
/* Commands are being added to the existing KILL trigger entry in db */
cmd_str_len = ARRAYSIZE(cmd_str);
COMMAND_BITMAP_TO_STR(cmd_str, tmp_bm, cmd_str_len);
i2mval(&mv_trig_indx, trigger_index);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[CMD_SUB],
STRLEN(trigger_subs[CMD_SUB]), cmd_str, cmd_str_len, result);
assert(result == PUT_SUCCESS);
return (result == PUT_SUCCESS) ? ADD_SET_MODIFY_KILL_TRIG : result;
}
cmd_str_len = ARRAYSIZE(cmd_str);
COMMAND_BITMAP_TO_STR(cmd_str, db_cmd_bm | tf_cmd_bm, cmd_str_len);
i2mval(&mv_trig_indx, trigger_index);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[CMD_SUB], STRLEN(trigger_subs[CMD_SUB]),
cmd_str, cmd_str_len, result);
if (PUT_SUCCESS != result)
return result;
strcpy(trig_cmds, cmd_str);
if ((gvtr_cmd_mask[GVTR_CMDTYPE_SET] & tf_cmd_bm) && !(gvtr_cmd_mask[GVTR_CMDTYPE_SET] & db_cmd_bm))
{ /* need to add SET attributes */
if (0 < value_len[DELIM_SUB])
{
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[DELIM_SUB],
STRLEN(trigger_subs[DELIM_SUB]), values[DELIM_SUB], value_len[DELIM_SUB], result);
if (PUT_SUCCESS != result)
return result;
}
if (0 < value_len[ZDELIM_SUB])
{
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[ZDELIM_SUB],
STRLEN(trigger_subs[ZDELIM_SUB]), values[ZDELIM_SUB], value_len[ZDELIM_SUB], result);
if (PUT_SUCCESS != result)
return result;
}
if (0 < value_len[PIECES_SUB])
{
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[PIECES_SUB],
STRLEN(trigger_subs[PIECES_SUB]), values[PIECES_SUB], value_len[PIECES_SUB], result);
if (PUT_SUCCESS != result)
return result;
}
if (!(gvtr_cmd_mask[GVTR_CMDTYPE_SET] & db_cmd_bm) && (gvtr_cmd_mask[GVTR_CMDTYPE_SET] & tf_cmd_bm))
{ /* We gained an "S" so we need to add the set hash value */
result = add_trigger_hash_entry(trigvn, trigvn_len, values[CMD_SUB], trigger_index, FALSE, kill_hash,
set_hash);
if (PUT_SUCCESS != result)
return result;
MV_FORCE_UMVAL(&mv_hash, set_hash->hash_code);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_MVAL(trigvn, trigvn_len, mv_trig_indx, trigger_subs[BHASH_SUB],
STRLEN(trigger_subs[BHASH_SUB]), mv_hash, result);
if (PUT_SUCCESS != result)
return result;
}
}
return ADD_UPDATE_CMDS;
}
STATICFNDEF int4 add_trigger_options_attributes(char *trigvn, int trigvn_len, int trigger_index, char *trig_options, char **values,
uint4 *value_len)
{
uint4 db_option_bm;
mval mv_trig_indx;
char option_str[MAX_OPTIONS_LEN];
int option_str_len;
int4 result;
uint4 tf_option_bm;
uint4 tmp_bm;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
BUILD_OPTION_BITMAP(db_option_bm, trig_options);
BUILD_OPTION_BITMAP(tf_option_bm, values[OPTIONS_SUB]);
if (tf_option_bm == db_option_bm)
/* If trigger file OPTIONS is contained in the DB OPTIONS, then trigger file entry is already in DB, just return */
return NO_OPTIONS_CHANGE;
tmp_bm = tf_option_bm;
if (!validate_label(trigvn, trigvn_len))
return INVALID_LABEL;
option_str_len = ARRAYSIZE(option_str);
OPTION_BITMAP_TO_STR(option_str, tmp_bm, option_str_len);
i2mval(&mv_trig_indx, trigger_index);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, mv_trig_indx, trigger_subs[OPTIONS_SUB],
STRLEN(trigger_subs[OPTIONS_SUB]), option_str, option_str_len, result);
if (PUT_SUCCESS != result)
return result;
strcpy(trig_options, option_str);
return ADD_UPDATE_OPTIONS;
}
STATICFNDEF boolean_t subtract_trigger_cmd_attributes(char *trigvn, int trigvn_len, char *trig_cmds, char **values,
uint4 *value_len, boolean_t db_matched_set, stringkey *kill_hash, stringkey *set_hash, int trigger_index,
uint4 db_cmd_bm, uint4 tf_cmd_bm)
{
char cmd_str[MAX_COMMANDS_LEN];
int cmd_str_len;
uint4 restore_set = 0;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
if (!db_matched_set && (gvtr_cmd_mask[GVTR_CMDTYPE_SET] & tf_cmd_bm))
{ /* If the set compare failed, we don't want to consider the SET */
restore_set = gvtr_cmd_mask[GVTR_CMDTYPE_SET];
tf_cmd_bm &= ~restore_set;
}
if (0 == (db_cmd_bm & tf_cmd_bm))
return 0; /* If trigger file CMD does NOT overlap with the DB CMD, then no match. So no delete. Just return */
cmd_str_len = ARRAYSIZE(cmd_str);
if (db_cmd_bm != (db_cmd_bm & tf_cmd_bm))
{ /* combine cmds - subtract trigger file attributes from db attributes */
COMMAND_BITMAP_TO_STR(cmd_str, (db_cmd_bm & tf_cmd_bm) ^ db_cmd_bm, cmd_str_len);
strcpy(trig_cmds, cmd_str);
/* If we lost the "S", need to delete the set hash value */
if ((0 != (gvtr_cmd_mask[GVTR_CMDTYPE_SET] & db_cmd_bm))
&& (0 == (gvtr_cmd_mask[GVTR_CMDTYPE_SET] & ((db_cmd_bm & tf_cmd_bm) ^ db_cmd_bm))))
cleanup_trigger_hash(trigvn, trigvn_len, values, value_len, set_hash, kill_hash, FALSE, trigger_index);
} else
{ /* Both cmds are the same - candidate for delete */
trig_cmds[0] = '\0';
}
return SUB_UPDATE_CMDS;
}
STATICFNDEF int4 modify_record(char *trigvn, int trigvn_len, char add_delete, int trigger_index, char **values, uint4 *value_len,
mval *trigger_count, boolean_t db_matched_set, boolean_t db_matched_kill,
stringkey *kill_hash, stringkey *set_hash, int set_kill_bitmask)
{
char db_cmds[MAX_COMMANDS_LEN + 1];
boolean_t name_matches, sub_cmds;
int4 result;
uint4 retval;
mval trigindx;
char trig_cmds[MAX_COMMANDS_LEN + 1];
char trig_name[MAX_USER_TRIGNAME_LEN + 2]; /* One spot for # delimiter and one for trailing 0 */
char trig_options[MAX_OPTIONS_LEN + 1];
unsigned char util_buff[MAX_TRIG_UTIL_LEN];
int4 util_len;
int trig_cmds_len;
int trig_name_len;
int trig_options_len;
mval val;
uint4 db_cmd_bm, tf_cmd_bm;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
i2mval(&trigindx, trigger_index);
/* get(^#t(GVN,trigindx,"CMD") */
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, trigindx, trigger_subs[CMD_SUB], STRLEN(trigger_subs[CMD_SUB]));
if (!gvcst_get(&val)) /* There has to be a command string */
HASHT_GVN_DEFINITION_RETRY_OR_ERROR(trigger_index, ",\"CMD\"", REG2CSA(gv_cur_region));
trig_cmds_len = MIN(val.str.len, MAX_COMMANDS_LEN);
memcpy(trig_cmds, val.str.addr, trig_cmds_len);
trig_cmds[trig_cmds_len] = '\0';
BUILD_COMMAND_BITMAP(db_cmd_bm, trig_cmds);
BUILD_COMMAND_BITMAP(tf_cmd_bm, values[CMD_SUB]);
/* If trigger file has specified SET and/or KILL triggers and each of them matched to different triggers in database,
* filter out only the respective category of triggers to go forward with the command addition/deletion.
*/
if (OPR_KILL == set_kill_bitmask)
tf_cmd_bm &= ~gvtr_cmd_mask[GVTR_CMDTYPE_SET];
else if (OPR_SET == set_kill_bitmask)
tf_cmd_bm &= gvtr_cmd_mask[GVTR_CMDTYPE_SET];
/* get(^#t(GVN,trigindx,"OPTIONS") */
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, trigindx, trigger_subs[OPTIONS_SUB],
STRLEN(trigger_subs[OPTIONS_SUB]));
if (gvcst_get(&val))
{
trig_options_len = MIN(val.str.len, MAX_OPTIONS_LEN);
memcpy(trig_options, val.str.addr, trig_options_len);
} else
trig_options_len = 0;
trig_options[trig_options_len] = '\0';
/* get(^#t(GVN,trigindx,"TRIGNAME") */
BUILD_HASHT_SUB_MSUB_SUB_CURRKEY(trigvn, trigvn_len, trigindx, trigger_subs[TRIGNAME_SUB],
STRLEN(trigger_subs[TRIGNAME_SUB]));
if (gvcst_get(&val))
{
trig_name_len = MIN(val.str.len, ARRAYSIZE(trig_name));
memcpy(trig_name, val.str.addr, trig_name_len);
} else
trig_name_len = 0;
trig_name[trig_name_len] = '\0';
if ('+' == add_delete)
{
/* Process -OPTIONS */
result = add_trigger_options_attributes(trigvn, trigvn_len, trigger_index, trig_options, values, value_len);
assert((NO_OPTIONS_CHANGE == result) || (ADD_UPDATE_OPTIONS == result) /* 0 or 0x04 */
|| (INVALID_LABEL == result) || (VAL_TOO_LONG == result) || (KEY_TOO_LONG == result)); /* < 0 */
if (0 > result)
return result;
assert((NO_OPTIONS_CHANGE == result) || (ADD_UPDATE_OPTIONS == result));
if (NO_OPTIONS_CHANGE != result)
{ /* Check if specified list of commands matches commands in database. If not cannot proceed */
if (tf_cmd_bm != db_cmd_bm)
return OPTIONS_CMDS_CONFLICT;
}
retval = result;
/* Process -NAME */
result = update_trigger_name(trigvn, trigvn_len, trigger_index, trig_name, values[TRIGNAME_SUB],
value_len[TRIGNAME_SUB]);
assert((NO_NAME_CHANGE == result) || (ADD_UPDATE_NAME == result) /* 0 or 0x01 */
|| (INVALID_LABEL == result) || (VAL_TOO_LONG == result) || (KEY_TOO_LONG == result)); /* < 0 */
if (0 > result)
return result;
assert((NO_NAME_CHANGE == result) || (ADD_UPDATE_NAME == result));
if (NO_NAME_CHANGE != result)
{ /* Check if specified list of commands contains commands in database. If not cannot proceed */
if ((tf_cmd_bm &db_cmd_bm) != db_cmd_bm)
return NAME_CMDS_CONFLICT;
}
retval |= result;
/* Process -CMD */
result = add_trigger_cmd_attributes(trigvn, trigvn_len, trigger_index, trig_cmds, values, value_len,
db_matched_set, db_matched_kill, kill_hash, set_hash, db_cmd_bm, tf_cmd_bm);
assert((NO_CMD_CHANGE == result) || (ADD_UPDATE_CMDS == result) /* 0 or 0x02 */
|| (ADD_SET_MODIFY_KILL_TRIG == result) || (ADD_SET_NOCHNG_KILL_TRIG == result) /* < 0 */
|| (INVALID_LABEL == result) || (K_ZTK_CONFLICT == result) /* < 0 */
|| (VAL_TOO_LONG == result) || (KEY_TOO_LONG == result)); /* < 0 */
if (0 > result)
return result;
assert((NO_CMD_CHANGE == result) || (ADD_UPDATE_CMDS == result));
retval |= result;
} else
{
name_matches = (0 == value_len[TRIGNAME_SUB])
|| ((value_len[TRIGNAME_SUB] == (STRLEN(trig_name) - 1))
&& (0 == memcmp(values[TRIGNAME_SUB], trig_name, value_len[TRIGNAME_SUB])));
if (!name_matches)
return 0;
memcpy(db_cmds, trig_cmds, SIZEOF(trig_cmds));
sub_cmds = subtract_trigger_cmd_attributes(trigvn, trigvn_len, trig_cmds, values, value_len,
db_matched_set, kill_hash, set_hash, trigger_index, db_cmd_bm, tf_cmd_bm);
/* options are ignored in case of deletes so no need for "subtract_trigger_options_attributes()" */
if (!sub_cmds)
return 0;
if (0 == trig_cmds[0])
{
result = trigger_delete(trigvn, trigvn_len, trigger_count, trigger_index);
assert((VAL_TOO_LONG == result) || (KEY_TOO_LONG == result) /* < 0 */
|| (PUT_SUCCESS == result)); /* == 0 */
if (0 > result)
return result;
return DELETE_REC;
}
retval = 0;
if (sub_cmds)
{
result = update_commands(trigvn, trigvn_len, trigger_index, trig_cmds, db_cmds);
if (SUB_UPDATE_CMDS != result)
return result;
retval |= result;
}
}
return retval;
}
STATICFNDEF int4 gen_trigname_sequence(char *trigvn, uint4 trigvn_len, mval *trigger_count, char *user_trigname_str,
uint4 user_trigname_len)
{
char name_and_index[MAX_MIDENT_LEN + 1 + MAX_DIGITS_IN_INT];
char *ptr1;
int seq_num;
int4 result;
char *seq_ptr, *uniq_ptr;
char trig_name[MAX_USER_TRIGNAME_LEN + 2];
uint4 trigname_len, uniq_ptr_len;
char unique_seq_str[NUM_TRIGNAME_SEQ_CHARS + 1];
mval val, *val_ptr;
int var_count, max_seq_num;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
assert(MAX_USER_TRIGNAME_LEN >= user_trigname_len);
assert(!gv_cur_region->read_only); /* caller should have already checked this */
assert(cs_addrs->hasht_tree == gv_target); /* should have been set up by caller */
if (0 == user_trigname_len)
{ /* autogenerated name -- might be long so take MIN */
trigname_len = MIN(trigvn_len, MAX_AUTO_TRIGNAME_LEN);
memcpy(trig_name, trigvn, trigname_len); /* immediate prior statement ensures trigname_len is OK */
val_ptr = &val;
if (gv_target->root)
{ /* $get(^#t("#TNAME",GVN,"#SEQNUM")) */
BUILD_HASHT_SUB_SUB_SUB_CURRKEY(LITERAL_HASHTNAME, STR_LIT_LEN(LITERAL_HASHTNAME), trig_name, trigname_len,
LITERAL_HASHSEQNUM, STR_LIT_LEN(LITERAL_HASHSEQNUM));
seq_num = gvcst_get(val_ptr) ? mval2i(val_ptr) + 1 : 1;
max_seq_num = MAX_TRIGNAME_SEQ_NUM;
/* 4SCA: seq_num < MAX_TRIGNAME_SEQ_NUM which implies a max length of NUM_TRIGNAME_SEQ_CHARS */
if (max_seq_num < seq_num)
return TOO_MANY_TRIGGERS;
} else
seq_num = 1;
uniq_ptr = unique_seq_str;
INT2STR(seq_num, uniq_ptr);
uniq_ptr_len = STRLEN(uniq_ptr);
/* 4SCA: Integer overflow not possible : MAX_TRIGNAME_SEQ_NUM, 999999, can only be NUM_TRIGNAME_SEQ_CHARS long */
if (NUM_TRIGNAME_SEQ_CHARS < uniq_ptr_len)
return AUTO_NAME_GEN_FAIL;
/* set ^#t("#TNAME",GVN,"#SEQNUM")++ */
SET_TRIGGER_GLOBAL_SUB_SUB_SUB_STR(LITERAL_HASHTNAME, STR_LIT_LEN(LITERAL_HASHTNAME), trig_name, trigname_len,
LITERAL_HASHSEQNUM, STR_LIT_LEN(LITERAL_HASHSEQNUM), uniq_ptr, uniq_ptr_len, result);
if (PUT_SUCCESS != result)
return result;
/* set ^#t("#TNAME",GVN,"#TNCOUNT")++ */
BUILD_HASHT_SUB_SUB_SUB_CURRKEY(LITERAL_HASHTNAME, STR_LIT_LEN(LITERAL_HASHTNAME), trig_name, trigname_len,
LITERAL_HASHTNCOUNT, STR_LIT_LEN(LITERAL_HASHTNCOUNT));
var_count = gvcst_get(val_ptr) ? mval2i(val_ptr) + 1 : 1;
i2mval(&val, var_count);
SET_TRIGGER_GLOBAL_SUB_SUB_SUB_MVAL(LITERAL_HASHTNAME, STR_LIT_LEN(LITERAL_HASHTNAME), trig_name, trigname_len,
LITERAL_HASHTNCOUNT, STR_LIT_LEN(LITERAL_HASHTNCOUNT), val, result);
if (PUT_SUCCESS != result)
return result;
seq_ptr = user_trigname_str;
memcpy(seq_ptr, trig_name, trigname_len);
seq_ptr += trigname_len;
*seq_ptr++ = TRIGNAME_SEQ_DELIM;
memcpy(seq_ptr, uniq_ptr, uniq_ptr_len);
seq_ptr += uniq_ptr_len;
assert(MAX_USER_TRIGNAME_LEN >= (trigname_len + 1 + uniq_ptr_len));
user_trigname_len = MIN((trigname_len + 1 + uniq_ptr_len), MAX_USER_TRIGNAME_LEN);
} else
seq_ptr = user_trigname_str + user_trigname_len;
ptr1 = name_and_index;
memcpy(ptr1, trigvn, trigvn_len);
ptr1 += trigvn_len;
*ptr1++ = '\0';
MV_FORCE_STR(trigger_count);
memcpy(ptr1, trigger_count->str.addr, trigger_count->str.len);
SET_TRIGGER_GLOBAL_SUB_SUB_STR(LITERAL_HASHTNAME, STR_LIT_LEN(LITERAL_HASHTNAME), user_trigname_str, user_trigname_len,
name_and_index, trigvn_len + 1 + trigger_count->str.len, result);
if (PUT_SUCCESS != result)
return result;
*seq_ptr++ = TRIGNAME_SEQ_DELIM; /* all trigger names end with a hash mark, so append one */
*seq_ptr = '\0';
return SEQ_SUCCESS;
}
boolean_t trigger_update_rec(mval *trigger_rec, boolean_t noprompt, uint4 *trig_stats, io_pair *trigfile_device,
int4 *record_num)
{
char add_delete, *trigptr;
char ans[2];
boolean_t multiline_parse_fail;
mname_entry gvname;
int4 max_len;
boolean_t multi_line, multi_line_xecute;
int4 rec_len = -1;
int4 rec_num;
boolean_t status;
char tfile_rec_val[MAX_BUFF_SIZE];
char trigvn[MAX_MIDENT_LEN + 1];
char disp_trigvn[MAX_MIDENT_LEN + SPANREG_REGION_LITLEN + MAX_RN_LEN + 1 + 1];
/* SPANREG_REGION_LITLEN for " (region ", MAX_RN_LEN for region name,
* 1 for ")" and 1 for trailing '\0'.
*/
int disp_trigvn_len;
uint4 trigvn_len;
char *values[NUM_SUBS], *save_values[NUM_SUBS];
uint4 len, value_len[NUM_SUBS], save_value_len[NUM_SUBS];
stringkey kill_trigger_hash, set_trigger_hash;
char tmp_str[MAX_HASH_LEN + 1];
char xecute_buffer[MAX_BUFF_SIZE + MAX_XECUTE_LEN];
unsigned char *dispbuff;
mval multi_jrec, *trigjrec;
char *trigjrecptr = NULL;
int trigjreclen;
io_pair io_save_device;
int4 max_xecute_size;
boolean_t no_error;
gvnh_reg_t *gvnh_reg;
char utilprefix[1024];
int utilprefixlen, displen;
int reg_index, min_reg_index, max_reg_index;
boolean_t first_gtmio;
boolean_t jnl_format_done, new_name_check_done, new_name, first_error;
trig_stats_t this_trig_status, overall_trig_status;
gv_namehead *gvt;
gvnh_spanreg_t *gvspan;
hash128_state_t set_hash_state, kill_hash_state;
uint4 set_hash_totlen, kill_hash_totlen;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
/* We are going to operate on the ^#t global which does not span regions. Reset gd_targ_gvnh_reg
* leftover from previous GV_BIND_SUBSNAME_IF_GVSPAN call to not affect any op_zprevious etc.
* (e.g. invocation trigger_update_rec -> trigupdrec_reg -> add_trigger_hash_entry -> op_zprevious)
* so it focuses on gvcst_zprevious instead of gvcst_spr_zprevious for the ^#t global.
* It is okay not to restore TREF(gd_targ_gvnh_reg) since it will be initialized as part of the
* next op_gv* call done by the caller (be it mumps or mupip).
*/
TREF(gd_targ_gvnh_reg) = NULL;
assert(dollar_tlevel);
assert(0 > memcmp(LITERAL_HASHLABEL, LITERAL_MAXHASHVAL, MIN(STRLEN(LITERAL_HASHLABEL), STRLEN(LITERAL_MAXHASHVAL))));
assert(0 > memcmp(LITERAL_HASHCOUNT, LITERAL_MAXHASHVAL, MIN(STRLEN(LITERAL_HASHCOUNT), STRLEN(LITERAL_MAXHASHVAL))));
assert(0 > memcmp(LITERAL_HASHCYCLE, LITERAL_MAXHASHVAL, MIN(STRLEN(LITERAL_HASHCYCLE), STRLEN(LITERAL_MAXHASHVAL))));
assert(0 > memcmp(LITERAL_HASHTNAME, LITERAL_MAXHASHVAL, MIN(STRLEN(LITERAL_HASHTNAME), STRLEN(LITERAL_MAXHASHVAL))));
assert(0 > memcmp(LITERAL_HASHTNCOUNT, LITERAL_MAXHASHVAL, MIN(STRLEN(LITERAL_HASHTNCOUNT), STRLEN(LITERAL_MAXHASHVAL))));
rec_num = (NULL == record_num) ? 0 : *record_num;
gvinit();
len = trigger_rec->str.len;
if (NULL == trigfile_device)
{ /* Check if this is a multi-line trigger. In that case, use just the first line for the below processing.
* The rest of the lines will later be copied over into values[XECUTE_SUB].
*/
trigjrecptr = memchr(trigger_rec->str.addr, '\n', len);
if (NULL != trigjrecptr)
len = trigjrecptr - trigger_rec->str.addr;
} else
assert(NULL == memchr(trigger_rec->str.addr, '\n', len));
if ((0 == len) || (COMMENT_LITERAL == *trigger_rec->str.addr))
return TRIG_SUCCESS;
assert(dollar_tlevel);
if (('-' != *trigger_rec->str.addr) && ('+' != *trigger_rec->str.addr))
{
trig_stats[STATS_ERROR_TRIGFILE]++;
len = trigger_rec->str.len = MIN(len, MAX_SRCLINE);
trigger_rec->str.addr[len] = 0;
displen = ZWR_EXP_RATIO(len);
dispbuff = malloc(displen);
format2zwr((sm_uc_ptr_t)trigger_rec->str.addr, len, dispbuff, &displen); /* returns displayable string & displen */
util_out_print_gtmio("Error : missing +/- at start of line: !AD", FLUSH, displen, dispbuff);
free(dispbuff);
return TRIG_FAILURE;
}
add_delete = trigger_rec->str.addr[0];
len--;
if ('-' == add_delete)
{
if ((1 == len) && ('*' == trigger_rec->str.addr[1]))
{
if ((NULL == trigfile_device) && (NULL != trigjrecptr))
{
util_out_print_gtmio("Error : Newline not allowed in trigger name for delete operation", FLUSH);
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
mustprompt = (noprompt)? FALSE : mustprompt;
if (mustprompt)
{
util_out_print("This operation will delete all triggers.", FLUSH);
promptanswer = mu_interactive("Triggers NOT deleted");
mustprompt = FALSE;
}
if (FALSE == promptanswer)
return TRIG_SUCCESS;
trigger_delete_all(trigger_rec, trig_stats); /* updates trig_stats[] appropriately */
return TRIG_SUCCESS;
} else if ((0 == len) || ('^' != trigger_rec->str.addr[1]))
{ /* if the length < 0 let trigger_delete_name respond with the error message */
if ((NULL == trigfile_device) && (NULL != trigjrecptr))
{
util_out_print_gtmio("Error : Newline not allowed in trigger name for delete operation", FLUSH);
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
status = trigger_delete_name(trigger_rec, trig_stats); /* updates trig_stats[] appropriately */
return status;
}
}
values[GVSUBS_SUB] = tfile_rec_val; /* GVSUBS will be the first entry set so initialize it */
max_len = (int4)SIZEOF(tfile_rec_val);
trigptr = trigger_rec->str.addr + 1;
multi_line_xecute = FALSE;
if (!trigger_parse(trigptr, len, trigvn, values, value_len, &max_len, &multi_line_xecute))
{
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
assert(dollar_tlevel && (('-' == trigger_rec->str.addr[0]) || ('+' == trigger_rec->str.addr[0])));
trigvn_len = STRLEN(trigvn);
set_trigger_hash.str.addr = &tmp_str[0];
set_trigger_hash.str.len = MAX_HASH_LEN;
build_set_cmp_str(trigvn, trigvn_len, values, value_len, &set_trigger_hash.str, multi_line_xecute);
/* Note that we are going to compute the hash of the trigger string in bits and pieces.
* So use the STR_PHASH* macros (the progressive variants), not the STR_HASH macros.
*/
STR_PHASH_INIT(set_hash_state, set_hash_totlen);
STR_PHASH_PROCESS(set_hash_state, set_hash_totlen, set_trigger_hash.str.addr, set_trigger_hash.str.len);
kill_trigger_hash.str.addr = &tmp_str[0];
kill_trigger_hash.str.len = MAX_HASH_LEN;
build_kill_cmp_str(trigvn, trigvn_len, values, value_len, &kill_trigger_hash.str, multi_line_xecute);
STR_PHASH_INIT(kill_hash_state, kill_hash_totlen);
STR_PHASH_PROCESS(kill_hash_state, kill_hash_totlen, kill_trigger_hash.str.addr, kill_trigger_hash.str.len);
first_gtmio = TRUE;
utilprefixlen = ARRAYSIZE(utilprefix);
trigjrec = trigger_rec;
if (multi_line_xecute)
{
if (NULL != trigfile_device)
{
assert(SIZEOF(xecute_buffer) == MAX_BUFF_SIZE + MAX_XECUTE_LEN);
/* Leave MAX_BUFF_SIZE to store other (excluding XECUTE) parts of the trigger definition.
* This way we can copy over these once the multi-line XECUTE string is constructed and
* use this to write the TLGTRIG/ULGTRIG journal record in case we do "jnl_format" later.
*/
values[XECUTE_SUB] = &xecute_buffer[MAX_BUFF_SIZE];
multi_jrec = *trigger_rec;
trigjrec = &multi_jrec;
trigjreclen = trigjrec->str.len + 1; /* 1 for newline */
assert(trigjreclen < MAX_BUFF_SIZE);
trigjrecptr = &xecute_buffer[MAX_BUFF_SIZE - trigjreclen];
memcpy(trigjrecptr, trigjrec->str.addr, trigjreclen - 1);
trigjrecptr[trigjreclen - 1] = '\n';
trigjrec->str.addr = trigjrecptr;
assert(dollar_tlevel && (('-' == trigjrec->str.addr[0]) || ('+' == trigjrec->str.addr[0])));
value_len[XECUTE_SUB] = 0;
max_xecute_size = MAX_XECUTE_LEN;
io_save_device = io_curr_device;
io_curr_device = *trigfile_device;
multi_line = multi_line_xecute;
/* We are in a multi-line trigger definition. Each trigger line should now correspond to an M source line.
* The GT.M compiler does not accept any M source line > MAX_SRCLINE bytes. So issue error right away in
* case source line is > MAX_SRCLINE. No point reading the full line and then issuing the error.
* Note that MAX_SRCLINE also includes the newline at end of line hence the MAX_SRCLINE - 1 usage below.
*/
multiline_parse_fail = FALSE;
while (multi_line)
{
rec_len = file_input_get(&trigptr, MAX_SRCLINE - 1);
if (!io_curr_device.in->dollar.x)
rec_num++;
if (0 > rec_len)
{
assert((FILE_INPUT_GET_LINE2LONG == rec_len) || (FILE_INPUT_GET_ERROR == rec_len));
if (FILE_INPUT_GET_ERROR == rec_len)
break;
do
{ /* Read remainder of over-length line in as many MAX_SRCLINE chunks as needed */
rec_len = file_input_get(&trigptr, MAX_SRCLINE - 1);
if (!io_curr_device.in->dollar.x)
rec_num++;
if (0 <= rec_len)
break; /* reached end of line */
assert((FILE_INPUT_GET_LINE2LONG == rec_len) || (FILE_INPUT_GET_ERROR == rec_len));
if (FILE_INPUT_GET_ERROR == rec_len)
break;
} while (TRUE);
if (FILE_INPUT_GET_ERROR == rec_len)
break;
if (!multiline_parse_fail)
{
UTIL_PRINT_PREFIX_IF_NEEDED(first_gtmio, utilprefix, &utilprefixlen);
util_out_print_gtmio("Error : Multi-line trigger -XECUTE exceeds maximum "
"M source line length of !UL", FLUSH, MAX_SRCLINE);
value_len[XECUTE_SUB] = 1;
values[XECUTE_SUB][0] = ' ';
max_xecute_size = SIZEOF(xecute_buffer);
}
multiline_parse_fail = TRUE;
}
io_curr_device = io_save_device; /* In case we have to write an error message */
no_error = trigger_parse(trigptr, (uint4)rec_len, trigvn, values, value_len,
&max_xecute_size, &multi_line);
assert(dollar_tlevel && (('-' == trigjrec->str.addr[0]) || ('+' == trigjrec->str.addr[0])));
io_curr_device = *trigfile_device;
if (!no_error)
{ /* An error occurred (e.g. Trigger definition too long etc.).
* Consume remainder of multi-line trigger definition before moving on.
* But before that replace XECUTE string constructed till now with a dummy one.
*/
assert(!multi_line);
multi_line = TRUE;
multiline_parse_fail = TRUE;
}
if (multiline_parse_fail)
{
value_len[XECUTE_SUB] = 1;
values[XECUTE_SUB][0] = ' ';
max_xecute_size = SIZEOF(xecute_buffer);
}
}
trigjrec->str.len = trigjreclen + value_len[XECUTE_SUB];
if (NULL != record_num)
*record_num = rec_num;
if (0 > rec_len)
{
assert(FILE_INPUT_GET_ERROR == rec_len);
io_curr_device = io_save_device;
util_out_print_gtmio("Error : Multi-line trigger -XECUTE is not properly terminated", FLUSH);
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
if (multiline_parse_fail)
{ /* error message has already been issued */
io_curr_device = io_save_device;
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
io_curr_device = io_save_device;
} else
{
assert(memchr(trigjrec->str.addr, '\n', trigjrec->str.len) == trigjrecptr);
values[XECUTE_SUB] = trigjrecptr + 1;
value_len[XECUTE_SUB] = trigjrec->str.addr + trigjrec->str.len - (trigjrecptr + 1);
if ('\n' != values[XECUTE_SUB][value_len[XECUTE_SUB] - 1])
{
util_out_print_gtmio("Error : Multi-line xecute in $ztrigger ITEM must end in newline", FLUSH);
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
if (!process_xecute(values[XECUTE_SUB], &value_len[XECUTE_SUB], TRUE))
{
CONV_STR_AND_PRINT("Error : Parsing XECUTE string: ", value_len[XECUTE_SUB], values[XECUTE_SUB]);
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
/* trigjrec is already properly set up */
}
STR_PHASH_PROCESS(kill_hash_state, kill_hash_totlen, values[XECUTE_SUB], value_len[XECUTE_SUB]);
STR_PHASH_PROCESS(set_hash_state, set_hash_totlen, values[XECUTE_SUB], value_len[XECUTE_SUB]);
} else if ((NULL == trigfile_device) && (NULL != trigjrecptr))
{ /* If this is a not a multi-line xecute string, we dont expect newlines. The only exception is if it is
* the last byte in the string.
*/
assert(memchr(trigjrec->str.addr, '\n', trigjrec->str.len) == trigjrecptr);
trigjrecptr++;
if (trigjrecptr != (trigjrec->str.addr + trigjrec->str.len))
{
util_out_print_gtmio("Error : Newline allowed only inside multi-line xecute in $ztrigger ITEM", FLUSH);
trig_stats[STATS_ERROR_TRIGFILE]++;
return TRIG_FAILURE;
}
}
STR_PHASH_RESULT(set_hash_state, set_hash_totlen, set_trigger_hash.hash_code);
STR_PHASH_RESULT(kill_hash_state, kill_hash_totlen, kill_trigger_hash.hash_code);
gvname.var_name.addr = trigvn;
gvname.var_name.len = trigvn_len;
COMPUTE_HASH_MNAME(&gvname);
GV_BIND_NAME_ONLY(gd_header, &gvname, gvnh_reg);
gvspan = gvnh_reg->gvspan;
if (NULL != gvspan)
{
gvnh_spanreg_subs_gvt_init(gvnh_reg, gd_header, NULL);
reg_index = gvspan->min_reg_index;
min_reg_index = gvspan->min_reg_index;
max_reg_index = gvspan->max_reg_index;
assert(0 <= reg_index);
assert(reg_index < gd_header->n_regions);
gvt = GET_REAL_GVT(gvspan->gvt_array[reg_index - min_reg_index]);
assert(NULL != gvt);
gv_target = gvt;
gv_cur_region = gd_header->regions + reg_index;
change_reg();
SET_DISP_TRIGVN(gv_cur_region, disp_trigvn, disp_trigvn_len, trigvn, trigvn_len);
/* Save values[] and value_len[] arrays since they might be overwritten inside "trigupdrec_reg"
* but we need the unmodified values for each call to that function.
*/
assert(SIZEOF(value_len) == SIZEOF(save_value_len));
memcpy(save_value_len, value_len, SIZEOF(value_len));
assert(SIZEOF(values) == SIZEOF(save_values));
memcpy(save_values, values, SIZEOF(values));
} else
{
memcpy(disp_trigvn, trigvn, trigvn_len);
disp_trigvn_len = trigvn_len;
disp_trigvn[disp_trigvn_len] = '\0'; /* null terminate just in case */
reg_index = -1;
min_reg_index = -1;
max_reg_index = -1;
}
jnl_format_done = FALSE;
new_name_check_done = FALSE;
first_error = TRUE;
overall_trig_status = STATS_UNCHANGED_TRIGFILE;
do
{ /* At this point gv_cur_region/cs_addrs/gv_target already point to the correct region.
* For a spanning global, they point to one of the spanned regions in each iteration of the do-while loop below.
*/
this_trig_status = trigupdrec_reg(trigvn, trigvn_len, &jnl_format_done, trigjrec,
&new_name_check_done, &new_name, &values[0], &value_len[0], add_delete,
&kill_trigger_hash, &set_trigger_hash, &disp_trigvn[0], disp_trigvn_len, trig_stats,
&first_gtmio, utilprefix, &utilprefixlen);
assert((STATS_UNCHANGED_TRIGFILE == this_trig_status) || (STATS_NOERROR_TRIGFILE == this_trig_status)
|| (STATS_ERROR_TRIGFILE == this_trig_status));
if (STATS_ERROR_TRIGFILE == this_trig_status)
{
if (first_error)
{
trig_stats[STATS_ERROR_TRIGFILE]++;
first_error = FALSE;
}
overall_trig_status = STATS_ERROR_TRIGFILE;
} else if (STATS_UNCHANGED_TRIGFILE == overall_trig_status)
overall_trig_status = this_trig_status;
/* else if (STATS_NOERROR_TRIGFILE == overall_trig_status) : it is already what it should be */
/* else if (STATS_ERROR_TRIGFILE == overall_trig_status) : it is already what it should be */
if (NULL == gvspan)
break;
assert(-1 != reg_index);
assert(-1 != max_reg_index);
assert(-1 != min_reg_index);
if (reg_index >= max_reg_index)
break;
do
{
reg_index++;
assert(reg_index <= max_reg_index);
assert(reg_index < gd_header->n_regions);
gvt = GET_REAL_GVT(gvspan->gvt_array[reg_index - min_reg_index]);
if (NULL == gvt)
{
assert(reg_index < max_reg_index);
continue;
}
gv_target = gvt;
gv_cur_region = gd_header->regions + reg_index;
change_reg();
SET_DISP_TRIGVN(gv_cur_region, disp_trigvn, disp_trigvn_len, trigvn, trigvn_len);
/* Restore values[] and value_len[] before next call to "trigupdrec_reg" */
assert(SIZEOF(value_len) == SIZEOF(save_value_len));
memcpy(value_len, save_value_len, SIZEOF(save_value_len));
assert(SIZEOF(values) == SIZEOF(save_values));
memcpy(values, save_values, SIZEOF(save_values));
break;
} while (TRUE);
} while (TRUE);
if ((STATS_UNCHANGED_TRIGFILE == overall_trig_status) || (STATS_NOERROR_TRIGFILE == overall_trig_status))
{
trig_stats[overall_trig_status]++;
return TRIG_SUCCESS;
} else
{
assert(STATS_ERROR_TRIGFILE == overall_trig_status);
return TRIG_FAILURE;
}
}
STATICFNDEF trig_stats_t trigupdrec_reg(char *trigvn, uint4 trigvn_len, boolean_t *jnl_format_done, mval *trigjrec,
boolean_t *new_name_check_done, boolean_t *new_name_ptr, char **values, uint4 *value_len, char add_delete,
stringkey *kill_trigger_hash, stringkey *set_trigger_hash, char *disp_trigvn, int disp_trigvn_len, uint4 *trig_stats,
boolean_t *first_gtmio, char *utilprefix, int *utilprefixlen)
{
mval *trigname[NUM_OPRS]; /* names of matching kill and/or set trigger */
boolean_t new_name;
sgmnt_addrs *csa;
mval dummymval;
boolean_t skip_set_trigger, trigger_exists;
mval *trigger_count;
boolean_t newtrigger;
int set_index, kill_index, tmp_index;
boolean_t db_matched_kill, db_matched_set, tmp_matched_kill, tmp_matched_set;
boolean_t full_match, new_match;
boolean_t kill_cmp, set_cmp;
boolean_t is_set;
int oprtype, oprstart, oprend, set_kill_bitmask;
char *oprname[] = { "Non-SET", "SET", "SET and/or Non-SET"}; /* index 0 corresponds to OPR_KILL,
* 1 to OPR_SET,
* 2 if OPR_SETKILL
*/
char *opname;
int4 updates;
uint4 trigload_status;
int num;
boolean_t result;
int sub_indx;
int4 max_len;
mval xecute_index, xecute_size;
int4 offset;
char *ptr1;
mval mv_hash;
char trig_name[MAX_USER_TRIGNAME_LEN + 2]; /* One spot for '#' delimiter and one for trailing '\0' */
int trig_protected_mval_push_count;
csa = cs_addrs;
if (NULL == csa) /* Remote region */
RTS_ERROR_CSA_ABT(csa, VARLSTCNT(6) ERR_REMOTEDBNOTRIG, 4, trigvn_len, trigvn, REG_LEN_STR(gv_cur_region));
if (gv_cur_region->read_only)
rts_error_csa(CSA_ARG(csa) VARLSTCNT(4) ERR_TRIGMODREGNOTRW, 2, REG_LEN_STR(gv_cur_region));
assert(cs_addrs == gv_target->gd_csa);
DISALLOW_MULTIINST_UPDATE_IN_TP(dollar_tlevel, jnlpool_head, csa, first_sgm_info, TRUE);
if (!*jnl_format_done && JNL_WRITE_LOGICAL_RECS(csa))
{ /* Attach to jnlpool if replication is turned on. Normally SET or KILL of the ^#t records take care of this
* but in case this is a NO-OP trigger operation that wont happen and we still want to write a
* TLGTRIG/ULGTRIG journal record. Hence the need to do this. Also write a LGTRIG record in just one region
* in case this is a global spanning multiple regions.
*/
JNLPOOL_INIT_IF_NEEDED(csa, csa->hdr, csa->nl, SCNDDBNOUPD_CHECK_TRUE);
assert(dollar_tlevel && (('-' == trigjrec->str.addr[0]) || ('+' == trigjrec->str.addr[0])));
T_BEGIN_SETORKILL_NONTP_OR_TP(ERR_TRIGLOADFAIL); /* needed to set update_trans TRUE on this region
* even if NO db updates happen to ^#t nodes. */
jnl_format(JNL_LGTRIG, NULL, trigjrec, 0);
*jnl_format_done = TRUE;
}
SET_GVTARGET_TO_HASHT_GBL(csa);
INITIAL_HASHT_ROOT_SEARCH_IF_NEEDED;
if (csa->hdr->hasht_upgrade_needed)
{ /* ^#t needs to be upgraded first before reading/updating it. Cannot proceed. */
if (0 == gv_target->root)
{
csa->hdr->hasht_upgrade_needed = FALSE; /* Reset now that we know there is no ^#t global in this db.
* Note: It is safe to do so even if we dont hold crit.
*/
} else
RTS_ERROR_CSA_ABT(csa, VARLSTCNT(4) ERR_NEEDTRIGUPGRD, 2, DB_LEN_STR(gv_cur_region));
}
if (!*new_name_check_done)
{ /* Make sure below call is done only ONCE for a global spanning multiple regions since this call goes
* through all regions in the gld to figure out if a user-defined trigger name is unique.
*/
new_name = check_unique_trigger_name_full(values, value_len, &dummymval, &new_match,
trigvn, trigvn_len, set_trigger_hash, kill_trigger_hash);
*new_name_ptr = new_name;
*new_name_check_done = TRUE;
} else
new_name = *new_name_ptr;
skip_set_trigger = FALSE;
trig_protected_mval_push_count = 0;
/* Protect MVALs from garabage collection - NOTE: trigger_count is done last as that needs to be popped in one case below */
INCR_AND_PUSH_MV_STENT(trigname[OPR_SET]);
INCR_AND_PUSH_MV_STENT(trigname[OPR_KILL]);
INCR_AND_PUSH_MV_STENT(trigger_count);
assert(('+' == add_delete) || ('-' == add_delete)); /* Has to be + or - */
if (gv_target->root)
{
BUILD_HASHT_SUB_SUB_CURRKEY(trigvn, trigvn_len, LITERAL_HASHCOUNT, STRLEN(LITERAL_HASHCOUNT));
if (gvcst_get(trigger_count))
{
trigger_exists = trigger_already_exists(trigvn, trigvn_len, values, value_len,
set_trigger_hash, kill_trigger_hash,
&set_index, &kill_index,
&db_matched_set, &db_matched_kill, &full_match,
trigname[OPR_SET], trigname[OPR_KILL]);
newtrigger = FALSE;
} else
{
newtrigger = TRUE;
trigger_exists = FALSE;
}
} else
{
newtrigger = TRUE;
trigger_exists = FALSE;
}
set_cmp = (NULL != strchr(values[CMD_SUB], 'S'));
kill_cmp = ((NULL != strchr(values[CMD_SUB], 'K')) || (NULL != strchr(values[CMD_SUB], 'R')));
updates = 0;
trigload_status = STATS_UNCHANGED_TRIGFILE;
if (trigger_exists)
{
if ((-1 != kill_index) && (set_index || set_cmp) && value_len[TRIGNAME_SUB])
{ /* Cannot match two different triggers (corresponding to "kill_index" and "set_index")
* with the same user defined name. Note that it is possible if set_index==0 that the
* set type trigger does not exist yet but will be created by this call to trigger_update_rec.
* Treat that case too as if the separate set trigger existed.
*/
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
if (set_index)
util_out_print_gtmio("Error : Input trigger on ^!AD with trigger name !AD" \
" cannot match two different triggers named !AD and !AD at the same time",
FLUSH, disp_trigvn_len, disp_trigvn,
value_len[TRIGNAME_SUB], values[TRIGNAME_SUB],
trigname[OPR_KILL]->str.len, trigname[OPR_KILL]->str.addr,
trigname[OPR_SET]->str.len, trigname[OPR_SET]->str.addr);
else
util_out_print_gtmio("Error : Input trigger on ^!AD with trigger name !AD" \
" cannot match a trigger named !AD and a to-be-created SET trigger" \
" at the same time", FLUSH, disp_trigvn_len, disp_trigvn,
value_len[TRIGNAME_SUB], values[TRIGNAME_SUB],
trigname[OPR_KILL]->str.len, trigname[OPR_KILL]->str.addr);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
}
assert(new_name || !new_match || full_match);
if (!new_name && ('+' == add_delete) && !full_match)
{
opname = (!set_cmp ? oprname[OPR_KILL] : (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
TRIGGER_SAME_NAME_EXISTS_ERROR(opname, disp_trigvn_len, disp_trigvn);
}
oprstart = (-1 != kill_index) ? OPR_KILL : (OPR_KILL + 1);
oprend = (0 != set_index) ? (OPR_SET + 1) : OPR_SET;
assert(NUM_OPRS == (OPR_SET + 1));
assert(ARRAYSIZE(oprname) == (OPR_SET + 2));
set_kill_bitmask = OPR_SETKILL;
for (oprtype = oprstart; oprtype < oprend; oprtype++)
{
assert((OPR_KILL == oprtype) || (OPR_SET == oprtype));
if (OPR_KILL == oprtype)
{
tmp_matched_set = FALSE;
tmp_matched_kill = TRUE;
tmp_index = kill_index;
is_set = FALSE;
if (0 != set_index)
{ /* SET & KILL triggers are separate. This is the KILL trigger only invocation */
assert(set_cmp);
assert(kill_cmp);
set_kill_bitmask = OPR_KILL;
}
opname = oprname[OPR_KILL];
} else
{
tmp_matched_set = db_matched_set;
tmp_matched_kill = db_matched_kill;
tmp_index = set_index;
is_set = TRUE;
if (OPR_KILL == oprstart)
{
assert(set_cmp);
assert(kill_cmp);
set_kill_bitmask = OPR_SET;
}
opname = oprname[OPR_SET];
}
updates = modify_record(trigvn, trigvn_len, add_delete, tmp_index, values, value_len,
trigger_count, tmp_matched_set, tmp_matched_kill,
kill_trigger_hash, set_trigger_hash, set_kill_bitmask);
if (0 > updates)
{
switch (updates)
{
case INVALID_LABEL:
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : Current trigger format not compatible to update " \
"the trigger on ^!AD named !AD", FLUSH, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
case KEY_TOO_LONG:
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : ^!AD trigger - key larger than max key size", FLUSH,
disp_trigvn_len, disp_trigvn);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
case VAL_TOO_LONG:
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : ^!AD trigger - value larger than record size", FLUSH,
disp_trigvn_len, disp_trigvn);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
case K_ZTK_CONFLICT:
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : Command options !AD incompatible with trigger on " \
"^!AD named !AD", FLUSH, value_len[CMD_SUB], values[CMD_SUB],
disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
case ADD_SET_NOCHNG_KILL_TRIG:
assert(!is_set);
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("!AZ trigger on ^!AD already present in trigger named !AD" \
" - no action taken", FLUSH, opname,
disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
/* kill trigger is unchanged but set trigger (if present in a different trigger)
* needs to be processed separately.
*/
break;
case ADD_SET_MODIFY_KILL_TRIG:
assert(!is_set);
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Modified !AZ trigger on ^!AD named !AD",
FLUSH, opname, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
trig_stats[STATS_MODIFIED]++;
trigload_status = STATS_NOERROR_TRIGFILE;
break;
case OPTIONS_CMDS_CONFLICT:
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : Specified options and commands cannot both be different" \
" from those in trigger on ^!AD named !AD", FLUSH, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
case NAME_CMDS_CONFLICT:
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : Specified name !AD different from that of trigger" \
" on ^!AD named !AD but specified commands do not contain those in trigger",
FLUSH, value_len[TRIGNAME_SUB], values[TRIGNAME_SUB],
disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
default:
assertpro(FALSE && updates);
break;
}
} else
{
skip_set_trigger = is_set;
if ((updates & (ADD_UPDATE_NAME | ADD_UPDATE_CMDS | ADD_UPDATE_OPTIONS))
|| (updates & (SUB_UPDATE_NAME | SUB_UPDATE_CMDS)))
{
trig_stats[STATS_MODIFIED]++;
trigload_status = STATS_NOERROR_TRIGFILE;
if (0 == trig_stats[STATS_ERROR_TRIGFILE])
{
if (-1 == kill_index)
opname = (!set_cmp ? oprname[OPR_KILL]
: (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Modified !AZ trigger on ^!AD named !AD", FLUSH,
opname, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
}
} else if (updates & DELETE_REC)
{
trig_stats[STATS_DELETED]++;
trigload_status = STATS_NOERROR_TRIGFILE;
if (0 == trig_stats[STATS_ERROR_TRIGFILE])
{
if (-1 == kill_index)
opname = (!set_cmp ? oprname[OPR_KILL]
: (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Deleted !AZ trigger on ^!AD named !AD",
FLUSH, opname, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
}
/* if KILL trigger deleted, search for possible new SET trigger index */
if (!is_set && (kill_index < set_index)
&& !(trigger_already_exists(trigvn, trigvn_len, values, value_len,
set_trigger_hash, kill_trigger_hash, &set_index,
&tmp_index, &db_matched_set, &db_matched_kill,
&full_match, trigname[oprtype], trigname[oprtype])))
{ /* SET trigger found previously is not found again */
if (UPDATE_CAN_RETRY(t_tries, t_fail_hist[t_tries]))
t_retry(cdb_sc_triggermod);
assert(WBTEST_HELPOUT_TRIGDEFBAD == gtm_white_box_test_case_number);
util_out_print_gtmio("Error : Previously found SET trigger " \
"on ^!AD, named !AD but cannot find it again",
FLUSH, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
}
} else if ('+' == add_delete)
{
assert(0 == updates);
if (0 == trig_stats[STATS_ERROR_TRIGFILE])
{
if (-1 == kill_index)
opname = (!set_cmp ? oprname[OPR_KILL]
: (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("!AZ trigger on ^!AD already present " \
"in trigger named !AD - no action taken",
FLUSH, opname, disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
}
} else
{
assert(0 == updates);
if (0 == trig_stats[STATS_ERROR_TRIGFILE])
{
if (-1 == kill_index)
opname = (!set_cmp ? oprname[OPR_KILL]
: (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
if (!value_len[TRIGNAME_SUB]
|| ((trigname[oprtype]->str.len == value_len[TRIGNAME_SUB])
&& !memcmp(values[TRIGNAME_SUB], trigname[oprtype]->str.addr,
value_len[TRIGNAME_SUB])))
{ /* Trigger name matches input name or name was not specified (in which
* case name is considered to match). So the command specified
* does not exist for deletion.
*/
util_out_print_gtmio("!AZ trigger on ^!AD not present in trigger " \
"named !AD - no action taken", FLUSH, opname,
disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr);
} else
{
util_out_print_gtmio("!AZ trigger on ^!AD matches trigger " \
"named !AD but not with specified name !AD " \
"- no action taken", FLUSH, opname,
disp_trigvn_len, disp_trigvn,
trigname[oprtype]->str.len, trigname[oprtype]->str.addr,
value_len[TRIGNAME_SUB], values[TRIGNAME_SUB]);
}
}
}
}
}
if (0 == set_index)
{
if (set_cmp)
{ /* SET was specified in the CMD list but no trigger was found, so treat this
* as a trigger not existing case for both '+' and '-' cases of add_delete.
*/
trigger_exists = FALSE;
assert(!newtrigger);
} else if (-1 != kill_index)
skip_set_trigger = TRUE;
}
}
if (newtrigger || !trigger_exists)
{
if ('-' == add_delete)
{
if (0 == trig_stats[STATS_ERROR_TRIGFILE])
{
if (newtrigger)
opname = (!set_cmp ? oprname[OPR_KILL]
: (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
else if (-1 == kill_index)
opname = (!set_cmp ? oprname[OPR_KILL]
: (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
else
opname = oprname[OPR_SET];
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
/* At this point SET or KILL or both triggers specified might not exist hence the "and/or" */
util_out_print_gtmio("!AZ trigger on ^!AD does not exist - no action taken",
FLUSH, opname, disp_trigvn_len, disp_trigvn);
}
skip_set_trigger = TRUE;
} else
{
if (!new_name && !new_match)
{
opname = (!set_cmp ? oprname[OPR_KILL] : (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
TRIGGER_SAME_NAME_EXISTS_ERROR(opname, disp_trigvn_len, disp_trigvn);
}
if (newtrigger)
{
POP_MV_STENT();
trig_protected_mval_push_count--;
trigger_count = (mval *)&literal_one;
set_index = 1;
} else
{
assert(!trigger_exists);
assert(0 == set_index);
num = mval2i(trigger_count);
set_index = ++num;
i2mval(trigger_count, num);
}
}
}
/* Since a specified trigger name will grow by 1, copy it to a long enough array */
if (((updates & ADD_UPDATE_NAME) && ('+' == add_delete)) || !skip_set_trigger)
{
memcpy(trig_name, values[TRIGNAME_SUB], value_len[TRIGNAME_SUB] + 1);
values[TRIGNAME_SUB] = trig_name;
result = gen_trigname_sequence(trigvn, trigvn_len, trigger_count, values[TRIGNAME_SUB], value_len[TRIGNAME_SUB]);
if (SEQ_SUCCESS != result)
{
if (TOO_MANY_TRIGGERS == result)
{
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : ^!AD trigger - Too many triggers", FLUSH,
disp_trigvn_len, disp_trigvn);
} else if (AUTO_NAME_GEN_FAIL == result)
{
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("Error : ^!AD trigger - Auto generated name failure", FLUSH,
disp_trigvn_len, disp_trigvn);
} else
{
TOO_LONG_REC_KEY_ERROR_MSG;
}
RETURN_AND_POP_MVALS(STATS_ERROR_TRIGFILE);
}
}
if (trig_stats[STATS_ERROR_TRIGFILE])
{
if ('+' == add_delete)
{
trig_stats[STATS_ADDED]++;
trigload_status = STATS_NOERROR_TRIGFILE;
}
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
util_out_print_gtmio("No errors processing trigger for global ^!AD", FLUSH, disp_trigvn_len, disp_trigvn);
} else if (!skip_set_trigger)
{
if (!newtrigger && (-1 != kill_index))
{ /* KILL commands were separately processed in KILL trigger. So consider only SET as being specified */
value_len[CMD_SUB] = 1;
values[CMD_SUB][1] = '\0';
assert('S' == values[CMD_SUB][0]);
}
value_len[TRIGNAME_SUB] = STRLEN(values[TRIGNAME_SUB]);
values[CHSET_SUB] = (gtm_utf8_mode) ? UTF8_NAME : LITERAL_M;
value_len[CHSET_SUB] = STRLEN(values[CHSET_SUB]);
/* set ^#t(GVN,"#LABEL") = HASHT_GBL_CURLABEL */
SET_TRIGGER_GLOBAL_SUB_SUB_STR(trigvn, trigvn_len, LITERAL_HASHLABEL, STRLEN(LITERAL_HASHLABEL),
HASHT_GBL_CURLABEL, STRLEN(HASHT_GBL_CURLABEL), result);
IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(result);
/* set ^#t(GVN,"#COUNT") = trigger_count */
SET_TRIGGER_GLOBAL_SUB_SUB_MVAL(trigvn, trigvn_len, LITERAL_HASHCOUNT, STRLEN(LITERAL_HASHCOUNT),
*trigger_count, result);
IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(result);
/* Assert that BHASH and LHASH are not part of NUM_SUBS calculation (confirms the -2 done in #define of NUM_SUBS) */
assert(BHASH_SUB == NUM_SUBS);
assert(LHASH_SUB == (NUM_SUBS + 1));
for (sub_indx = 0; sub_indx < NUM_SUBS; sub_indx++)
{
if (0 >= value_len[sub_indx]) /* subscript index length is zero (no longer used), skip it */
continue;
/* set ^#t(GVN,trigger_count,values[sub_indx]) = xecute string */
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_STR(trigvn, trigvn_len, *trigger_count,
trigger_subs[sub_indx], STRLEN(trigger_subs[sub_indx]), values[sub_indx],
value_len[sub_indx], result);
IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(result);
}
result = add_trigger_hash_entry(trigvn, trigvn_len, values[CMD_SUB], set_index, TRUE, kill_trigger_hash,
set_trigger_hash);
IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(result);
MV_FORCE_UMVAL(&mv_hash, kill_trigger_hash->hash_code);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_MVAL(trigvn, trigvn_len, *trigger_count,
trigger_subs[LHASH_SUB], STRLEN(trigger_subs[LHASH_SUB]), mv_hash, result);
IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(result);
MV_FORCE_UMVAL(&mv_hash, set_trigger_hash->hash_code);
SET_TRIGGER_GLOBAL_SUB_MSUB_SUB_MVAL(trigvn, trigvn_len, *trigger_count, trigger_subs[BHASH_SUB],
STRLEN(trigger_subs[BHASH_SUB]), mv_hash, result);
IF_ERROR_THEN_TOO_LONG_ERROR_MSG_AND_RETURN_FAILURE(result);
trigload_status = STATS_NOERROR_TRIGFILE;
trig_stats[STATS_ADDED]++;
UTIL_PRINT_PREFIX_IF_NEEDED(*first_gtmio, utilprefix, utilprefixlen);
/* Recompute set_cmp and kill_cmp in case values[CMD_SUB] was modified above */
set_cmp = (NULL != strchr(values[CMD_SUB], 'S'));
kill_cmp = ((NULL != strchr(values[CMD_SUB], 'K')) || (NULL != strchr(values[CMD_SUB], 'R')));
opname = (!set_cmp ? oprname[OPR_KILL] : (!kill_cmp ? oprname[OPR_SET] : oprname[OPR_SETKILL]));
util_out_print_gtmio("Added !AZ trigger on ^!AD named !AD", FLUSH, opname, disp_trigvn_len, disp_trigvn,
value_len[TRIGNAME_SUB] - 1, values[TRIGNAME_SUB]); /* -1 to remove # from tail of name */
}
assert((STATS_UNCHANGED_TRIGFILE == trigload_status) || (STATS_NOERROR_TRIGFILE == trigload_status));
if ((0 == trig_stats[STATS_ERROR_TRIGFILE]) && (STATS_NOERROR_TRIGFILE == trigload_status))
{
trigger_incr_cycle(trigvn, trigvn_len); /* ^#t records changed in this function, increment cycle */
csa->incr_db_trigger_cycle = TRUE; /* so that we increment csd->db_trigger_cycle at commit time */
if (dollar_ztrigger_invoked)
{ /* increment db_dztrigger_cycle so that next gvcst_put/gvcst_kill in this transaction, on this region,
* will re-read triggers. Note that the below increment happens for every record added. So, even if a
* single trigger file loaded multiple triggers on the same region, db_dztrigger_cycle will be incremented
* more than one for same transaction. This is considered okay since we only need db_dztrigger_cycle to
* be equal to a different value than gvt->db_dztrigger_cycle.
*/
csa->db_dztrigger_cycle++;
DBGTRIGR((stderr, "trigupdrec_reg: dollar_ztrigger_invoked CSA->db_dztrigger_cycle=%d\n",
csa->db_dztrigger_cycle));
}
}
RETURN_AND_POP_MVALS(trigload_status);
}
STATICFNDEF boolean_t trigger_update_rec_helper(mval *trigger_rec, boolean_t noprompt, uint4 *trig_stats)
{
enum cdb_sc cdb_status;
boolean_t trigger_status;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
ESTABLISH_RET(trigger_tpwrap_ch, TRIG_FAILURE);
trigger_status = trigger_update_rec(trigger_rec, TRUE, trig_stats, NULL, NULL);
if (TRIG_SUCCESS == trigger_status)
{
GVTR_OP_TCOMMIT(cdb_status);
if (cdb_sc_normal != cdb_status)
t_retry(cdb_status); /* won't return */
} else
{ /* Record cannot be committed - undo everything */
assert(donot_INVOKE_MUMTSTART);
DEBUG_ONLY(donot_INVOKE_MUMTSTART = FALSE);
/* Print $ztrigger/mupip-trigger output before rolling back TP */
TP_ZTRIGBUFF_PRINT;
OP_TROLLBACK(-1); /* returns but kills implicit transaction */
}
REVERT;
return trigger_status;
}
boolean_t trigger_update(mval *trigger_rec)
{
uint4 i;
uint4 trig_stats[NUM_STATS];
boolean_t trigger_status = TRIG_FAILURE;
mval ts_mv;
int loopcnt;
DEBUG_ONLY(unsigned int lcl_t_tries;)
enum cdb_sc failure;
DCL_THREADGBL_ACCESS;
SETUP_THREADGBL_ACCESS;
for (i = 0; NUM_STATS > i; i++)
trig_stats[i] = 0;
ts_mv.mvtype = MV_STR;
ts_mv.str.len = 0;
ts_mv.str.addr = NULL;
if (0 == dollar_tlevel)
{
assert(!donot_INVOKE_MUMTSTART);
DEBUG_ONLY(donot_INVOKE_MUMTSTART = TRUE);
/* Note down dollar_tlevel before op_tstart. This is needed to determine if we need to break from the for-loop
* below after a successful op_tcommit of the $ZTRIGGER operation. We cannot check that dollar_tlevel is zero
* since the op_tstart done below can be a nested sub-transaction
*/
op_tstart(IMPLICIT_TSTART, TRUE, &ts_mv, 0); /* 0 ==> save no locals but RESTART OK */
/* The following for loop structure is similar to that in module trigger_trgfile.c (function
* "trigger_trgfile_tpwrap") and module gv_trigger.c (function gvtr_db_tpwrap) so any changes here
* might need to be reflected there as well.
*/
for (loopcnt = 0; ; loopcnt++)
{
assert(donot_INVOKE_MUMTSTART); /* Make sure still set */
DEBUG_ONLY(lcl_t_tries = t_tries);
trigger_status = trigger_update_rec_helper(trigger_rec, TRUE, trig_stats);
if (0 == dollar_tlevel)
break;
assert(0 < t_tries);
assert((CDB_STAGNATE == t_tries) || (lcl_t_tries == t_tries - 1));
failure = LAST_RESTART_CODE;
assert(((cdb_sc_onln_rlbk1 != failure) && (cdb_sc_onln_rlbk2 != failure))
|| !gv_target || !gv_target->root);
assert((cdb_sc_onln_rlbk2 != failure) || !IS_GTM_IMAGE || TREF(dollar_zonlnrlbk));
if (cdb_sc_onln_rlbk2 == failure)
RTS_ERROR_CSA_ABT(gv_target->gd_csa, VARLSTCNT(1) ERR_DBROLLEDBACK);
/* else if (cdb_sc_onln_rlbk1 == status) we don't need to do anything other than trying again. Since this
* is ^#t global, we don't need to GVCST_ROOT_SEARCH before continuing with the next restart because the
* trigger load logic already takes care of doing INITIAL_HASHT_ROOT_SEARCH_IF_NEEDED before doing the
* actual trigger load
*/
/* We expect the above function to return with either op_tcommit or a tp_restart invoked.
* In the case of op_tcommit, we expect dollar_tlevel to be 0 and if so we break out of the loop.
* In the tp_restart case, we expect a maximum of 4 tries/retries and much lesser usually.
* Additionally we also want to avoid an infinite loop so limit the loop to what is considered
* a huge iteration count and assertpro if that is reached as it suggests an out-of-design situation.
*/
assertpro(TPWRAP_HELPER_MAX_ATTEMPTS >= loopcnt);
}
} else
{
trigger_status = trigger_update_rec(trigger_rec, TRUE, trig_stats, NULL, NULL);
assert(0 < dollar_tlevel);
}
return (TRIG_FAILURE == trigger_status);
}
#endif /* GTM_TRIGGER */
|