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 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548
|
/*
protocol.cc from libdap
Copyright (C) 1998-2001 Patrick Caulfield patrick@tykepenguin.cix.co.uk
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <assert.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <syslog.h>
#include <pwd.h>
#include <grp.h>
#include <errno.h>
#include <regex.h>
#include <ctype.h>
#include <time.h>
#include <netdnet/dn.h>
#include <netdnet/dnetdb.h>
#include "dn_endian.h"
#include "logging.h"
#include "connection.h"
#include "protocol.h"
//---------------------------------- dap_bytes() ------------------------------
bool dap_bytes::read(dap_connection &c)
{
char *b = c.getbytes(length);
if (!b) return false;
memcpy(value, b, length);
return true;
}
bool dap_bytes::write(dap_connection &c)
{
return c.putbytes(value, length);
}
unsigned char dap_bytes::get_byte(int bytenum)
{
assert(bytenum < length);
return value[bytenum];
}
char *dap_bytes::get_string()
{
value[length] = '\0';
return (char *)value;
}
unsigned short dap_bytes::get_short()
{
int i;
unsigned long s = 0;
for (i=0; i<length; i++)
{
s |= value[i] << (i*8);
}
return (unsigned short)s;
}
unsigned int dap_bytes::get_int()
{
int i;
unsigned long s = 0;
for (i=0; i<length; i++)
{
s |= value[i] << (i*8);
}
return (unsigned int)s;
}
void dap_bytes::set_byte(int bytenum, unsigned char newval)
{
assert(length > bytenum);
value[bytenum] = newval;
}
void dap_bytes::set_short(unsigned short newval)
{
*(unsigned short *)value = dn_htons(newval);
length = 2;
}
void dap_bytes::set_int(unsigned int newval)
{
*(unsigned int *)value = dn_htonl(newval);
length = 4;
}
void dap_bytes::set_string(const char *newval)
{
length = strlen(newval);
strcpy((char *)value, newval);
}
void dap_bytes::set_value(const char *newval, int len)
{
length = len;
memcpy((char *)value, newval, len);
}
//---------------------------------- dap_ex() ------------------------------
bool dap_ex::read(dap_connection &c)
{
int i=0;
char *b;
do
{
b = c.getbytes(1);
if (!b) return false;
value[i] = *b;
}
while((value[i++] & 0x80));
length = i; // Set to real length;
real_length = i;
return true;
}
bool dap_ex::write(dap_connection &c)
{
return c.putbytes(value, real_length);
}
bool dap_ex::get_bit(int bit)
{
int bytenum;
int bitnum;
if (!length) return false;
if (bit > length*7) return false;
bytenum = bit / 7;
bitnum = bit % 7;
return (value[bytenum]&(1<<bitnum))!=0;
}
void dap_ex::set_bit(int bit)
{
int bytenum;
int bitnum;
bytenum = bit / 7;
bitnum = bit % 7;
value[bytenum] |= (1<<bitnum);
if (real_length <= bytenum) real_length = bytenum+1;
// Now set the top bits of all previous bytes
for (int i=0; i<bytenum; i++)
{
value[i] |= 0x80;
}
}
void dap_ex::clear_bit(int bit)
{
int bytenum;
int bitnum;
bytenum = bit / 7;
bitnum = bit % 7;
value[bytenum] &= ~(1<<bitnum);
}
unsigned char dap_ex::get_byte(int b)
{
return value[b];
}
// Called by routines that know the exact format of the bits to be
// sent and can't be arsed to set them bit-by-bit
void dap_ex::set_byte(int bytenum, unsigned char newval)
{
assert(bytenum < length);
value[bytenum] = newval;
if (real_length <= bytenum) real_length = bytenum+1;
}
//-------------------------------dap_image-------------------------------------
bool dap_image::write(dap_connection &c)
{
c.putbytes(&real_length, 1);
return c.putbytes(value, real_length);
}
bool dap_image::read(dap_connection &c)
{
char *b = c.getbytes(1);
if (!b) return false;
real_length = *b;
b = c.getbytes(real_length);
if (!b) return false;
memcpy(value, b, real_length);
return true;
}
unsigned char dap_image::get_byte(int bytenum)
{
assert(bytenum < real_length);
return value[bytenum];
}
char *dap_image::get_string()
{
value[real_length] = '\0';
return (char *)value;
}
unsigned short dap_image::get_short()
{
int i;
unsigned long s = 0;
for (i=0; i<real_length; i++)
{
s |= value[i] << (i*8);
}
return (unsigned short)s;
}
unsigned int dap_image::get_int()
{
int i;
unsigned long s = 0;
for (i=0; i<real_length; i++)
{
s |= value[i] << (i*8);
}
return (unsigned int)s;
}
void dap_image::set_int(unsigned int v)
{
*(unsigned int *)value = dn_htonl(v);
real_length = 4;
}
void dap_image::set_short(unsigned short v)
{
*(unsigned short *)value = dn_htons(v);
real_length = 2;
}
void dap_image::set_string(const char *s)
{
strcpy((char *)value, s);
real_length = strlen(s);
}
void dap_image::set_value(const char *newval, int len)
{
real_length = len;
memcpy((char *)value, newval, len);
}
//-----------------------------------------------------------------------------
//-------------------------- DAP Messages start here --------------------------
//-----------------------------------------------------------------------------
// Send the message header. This header will have a single byte length
// so make sure the message is < 256 bytes long.
int dap_message::send_header(dap_connection &c)
{
unsigned char head[] = {2, 0};
c.putbytes(&msg_type, 1);
if (c.verbosity() > 3)
DAPLOG((LOG_INFO, "Sending message of type %s\n", type_name()));
return c.putbytes(head, 2); // Tell connection to send length
}
// Send the message header. if 'header' is set then the connection class
// will add the length in when the message is complete.
int dap_message::send_header(dap_connection &c, bool header)
{
unsigned char head[] = {2, 0};
if (c.verbosity() > 2)
DAPLOG((LOG_INFO, "Sending message of type %s\n", type_name()));
c.putbytes(&msg_type, 1);
if (header)
{
return c.putbytes(head, 2); // Tell connection to send length
}
else
{
return c.putbytes(&head[1], 1); // No length
}
}
// Send the message header. if 'header' is set then the connection class
// will add the length in when the message is complete.
int dap_message::send_long_header(dap_connection &c)
{
unsigned char head[] = {6, 0, 0};
if (c.verbosity() > 2)
DAPLOG((LOG_INFO, "Sending message of type %s\n", type_name()));
c.putbytes(&msg_type, 1);
return c.putbytes(head, 3); // Tell connection to send LEN256 header
}
// Read a DAP message header from the connection buffer. Here is where we
// make sure we have the whole message in memory and also that we know
// the message length (used mainly for data messages)
int dap_message::get_header(dap_connection &c)
{
c.check_length(1); // Ensure we have the start of a header
char *b = c.getbytes(1);
if (!b) return false;
flags = *b;
if (flags & 1) // Got STREAMID (which we just ignore)
{
// Throw it away.
c.getbytes(1);
}
if (flags & 2) // got length
{
unsigned char l;
c.check_length(1); // Ensure we have the start of a header
b = c.getbytes(1);
if (!b) return false;
l = *b;
length = l;
if (flags & 4) // LEN256
{
c.check_length(3); // Ensure we have the len256 bytes
b = c.getbytes(1);
if (!b) return false;
l = *b;
length |= l<<8;
}
if (length) c.check_length(length);
}
else
{
length = c.get_length(); // use full block;
c.check_length(length); // Marks message end too.
}
if (flags & 8) // Got BITCNT(which we just ignore)
{
// Throw it away.
c.getbytes(1);
}
if (flags & 32) // SYSPEC is impossible
{
DAPLOG((LOG_WARNING, "got SYSPEC field - aborting\n"));
exit(999);
}
return true;
}
// Peeks at the next nessage in the buffer and returns the
// integer message type.
// If no message is available then -1 is returned.
int dap_message::peek_message_type(dap_connection& c)
{
char *b = c.peekbytes(1);
if (b)
return *b;
else
return -1;
}
// Read a message from the stream and spit out a fully formed message
dap_message* dap_message::read_message(dap_connection& c, bool block)
{
unsigned char type;
char *b;
dap_message *m = NULL;
if (!c.read_if_necessary(block))
return NULL;
b = c.getbytes(1);
if (!b) return NULL;
type = *b;
switch(type)
{
case CONFIG:
m = new dap_config_message();
break;
case ATTRIB:
m = new dap_attrib_message();
break;
case ACCESS:
m = new dap_access_message();
break;
case CONTROL:
m = new dap_control_message();
break;
case CONTRAN:
m = new dap_contran_message();
break;
case ACK:
m = new dap_ack_message();
break;
case ACCOMP:
m = new dap_accomp_message();
break;
case DATA:
m = new dap_data_message();
break;
case STATUS:
m = new dap_status_message();
break;
case DATE:
m = new dap_date_message();
break;
case PROTECT:
m = new dap_protect_message();
break;
case NAME:
m = new dap_name_message();
break;
case ALLOC:
m = new dap_alloc_message();
break;
case SUMMARY:
m = new dap_summary_message();
break;
case KEYDEF:
m = new dap_key_message();
break;
case ACL:
break; // NYI
}
if (c.verbosity() > 2)
DAPLOG((LOG_INFO, "Got message of type %s\n", type_name(type)));
// If we got valid message header then read the rest of the message
// into the object.
if (m)
{
if (!c.read_if_necessary(true))
return NULL;
if (!m->get_header(c)) return NULL;
if (!m->read(c)) return NULL;
}
else
{
DAPLOG((LOG_DEBUG, "Unknown message type 0x%x received\n", type));
return NULL;
}
return m;
}
// Returns the numeric type of a message
unsigned char dap_message::get_type()
{
return msg_type;
}
char *dap_message::type_name()
{
return type_name(msg_type);
}
// Return the message type by name
char *dap_message::type_name(int msg_type)
{
static char name[32];
switch (msg_type)
{
case CONFIG:
return "CONFIG";
case ATTRIB:
return "ATTRIB";
case ACCESS:
return "ACCESS";
case CONTROL:
return "CONTROL";
case CONTRAN:
return "CONTRAN";
case ACK:
return "ACK";
case ACCOMP:
return "ACCOMP";
case DATA:
return "DATA";
case STATUS:
return "STATUS";
case DATE:
return "DATE";
case PROTECT:
return "PROTECT";
case NAME:
return "NAME";
case ALLOC:
return "ALLOC";
case SUMMARY:
return "SUMMARY";
case KEYDEF:
return "KEYDEF";
case ACL:
return "ACL";
default:
sprintf(name, "UNKNOWN (%d)", msg_type);
return name;
}
}
//-------------------------- dap_config_message() -----------------------------
#ifdef MIMIC_VMS
bool dap_config_message::write(dap_connection &c)
{
// This is EXACTLY what VMS (5.5) sends
send_header(c, false);
bufsiz.set_short(0x0424);
bufsiz.write(c);
ostype.set_byte(0,7);
ostype.write(c);
filesys.set_byte(0,3);
filesys.write(c);
version.set_byte(0,(unsigned char)7);
version.set_byte(1,(unsigned char)1);
version.set_byte(2,(unsigned char)0);
version.set_byte(3,(unsigned char)5);
version.set_byte(4,(unsigned char)0);
version.write(c);
syscap.set_byte(0,(unsigned char)0xF7);
syscap.set_byte(1,(unsigned char)0xFb);
syscap.set_byte(2,(unsigned char)0xd9);
syscap.set_byte(3,(unsigned char)0xff);
syscap.set_byte(4,(unsigned char)0xae);
syscap.set_byte(5,(unsigned char)0xac);
syscap.set_byte(6,(unsigned char)0x86);
syscap.set_byte(7,(unsigned char)0x94);
syscap.set_byte(8,(unsigned char)0xe7);
syscap.set_byte(9,(unsigned char)0x1b);
syscap.write(c);
return c.write();
}
#else
bool dap_config_message::write(dap_connection &c)
{
send_header(c, false); // Mustn't send length with the CONFIG message
bufsiz.set_short(buffer_size);
bufsiz.write(c);
ostype.set_byte(0,7); // VAX/VMS (ho ho!)
ostype.write(c);
filesys.set_byte(0,3); // RMS-32 (hee hee!)
filesys.write(c);
version.set_byte(0,(unsigned char)7);
version.set_byte(1,(unsigned char)1);
version.set_byte(2,(unsigned char)0);
version.set_byte(3,(unsigned char)5);
version.set_byte(4,(unsigned char)0);
version.write(c);
syscap.set_byte(0,(unsigned char)0xA2);
syscap.set_byte(1,(unsigned char)0xf9); // woz c1
syscap.set_byte(2,(unsigned char)0xf9);
syscap.set_byte(3,(unsigned char)0xf4);
syscap.set_byte(4,(unsigned char)0xAA);
syscap.set_byte(5,(unsigned char)0x6c);
syscap.write(c);
return c.write();
}
#endif
bool dap_config_message::read(dap_connection &c)
{
if (!bufsiz.read(c)) return false;
if (!ostype.read(c)) return false;
if (!filesys.read(c)) return false;
if (!version.read(c)) return false;
if (!syscap.read(c)) return false;
if (!syscap.get_bit(18))
{
if (c.verbosity())
DAPLOG((LOG_DEBUG, "Host does not allow blocking\n"));
c.allow_blocking(false);
}
return true;
}
// Return the CRC flag of the config message
bool dap_config_message::need_crc()
{
return syscap.get_bit(21);
}
//---------------------------- dap_attrib_message() ---------------------------
bool dap_attrib_message::write(dap_connection &c)
{
send_header(c, true);
attmenu.write(c);
if (attmenu.get_bit(0)) datatype.write(c);
if (attmenu.get_bit(1)) org.write(c);
if (attmenu.get_bit(2)) rfm.write(c);
if (attmenu.get_bit(3)) rat.write(c);
if (attmenu.get_bit(4)) bls.write(c);
if (attmenu.get_bit(5)) mrs.write(c);
if (attmenu.get_bit(6)) alq.write(c);
if (attmenu.get_bit(7)) bks.write(c);
if (attmenu.get_bit(8)) fsz.write(c);
if (attmenu.get_bit(9)) mrn.write(c);
if (attmenu.get_bit(10)) runsys.write(c);
if (attmenu.get_bit(11)) deq.write(c);
if (attmenu.get_bit(12)) fop.write(c);
if (attmenu.get_bit(13)) bsz.write(c);
if (attmenu.get_bit(14)) dev.write(c);
if (attmenu.get_bit(15)) sdc.write(c);
if (attmenu.get_bit(16)) lrl.write(c);
if (attmenu.get_bit(17)) hbk.write(c);
if (attmenu.get_bit(18)) ebk.write(c);
if (attmenu.get_bit(19)) ffb.write(c);
if (attmenu.get_bit(20)) sbn.write(c);
return c.write();
}
bool dap_attrib_message::read(dap_connection &c)
{
attmenu.read(c);
if (attmenu.get_bit(0) && !datatype.read(c)) return false;
if (attmenu.get_bit(1) && !org.read(c)) return false;
if (attmenu.get_bit(2) && !rfm.read(c)) return false;
if (attmenu.get_bit(3) && !rat.read(c)) return false;
if (attmenu.get_bit(4) && !bls.read(c)) return false;
if (attmenu.get_bit(5) && !mrs.read(c)) return false;
if (attmenu.get_bit(6) && !alq.read(c)) return false;
if (attmenu.get_bit(7) && !bks.read(c)) return false;
if (attmenu.get_bit(8) && !fsz.read(c)) return false;
if (attmenu.get_bit(9) && !mrn.read(c)) return false;
if (attmenu.get_bit(10) && !runsys.read(c)) return false;
if (attmenu.get_bit(11) && !deq.read(c)) return false;
if (attmenu.get_bit(12) && !fop.read(c)) return false;
if (attmenu.get_bit(13) && !bsz.read(c)) return false;
if (attmenu.get_bit(14) && !dev.read(c)) return false;
if (attmenu.get_bit(15) && !sdc.read(c)) return false;
if (attmenu.get_bit(16) && !lrl.read(c)) return false;
if (attmenu.get_bit(17) && !hbk.read(c)) return false;
if (attmenu.get_bit(18) && !ebk.read(c)) return false;
if (attmenu.get_bit(19) && !ffb.read(c)) return false;
if (attmenu.get_bit(20) && !sbn.read(c)) return false;
return true;
}
int dap_attrib_message::get_menu_bit(int bit)
{
return attmenu.get_bit(bit);
}
int dap_attrib_message::get_datatype() {return datatype.get_byte(0); }
int dap_attrib_message::get_org(){return org.get_int(); }
int dap_attrib_message::get_rfm(){return rfm.get_int(); }
int dap_attrib_message::get_rat_bit(int v){return rat.get_bit(v); }
int dap_attrib_message::get_rat(){return rat.get_byte(0); }
int dap_attrib_message::get_bls(){return bls.get_int(); }
int dap_attrib_message::get_mrs(){return mrs.get_int(); }
int dap_attrib_message::get_alq(){return alq.get_int(); }
int dap_attrib_message::get_bks(){return bks.get_int(); }
int dap_attrib_message::get_fsz(){return fsz.get_int(); }
int dap_attrib_message::get_mrn(){return mrn.get_int(); }
int dap_attrib_message::get_runsys(){return runsys.get_int(); }
int dap_attrib_message::get_deq(){return deq.get_int(); }
int dap_attrib_message::get_fop_bit(int b){return fop.get_bit(b); }
int dap_attrib_message::get_bsz(){return bsz.get_int(); }
int dap_attrib_message::get_dev_bit(int b){return dev.get_bit(b); }
int dap_attrib_message::get_lrl(){return lrl.get_int(); }
int dap_attrib_message::get_hbk(){return hbk.get_int(); }
int dap_attrib_message::get_ebk(){return ebk.get_int(); }
int dap_attrib_message::get_ffb(){return ffb.get_short(); }
int dap_attrib_message::get_sbn(){return sbn.get_int(); }
int dap_attrib_message::get_jnl(){return jnl.get_byte(0); }
// Returns the filesize in bytes
unsigned long dap_attrib_message::get_size()
{
int i_ebk = ebk.get_int();
if (i_ebk)
return ((i_ebk-1)*512 + ffb.get_int());
else
return 0;
}
void dap_attrib_message::set_datatype(int v) { datatype.set_byte(0,v); attmenu.set_bit(0); }
void dap_attrib_message::set_org(int v) { org.set_byte(0,v); attmenu.set_bit(1);}
void dap_attrib_message::set_rfm(int v) { rfm.set_byte(0,v); attmenu.set_bit(2);}
void dap_attrib_message::set_rat_bit(int v) { rat.set_bit(v); attmenu.set_bit(3);}
void dap_attrib_message::set_rat(int v) { rat.set_byte(0,v); attmenu.set_bit(3);}
void dap_attrib_message::clear_rat_bit(int v) { rat.clear_bit(v);}
void dap_attrib_message::set_bls(int v) { bls.set_short(v); attmenu.set_bit(4);}
void dap_attrib_message::set_mrs(int v) { mrs.set_short(v); attmenu.set_bit(5);}
void dap_attrib_message::set_alq(int v) { alq.set_int(v); attmenu.set_bit(6);}
void dap_attrib_message::set_bks(int v) { bks.set_byte(0,v); attmenu.set_bit(7);}
void dap_attrib_message::set_fsz(int v) { fsz.set_byte(0,v); attmenu.set_bit(8);}
void dap_attrib_message::set_mrn(int v) { mrn.set_short(v); attmenu.set_bit(9);}
void dap_attrib_message::set_runsys(int v) { runsys.set_short(v); attmenu.set_bit(10);}
void dap_attrib_message::set_deq(int v) { deq.set_short(v); attmenu.set_bit(11);}
void dap_attrib_message::set_fop_bit(int v) { fop.set_bit(v); attmenu.set_bit(12);}
void dap_attrib_message::set_bsz(int v) { bsz.set_byte(0,v); attmenu.set_bit(13);}
void dap_attrib_message::set_dev_bit(int v) { dev.set_bit(v); attmenu.set_bit(14);}
void dap_attrib_message::set_dev_byte(int b, int v) { dev.set_byte(b, v); attmenu.set_bit(14);}
void dap_attrib_message::set_lrl(int v) { lrl.set_short(v); attmenu.set_bit(16);}
void dap_attrib_message::set_hbk(int v) { hbk.set_int(v); attmenu.set_bit(17);}
void dap_attrib_message::set_ebk(int v) { ebk.set_int(v); attmenu.set_bit(18);}
void dap_attrib_message::set_ffb(int v) { ffb.set_short(v); attmenu.set_bit(19);}
void dap_attrib_message::set_sbn(int v) { sbn.set_short(v); attmenu.set_bit(20);}
void dap_attrib_message::remove_dev() {attmenu.clear_bit(14);}
void dap_attrib_message::set_fop(int v)
{
fop.set_byte(0, v && 0xFF);
fop.set_byte(1, (v>>8) && 0xFF);
fop.set_byte(2, (v>>16) && 0xFF);
fop.set_byte(3, (v>>24) && 0xFF);
attmenu.set_bit(12);
}
// Initialise an attrib message from a file
void dap_attrib_message::set_file(const char *file, bool show_dev)
{
struct stat st;
if (stat(file, &st) == 0)
{
set_stat(&st, show_dev);
}
}
// Initialise an attrib message from a stat structure
void dap_attrib_message::set_stat(struct stat *st, bool show_dev)
{
attmenu.clear_all();
set_org(FB$SEQ);
set_rfm(FB$STMLF);
set_bls(512);
set_alq(st->st_blocks); // This seems to be 512 byte blocks but I don't know why
set_ebk((st->st_size+511)/512); // Last block allocated
set_ffb(st->st_size%512);
set_bsz(8);
set_rat(0);
set_rat_bit(FB$CR); // VMS 7 STM files MUST have carriage control
// These DEV attributes make VMS request files in BLOCK mode so
// we only set them when we know we can cope with it.
if (show_dev)
{
set_dev_byte(0, 0x88);
set_dev_byte(1, 0xCB);
set_dev_byte(2, 0x4D);
}
// Set attributes for directories
if (S_ISDIR(st->st_mode))
{
set_rfm(FB$VAR);
clear_rat_bit(FB$CR);
set_rat_bit(FB$BLK);
set_lrl(512);
set_mrs(512);
set_fop_bit(FB$CTG);
}
}
//------------------------- dap_access_message() ------------------------------
bool dap_access_message::write(dap_connection &c)
{
send_header(c, true);
accfunc.write(c);
accopt.write(c);
filespec.write(c);
fac.write(c);
shr.write(c);
display.write(c);
// password.write(c);
return c.write();
}
bool dap_access_message::read(dap_connection &c)
{
if (!accfunc.read(c)) return false;
if (!accopt.read(c)) return false;
if (!filespec.read(c)) return false;
if (c.have_bytes(1) && !fac.read(c)) return false;
if (c.have_bytes(1) && !shr.read(c)) return false;
if (c.have_bytes(1) && !display.read(c)) return false;
if (c.have_bytes(1) && !password.read(c)) return false;
return true;
}
void dap_access_message::set_accfunc(int func)
{
accfunc.set_byte(0,func);
}
void dap_access_message::set_accopt(int opt)
{
accopt.set_byte(0,opt);
}
void dap_access_message::set_filespec(const char *fn)
{
filespec.set_string(fn);
}
void dap_access_message::set_fac(int ac)
{
// yes it's bits, but there's only 7 of them
fac.set_byte(0, ac);
}
void dap_access_message::set_shr(int ac)
{
// yes it's bits, but there's only 7 of them
shr.set_byte(0,ac);
}
void dap_access_message::set_display(int d)
{
unsigned char first = d&0x7f;
unsigned char second = 0;
// Just two more bits to set
if (d & 0x080) second = 1;
if (d & 0x100) second |= 2;
if (second) first |= 0x80;
display.set_byte(0, first);
display.set_byte(1, second);
}
int dap_access_message::get_accfunc()
{
return accfunc.get_byte(0);
}
char *dap_access_message::get_filespec()
{
return filespec.get_string();
}
int dap_access_message::get_accopt()
{
return accopt.get_byte(0);
}
int dap_access_message::get_fac()
{
return fac.get_byte(0);
}
int dap_access_message::get_shr()
{
return shr.get_byte(0);
}
int dap_access_message::get_display()
{
int d;
d = display.get_byte(0);
if (d&0x80)
{
d &= 0x7f;
d |= display.get_byte(1)<<7;
}
return d;
}
//------------------------ dap_control_message() ------------------------------
bool dap_control_message::write(dap_connection &c)
{
send_header(c, true);
ctlfunc.write(c);
ctlmenu.write(c);
if (ctlmenu.get_bit(0)) rac.write(c);
if (ctlmenu.get_bit(1)) key.write(c);
if (ctlmenu.get_bit(2)) krf.write(c);
if (ctlmenu.get_bit(3)) rop.write(c);
if (ctlmenu.get_bit(4)) hsh.write(c);
if (ctlmenu.get_bit(5)) display.write(c);
if (ctlmenu.get_bit(6)) blkcnt.write(c);
if (ctlmenu.get_bit(7)) usz.write(c);
return c.write();
}
bool dap_control_message::read(dap_connection &c)
{
if (!ctlfunc.read(c)) return false;
if (!ctlmenu.read(c)) return false;
if (ctlmenu.get_bit(0) && !rac.read(c)) return false;
if (ctlmenu.get_bit(1) && !key.read(c)) return false;
if (ctlmenu.get_bit(2) && !krf.read(c)) return false;
if (ctlmenu.get_bit(3) && !rop.read(c)) return false;
if (ctlmenu.get_bit(4) && !hsh.read(c)) return false;
if (ctlmenu.get_bit(5) && !display.read(c)) return false;
if (ctlmenu.get_bit(6) && !blkcnt.read(c)) return false;
if (ctlmenu.get_bit(7) && !usz.read(c)) return false;
return true;
}
void dap_control_message::set_ctlfunc(int f)
{
ctlfunc.set_byte(0,f);
}
void dap_control_message::set_rac(int f)
{
rac.set_byte(0,f);
ctlmenu.set_bit(0);
}
void dap_control_message::set_key(const char *k)
{
key.set_string(k);
ctlmenu.set_bit(1);
}
void dap_control_message::set_key(const char *k, int l)
{
key.set_value(k, l);
ctlmenu.set_bit(1);
}
void dap_control_message::set_krf(int f)
{
krf.set_byte(0,f);
ctlmenu.set_bit(2);
}
void dap_control_message::set_rop_bit(int f)
{
rop.set_bit(f);
ctlmenu.set_bit(3);
}
void dap_control_message::set_rop(int f)
{
rop.set_byte(0,f);
ctlmenu.set_bit(3);
}
int dap_control_message::get_ctlfunc()
{
return ctlfunc.get_byte(0);
}
int dap_control_message::get_rac()
{
return rac.get_byte(0);
}
char *dap_control_message::get_key()
{
return key.get_string();
}
unsigned long dap_control_message::get_long_key()
{
return key.get_int();
}
int dap_control_message::get_krf()
{
return krf.get_byte(0);
}
bool dap_control_message::get_rop_bit(int f)
{
return rop.get_bit(f);
}
int dap_control_message::get_display()
{
int d;
d = display.get_byte(0);
if (d&0x80)
{
d &= 0x7f;
d |= display.get_byte(1)<<7;
}
return d;
}
void dap_control_message::set_display(int d)
{
unsigned char first = d&0x7f;
unsigned char second = 0;
// Just two more bits to set
if (d & 0x080) second = 1;
if (d & 0x100) second |= 2;
if (second) first |= 0x80;
display.set_byte(0, first);
display.set_byte(1, second);
ctlmenu.set_bit(5);
}
void dap_control_message::set_blkcnt(int f)
{
blkcnt.set_byte(0,f);
ctlmenu.set_bit(6);
}
int dap_control_message::get_blkcnt()
{
return blkcnt.get_byte(0);
}
void dap_control_message::set_usz(int f)
{
usz.set_short(f);
ctlmenu.set_bit(7);
}
int dap_control_message::get_usz()
{
return usz.get_short();
}
//------------------------ dap_contran_message() ------------------------------
bool dap_contran_message::write(dap_connection &c)
{
send_header(c, false);
confunc.write(c);
return c.write();
}
bool dap_contran_message::read(dap_connection &c)
{
if (!confunc.read(c)) return false;
return true;
}
int dap_contran_message::get_confunc()
{
return confunc.get_byte(0);
}
void dap_contran_message::set_confunc(int f)
{
confunc.set_byte(0,f);
}
//--------------------------- dap_ack_message() ------------------------------
bool dap_ack_message::write(dap_connection &c)
{
send_header(c, true);
return c.write();
}
bool dap_ack_message::read(dap_connection &c)
{
return true;
}
//------------------------- dap_accomp_message() ------------------------------
bool dap_accomp_message::write(dap_connection &c)
{
send_header(c, true);
cmpfunc.write(c);
if (send_fop) fop.write(c);
// check.write(c);
return c.write();
}
bool dap_accomp_message::read(dap_connection &c)
{
if (!cmpfunc.read(c)) return false;
if (c.have_bytes(1) && !fop.read(c)) return false; // Optional
if (c.have_bytes(1) && !check.read(c)) return false; // Optional
return true;
}
int dap_accomp_message::get_cmpfunc()
{
return cmpfunc.get_byte(0);
}
int dap_accomp_message::get_fop_bit(int b)
{
return fop.get_bit(b);
}
int dap_accomp_message::get_check()
{
return cmpfunc.get_int();
}
void dap_accomp_message::set_cmpfunc(int f)
{
cmpfunc.set_byte(0,f);
}
void dap_accomp_message::set_fop_bit(int bit)
{
send_fop = true;
fop.set_bit(bit);
}
void dap_accomp_message::set_check(int c)
{
cmpfunc.set_int(c);
}
//---------------------------- dap_data_message() -----------------------------
dap_data_message::~dap_data_message()
{
if (local_data) delete[] data;
}
bool dap_data_message::write(dap_connection &c)
{
send_header(c, false);// Never send a length count
recnum.write(c);
c.putbytes(data, length);
return c.write();
}
bool dap_data_message::write_with_len(dap_connection &c)
{
if (length+recnum.get_length() >= 255)
send_long_header(c);
else
send_header(c, true);
recnum.write(c);
c.putbytes(data, length);
return c.write();
}
// Only call this if you know what you're doing. (ie you know EXACTLY
// the length of the recnum field)
bool dap_data_message::write_with_len256(dap_connection &c)
{
send_long_header(c);
recnum.write(c);
c.putbytes(data, length);
return c.write();
}
bool dap_data_message::read(dap_connection &c)
{
if (!recnum.read(c)) return false;
// The length of the message includes the recnum field
length -= recnum.get_length()+1;
char *b = c.getbytes(length);
if (!b) return false;
// Just keep a pointer to the transfer buffer for speed
data = b;
local_data = false;
return true;
}
int dap_data_message::get_datalen()
{
return length;
}
// Horribly dangerous but beautifully fast.
char *dap_data_message::get_dataptr()
{
return data;
}
void dap_data_message::get_data(char *d, int *len)
{
*len = length;
memcpy(d, data, length);
}
void dap_data_message::set_data(const char *d, int len)
{
if (data && local_data) delete[] data;
data = new char[len];
memcpy(data, d, len);
length = len;
local_data = true;
}
int dap_data_message::get_recnum()
{
return recnum.get_short();
}
void dap_data_message::set_recnum(int r)
{
recnum.set_short(r);
}
//------------------------- dap_status_message() ------------------------------
bool dap_status_message::write(dap_connection &c)
{
send_header(c, true);
stscode.write(c);
// TODO: which of these we send depends on all sorts of things (including
// TODO: the ACCESS message)
if (rfa.get_int()) rfa.write(c);
// recnum.write(c);
// stv.write(c);
return c.write();
}
bool dap_status_message::read(dap_connection &c)
{
if (!stscode.read(c)) return false;
if (c.have_bytes(1) && !rfa.read(c)) return false;
if (c.have_bytes(1) && !recnum.read(c)) return false;
if (c.have_bytes(1) && !stv.read(c)) return false;
return true;
}
int dap_status_message::get_code()
{
return stscode.get_short();
}
void dap_status_message::set_code(int s)
{
stscode.set_short(s);
}
long dap_status_message::get_rfa()
{
return rfa.get_short();
}
void dap_status_message::set_rfa(long r)
{
rfa.set_int(r);
}
void dap_status_message::set_errno()
{
// 0x4000 says this is an Open error code (which most of ours are)
stscode.set_short(0x4000 | errno_to_stscode());
}
void dap_status_message::set_errno(int er)
{
errno = er;
stscode.set_short(0x4000 | errno_to_stscode());
}
// Convert errno to a DAP status message:
int dap_status_message::errno_to_stscode()
{
switch (errno) // Loads missing here!!
{
case 0: return 0225;
case EPERM: return 0125;
case ENOENT: return 062;
case EINTR: return 011;
case EIO: return 02;
case ENXIO: return 035;
case ENOMEM: return 037;
case EACCES: return 0125;
case EBUSY: return 041;
case EEXIST: return 055;
case ENODEV: return 035;
case ENOTDIR: return 040;
case EINVAL: return 0203;
case ENFILE:
case EMFILE: return 0307;
case ETXTBSY: return 060;
case EFBIG: return 0301;
case EROFS: return 0164;
case ENOTCONN: return 01;
case ENOSPC: return 065;
default:
DAPLOG((LOG_DEBUG, "no DAP error for %d - sending default\n", errno));
return 01;
}
}
char *dap_status_message::get_message()
{
// MACCODEs
switch (stscode.get_int() >> 12)
{
case 2:
case 010:
case 011:
switch (stscode.get_int() & 01777)
{
// CONFIG message errors;
case 0000: return "Unspecified DAP message error.";
case 0010: return "DAP message type field (TYPE) error.";
case 0100: return "Unknown field in CONFIG message";
case 0110: return "DAP message flags field (FLAGS)";
case 0111: return "Data stream identification field (STREAMID).";
case 0112: return "Length field (LENGTH).";
case 0113: return "Length extension field (LEN256)";
case 0114: return "BITCNT field (BITCNT)";
case 0120: return "Buffer size field (BUFSIZ).";
case 0121: return "Operating system type field (OSTYPE).";
case 0122: return "File system type field (FILESYS).";
case 0123: return "DAP version number field (VERNUM).";
case 0124: return "ECO version number field (ECONUM).";
case 0125: return "USER protocol version number field (USRNUM).";
case 0126: return "DEC software release number field (SOFTVER).";
case 0127: return "User software release number field (USRSOFT).";
case 0130: return "System capabilities field (SYSCAP).";
// ATTRIB message errors
case 0200: return "Unknown field in ATTRIB message";
case 0210: return "DAP message flags field (FLAGS).";
case 0211: return "Data stream identification field (STREAMID).";
case 0212: return "Length field (LENGTH).";
case 0213: return "Length extension field (LEN 256)";
case 0214: return "Bit count field (BITCNT)";
case 0215: return "System specific field (SYSPEC).";
case 0220: return "Attributes menu field (ATTMENU).";
case 0221: return "Data type field (DATATYPE).";
case 0222: return "File organization field (ORG).";
case 0223: return "Record format field (RFM).";
case 0224: return "Record attributes field (RAT).";
case 0225: return "Block size field (BLS).";
case 0226: return "Maximum record size field (MRS).";
case 0227: return "Allocation quantity field (ALQ).";
case 0230: return "Bucket size field (BKS).";
case 0231: return "Fixed control area size field (FSZ).";
case 0232: return "Maximum record number field (MRN).";
case 0233: return "Run-time system field (RUNSYS).";
case 0234: return "Default extension quantity field (DEQ).";
case 0235: return "File options field (FOP).";
case 0236: return "Byte size field (BSZ).";
case 0237: return "Device characteristics field (DEV).";
case 0240: return "Spooling device characteristics field (SDC); Reserved.";
case 0241: return "Longest record length field (LRL).";
case 0242: return "Highest virtual block allocated field (HBK).";
case 0243: return "End of file block field (EBK).";
case 0244: return "First free byte field (FFB).";
case 0245: return "Starting LBN for contiguous file (SBN).";
// ACCESS message errors
case 0300: return "Unknown field in ACCESS message.";
case 0310: return "DAP message flags field (FLAGS).";
case 0311: return "Data stream identification field (STREAMID).";
case 0312: return "Length field (LENGTH).";
case 0313: return "Length extension field (LEN256)";
case 0314: return "Bit count field (BITCNT)";
case 0315: return "System specific field (SYSPEC).";
case 0320: return "Access function field (ACCFUNC).";
case 0321: return "Access options field (ACCOPT).";
case 0322: return "File specification field (FILESPEC).";
case 0323: return "File access field (FAC).";
case 0324: return "File sharing field (SHR).";
case 0325: return "Display attributes request field (DISPLAY).";
case 0326: return "File password field (PASSWORD).";
// CONTROL message errors
case 0400: return "Unknown field in CONTROL message";
case 0410: return "DAP message flags field (FLAGS).";
case 0411: return "Data stream identification field (STREAMID).";
case 0412: return "Length field (LENGTH).";
case 0413: return "Length extension field (LEN256)";
case 0414: return "Bit count field (BITCNT)";
case 0415: return "System specific field (SYSPEC).";
case 0420: return "Control function field (CTLFUNC).";
case 0421: return "Control menu field (CTLMENU).";
case 0422: return "Record access field (RAC).";
case 0423: return "Key field (KEY).";
case 0424: return "Key of reference field (KRF).";
case 0425: return "Record options field (ROP).";
case 0426: return "Hash code field (HSH); Reserved for future use.";
case 0427: return "Display attributes request field (DISPLAY).";
//CONTINUE message errors
case 0500: return "Unknown field in continue message.";
case 0510: return "DAP message flags field (FLAGS).";
case 0511: return "Data stream identification field (STREAMID).";
case 0512: return "Length field (LENGTH).";
case 0513: return "Length extension field (LEN256)";
case 0514: return "Bit count field (BITCNT)";
case 0515: return "System specific field (SYSPEC).";
case 0520: return "Continue transfer function field (CONFUNC).";
// ACK message errors
case 0600: return "Unknown field in ACK message.";
case 0610: return "DAP message flags field (FLAGS).";
case 0611: return "Data stream identification field (STREAMID).";
case 0612: return "Length field (LENGTH).";
case 0613: return "Length extension field (LEN256)";
case 0614: return "Bit count field (BITCNT)";
case 0615: return "System specific field (SYSPEC).";
// ACCOMP errors
case 0700: return "Unknown field in ACCOMP message";
case 0710: return "DAP message flags field (FLAGS).";
case 0711: return "Data stream identification field (STREAMID).";
case 0712: return "Length field (LENGTH).";
case 0713: return "Length extension field (LEN256)";
case 0714: return "Bit count field (BITCNT)";
case 0715: return "System specific field (SYSPEC).";
case 0720: return "Access complete function field (CMPFUNC).";
case 0721: return "File options field (FOP).";
case 0722: return "Checksum field (CHECK).";
// DATA message errors
case 01000: return "Unknown field in DATA message";
case 01010: return "DAP message flags field (FLAGS).";
case 01011: return "Data stream identification field (STREAMID).";
case 01012: return "Length field (LENGTH).";
case 01013: return "Length extension field (LEN256)";
case 01014: return "Bit count field (BITCNT)";
case 01015: return "System specific field (SYSPEC).";
case 01020: return "Record number field (RECNUM).";
case 01021: return "File data field (FILEDATA).";
// STATUS message errors
case 01100: return "Unknown field in STATUS message.";
case 01110: return "DAP message flags field (FLAGS).";
case 01111: return "Data stream identification field (STREAMID).";
case 01112: return "Length field (LENGTH).";
case 01113: return "Length extension field (LEN256)";
case 01114: return "Bit count field (BITCNT)";
case 01115: return "System specific field (SYSPEC).";
case 01120: return "Macro status code field (MACCODE).";
case 01121: return "Micro status code field (MICCODE).";
case 01122: return "Record file address field (RFA).";
case 01123: return "Record number field (RECNUM).";
case 01124: return "Secondary status field (STV).";
// KEYDEF message errors
case 01200: return "Unknown field in KEYDEF message";
case 01210: return "DAP message flags field (FLAGS)";
case 01211: return "Data stream identification field (STREAMID)";
case 01212: return "Length field (LENGTH)";
case 01213: return "Length extension field (LEN256)";
case 01214: return "Bit count field (BITCNT)";
case 01215: return "System specific field (SYSPEC).";
case 01220: return "Key definition menu field (KEYMENU)";
case 01221: return "Key option flags field (FLG)";
case 01222: return "Data bucket fill quantity field (DFL)";
case 01223: return "Index bucket fill quantity field (IFL)";
case 01224: return "Key segment repeat count field (SEGCNT)";
case 01225: return "Key segment position field (POS)";
case 01226: return "Key segment size field (SIZ)";
case 01227: return "Key of reference field (REF)";
case 01230: return "Key name field (KNM)";
case 01231: return "Null key character field (NUL)";
case 01232: return "Index area number field (IAN)";
case 01233: return "Lowest level area number field (LAN)";
case 01234: return "Data level area number field (DAN)";
case 01235: return "Key data type field (DTP)";
case 01236: return "Root VBN for this key field (RVB)";
case 01237: return "Hash algorithm value field (HAL)";
case 01240: return "First data bucket VBN field (DVB).";
case 01241: return "Data bucket size field (DBS).";
case 01242: return "Index bucket size field (IBS).";
case 01243: return "Level of root bucket field (LVL).";
case 01244: return "Total key size field (TKS).";
case 01245: return "Minimum record size field (MRL).";
// ALLOC message errors
case 01300: return "Unknown field in ALLOC message";
case 01310: return "DAP message flags field (FLAGS)";
case 01311: return "Data stream identification field (STREAMID)";
case 01312: return "Length field (LENGTH)";
case 01313: return "Length extension field (LEN256)";
case 01314: return "Bit count field (BITCNT)";
case 01315: return "System specific field (SYSPEC).";
case 01320: return "Allocation menu field (ALLMENU)";
case 01321: return "Relative volume number field (VOL)";
case 01322: return "Alignment options field (ALN)";
case 01323: return "Allocation options field (AOP)";
case 01324: return "Starting location field (LOC)";
case 01325: return "Related file identification field (RFI)";
case 01326: return "Allocation quantity field (ALQ)";
case 01327: return "Area identification field (AID)";
case 01330: return "Bucket size field (BKZ)";
case 01331: return "Default extension quantity field (DEQ)";
// SUMMARY message errors
case 01400: return "Unknown field in SUMMARY message.";
case 01410: return "DAP message flags field (FLAGS).";
case 01411: return "Data stream identification field (STREAMID).";
case 01412: return "Length field (LENGTH)";
case 01413: return "Length extension field (LEN256)";
case 01414: return "Bit count field (BITCNT)";
case 01415: return "System specific field (SYSPEC).";
case 01420: return "Summary menu field (SUMENU)";
case 01421: return "Number of keys field (NOK)";
case 01422: return "Number of areas field (NOA)";
case 01423: return "Number of record descriptors field (NOR)";
case 01424: return "Prologue version number (PVN)";
// DATE message errors
case 01500: return "Unknown field in DATE message";
case 01510: return "DAP message flags field (FLAGS)";
case 01511: return "Data stream identification field (STREAMID)";
case 01512: return "Length field (LENGTH)";
case 01513: return "Length extension field (LEN256)";
case 01514: return "Bit count field (BITCNT)";
case 01515: return "System specific field (SYSPEC).";
case 01520: return "Date and time menu field (DATMENU)";
case 01521: return "Creation date and time field (CDT)";
case 01522: return "Last update date and time field (RDT)";
case 01523: return "Deletion date and time field (EDT)";
case 01524: return "Revision number field (RVN).";
// PROTECT message errors
case 01600: return "Unknown field in PROTECT message";
case 01610: return "DAP message flags field (FLAGS)";
case 01611: return "Data stream identification field (STREAMID)";
case 01612: return "Length field (LENGTH)";
case 01613: return "Length extension field (LEN256)";
case 01614: return "Bit count field (BITCNT)";
case 01615: return "System specific field (SYSPEC).";
case 01620: return "Protection menu field (PROTMENU)";
case 01621: return "File owner field (OWNER)";
case 01622: return "System protection field (PROTSYS)";
case 01623: return "Owner protection field (PROTOWN)";
case 01624: return "Group protection field (PROTGRP)";
case 01625: return "World protection field (PROTWLD)";
// NAME message errors
case 01700: return "Unknown field in NAME message";
case 01710: return "DAP message flags field (FLAGS)";
case 01711: return "Data stream identification field (STREAMID)";
case 01712: return "Length field (LENGTH)";
case 01713: return "Length extension field (LEN256)";
case 01714: return "Bit count field (BITCNT)";
case 01715: return "System specific field (SYSPEC).";
case 01720: return "Name type field (NAMETYPE)";
case 01721: return "Name field (NAMESPEC)";
default:
return "Request unsupported";
}
case 3:
return "Unknown Error"; // Reserved
case 0:
case 1:
case 4:
case 5:
case 6:
case 7:
switch (stscode.get_int() & 0xFF)
{
case 01: return "operation aborted.";
case 02: return "F11-ACP could not access file.";
case 03: return "\"FILE\" activity precludes operation.";
case 04: return "bad area ID.";
case 05: return "alignment options error.";
case 06: return "allocation quantity too large or 0 value.";
case 07: return "not ANSI \"D\" format.";
case 010: return "allocation options error.";
case 011: return "invalid (i.e., synch) operation at AST level.";
case 012: return "attribute read error.";
case 013: return "attribute write error.";
case 014: return "bucket size too large.";
case 015: return "bucket size too large.";
case 016: return "\"BLN\" length error.";
case 017: return "beginning of file detected.";
case 020: return "private pool address.";
case 021: return "private pool size.";
case 022: return "internal RMS error condition detected.";
case 023: return "cannot connect RAB.";
case 024: return "$UPDATE changed a key without having attribute of XB$CHG set.";
case 025: return "bucket format check-byte failure.";
case 026: return "RSTS/E close function failed.";
case 027: return "invalid or unsupported \"COD\" field.";
case 030: return "F11-ACP could not create file (STV=sys err code).";
case 031: return "no current record (operation not preceded by GET/FIND).";
case 032: return "F11-ACP deaccess error during \"CLOSE\".";
case 033: return "data \"AREA\" number invalid.";
case 034: return "RFA-Accessed record was deleted.";
case 035: return "bad device, or inappropriate device type.";
case 036: return "error in directory name.";
case 037: return "dynamic memory exhausted.";
case 040: return "directory not found.";
case 041: return "device not ready.";
case 042: return "device has positioning error.";
case 043: return "\"DTP\" field invalid.";
case 044: return "duplicate key detected, XB$DUP not set.";
case 045: return "RSX-F11ACP enter function failed.";
case 046: return "operation not selected in \"ORG$\" macro.";
case 047: return "end-of-file.";
case 050: return "expanded string area too short.";
case 051: return "file expiration date not yet reached.";
case 052: return "file extend failure.";
case 053: return "not a valid FAB (\"BID\" NOT = FB$BID).";
case 054: return "illegal FAC for REC-OP,0, or FB$PUT not set for \"CREATE\".";
case 055: return "file already exists.";
case 056: return "invalid file I.D.";
case 057: return "invalid flag-bits combination.";
case 060: return "file is locked by other user.";
case 061: return "RSX-F11ACP \"FIND\" function failed.";
case 062: return "file not found.";
case 063: return "error in file name.";
case 064: return "invalid file options.";
case 065: return "DEVICE/FILE full.";
case 066: return "index \"AREA\" number invalid.";
case 067: return "invalid IFI value or unopened file.";
case 070: return "maximum NUM(254) areas/key XABS exceeded.";
case 071: return "$INIT macro never issued.";
case 072: return "operation illegal or invalid for file organization.";
case 073: return "illegal record encountered (with sequential files only).";
case 074: return "invalid ISI value, on unconnected RAB.";
case 075: return "bad KEY buffer address (KBF=0).";
case 076: return "invalid KEY field (KEY=0/neg).";
case 077: return "invalid key-of-reference ($GET/$FIND).";
case 0100: return "KEY size too large.";
case 0101: return "lowest-level-index \"AREA\" number invalid.";
case 0102: return "not ANSI labeled tape.";
case 0103: return "logical channel busy.";
case 0104: return "logical channel number too large.";
case 0105: return "logical extend error, prior extend still valid.";
case 0106: return "\"LOC\" field invalid.";
case 0107: return "buffer mapping error.";
case 0110: return "F11-ACP could not mark file for deletion.";
case 0111: return "MRN value=neg or relative key>MRN.";
case 0112: return "MRS value=0 for fixed length records. Also 0 for relative files.";
case 0113: return "\"NAM\" block address invalid (NAM=0, or not accessible).";
case 0114: return "not positioned to EOF (sequential files only).";
case 0115: return "cannot allocate internal index descriptor.";
case 0116: return "indexed file; no primary key defined.";
case 0117: return "RSTS/E open function failed.";
case 0120: return "XAB'S not in correct order.";
case 0121: return "invalid file organization value.";
case 0122: return "error in file's prologue (reconstruct file).";
case 0123: return "\"POS\" field invalid (POS>MRS,STV=XAB indicator).";
case 0124: return "bad file date field retrieved.";
case 0125: return "privilege violation (OS denies access).";
case 0126: return "not a valid RAB (\"BID\" NOT=RB$BID).";
case 0127: return "illegal RAC value.";
case 0130: return "illegal record attributes.";
case 0131: return "invalid record buffer address (\"ODD\", or not word-aligned if BLK-IO).";
case 0132: return "file read error.";
case 0133: return "record already exists.";
case 0134: return "bad RFA value (RFA=0).";
case 0135: return "invalid record format.";
case 0136: return "target bucket locked by another stream.";
case 0137: return "RSX-F11 ACP remove function failed.";
case 0140: return "record not found.";
case 0141: return "record not locked.";
case 0143: return "error while reading prologue.";
case 0144: return "invalid RRV record encountered.";
case 0145: return "RAB stream currently active.";
case 0146: return "bad record size (RSZ>MRS, or NOT=MRS if fixed length records).";
case 0147: return "record too big for user's buffer.";
case 0150: return "primary key out of sequence (RAC=RB$SEQ for $PUT).";
case 0151: return "\"SHR\" field invalid for file (cannot share sequential files).";
case 0152: return "\"SIZ field invalid.";
case 0153: return "stack too big for save area.";
case 0154: return "system directive error.";
case 0155: return "index tree error.";
case 0156: return "error in file type extension on FNS too big.";
case 0157: return "invalid user buffer addr (0, odd, or if BLK-IO not word aligned).";
case 0160: return "invalid user buffer size (USZ=0).";
case 0161: return "error in version number.";
case 0162: return "invalid volume number.";
case 0163: return "file write error (STV=sys err code).";
case 0164: return "device is write locked.";
case 0165: return "error while writing prologue.";
case 0166: return "not a valid XAB (@XAB=ODD,STV=XAB indicator).";
case 0167: return "default directory invalid.";
case 0170: return "cannot access argument list.";
case 0171: return "cannot close file.";
case 0172: return "cannot deliver AST.";
case 0173: return "channel assignment failure (STV=sys err code).";
case 0174: return "terminal output ignored due to (CNTRL) O.";
case 0175: return "terminal input aborted due to (CNTRL) Y.";
case 0176: return "default filename string address error.";
case 0177: return "invalid device I.D. field.";
case 0200: return "expanded string address error.";
case 0201: return "filename string address error.";
case 0202: return "FSZ field invalid.";
case 0203: return "invalid argument list.";
case 0204: return "known file found.";
case 0205: return "logical name error.";
case 0206: return "node name error.";
case 0207: return "operation successful.";
case 0210: return "record inserted had duplicate key.";
case 0211: return "index update error occurred-record inserted.";
case 0212: return "record locked but read anyway.";
case 0213: return "record inserted in primary o.k.; may not be accessible by secondary keys or RFA.";
case 0214: return "file was created, but not opened.";
case 0215: return "bad prompt buffer address.";
case 0216: return "async. operation pending completion.";
case 0217: return "quoted string error.";
case 0220: return "record header buffer invalid.";
case 0221: return "invalid related file.";
case 0222: return "invalid resultant string size.";
case 0223: return "invalid resultant string address.";
case 0224: return "operation not sequential.";
case 0225: return "operation successful.";
case 0226: return "created file superseded existing version.";
case 0227: return "filename syntax error.";
case 0230: return "time-out period expired.";
case 0231: return "FB$BLK record attribute not supported.";
case 0232: return "bad byte size.";
case 0233: return "cannot disconnect RAB.";
case 0234: return "cannot get JFN for file.";
case 0235: return "cannot open file.";
case 0236: return "bad JFN value.";
case 0237: return "cannot position to end-of-file.";
case 0240: return "cannot truncate file.";
case 0241: return "file is currently in an undefined state; access is denied.";
case 0242: return "file must be opened for exclusive access.";
case 0243: return "directory full.";
case 0244: return "handler not in system.";
case 0245: return "fatal hardware error.";
case 0246: return "attempt to write beyond EOF.";
case 0247: return "hardware option not present.";
case 0250: return "device not attached.";
case 0251: return "device already attached.";
case 0252: return "device not attachable.";
case 0253: return "sharable resource in use.";
case 0254: return "illegal overlay request.";
case 0255: return "block check or CRC error.";
case 0256: return "caller's nodes exhausted.";
case 0257: return "index file full.";
case 0260: return "file header full.";
case 0261: return "accessed for write.";
case 0262: return "file header checksum failure.";
case 0263: return "attribute control list error.";
case 0264: return "file already accessed on LUN.";
case 0265: return "bad tape format.";
case 0266: return "illegal operation on file descriptor block.";
case 0267: return "rename; 2 different devices.";
case 0270: return "rename; new filename already in use.";
case 0271: return "cannot rename old file system.";
case 0272: return "file already open.";
case 0273: return "parity error on device.";
case 0274: return "end of volume detected.";
case 0275: return "data over-run.";
case 0276: return "bad block on device.";
case 0277: return "end of tape detected.";
case 0300: return "no buffer space for file.";
case 0301: return "file exceeds allocated space -- no blks.";
case 0302: return "specified task not installed.";
case 0303: return "unlock error.";
case 0304: return "no file accessed on LUN.";
case 0305: return "send/receive failure.";
case 0306: return "spool or submit command file failure.";
case 0307: return "no more files.";
case 0310: return "DAP file transfer Checksum error.";
case 0311: return "Quota exceeded";
case 0312: return "internal network error condition detected.";
case 0313: return "terminal input aborted due to (CNTRL) C.";
case 0314: return "data bucket fill size > bucket size in XAB.";
case 0315: return "invalid expanded string length.";
case 0316: return "illegal bucket format.";
case 0317: return "bucket size of LAN NOT = IAN in XAB.";
case 0320: return "index not initialized.";
case 0321: return "illegal file attributes (corrupt file header).";
case 0322: return "index bucket fill size > bucket size in XAB.";
case 0323: return "key name buffer not readable or writeable in XAB.";
case 0324: return "index bucket will not hold two keys for key of reference.";
case 0325: return "multi-buffer count invalid (negative value).";
case 0326: return "network operation failed at remote node.";
case 0327: return "record is already locked.";
case 0330: return "deleted record successfully accessed.";
case 0331: return "retrieved record exceeds specified key value.";
case 0332: return "key XAB not filled in.";
case 0333: return "nonexistent record successfully accessed.";
case 0334: return "unsupported prologue version.";
case 0335: return "illegal key-of-reference in XAB.";
case 0336: return "invalid resultant string length.";
case 0337: return "error updating rrv's, some paths to data may be lost.";
case 0340: return "data types other than string limited to one segment in XAB.";
case 0341: return "reserved";
case 0342: return "operation not supported over network.";
case 0343: return "error on write behind.";
case 0344: return "invalid wildcard operation.";
case 0345: return "working set full (can not lock buffers in working set.)";
case 0346: return "directory listing -- error in reading volume-set name, directory name, of file name.";
case 0347: return "directory listing -- error in reading file attributes.";
case 0350: return "directory listing -- protection violation in trying to read the volume-set, directory or file name.";
case 0351: return "directory listing -- protection violation in trying to read file attributes.";
case 0352: return "directory listing -- file attributes do not exist.";
case 0353: return "directory listing -- unable to recover directory list after Continue Transfer (Skip).";
case 0354: return "sharing not enabled.";
case 0355: return "sharing page count exceeded.";
case 0356: return "UPI bit not set when sharing with BRO set.";
case 0357: return "error in access control string (poor man's route through error).";
case 0360: return "terminator not seen.";
case 0361: return "bad escape sequence.";
case 0362: return "partial escape sequence.";
case 0363: return "invalid wildcard context value.";
case 0364: return "invalid directory rename operation.";
case 0365: return "user structure (FAB/RAB) became invalid during operation.";
case 0366: return "network file transfer made precludes operation.";
default:
return "unknown transfer error";
}
case 012:
return "Message received out of synchronisation";
}
return "WTF";
}
//------------------------------ dap_name_message() ---------------------------
bool dap_name_message::write(dap_connection &c)
{
send_header(c, true);
nametype.write(c);
namespec.write(c);
return c.write();
}
bool dap_name_message::read(dap_connection &c)
{
if (!nametype.read(c)) return false;
if (!namespec.read(c)) return false;
return true;
}
int dap_name_message::get_nametype()
{
return nametype.get_byte(0);
}
char *dap_name_message::get_namespec()
{
return namespec.get_string();
}
void dap_name_message::set_nametype(int t)
{
nametype.set_byte(0, t);
}
void dap_name_message::set_namespec(const char *n)
{
namespec.set_string(n);
}
//------------------------------- dap_date_message() --------------------------
bool dap_date_message::write(dap_connection &c)
{
send_header(c, true);
datmenu.write(c);
if (datmenu.get_bit(0)) cdt.write(c);
if (datmenu.get_bit(1)) rdt.write(c);
if (datmenu.get_bit(2)) edt.write(c);
if (datmenu.get_bit(3)) rvn.write(c);
if (datmenu.get_bit(4)) bdt.write(c);
return c.write();
}
bool dap_date_message::read(dap_connection &c)
{
datmenu.read(c);
if (datmenu.get_bit(0) && !cdt.read(c)) return false;
if (datmenu.get_bit(1) && !rdt.read(c)) return false;
if (datmenu.get_bit(2) && !edt.read(c)) return false;
if (datmenu.get_bit(3) && !rvn.read(c)) return false;
if (datmenu.get_bit(4) && !bdt.read(c)) return false;
// Bit 6 is the Ultrix changed date but I don't know what bit 5 is.
// Since we don't use either date I'll just dump them both in the same
// place for now (and hope they are both in the same format!)
if (datmenu.get_bit(5) && !udt.read(c)) return false;
if (datmenu.get_bit(6) && !udt.read(c)) return false;
return true;
}
char *dap_date_message::get_cdt()
{
return cdt.get_string();
}
char *dap_date_message::get_rdt()
{
return rdt.get_string();
}
char *dap_date_message::get_edt()
{
return edt.get_string();
}
char *dap_date_message::get_bdt()
{
return bdt.get_string();
}
char *dap_date_message::get_udt()
{
return udt.get_string();
}
time_t dap_date_message::get_cdt_time()
{
return string_to_time_t(cdt.get_string());
}
time_t dap_date_message::get_rdt_time()
{
return string_to_time_t(rdt.get_string());
}
time_t dap_date_message::get_edt_time()
{
return string_to_time_t(edt.get_string());
}
time_t dap_date_message::get_bdt_time()
{
return string_to_time_t(bdt.get_string());
}
time_t dap_date_message::get_udt_time()
{
return string_to_time_t(udt.get_string());
}
int dap_date_message::get_rvn()
{
return rvn.get_short();
}
void dap_date_message::set_cdt(time_t t)
{
cdt.set_string(time_to_string(t));
datmenu.set_bit(0);
}
void dap_date_message::set_rdt(time_t t)
{
rdt.set_string(time_to_string(t));
datmenu.set_bit(1);
}
void dap_date_message::set_edt(time_t t)
{
edt.set_string(time_to_string(t));
datmenu.set_bit(2);
}
void dap_date_message::set_bdt(time_t t)
{
bdt.set_string(time_to_string(t));
datmenu.set_bit(4);
}
void dap_date_message::set_rvn(int r)
{
rvn.set_short(r);
datmenu.set_bit(3);
}
char *dap_date_message::time_to_string(time_t t)
{
static char d[25];
struct tm tm = *localtime(&t);
// This causes a warning because of the 2-digit year but
// it's what DAP requires!
strftime(d, sizeof(d), "%d-%b-%y %H:%M:%S", &tm);
// Convert the month to uppercase (strftime makes the last two letters lower)
d[4] = toupper(d[4]);
d[5] = toupper(d[5]);
return d;
}
time_t dap_date_message::string_to_time_t(const char *d)
{
struct tm tm;
char month[5];
memset(&tm, 0, sizeof(tm));
sscanf(d, "%02d-%3s-%02d %02d:%02d:%02d",
&tm.tm_mday, month, &tm.tm_year,
&tm.tm_hour, &tm.tm_min, &tm.tm_sec);
tm.tm_isdst = -1;
int i = 0;
while (i < NUM_MONTHS)
{
if (!strcmp(months[i++], month))
{
tm.tm_mon = i;
break;
}
}
// Pivot year
if (tm.tm_year >= 70)
tm.tm_year += 1900;
else
tm.tm_year += 2000;
tm.tm_year -= 1900; // for a valid 'struct tm'
return mktime(&tm);
}
// Make a two-digit date into a 4-digit one. using 1970 as the pivot date
char *dap_date_message::make_y2k(char *dt)
{
static char y2kdate[25];
int year;
int timepos;
strcpy(y2kdate, dt);
// Workaround for Y2K bug in Ultrix:
// Dates come back as three digits with 2000 as 100
if (dt[9] == ' ')
{
// Correct behaviour
year = (dt[7]-'0')*10 + dt[8]-'0';
if (year >= 70)
year += 1900;
else
year += 2000;
timepos = 7;
}
else
{
// Broken behaviour
year = (dt[7]-'0')*100 + (dt[8]-'0')*10 + dt[9]-'0';
if (year >= 70)
year += 1900;
else
year += 2000;
timepos = 8;
}
char yearstr[5];
sprintf(yearstr, "%04d", year);
y2kdate[7] = '\0';
strcat(y2kdate, yearstr);
strcat(y2kdate, dt+timepos+2);
// Because the year is 3 digits on broken Ultrix, the seconds
// are truncated to 1 digit. Add a trailing zero so they look nice.
if (timepos == 8)
strcat(y2kdate, "0");
return y2kdate;
}
char *dap_date_message::months[]={"JAN", "FEB", "MAR", "APR", "MAY", "JUN",
"JUL", "AUG", "SEP", "OCT", "NOV", "DEC"};
//------------------------- dap_alloc_message() ------------------------------
bool dap_alloc_message::read(dap_connection &c)
{
allmenu.read(c);
if (allmenu.get_bit(0) && !vol.read(c)) return false;
if (allmenu.get_bit(1) && !aln.read(c)) return false;
if (allmenu.get_bit(2) && !aop.read(c)) return false;
if (allmenu.get_bit(3) && !loc.read(c)) return false;
if (allmenu.get_bit(4) && !rfi.read(c)) return false;
if (allmenu.get_bit(5) && !alq.read(c)) return false;
if (allmenu.get_bit(6) && !aid.read(c)) return false;
if (allmenu.get_bit(7) && !bkz.read(c)) return false;
if (allmenu.get_bit(8) && !deq.read(c)) return false;
return true;
}
bool dap_alloc_message::write(dap_connection &c)
{
send_header(c, true);
allmenu.write(c);
if (allmenu.get_bit(0)) vol.write(c);
if (allmenu.get_bit(1)) aln.write(c);
if (allmenu.get_bit(2)) aop.write(c);
if (allmenu.get_bit(3)) loc.write(c);
if (allmenu.get_bit(4)) rfi.write(c);
if (allmenu.get_bit(5)) alq.write(c);
if (allmenu.get_bit(6)) aid.write(c);
if (allmenu.get_bit(7)) bkz.write(c);
if (allmenu.get_bit(8)) deq.write(c);
return c.write();
}
//------------------------ dap_protect_message() ------------------------------
bool dap_protect_message::read(dap_connection &c)
{
protmenu.read(c);
if (protmenu.get_bit(0) && !owner.read(c)) return false;
if (protmenu.get_bit(1) && !protsys.read(c)) return false;
if (protmenu.get_bit(2) && !protown.read(c)) return false;
if (protmenu.get_bit(3) && !protgrp.read(c)) return false;
if (protmenu.get_bit(4) && !protwld.read(c)) return false;
return true;
}
bool dap_protect_message::write(dap_connection &c)
{
send_header(c, true);
protmenu.write(c);
if (protmenu.get_bit(0)) owner.write(c);
if (protmenu.get_bit(1)) protsys.write(c);
if (protmenu.get_bit(2)) protown.write(c);
if (protmenu.get_bit(3)) protgrp.write(c);
if (protmenu.get_bit(4)) protwld.write(c);
return c.write();
}
mode_t dap_protect_message::get_mode()
{
mode_t mode = 0;
int p = 0;
// Is it present?
if (!protmenu.get_bit(1)) return 0;
for (int i=0; i<4; i++)
{
switch (i)
{
case 0:
continue; // No Unix equivalent.
case 1:
p = protown.get_byte(0);
break;
case 2:
p = protgrp.get_byte(0);
break;
case 3:
p = protwld.get_byte(0);
break;
}
mode = mode << 3;
if (!(p & 0x01)) mode |= 4;
if (!(p & 0x02)) mode |= 2;
if (!(p & 0x04)) mode |= 1;
}
return mode;
}
char *dap_protect_message::get_protection()
{
static char protstring[60];
int p = 0;
int ptr = 0;
int i;
// Is it present?
if (!protmenu.get_bit(1)) return "";
protstring[ptr++] = '(';
for (i=0; i<4; i++)
{
switch (i)
{
case 0:
p = protsys.get_byte(0);
break;
case 1:
p = protown.get_byte(0);
break;
case 2:
p = protgrp.get_byte(0);
break;
case 3:
p = protwld.get_byte(0);
break;
}
if (!(p & 0x01)) protstring[ptr++] = 'R';
if (!(p & 0x02)) protstring[ptr++] = 'W';
if (!(p & 0x04)) protstring[ptr++] = 'E';
if (!(p & 0x08)) protstring[ptr++] = 'D';
if (i != 3) protstring[ptr++] = ',';
}
protstring[ptr++] = ')';
protstring[ptr++] = '\0';
return protstring;
}
char *dap_protect_message::get_owner()
{
return owner.get_string();
}
void dap_protect_message::set_owner(const char *o)
{
owner.set_string(o);
protmenu.set_bit(0);
}
void dap_protect_message::set_owner(gid_t g, uid_t o)
{
#if 0
// VMS (5.5) seems not to like the character version
struct passwd *pw = getpwuid(o);
struct group *gr = getgrgid(g);
/* If there's no username for this UID then send the number */
if (pw && gr)
{
char ownuid[32];
sprintf(ownuid, "[%s,%s]",gr->gr_name, pw->pw_name);
dap_connection::makeupper(ownuid);
owner.set_string(ownuid);
}
else
#endif
{
char ownuid[32];
sprintf(ownuid, "[%o,%o]", g,o);
owner.set_string(ownuid);
}
protmenu.set_bit(0);
}
unsigned char dap_protect_message::unix_to_vms(unsigned int prot)
{
unsigned char bits = 0;
// DAP specifies that bit ON denies access.
if ((prot & 1) == 0) bits |= 0x04; // execute
if ((prot & 2) == 0) bits |= 0x0a; // write & delete
if ((prot & 4) == 0) bits |= 0x01; // read
return bits;
}
void dap_protect_message::set_protection(mode_t mode)
{
protsys.set_byte(0, 0x00); // S:RWED
protown.set_byte(0, unix_to_vms( (mode>>6) & 0x07));
protgrp.set_byte(0, unix_to_vms( (mode>>3) & 0x07));
protwld.set_byte(0, unix_to_vms( mode & 0x07));
protmenu.set_bit(1);
protmenu.set_bit(2);
protmenu.set_bit(3);
protmenu.set_bit(4);
}
int dap_protect_message::set_protection(char *prot)
{
// Parse protection string
int i = 0;
int len = strlen(prot);
if (prot[i] == '(')
i++;
while (i < len)
{
dap_ex *user = NULL;
int entry;
switch (prot[i] & 0x5F)
{
case 'S':
user = &protsys;
entry = 1;
break;
case 'O':
user = &protown;
entry = 2;
break;
case 'G':
user = &protgrp;
entry = 3;
break;
case 'W':
user = &protwld;
entry = 4;
break;
default:
return -1;
}
if (prot[++i] != ':')
return -1;
i++;
int protbyte = 0x1F;
while (i < len && prot[i] != ',' && prot[i] != ')')
{
switch (prot[i] & 0x5F)
{
case 'R':
protbyte &= ~0x1;
break;
case 'W':
protbyte &= ~0x2;
break;
case 'E':
protbyte &= ~0x4;
break;
case 'D':
protbyte &= ~0x8;
break;
default:
return -1;
}
i++;
}
user->set_byte(0, protbyte);
protmenu.set_bit(entry);
if (prot[i] == ',')
i++;
while (i < len && prot[i] == ' ')
i++;
if (prot[i] == ')')
return 0;
}
return 0;
}
//------------------------ dap_summary_message() ------------------------------
bool dap_summary_message::read(dap_connection &c)
{
summenu.read(c);
if (summenu.get_bit(0) && !nok.read(c)) return false;
if (summenu.get_bit(1) && !noa.read(c)) return false;
if (summenu.get_bit(2) && !nor.read(c)) return false;
if (summenu.get_bit(3) && !pvn.read(c)) return false;
return true;
}
bool dap_summary_message::write(dap_connection &c)
{
send_header(c, true);
summenu.write(c);
if (summenu.get_bit(0)) nok.write(c);
if (summenu.get_bit(1)) noa.write(c);
if (summenu.get_bit(2)) nor.write(c);
if (summenu.get_bit(3)) pvn.write(c);
return c.write();
}
int dap_summary_message::get_nok()
{
return nok.get_int();
}
int dap_summary_message::get_noa()
{
return noa.get_int();
}
int dap_summary_message::get_nor()
{
return nor.get_int();
}
int dap_summary_message::get_pvn()
{
return pvn.get_int();
}
//------------------------ dap_key_message() ------------------------------
// A very limited key message. enough to solicit a full one from VMS
bool dap_key_message::write(dap_connection &c)
{
send_header(c, true);
keymenu.write(c);
if (keymenu.get_bit(4)) ref.write(c);
if (keymenu.get_bit(5)) knm.write(c);
return c.write();
}
dap_key_message::~dap_key_message()
{
if (keymenu.get_bit(3))
{
int segs = nsg.get_int();
for (int i=0; i<segs; i++)
{
delete pos[i];
delete siz[i];
}
delete[] pos;
delete[] siz;
}
}
bool dap_key_message::read(dap_connection &c)
{
keymenu.read(c);
if (keymenu.get_bit(0) && !flg.read(c)) return false;
if (keymenu.get_bit(1) && !dfl.read(c)) return false;
if (keymenu.get_bit(2) && !ifl.read(c)) return false;
if (keymenu.get_bit(3) && !nsg.read(c)) return false;
if (keymenu.get_bit(3))
{
int segs = nsg.get_int();
pos = new dap_bytes*[segs];
siz = new dap_bytes*[segs];
for (int i=0; i<segs; i++)
{
pos[i] = new dap_bytes(1);
siz[i] = new dap_bytes(1);
pos[i]->read(c);
siz[i]->read(c);
}
}
if (keymenu.get_bit(4) && !ref.read(c)) return false;
if (keymenu.get_bit(5) && !knm.read(c)) return false;
if (keymenu.get_bit(6) && !nul.read(c)) return false;
if (keymenu.get_bit(7) && !ian.read(c)) return false;
if (keymenu.get_bit(8) && !lan.read(c)) return false;
if (keymenu.get_bit(9) && !dan.read(c)) return false;
if (keymenu.get_bit(10) && !dtp.read(c)) return false;
if (keymenu.get_bit(11) && !rvb.read(c)) return false;
if (keymenu.get_bit(12) && !hal.read(c)) return false;
if (keymenu.get_bit(13) && !dvb.read(c)) return false;
if (keymenu.get_bit(14) && !dbs.read(c)) return false;
if (keymenu.get_bit(15) && !ibs.read(c)) return false;
if (keymenu.get_bit(16) && !lvl.read(c)) return false;
if (keymenu.get_bit(17) && !tks.read(c)) return false;
if (keymenu.get_bit(18) && !mrl.read(c)) return false;
return true;
}
char *dap_key_message::get_name()
{
return knm.get_string();
}
int dap_key_message::get_flag()
{
return flg.get_byte(1);
}
int dap_key_message::get_ref()
{
return ref.get_int();
}
int dap_key_message::get_nsg()
{
return nsg.get_int();
}
int dap_key_message::get_pos(int seg)
{
return pos[seg]->get_int();
}
int dap_key_message::get_siz(int seg)
{
return siz[seg]->get_int();
}
void dap_key_message::set_ref(int r)
{
ref.set_int(r);
keymenu.set_bit(4);
}
void dap_key_message::set_knm(char *n)
{
knm.set_string(n);
keymenu.set_bit(5);
}
|