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
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/* Portions of this code are Copyright (c) 2011 Univa Corporation. */
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
/* do not compile in monitoring code */
#ifndef NO_SGE_COMPILE_DEBUG
#define NO_SGE_COMPILE_DEBUG
#endif
#include "uti/sge_rmon.h"
#include "uti/sge_unistd.h"
#include "uti/sge_profiling.h"
#include "cull/cull_list.h"
#include "cull/cull_hash.h"
#include "cull/cull_lerrnoP.h"
#include "cull/cull_listP.h"
#include "cull/cull_multitypeP.h"
#include "cull/cull_whatP.h"
#include "cull/cull_whereP.h"
#include "cull/cull_pack.h"
#include "cull/cull_parse.h"
#include "cull/cull_what_print.h"
/* =========== implementation ================================= */
static int cull_unpack_switch(sge_pack_buffer *pb, lMultiType *dst, int type, int flags);
static int
cull_pack_switch(sge_pack_buffer *pb, const lMultiType *src, lEnumeration *what,
int type, int flags);
static int cull_unpack_descr(sge_pack_buffer *pb, lDescr **dpp);
static int cull_pack_descr(sge_pack_buffer *pb, const lDescr *dp);
static int cull_unpack_cont(sge_pack_buffer *pb, lMultiType **mpp, const lDescr *dp, int flags);
static int
cull_pack_cont(sge_pack_buffer *pb, const lMultiType *cp, const lDescr *dp,
const lEnumeration *what, int flags);
static int cull_unpack_object(sge_pack_buffer *pb, lListElem **epp, int flags);
static int cull_pack_object(sge_pack_buffer *pb, const lListElem *ep, int flags);
static int
cull_pack_enum_as_descr(sge_pack_buffer * pb, const lEnumeration *what,
const lDescr *dp);
/* ------------------------------------------------------------
cull_unpack_switch() - switch used to unpack a lMulitype
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int cull_unpack_switch(
sge_pack_buffer *pb,
lMultiType *dst,
int type,
int flags
) {
int ret;
u_long32 i=0;
u_long64 i64=0;
DENTER(CULL_LAYER, "cull_unpack_switch");
switch (type) {
case lBoolT:
ret = unpackint(pb, &i);
dst->b = i;
break;
case lUlongT:
ret = unpackint(pb, &i);
dst->ul = i;
break;
case lUlong64T:
ret = unpackint64(pb, &i64);
dst->ul64 = i64;
break;
case lStringT:
ret = unpackstr(pb, &(dst->str));
break;
case lHostT:
ret = unpackstr(pb, &(dst->host));
break;
case lListT:
ret = cull_unpack_list_partial(pb, &(dst->glp), flags);
break;
case lObjectT:
ret = cull_unpack_object(pb, &(dst->obj), flags);
break;
case lDoubleT:
ret = unpackdouble(pb, &(dst->db));
break;
case lRefT:
dst->ref = NULL;
ret = PACK_SUCCESS;
break;
case lIntT:
case lFloatT:
case lLongT:
case lCharT:
DPRINTF(("type not implemented\n"));
ret = PACK_FORMAT;
break;
default:
DPRINTF(("unknown type %d\n", type));
ret = PACK_FORMAT;
break;
}
DEXIT;
return ret;
}
/* ------------------------------------------------------------
cull_pack_switch() - switch used to pack a lMulitype
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int
cull_pack_switch(sge_pack_buffer *pb, const lMultiType *src, lEnumeration *what,
int type, int flags) {
int ret;
DENTER(CULL_LAYER, "cull_pack_switch");
switch (type) {
case lBoolT:
ret = packint(pb, src->b);
break;
case lUlongT:
ret = packint(pb, src->ul);
break;
case lUlong64T:
ret = packint64(pb, src->ul64);
break;
case lStringT:
ret = packstr(pb, src->str);
break;
case lHostT:
ret = packstr(pb, src->host);
break;
case lListT:
ret = cull_pack_list_partial(pb, src->glp, what, flags);
break;
case lObjectT:
ret = cull_pack_object(pb, src->obj, flags);
break;
case lDoubleT:
ret = packdouble(pb, src->db);
break;
case lRefT:
ret = PACK_SUCCESS;
break;
case lIntT:
case lFloatT:
case lLongT:
case lCharT:
DPRINTF(("not implemented\n"));
ret = PACK_FORMAT;
break;
default:
DPRINTF(("unknown type %d\n", type));
ret = PACK_FORMAT;
break;
}
DEXIT;
return ret;
}
/* ------------------------------------------------------------
cull_unpack_descr() - unpacks a complete descriptor
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int cull_unpack_descr(
sge_pack_buffer *pb,
lDescr **dpp
) {
lDescr *dp;
int ret;
u_long32 n=0;
u_long32 i=0;
u_long32 temp=0;
DENTER(CULL_LAYER, "cull_unpack_descr");
*dpp = NULL;
/* read in number of lDescr fields (without end mark) */
if ((ret = unpackint(pb, &n))) {
DEXIT;
return ret;
}
/* n+1 does not work because this casts n to int */
if ( n > MAX_DESCR_SIZE - 1 ) {
LERROR(LEMALLOC);
DEXIT;
return PACK_ENOMEM;
}
if ((dp = (lDescr *) malloc(sizeof(lDescr) * (n+1))) == NULL) {
LERROR(LEMALLOC);
DEXIT;
return PACK_ENOMEM;
}
memset(dp, 0, sizeof(lDescr) * (n+1));
dp[n].nm = NoName;
dp[n].mt = lEndT;
dp[n].ht = NULL;
/* read in n lDescr fields */
for (i = 0; i < n; i++) {
if ((ret = unpackint(pb, &temp))) {
sge_free(&dp);
DEXIT;
return ret;
}
dp[i].nm = temp;
if ((ret = unpackint(pb, &temp))) {
sge_free(&dp);
DEXIT;
return ret;
}
dp[i].mt = temp;
dp[i].ht = NULL;
}
/*
* above we made the assumption that the unpacked descriptor was reduced
* now we have to check that the assumption is correct
*/
{
const lNameSpace *ns = cull_state_get_name_space();
int i = 0;
/* at first we assume the element is reduced */
bool is_reduced = true;
/*
* EB: TODO: I don't know why but when this function is executed within drmma
* functionality then the namespace is sometimes NULL.
* If this happens, then I assume that the element is reduced.
*/
if (ns == NULL) {
is_reduced = true;
} else {
/*
* check if the descriptor is really reduced.
* this in done by iterating over the whole namespace
* we try to find the element and all field for an entry in the
* namespace
*/
while (ns[i].lower != 0 && ns[i].size != 0 && ns[i].namev) {
/*
* check if the first element in the descriptor is
* equivalent with the current entry in the namespace (first nm id)
*/
if (dp[0].nm == ns[i].lower) {
int nm, k;
/* we change the initial assumption */
is_reduced = false;
/*
* check if all other entries are also in the descriptor
* as soon as a element is missing we can break: the element is then reduced
*/
for (nm = ns[i].lower, k = 0; nm < ns[i].lower + ns[i].size; nm++, k++) {
if (dp[k].nm != nm) {
is_reduced = true;
break;
}
}
/*
* if we did not skip the loop above but the field in the
* descriptor are more that thet in the namespace then
* we have also to set the is_reduced flag. (this should never happen)
*/
if (k != n) {
is_reduced = true;
break;
}
break;
}
/* move to next element */
i++;
}
}
/*
* we only have to correct the is_reduced flag if the check above
* found all names in the descriptor
*/
{
int l;
for (l = 0; l <= n; l++) {
dp[l].mt |= (is_reduced == true) ? CULL_IS_REDUCED : 0;
}
}
}
*dpp = dp;
DEXIT;
return PACK_SUCCESS;
}
/* ------------------------------------------------------------
cull_pack_descr() - packs a complete descriptor
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int cull_pack_descr(sge_pack_buffer *pb, const lDescr *dp)
{
int i, ret;
DENTER(CULL_LAYER, "cull_pack_descr");
/* pack the number of lDescr fields (without end mark) */
if ((ret = packint(pb, lCountDescr(dp)))) {
DEXIT;
return ret;
}
/* pack the lDescr fields */
for (i = 0; mt_get_type(dp[i].nm) != NoName && mt_get_type(dp[i].mt) != lEndT; i++) {
if ((ret = packint(pb, dp[i].nm))) {
DEXIT;
return ret;
}
if ((ret = packint(pb, dp[i].mt))) {
DEXIT;
return ret;
}
}
DEXIT;
return PACK_SUCCESS;
}
/* TODO EB: doc is missing */
/* TODO EB: remove not needed exit points */
static int
cull_pack_enum_as_descr(sge_pack_buffer * pb, const lEnumeration *what,
const lDescr *descr)
{
int i, ret;
DENTER(CULL_LAYER, "cull_pack_enum_as_descr");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
/* pack the number of lDescr fields (without end mark) */
if ((ret = packint(pb, lCountWhat(what, descr)))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
switch (what[0].pos) {
case WHAT_ALL:
for (i = 0; descr[i].nm != NoName; i++) {
if ((ret = packint(pb, descr[i].nm))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if ((ret = packint(pb, descr[i].mt))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
break;
case WHAT_NONE:
break;
default:
/* pack the lEnumeration field similar to lDescr fields */
for (i = 0; what[i].nm != NoName; i++) {
if ((ret = packint(pb, what[i].nm))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if ((ret = packint(pb, what[i].mt))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
break;
}
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* ================================================================ */
/* ------------------------------------------------------------
cull_pack_cont() - packs a contents array
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int
cull_pack_cont(sge_pack_buffer *pb, const lMultiType *cp, const lDescr *dp,
const lEnumeration *what, int flags)
{
int i, ret;
int n;
DENTER(CULL_LAYER, "cull_pack_cont");
if (what == NULL) {
n = lCountDescr(dp);
for (i = 0; i < n; i++) {
/* if flags are given, pack only fields matching flags, e.g. CULL_SPOOL */
if (flags == 0 || (dp[i].mt & flags) != 0) {
if ((ret = cull_pack_switch(pb, &cp[i], NULL, mt_get_type(dp[i].mt), flags))) {
DEXIT;
return ret;
}
}
}
} else {
for (i = 0; what[i].nm != NoName; i++) {
if (flags == 0 || (what[i].mt & flags) != 0) {
if ((ret = cull_pack_switch(pb, &cp[what[i].pos], what[i].ep,
mt_get_type(what[i].mt), flags))) {
DEXIT;
return ret;
}
}
}
}
DEXIT;
return PACK_SUCCESS;
}
/* ------------------------------------------------------------
cull_unpack_cont() - unpacks a contents array
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int cull_unpack_cont(
sge_pack_buffer *pb,
lMultiType **mpp,
const lDescr *dp,
int flags
) {
int i, n, ret;
bool only_at_bufferend = true; /* Everything had PACK_SUCCESS or
* PACK_FORMAT error happend but only at the
* end of the descriptor */
bool format_error = false; /* set to true when at least one PACK_FORMAT
* error happens */
int last_error = PACK_SUCCESS; /* error happend in last iteration
* or PACK_SUCCESS */
lMultiType *cp = NULL;
DENTER(CULL_LAYER, "cull_unpack_cont");
*mpp = NULL;
n = lCountDescr(dp);
if ((cp = (lMultiType *) calloc(1, sizeof(lMultiType) * (n + 1))) == NULL) {
LERROR(LEMALLOC);
DEXIT;
return PACK_ENOMEM;
}
for (i = 0; i < n; i++) {
/* if flags are given, unpack only fields matching flags, e.g. CULL_SPOOL */
if (flags == 0 || (dp[i].mt & flags) != 0) {
int lret = cull_unpack_switch(pb, &(cp[i]), mt_get_type(dp[i].mt), flags);
last_error = lret;
if (lret == PACK_FORMAT) {
format_error = true;
} else if (lret != PACK_SUCCESS) {
only_at_bufferend = false;
break;
}
}
}
if (format_error && only_at_bufferend) {
/*
* We catch all format errors that occur during unparsing attributes
* from the end of a descriptos. Format errors mean that
* these attributes where not contained at the end of the packbuffer
* This is the case after an update release has been installed.
* The new master finds old objects. Due to the fact that during the
* process reading in all objects a full (new) descriptor is used
* these errors can be skipped.
*
* Missing attributes will contain 0 values. If there is a need to
* initialize them then this has to happen some layers above.
* (setup_qmaster)
*/
ret = PACK_SUCCESS;
} else if (last_error != PACK_SUCCESS || only_at_bufferend == false) {
/*
* If we are here then an error != PACK_FORMAT happened or
* or a PACK_FORMAT occured but after it occured either
* a different error happended or an operation succeeded.
* Format errors should only be catched if they ocure at the en of
* the descriptor.
*/
sge_free(&cp);
ret = (last_error != PACK_SUCCESS) ? last_error : PACK_FORMAT;
} else {
/*
* This is hopefully the default case
*/
ret = PACK_SUCCESS;
}
*mpp = cp;
DRETURN(ret);
}
/* ================================================================ */
/* ------------------------------------------------------------
cull_pack_elem() - packs a list element
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_pack_elem(sge_pack_buffer *pb, const lListElem *ep)
{
int ret;
DENTER(TOP_LAYER, "cull_pack_elem");
ret = cull_pack_elem_partial(pb, ep, NULL, 0);
DEXIT;
return ret;
}
int
cull_pack_elem_partial(sge_pack_buffer *pb, const lListElem *ep,
const lEnumeration *what, int flags)
{
int ret;
DENTER(TOP_LAYER, "cull_pack_elem_partial");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
if(ep->descr == NULL) {
DPRINTF(("element descriptor NULL not allowed !!!\n"));
DEXIT;
abort();
}
if((ret = packint(pb, ep->status)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if(ep->status == FREE_ELEM) {
if (what == NULL) {
if((ret = cull_pack_descr(pb, ep->descr)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
} else {
if ((ret = cull_pack_enum_as_descr(pb, what, ep->descr)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
}
/*
* pack dummy bitfield: later on this space might be used to store
* the elements changed-bitfield
*/
{
bitfield field;
if (what == NULL) {
if (!sge_bitfield_init(&field, lCountDescr(ep->descr))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
} else {
if (!sge_bitfield_init(&field, lCountWhat(what, ep->descr))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
}
if((ret = packbitfield(pb, &(field))) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
sge_bitfield_free_data(&field);
}
ret = cull_pack_cont(pb, ep->cont, ep->descr, what, flags);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* ------------------------------------------------------------
cull_unpack_elem() - unpacks a list element
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_unpack_elem(
sge_pack_buffer *pb,
lListElem **epp,
const lDescr *dp /* has to be NULL in case of free elements
must be the desriptor in case of bound elements */
) {
int ret;
DENTER(CULL_LAYER, "cull_unpack_elem");
ret = cull_unpack_elem_partial(pb, epp, dp, 0);
DEXIT;
return ret;
}
int cull_unpack_elem_partial(sge_pack_buffer *pb, lListElem **epp, const lDescr *dp, int flags)
{
int ret;
lListElem *ep = NULL;
DENTER(CULL_LAYER, "cull_unpack_elem_partial");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
*epp = NULL;
if((ep = (lListElem *) calloc(1, sizeof(lListElem))) == NULL) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
if((ret = unpackint(pb, &(ep->status))) != PACK_SUCCESS) {
sge_free(&ep);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if(ep->status == FREE_ELEM) {
if((ret = cull_unpack_descr(pb, &(ep->descr))) != PACK_SUCCESS) {
sge_free(&ep);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/*
* Special handling for feature update releses where the job has been changed.
* In all cases where we got an descriptor from outside and where the descriptor
* is one that contains JB_job_number as first entry we will use this
* descriptor and not that one that is stored in a packbuffer.
*
* As a result we are able to read "old" JB_Type objects from a previous
* GridEngine version although the JB_Type object has been incresed in the new
* version.
*
* Note: Only JB_type objects will be handled correctly and only in the case
* if JB_Type contains ALL attributes of the old descriptor and new elements
* AT THE END of the new descriptor.
*
* 50 is JB_job_number. I did not use the enum value here because it is defined
* in sgeobj header file and not cull.
*/
if (dp != NULL && dp[0].nm == 50) {
sge_free(&(ep->descr));
if((ep->descr = lCopyDescr((lDescr *) dp)) == NULL) {
sge_free(&ep);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_BADARG;
}
}
} else {
/*
if it is not a free element we need
a descriptor from outside
*/
if((ep->descr = (lDescr *) dp) == NULL) {
sge_free(&ep);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_BADARG;
}
}
/* This is a hack, to avoid aborts in lAppendElem */
if(ep->status == BOUND_ELEM || ep->status == OBJECT_ELEM)
ep->status = TRANS_BOUND_ELEM;
/*
here after setting status correctly we got
an element in a defined state - so we may
call lFreeElem() in case of errors
*/
if((ret = unpackbitfield(pb, &(ep->changed), lCountDescr(ep->descr))) != PACK_SUCCESS) {
if(ep->status == FREE_ELEM || ep->status == OBJECT_ELEM) {
sge_free(&(ep->descr));
}
sge_free(&ep);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if((ret = cull_unpack_cont(pb, &(ep->cont), ep->descr, flags))) {
if(ep->status == FREE_ELEM || ep->status == OBJECT_ELEM) {
sge_free(&(ep->descr));
}
sge_free(&ep);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
*epp = ep;
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* ================================================================ */
/* ------------------------------------------------------------
cull_pack_object() - packs a sub object
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int cull_pack_object(
sge_pack_buffer *pb,
const lListElem *ep,
int flags
) {
int ret;
DENTER(CULL_LAYER, "cull_pack_object");
if((ret = packint(pb, ep != NULL)) != PACK_SUCCESS) {
DEXIT;
return ret;
}
if(ep != NULL) {
/* pack descriptor */
if((ret = cull_pack_descr(pb, ep->descr)) != PACK_SUCCESS) {
DEXIT;
return ret;
}
/* pack list element */
if((ret = cull_pack_elem_partial(pb, ep, NULL, flags)) != PACK_SUCCESS) {
DEXIT;
return ret;
}
}
DEXIT;
return PACK_SUCCESS;
}
/* ------------------------------------------------------------
cull_pack_list() - packs a complete list
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_pack_list(sge_pack_buffer *pb, const lList *lp)
{
int ret;
DENTER(CULL_LAYER, "cull_pack_list");
ret = cull_pack_list_partial(pb, lp, NULL, 0);
DEXIT;
return ret;
}
int
cull_pack_list_summary(sge_pack_buffer *pb, const lList *lp,
const lEnumeration *what, const char *name,
size_t *offset, size_t *used)
{
int ret;
DENTER(CULL_LAYER, "cull_pack_list_summary");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
if((ret = packint(pb, lp != NULL)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if (lp != NULL) {
/*
* TODO: The next release where it is possible to change the pb-format
* makes it possible to delete this hack
* Then it is possible to remove the argument 'bytes_used'
*
* Future implementation:
* The number of elements can't be written before the list
* elements. Instead each element has to be introduced by an int.
* 0 means that no element will follow. 1 means that an element
* will follow
*/
*offset = pb->cur_ptr - pb->head_ptr;
*used = pb->bytes_used;
/*
* pack number of elements contained in the list
*/
if((ret = packint(pb, lp->nelem)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/*
* name of the list
*/
if (name == NULL) {
name = lp->listname;
}
if((ret = packstr(pb, name)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* changed variable */
if((ret = packint(pb, lp->changed)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* pack descriptor */
if (what == NULL) {
ret = cull_pack_descr(pb, lp->descr);
if(ret != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
} else {
ret = cull_pack_enum_as_descr(pb, what, lp->descr);
if (ret != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
}
DEXIT;
return PACK_SUCCESS;
}
int cull_pack_list_partial(sge_pack_buffer *pb, const lList *lp,
lEnumeration *what, int flags)
{
int ret;
lListElem *ep;
DENTER(CULL_LAYER, "cull_pack_list_partial");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
if (lp != NULL && pb != NULL) {
if((ret = packint(pb, 1)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if((ret = packint(pb, lp->nelem)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if((ret = packstr(pb, lp->listname)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if((ret = packint(pb, lp->changed)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* pack descriptor */
if (what == NULL) {
if((ret = cull_pack_descr(pb, lp->descr)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
} else {
if ((ret = cull_pack_enum_as_descr(pb, what, lp->descr)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
} else {
if((ret = packint(pb, 0)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
if (lp != NULL) {
/* pack each list element */
for_each(ep, lp) {
if((ret = cull_pack_elem_partial(pb, ep, what, flags)) != PACK_SUCCESS) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
}
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* ------------------------------------------------------------
cull_unpack_list() - unpacks a list
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_unpack_list(sge_pack_buffer *pb, lList **lpp)
{
int ret;
DENTER(CULL_LAYER, "cull_unpack_list");
ret = cull_unpack_list_partial(pb, lpp, 0);
DEXIT;
return ret;
}
int cull_unpack_list_partial(sge_pack_buffer *pb, lList **lpp, int flags)
{
int ret;
lList *lp;
lListElem *ep;
u_long32 i=0;
u_long32 n=0;
u_long32 c=0;
DENTER(CULL_LAYER, "cull_unpack_list_partial");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
*lpp = NULL;
if((ret = unpackint(pb, &i))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* do we have an empty list (NULL) ? */
if(!i) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
if((lp = (lList *) calloc(1, sizeof(lList))) == NULL) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
if((ret = unpackint(pb, &n)) != PACK_SUCCESS) {
lFreeList(&lp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if((ret = unpackstr(pb, &(lp->listname))) != PACK_SUCCESS) {
lFreeList(&lp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if((ret = unpackint(pb, &c)) != PACK_SUCCESS) {
lFreeList(&lp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
lp->changed = (bool)c;
/* unpack descriptor */
if((ret = cull_unpack_descr(pb, &(lp->descr))) != PACK_SUCCESS) {
lFreeList(&lp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* unpack each list element */
for(i = 0; i < n; i++) {
if((ret = cull_unpack_elem_partial(pb, &ep, lp->descr, flags)) != PACK_SUCCESS) {
lFreeList(&lp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
lAppendElem(lp, ep);
}
cull_hash_create_hashtables(lp);
*lpp = lp;
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* ------------------------------------------------------------
cull_unpack_object() - unpacks a sub object
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
static int cull_unpack_object(
sge_pack_buffer *pb,
lListElem **epp,
int flags
) {
int ret;
lDescr *descr;
lListElem *ep;
u_long32 i=0;
DENTER(CULL_LAYER, "cull_unpack_object");
*epp = NULL;
if((ret = unpackint(pb, &i))) {
DEXIT;
return ret;
}
/* do we have an empty object (NULL) ? */
if(!i) {
DEXIT;
return PACK_SUCCESS;
}
/* unpack descriptor */
if((ret = cull_unpack_descr(pb, &descr)) != PACK_SUCCESS) {
DEXIT;
return ret;
}
/* unpack each element */
if((ret = cull_unpack_elem_partial(pb, &ep, descr, flags)) != PACK_SUCCESS) {
sge_free(&descr);
DEXIT;
return ret;
}
ep->status = OBJECT_ELEM;
*epp = ep;
DEXIT;
return PACK_SUCCESS;
}
enum {
PackWhatAll = 0, PackWhatNone, PackWhatArray
};
/* ------------------------------------------------------------
cull_pack_enum() - packs an enumeration
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_pack_enum(
sge_pack_buffer *pb,
const lEnumeration *enp
) {
int ret;
u_long32 flag=0;
int i=0, n=0;
DENTER(CULL_LAYER, "cull_pack_enum");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
if ((ret = packint(pb, enp != NULL)))
goto error;
if (!enp) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* pack flag indicating ALL, NONE or normal enumeration (array) */
switch (enp[0].pos) {
case WHAT_ALL:
flag = PackWhatAll;
break;
case WHAT_NONE:
flag = PackWhatNone;
break;
default:
flag = PackWhatArray;
}
if ((ret = packint(pb, flag)))
goto error;
if (flag == PackWhatArray) {
/* compute and pack number of lEnumeration fields (without end mark) */
for (n = 0; enp[n].nm != NoName; n++);
if ((ret = packint(pb, n)))
goto error;
/* pack the lEnumeration fields */
for (i = 0; mt_get_type(enp[i].nm) != NoName && mt_get_type(enp[i].mt) != lEndT; i++) {
if ((ret = packint(pb, enp[i].pos)))
goto error;
if ((ret = packint(pb, enp[i].mt)))
goto error;
if ((ret = packint(pb, enp[i].nm)))
goto error;
if (enp[i].ep == NULL) {
if ((ret = packint(pb, 0))) {
goto error;
}
} else {
if ((ret = packint(pb, 1))) {
goto error;
}
if ((ret = cull_pack_enum(pb, enp[i].ep))) {
goto error;
}
}
}
}
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
error:
DPRINTF(("error packing enumeration\n"));
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* ------------------------------------------------------------
cull_unpack_enum() - unpacks an enumeration
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_unpack_enum(
sge_pack_buffer *pb,
lEnumeration **enpp
) {
int ret;
lEnumeration *enp = NULL;
u_long32 flag=0, i=0, temp=0;
u_long32 n=0;
DENTER(CULL_LAYER, "cull_unpack_enum");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
*enpp = NULL;
if ((ret = unpackint(pb, &i)))
goto error;
if (!i) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
if ((ret = unpackint(pb, &flag)))
goto error;
if (flag != PackWhatArray) {
if (!(enp = (lEnumeration *) malloc(2 * sizeof(lEnumeration)))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
switch (flag) {
case PackWhatAll:
enp[0].pos = WHAT_ALL;
break;
case PackWhatNone:
enp[0].pos = WHAT_NONE;
break;
default:
break;
}
enp[0].nm = -99;
enp[0].mt = -99;
enp[0].ep = NULL;
enp[1].nm = NoName;
enp[1].mt = lEndT;
enp[1].ep = NULL;
} else {
/* read in number of lEnumeration fields (without end mark) */
if ((ret = unpackint(pb, &n)))
goto error;
if ( n+1 > MAX_DESCR_SIZE ) {
LERROR(LEMALLOC);
DEXIT;
return PACK_ENOMEM;
}
if (!(enp = (lEnumeration *) malloc(sizeof(lEnumeration) * (n + 1)))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
/* read in n lEnumeration fields */
for (i = 0; i < n; i++) {
lEnumeration *tmp2 = NULL;
if ((ret = unpackint(pb, &temp)))
goto error;
enp[i].pos = temp;
if ((ret = unpackint(pb, &temp)))
goto error;
enp[i].mt = temp;
if ((ret = unpackint(pb, &temp)))
goto error;
enp[i].nm = temp;
if ((ret = unpackint(pb, &temp)))
goto error;
if (temp == 1) {
if ((ret = cull_unpack_enum(pb, &tmp2))) {
goto error;
}
}
enp[i].ep = tmp2;
tmp2 = NULL;
}
enp[n].nm = NoName;
enp[n].mt = lEndT;
enp[n].ep = NULL;
}
*enpp = enp;
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
error:
lFreeWhat(&enp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
/* ------------------------------------------------------------
cull_pack_cond() - packs an condition
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_pack_cond(
sge_pack_buffer *pb,
const lCondition *cp
) {
int ret;
DENTER(CULL_LAYER, "cull_pack_cond");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
if ((ret = packint(pb, cp != NULL))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if (!cp) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* pack operator indicating the following contents */
if ((ret = packint(pb, cp->op))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
DPRINTF(("cp->op: %d\n", cp->op));
switch (cp->op) {
case EQUAL:
case NOT_EQUAL:
case LOWER_EQUAL:
case LOWER:
case GREATER_EQUAL:
case GREATER:
case BITMASK:
case STRCASECMP:
case PATTERNCMP:
case SUBSCOPE:
case HOSTNAMECMP:
DPRINTF(("cp->operand.cmp.pos: %d\n", cp->operand.cmp.pos));
if ((ret = packint(pb, cp->operand.cmp.pos))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
DPRINTF(("cp->operand.cmp.mt: %d\n", cp->operand.cmp.mt));
if ((ret = packint(pb, cp->operand.cmp.mt))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
DPRINTF(("cp->operand.cmp.nm: %d\n", cp->operand.cmp.nm));
if ((ret = packint(pb, cp->operand.cmp.nm))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if (mt_get_type(cp->operand.cmp.mt) != lListT) {
if ((ret = cull_pack_switch(pb, &(cp->operand.cmp.val), NULL,
mt_get_type(cp->operand.cmp.mt), 0))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
} else {
if ((ret = cull_pack_cond(pb, cp->operand.cmp.val.cp))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
break;
case NEG:
if ((ret = cull_pack_cond(pb, cp->operand.log.first))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
break;
case AND:
case OR:
if ((ret = cull_pack_cond(pb, cp->operand.log.first))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if ((ret = cull_pack_cond(pb, cp->operand.log.second))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
break;
default:
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_FORMAT;
}
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/* ------------------------------------------------------------
cull_unpack_cond() - unpacks an condition
return values:
PACK_SUCCESS
PACK_ENOMEM
PACK_FORMAT
*/
int cull_unpack_cond(
sge_pack_buffer *pb,
lCondition **cpp
) {
int ret;
u_long32 i=0;
lCondition *cp = NULL;
DENTER(CULL_LAYER, "cull_unpack_cond");
PROF_START_MEASUREMENT(SGE_PROF_PACKING);
*cpp = NULL;
if ((ret = unpackint(pb, &i))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
if (!i) {
*cpp = NULL;
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return 0;
}
if (!(cp = (lCondition *) calloc(1, sizeof(lCondition)))) {
LERROR(LEMALLOC);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_ENOMEM;
}
if ((ret = unpackint(pb, &i))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
cp->op = i;
switch (cp->op) {
case EQUAL:
case NOT_EQUAL:
case LOWER_EQUAL:
case LOWER:
case GREATER_EQUAL:
case GREATER:
case BITMASK:
case STRCASECMP:
case PATTERNCMP:
case SUBSCOPE:
case HOSTNAMECMP:
if ((ret = unpackint(pb, &i))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
cp->operand.cmp.pos = i;
if ((ret = unpackint(pb, &i))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
cp->operand.cmp.mt = i;
if ((ret = unpackint(pb, &i))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
cp->operand.cmp.nm = i;
if (mt_get_type(cp->operand.cmp.mt) != lListT) {
if ((ret = cull_unpack_switch(pb, &(cp->operand.cmp.val), mt_get_type(cp->operand.cmp.mt), 0))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
} else {
if ((ret = cull_unpack_cond(pb, &(cp->operand.cmp.val.cp)))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
}
break;
case NEG:
if ((ret = cull_unpack_cond(pb, &(cp->operand.log.first)))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
break;
case AND:
case OR:
if ((ret = cull_unpack_cond(pb, &(cp->operand.log.first)))) {
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
lFreeWhere(&cp);
DEXIT;
return ret;
}
if ((ret = cull_unpack_cond(pb, &(cp->operand.log.second)))) {
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return ret;
}
break;
default:
lFreeWhere(&cp);
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_FORMAT;
}
*cpp = cp;
PROF_STOP_MEASUREMENT(SGE_PROF_PACKING);
DEXIT;
return PACK_SUCCESS;
}
/****** cull/pack/setByteArray() ***********************************************
* NAME
* setByteArray() -- takes a byte array, transformes it into ASCII and sets
* it as a string into an element
*
* SYNOPSIS
* void setByteArray(const char *byteArray, int size, lListElem *elem, int
* name)
*
* FUNCTION
* makes a string out of a byte array and sets that string into an element
*
* INPUTS
* const char *byteArray - byte array
* int size - size of the byte array
* lListElem *elem - target element
* int name - target attribute
*
* RESULT
* void - nothing
*
*******************************************************************************/
void setByteArray(const char *byteArray, int size, lListElem *elem, int name){
const char *numbers = {"0123456789ABCDEF"};
int lower_part;
int upper_part;
int target_size = size * 2 +1;
char * z_stream_str=NULL;
int i=0;
int y=0;
if (!byteArray || !elem)
return;
z_stream_str = sge_malloc(target_size);
memset(z_stream_str, 0, target_size);
for (i=0; i < size; i++){
lower_part = (byteArray[i] & 0x0F);
upper_part = (byteArray[i] & 0xF0) >> 4;
z_stream_str[y++] = numbers[lower_part];
z_stream_str[y++] = numbers[upper_part];
}
z_stream_str[y++] = '\0';
lSetString(elem, name, z_stream_str);
sge_free(&z_stream_str);
}
/****** cull/pack/getByteArray() ***********************************************
* NAME
* getByteArray() -- transforms a string into a byte array.
*
* SYNOPSIS
* int getByteArray(char **byte, const lListElem *elem, int name)
*
* FUNCTION
* extracts a string from an element and changes it into a byte array. The
* target has to be a pointer to NULL. The array will be created in the function
* and no memory is freed. The calling functions have to take care of that.
*
* INPUTS
* char **byte - target byte array, has to be a pointer to NULL
* const lListElem *elem - the list element, which contains the string
* int name - name of the attribute containing the string
*
* RESULT
* int - >= 0 the size of the byte array
* < 0 the position of the first none hex character
*
*******************************************************************************/
int getByteArray(char **byte, const lListElem *elem, int name){
const char *numbers = {"0123456789ABCDEF"};
int lower_part = 0;
int upper_part = 0;
int i=0;
int size=0;
const char* string;
if (!byte || !elem){
return size;
}
string = lGetString(elem, name);
size = strlen(string) /2;
*byte = sge_malloc(size);
memset(*byte, 0, size);
for (i=0; i < size; i++){
int a=0;
for(a=0; a < 16; a++){
if (numbers[a] == string[i*2]) {
lower_part = a;
break;
}
}
if (a == 16) {
return (i * -2);
}
for(a=0; a < 16; a++){
if (numbers[a] == string[i*2+1]) {
upper_part = a;
break;
}
}
if (a == 16) {
return ((i * -2) -1);
}
(*byte)[i] = (upper_part << 4) + lower_part;
}
return size;
}
void cull_dump_pack_buffer(sge_pack_buffer *pb, FILE *fp)
{
int i;
int j = 0;
char hex[2048], tex[2048];
for (i=0; i<pb->bytes_used; i++) {
sprintf(&hex[j*3], "%2x ", pb->head_ptr[i]);
sprintf(&tex[j], "%c", isalnum(pb->head_ptr[i])?pb->head_ptr[i]:'.');
if ((i % 16) == 0) {
fprintf(fp, "%s %s\n", hex, tex);
j=0;
} else {
j++;
}
}
}
|