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
|
/*************************************************************************
*
* File...........: s390-tools/vmur/vmur.c
* Author(s)......: Frank Munzert <munzert@de.ibm.com>
* Michael Holzheu <holzheu@de.ibm.com>
*
* Copyright IBM Corp. 2007
*
*************************************************************************/
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <libgen.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <libgen.h>
#include <signal.h>
#include <iconv.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <ctype.h>
#include <linux/types.h>
#include "zt_common.h"
#include "vmur.h"
/* Program name */
static char *prog_name;
/* Short description */
static const char tool_name[] =
"vmur: Control virtual reader, punch and printer";
/* Copyright notice */
static const char copyright_notice[] = "Copyright IBM Corp. 2007";
/* Structure for all global settings */
struct vmur vmur_info;
/*
* Structure vmur is used to store the command line parameters and
* other information needed at different places
*/
struct vmur {
char spoolid[5];
int spoolid_specified;
char spoolfile_name[9];
int spoolfile_name_specified;
char spoolfile_type[9];
int spoolfile_type_specified;
char devnode[PATH_MAX];
int devnode_specified;
char node[9];
int node_specified;
char file_name[PATH_MAX];
int file_name_specified;
char queue[4];
int queue_specified;
char user[9];
int user_specified;
int blocked_separator;
int blocked_padding;
int blocked_specified;
int rdr_specified;
int text_specified;
int force_specified;
int stdout_specified;
int hold_specified;
enum ur_action action;
int devno;
int ur_reclen;
int file_reclen;
enum spoolfile_fmt spoolfile_fmt;
struct sigaction sigact;
iconv_t iconv;
};
/*
* Print version information.
*/
static void print_version (void)
{
printf("%s version %s.\n", tool_name, RELEASE_STRING);
printf("%s.\n", copyright_notice);
}
/*
* Convert string to to_upper
*/
static char *to_upper(char *str)
{
char *ptr = str;
while (*ptr) {
*ptr = toupper(*ptr);
ptr++;
}
return str;
}
/*
* Convert string to valid CP spool file name
*/
static char *to_valid_cpname(char *str)
{
if (strlen(str) > 8)
str[8] = 0;
while (*str) {
if (!isprint(*str) || isspace(*str))
*str = '_';
str++;
}
return str;
}
/*
* Convert string to valid Linux file name
*/
static char *to_valid_linux_name(char *str)
{
while (*str) {
if (*str == '/')
*str = '_';
str++;
}
return str;
}
/*
* Print out usage text
*/
static char HELP_TEXT[] =
"Usage: vmur receive [OPTIONS] [SPOOLID] [FILE]\n"
" vmur punch [OPTIONS] [FILE]\n"
" vmur print [OPTIONS] [FILE]\n"
" vmur purge [OPTIONS] [SPOOLID]\n"
" vmur order [OPTIONS] [SPOOLID]\n"
" vmur list [OPTIONS] [SPOOLID]\n"
"\n"
"Control virtual reader, punch and printer. Available commands are:\n"
" * REceive: Receive spool files from reader queue\n"
" * PUNch: Punch a file to punch queue\n"
" * PRint: Print a file to printer queue\n"
" * PURge: Purge spool files\n"
" * ORder: Order spool file\n"
" * LIst: List spool files\n"
"\n"
"General options:\n"
"\n"
"-h, --help Print this help, then exit.\n"
"-v, --version Print version information, then exit.\n"
"\n"
"Options of 'receive' command:\n"
"\n"
"-d, --device Device node of the VM virtual reader.\n"
" If omitted, /dev/vmrdr-0.0.000c is assumed.\n"
"-t, --text Indicates text data causing EBCDIC to ASCII\n"
" conversion.\n"
"-b, --blocked Use blocked mode.\n"
"-O, --stdout Write spool file to stdout.\n"
"-f, --force Overwrite files without prompt.\n"
"-H, --hold Hold spool file in reader after receive.\n"
"\n"
"Options for 'punch' and 'print' command:\n"
"\n"
"-d, --device Device node of the VM virtual punch or printer.\n"
" If omitted, /dev/vmpun-0.0.000d or\n"
" /dev/vmprt-0.0.000e is assumed, respectively.\n"
"-t, --text Indicates text data causing ASCII to EBCDIC\n"
" conversion.\n"
"-b, --blocked Use blocked mode.\n"
"-r, --rdr Indicates to transfer file from punch/printer\n"
" to reader.\n"
"-u, --user Transfer file to user's reader.\n"
" If omitted: Your guest machine's reader.\n"
"-n, --node Remote node to send the file to.\n"
" If omitted: Your local VM node.\n"
"-N, --name Name of new spool file.\n"
"\n"
"Options for 'purge' command:\n"
"\n"
"-f, --force Purge without prompt.\n"
"\n"
"Options for 'order', 'list', and 'purge' commands:\n"
"\n"
"-q, --queue Target queue for command. Possible queues are:\n"
" 'rdr' (default), 'pun' and 'prt'.\n";
static void usage(void)
{
printf(HELP_TEXT);
}
/*
* Signal handler
*/
static void set_signal_handler(struct vmur *info,
void (*handler) (int, siginfo_t *, void *))
{
info->sigact.sa_flags = (SA_NODEFER | SA_SIGINFO | SA_RESETHAND);
info->sigact.sa_sigaction = handler;
if (sigemptyset(&info->sigact.sa_mask) < 0)
goto fail;
if (sigaction(SIGINT, &info->sigact, NULL) < 0)
goto fail;
if (sigaction(SIGTERM, &info->sigact, NULL) < 0)
goto fail;
return;
fail:
ERR_EXIT("Could not initialize signal handler (errno = %i)\n", errno);
}
/*
* Read at most COUNT bytes from FD into memory at location BUF.
* Return number of bytes read on success, -1 on error.
*/
static ssize_t read_buf(int fd, char *buf, size_t count)
{
ssize_t rc, len;
for (len = 0; len < count; len += rc) {
rc = read(fd, &buf[len], count - len);
if (rc == -1)
return -1;
if (rc == 0)
break;
}
return len;
}
/*
* Strip leading CP header from error message
*/
static void strip_cperr(char *buf)
{
int i;
for (i = 0; i < strlen(buf) - CP_PREFIX_LEN; i++) {
if (strncmp(buf + i, "HCP", 3) == 0) {
int offs = i + CP_PREFIX_LEN;
memmove(buf, buf + offs, strlen(buf) - offs);
/* terminate string and remove newline */
buf[strlen(buf) - offs - 1] = 0;
return;
}
}
}
int _cpcmd(char *cpcmd, char **resp, int *rc, int retry, int upper)
{
int fd, len, cprc, bufsize = VMCP_BUFSIZE;
char *buf;
char cmd[MAXCMDLEN];
strcpy(cmd, cpcmd);
if (upper)
to_upper(cmd);
fd = open(VMCP_DEVICE_NODE, O_RDWR);
if (fd == -1)
ERR_EXIT("Could not issue cp command: \"%s\"\n"
"Ensure that vmcp kernel module is loaded!\n", cmd);
do {
if (ioctl(fd, VMCP_SETBUF, &bufsize) == -1)
goto fail;
if (write(fd, cmd, strlen(cmd)) == -1)
goto fail;
if (ioctl(fd, VMCP_GETCODE, &cprc) == -1)
goto fail;
if (ioctl(fd, VMCP_GETSIZE, &len) == -1)
goto fail;
if (len <= bufsize)
break;
else if (retry)
bufsize = len;
else
ERR_EXIT("Not enough buffer space (%i/%i) for CP "
"command '%s'.\nSorry, please issue command "
"on your 3270 console!\n", len, bufsize, cmd);
} while (1);
buf = malloc(len + 1);
if (!buf)
ERR_EXIT("Out of memory for CP command '%s'\n", cmd);
memset(buf, 0, len + 1);
if (read_buf(fd, buf, len) == -1)
goto fail;
if (rc == NULL) {
if (cprc != 0) {
/* caller wants us to handle the error */
strip_cperr(buf);
ERR_EXIT("%s\n", buf);
}
} else {
*rc = cprc;
}
if (resp)
*resp = buf;
else
free(buf);
close(fd);
return strlen(buf);
fail:
ERR_EXIT("CP command '%s' failed.\n", cmd);
}
/*
* Issue CP command:
* @cpcmd: CP command to be issued.
* @resp: CP command response on success, an error message on error.
* @rc: CP return code.
* @retry: retry = 1 -> CP command can be retried.
* This function converts the command string to uppercase.
*/
int cpcmd(char *cpcmd, char **resp, int *rc, int retry)
{
return _cpcmd(cpcmd, resp, rc, retry, 1);
}
/*
* Issue CP command:
* @cpcmd: CP command to be issued.
* @resp: CP command response on success, an error message on error.
* @rc: CP return code.
* @retry: retry = 1 -> CP command can be retried.
* This function does not convert the command string to uppercase.
*/
int cpcmd_cs(char *cpcmd, char **resp, int *rc, int retry)
{
return _cpcmd(cpcmd, resp, rc, retry, 0);
}
/*
* Extract minor from sysfs file
*/
static int get_minor(char *path)
{
FILE *fd;
char buf[20];
int major, minor;
fd = fopen(path, "r");
if (!fd)
ERR_EXIT("Could not open %s (err = %i)\n", path, errno);
fread(buf, sizeof(buf), 1, fd);
if (ferror(fd))
ERR_EXIT("Could not read %s (err = %i)\n", path, errno);
fclose(fd);
if (sscanf(buf, "%i:%i", &major, &minor) != 2)
ERR_EXIT("Malformed content of %s: %s\n", path, buf);
return minor;
}
/*
* Find device number of ur device
*/
static int get_ur_devno(int minor)
{
struct dirent *direntp;
char dev_file[PATH_MAX];
DIR *fd;
char bus_id[9] = {};
int devno;
errno = 0;
fd = opendir(SYSFS_CLASS_DIR);
if (!fd)
ERR_EXIT("Could not open %s (err = %i)\n", SYSFS_CLASS_DIR,
errno);
while ((direntp = readdir(fd))) {
if (strcmp(direntp->d_name, ".") == 0)
continue;
if (strcmp(direntp->d_name, "..") == 0)
continue;
sprintf(dev_file, "%s/%s/dev", SYSFS_CLASS_DIR,
direntp->d_name);
if (get_minor(dev_file) == minor) {
/* extract device id from <vmxxx-0.0.yyyy> */
memcpy(bus_id, &direntp->d_name[6], 8);
goto found;
}
};
if (errno != 0)
ERR_EXIT("Could not read %s (err = %i)\n",
SYSFS_CLASS_DIR, errno);
else
ERR_EXIT("Device not online\n");
found:
if (sscanf(bus_id, "0.0.%x", &devno) != 1)
ERR_EXIT("Could not extract devno from %s\n", direntp->d_name);
closedir(fd);
return devno;
}
/*
* Extract major/minor from device node
*/
static dev_t get_node_dev(char *devnode)
{
struct stat stat_info;
if (stat(devnode, &stat_info)) {
ERR("Unable to get status for '%s': %s\n", devnode,
strerror(errno));
ERR_EXIT("Please check if device is online!\n");
}
return stat_info.st_rdev;
}
/*
* Extract major of vmur driver
*/
static int get_driver_major(void)
{
FILE *fh;
char string[PROC_DEVICES_FILE_WIDTH];
char last_string[PROC_DEVICES_FILE_WIDTH];
fh = fopen(PROC_DEVICES_FILE, "r");
if (!fh) {
ERR("WARNING: Cannot check for vmur in file %s.\n%s\n",
PROC_DEVICES_FILE, strerror(errno));
return -1; /* check not possible, just continue */
}
while (fscanf(fh, "%s", string) != EOF) {
if (strcmp(string, "vmur") == 0) {
fclose(fh);
return atoi(last_string);
} else {
strcpy(last_string, string);
}
}
fclose(fh);
ERR_EXIT("Unit record device driver not loaded.\n");
}
/*
* Setup and check ur device
*/
static void setup_ur_device(struct vmur *info)
{
int driver_major;
dev_t node_dev;
driver_major = get_driver_major();
node_dev = get_node_dev(info->devnode);
if ((driver_major != -1) && (driver_major != major(node_dev)))
ERR_EXIT("'%s' is not a unit record device.\n",
info->devnode);
info->devno = get_ur_devno(minor(node_dev));
}
/*
* initialize the vmur info structure
*/
static void init_info(struct vmur *info)
{
memset(info, 0, sizeof(struct vmur));
strcpy(info->queue, "rdr");
}
/*
* set positional spoolid parameter
*/
static void set_spoolid(struct vmur *info, char **argv, int argc, int optind,
int mandatory)
{
char *str;
if (argc <= optind) {
if (mandatory)
ERR_EXIT("No spool id specified.\n");
else
return;
}
if ((argc > optind + 1) && (info->action != RECEIVE))
ERR_EXIT("More than one spool id specified.\n");
str = argv[optind];
if (strlen(str) > 4)
goto invalid;
while (*str) {
if (!isdigit(*str))
goto invalid;
str++;
}
strcpy(info->spoolid, argv[optind]);
++info->spoolid_specified;
return;
invalid:
ERR_EXIT("Spoolid must be a decimal number in range 0-9999\n");
}
/*
* set positional file parameter
*/
static void set_file(struct vmur *info, char **argv, int argc, int optind)
{
if (argc <= optind)
return;
if (argc > optind + 1)
ERR_EXIT("More than one file specified.\n");
strncpy(info->file_name, argv[optind], sizeof(info->file_name) - 1);
++info->file_name_specified;
}
/*
* Set queue: rdr, pun or prt
*/
static void set_queue(struct vmur *info, char *queue)
{
if (strcmp(queue, "rdr") == 0)
strcpy(info->queue, "rdr");
else if (strcmp(queue, "pun") == 0)
strcpy(info->queue, "pun");
else if (strcmp(queue, "prt") == 0)
strcpy(info->queue, "prt");
else
ERR_EXIT("Invalid queue: %s\n", queue);
return;
}
static void set_blocked(struct vmur *info, char *blocked)
{
if (sscanf(blocked, "0x%x,0x%x", &info->blocked_separator,
&info->blocked_padding) != 2)
goto fail;
if (info->blocked_separator > 255)
goto fail;
if (info->blocked_padding > 255)
goto fail;
++info->blocked_specified;
return;
fail:
ERR_EXIT("Invalid blocked parameter. It must have the format "
"'0xSS,0xPP'.\n");
}
/*
* Parse the command line: General options
*/
static void check_std_opts(int opt)
{
switch (opt) {
case 'v':
print_version();
exit(0);
case 'h':
usage();
exit(0);
}
}
static void std_usage_exit(void)
{
fprintf(stderr, "Try '%s --help' for more information.\n", prog_name);
exit(1);
}
/*
* Parse the command line: Receive command
*/
static void parse_opts_receive(struct vmur *info, int argc, char *argv[])
{
int opt, index;
static struct option long_options[] = {
{ "version", no_argument, NULL, 'v'},
{ "help", no_argument, NULL, 'h'},
{ "text", no_argument, NULL, 't'},
{ "stdout", no_argument, NULL, 'O'},
{ "force", no_argument, NULL, 'f'},
{ "hold", no_argument, NULL, 'H'},
{ "device", required_argument, NULL, 'd'},
{ "blocked", required_argument, NULL, 'b'},
{ 0, 0, 0, 0 }
};
static const char option_string[] = "vhtOfHd:b:";
strcpy(info->devnode, VMRDR_DEVICE_NODE);
while (1) {
opt = getopt_long(argc, argv, option_string,
long_options, &index);
if (opt == -1)
break;
check_std_opts(opt);
switch (opt) {
case 't':
++info->text_specified;
break;
case 'd':
++info->devnode_specified;
strncpy(info->devnode, optarg,
sizeof(info->devnode) - 1);
break;
case 'O':
++info->stdout_specified;
break;
case 'b':
set_blocked(info, optarg);
break;
case 'f':
++info->force_specified;
break;
case 'H':
++info->hold_specified;
break;
default:
std_usage_exit();
}
}
set_spoolid(info, argv, argc, optind + 1, 1);
set_file(info, argv, argc, optind + 2);
CHECK_SPEC_MAX(info->text_specified, 1, "text");
CHECK_SPEC_MAX(info->devnode_specified, 1, "devnode");
CHECK_SPEC_MAX(info->file_name_specified, 1, "file");
CHECK_SPEC_MAX(info->blocked_specified, 1, "blocked");
if (info->stdout_specified && info->file_name_specified)
ERR_EXIT("File name not allowed, when --stdout specifed!\n");
if (info->blocked_specified && info->text_specified)
ERR_EXIT("Conflicting options: -b together with -t "
"specified\n");
}
/*
* Validate VM userID
*/
static int invalid_userid(char *operand)
{
if (strlen(operand) > 8)
return 1;
while (*operand) {
if (!isalnum(*operand) &&
(strchr("@#$_-", *operand) == NULL))
return 1;
operand++;
}
return 0;
}
/*
* Validate CP command operand such as nodeID or name/type
*/
static int invalid_operand(char *operand)
{
if (strlen(operand) > 8)
return 1;
while (*operand) {
if (!isprint(*operand) || isspace(*operand))
return 1;
operand++;
}
return 0;
}
/*
* Check whether user is in the CP directory
*/
static int check_local_user(char *user)
{
char cmd[MAXCMDLEN];
int cprc;
strcpy(cmd, "LINK ");
strcat(cmd, user);
cpcmd(cmd, NULL, &cprc, 0);
if ((cprc == 53) /* user not in CP directory */
|| (cprc == 20)) /* Userid missing or invalid */
return 1;
else
return 0;
}
/*
* Set spool file name/type in vmur structure and validate name/type
*/
static void set_spoolfile_name(struct vmur *info, char *name)
{
char spoolfile_name[PATH_MAX], spoolfile_type[PATH_MAX] = {};
int i, flag = 0;
strcpy(spoolfile_name, name);
if (strlen(spoolfile_name) == 0)
ERR_EXIT("Empty spool file name is invalid\n");
/* check for period delimiting name from type */
if (spoolfile_name[strlen(spoolfile_name) - 1] == '.')
flag = 1; /* name/type string ends with period */
for (i = strlen(spoolfile_name) - 1; i > 0; i--) {
if (spoolfile_name[i] == '.') {
if (flag && (spoolfile_name[i-1] == '.'))
continue;
else
break;
}
}
if ((i > 0) && (i < strlen(spoolfile_name) - 1)) {
strcpy(spoolfile_type, spoolfile_name + i + 1);
spoolfile_name[i] = 0;
++info->spoolfile_type_specified;
}
if (info->force_specified) {
/* adjust spool file name, in order to have a valid one */
to_valid_cpname(spoolfile_name);
if (info->spoolfile_type_specified)
to_valid_cpname(spoolfile_type);
goto out;
}
if (invalid_operand(spoolfile_name) || invalid_operand(spoolfile_type))
goto invalid;
out:
strcpy(info->spoolfile_name, spoolfile_name),
++info->spoolfile_name_specified;
if (info->spoolfile_type_specified)
strcpy(info->spoolfile_type, spoolfile_type);
return;
invalid:
ERR_EXIT("Malformed spool file name: %s\n"
"Specify --force, if the name should be converted "
"automatically.\n", name);
}
/*
* Parse the command line: punch command
*/
static void parse_opts_punch_print(struct vmur *info, int argc, char *argv[])
{
int opt, index;
char *spoolfile_name = NULL;
static struct option long_options[] = {
{ "version", no_argument, NULL, 'v'},
{ "help", no_argument, NULL, 'h'},
{ "text", no_argument, NULL, 't'},
{ "rdr", no_argument, NULL, 'r'},
{ "force", no_argument, NULL, 'f'},
{ "user", required_argument, NULL, 'u'},
{ "node", required_argument, NULL, 'n'},
{ "device", required_argument, NULL, 's'},
{ "blocked", required_argument, NULL, 'b'},
{ "name", required_argument, NULL, 'N'},
{ 0, 0, 0, 0 }
};
static const char option_string[] = "vhtrfu:n:d:b:N:";
if (info->action == PUNCH) {
strcpy(info->devnode, VMPUN_DEVICE_NODE);
info->ur_reclen = VMPUN_RECLEN;
} else {
strcpy(info->devnode, VMPRT_DEVICE_NODE);
info->ur_reclen = VMPRT_RECLEN;
}
while (1) {
opt = getopt_long(argc, argv, option_string,
long_options, &index);
if (opt == -1)
break;
check_std_opts(opt);
switch (opt) {
case 'd':
++info->devnode_specified;
strcpy(info->devnode, optarg);
break;
case 'N':
++info->spoolfile_name_specified;
spoolfile_name = optarg;
break;
case 'r':
++info->rdr_specified;
break;
case 'f':
++info->force_specified;
break;
case 't':
++info->text_specified;
break;
case 'u':
++info->user_specified;
if (invalid_userid(optarg))
ERR_EXIT("Invalid userid: %s\n", optarg);
else
strcpy(info->user, optarg);
break;
case 'b':
set_blocked(info, optarg);
break;
case 'n':
++info->node_specified;
if (invalid_operand(optarg))
ERR_EXIT("Invalid node specified.\n");
else
strcpy(info->node, optarg);
break;
default:
std_usage_exit();
}
}
CHECK_SPEC_MAX(info->rdr_specified, 1, "rdr");
CHECK_SPEC_MAX(info->force_specified, 1, "force");
CHECK_SPEC_MAX(info->user_specified, 1, "user");
CHECK_SPEC_MAX(info->file_name_specified, 1, "file");
CHECK_SPEC_MAX(info->spoolfile_name_specified, 1, "name");
CHECK_SPEC_MAX(info->user_specified, 1, "user");
CHECK_SPEC_MAX(info->node_specified, 1, "node");
CHECK_SPEC_MAX(info->blocked_specified, 1, "blocked");
if (info->user_specified && !info->rdr_specified)
ERR_EXIT("--user without --rdr specified\n");
if (info->node_specified && !info->user_specified)
ERR_EXIT("--node without --user specified\n");
if ((info->user_specified && !info->node_specified)
&& check_local_user(info->user))
ERR_EXIT("Invalid userid: %s\n", info->user);
if (info->node_specified && check_local_user(RSCS_USERID))
ERR_EXIT("Invalid RSCS userid: %s\n", info->node);
if (info->blocked_specified && info->text_specified)
ERR_EXIT("Conflicting options: -b together with -t "
"specified\n");
set_file(info, argv, argc, optind + 1);
if (info->spoolfile_name_specified)
set_spoolfile_name(info, spoolfile_name);
else if (info->file_name_specified)
set_spoolfile_name(info, basename(info->file_name));
else
ERR_EXIT("No name for spool file specified!\n");
}
/*
* Parse the command line: Purge command
*/
static void parse_opts_purge(struct vmur *info, int argc, char *argv[])
{
int opt, index;
static struct option long_options[] = {
{ "version", no_argument, NULL, 'v'},
{ "help", no_argument, NULL, 'h'},
{ "force", no_argument, NULL, 'f'},
{ "queue", no_argument, NULL, 'q'},
{ 0, 0, 0, 0 }
};
static const char option_string[] = "fvhq:";
while (1) {
opt = getopt_long(argc, argv, option_string,
long_options, &index);
if (opt == -1)
break;
check_std_opts(opt);
switch (opt) {
case 'f':
++info->force_specified;
break;
case 'q':
++info->queue_specified;
set_queue(info, optarg);
break;
default:
std_usage_exit();
}
}
CHECK_SPEC_MAX(info->force_specified, 1, "force");
CHECK_SPEC_MAX(info->queue_specified, 1, "queue");
set_spoolid(info, argv, argc, optind + 1, 0);
}
/*
* Parse the command line: Order command
*/
static void parse_opts_order(struct vmur *info, int argc, char *argv[])
{
int opt, index;
static struct option long_options[] = {
{ "version", no_argument, NULL, 'v'},
{ "help", no_argument, NULL, 'h'},
{ "queue", required_argument, NULL, 'q'},
{ 0, 0, 0, 0 }
};
static const char option_string[] = "vhq:";
while (1) {
opt = getopt_long(argc, argv, option_string,
long_options, &index);
if (opt == -1)
break;
check_std_opts(opt);
switch (opt) {
case 'q':
++info->queue_specified;
set_queue(info, optarg);
break;
default:
std_usage_exit();
}
}
CHECK_SPEC_MAX(info->queue_specified, 1, "queue");
set_spoolid(info, argv, argc, optind + 1, 1);
}
/*
* Parse the command line: List command
*/
static void parse_opts_list(struct vmur *info, int argc, char *argv[])
{
int opt, index;
static struct option long_options[] = {
{ "version", no_argument, NULL, 'v'},
{ "help", no_argument, NULL, 'h'},
{ "queue", required_argument, NULL, 'q'},
{ 0, 0, 0, 0 }
};
static const char option_string[] = "vhq:";
while (1) {
opt = getopt_long(argc, argv, option_string,
long_options, &index);
if (opt == -1)
break;
check_std_opts(opt);
switch (opt) {
case 'q':
++info->queue_specified;
set_queue(info, optarg);
break;
default:
std_usage_exit();
}
}
CHECK_SPEC_MAX(info->queue_specified, 1, "queue");
set_spoolid(info, argv, argc, optind + 1, 0);
}
/*
* Parse the command line: Default options
*/
static void parse_opts_default(struct vmur *info, int argc, char *argv[])
{
int opt, index;
static struct option long_options[] = {
{ "version", no_argument, NULL, 'v'},
{ "help", no_argument, NULL, 'h'},
{ 0, 0, 0, 0 }
};
static const char option_string[] = "vh";
while (1) {
opt = getopt_long(argc, argv, option_string,
long_options, &index);
if (opt == -1)
break;
check_std_opts(opt);
std_usage_exit();
}
}
/*
* Parse action strings
*/
static int is_action(enum ur_action action, char *str)
{
char action_str[80] = {};
if (strlen(str) < ur_action_prefix_len[action])
return 0;
if (strlen(str) > strlen(ur_action_str[action]))
return 0;
strncpy(action_str, ur_action_str[action], strlen(str));
if (strcasecmp(str, action_str) != 0)
return 0;
return 1;
}
/*
* Get action string and set action field in info structure
*/
static int set_action(struct vmur *info, char *str)
{
int action;
for (action = 0; action < LAST; action++) {
if (is_action((enum ur_action) action, str)) {
info->action = (enum ur_action) action;
return 0;
}
}
return -EINVAL;
}
/*
* The toplevel parameter parsing function
*/
static void parse_opts(struct vmur *info, int argc, char *argv[])
{
if (argc == 1)
ERR_EXIT("Missing command\n");
if (set_action(info, argv[1])) {
parse_opts_default(info, argc, argv);
ERR("Unknown command '%s'\n", argv[1]);
std_usage_exit();
}
switch (info->action) {
case RECEIVE:
return parse_opts_receive(info, argc, argv);
case PUNCH:
return parse_opts_punch_print(info, argc, argv);
case PRINT:
return parse_opts_punch_print(info, argc, argv);
case PURGE:
return parse_opts_purge(info, argc, argv);
case ORDER:
return parse_opts_order(info, argc, argv);
case LIST:
return parse_opts_list(info, argc, argv);
default:
ERR_EXIT("Internal error. Unknown action: %i\n", info->action);
}
}
/*
* Check if spool file has hold state "NONE"
*/
static void check_hold_state(char *spoolid)
{
char cmd[MAXCMDLEN];
char *response;
sprintf(cmd, "QUERY READER * ALL %s", spoolid);
cpcmd(cmd, &response, 0, 0);
response[114] = 0;
if (strcmp(&response[110], "NONE") != 0)
ERR_EXIT("Could not receive spool file %s: hold state = %s\n",
spoolid, &response[110]);
free(response);
}
/*
* Issue CP command ORDER RDR <spoolid>.
* If ORDER fails, the CP command response is as follows:
* NO FILES ORDERED
* HCPxxxnnnt <message text>
* If ORDER returns successfully, CP command CHANGE RDR <spoolid> NOHOLD
* is issued.
*/
static void order_change_reader_file(struct vmur *info)
{
char cmd[MAXCMDLEN];
sprintf(cmd, "ORDER * READER %s", info->spoolid);
cpcmd(cmd, NULL, NULL, 0);
sprintf(cmd, "CHANGE * READER %s NOHOLD", info->spoolid);
cpcmd(cmd, NULL, NULL, 0);
check_hold_state(info->spoolid);
}
/*
* Issue CP command CLOSE RDR
*/
static void close_reader(struct vmur *info, char *hold)
{
char cmd[MAXCMDLEN];
sprintf(cmd, "CLOSE %X %s", info->devno, hold);
cpcmd(cmd, NULL, NULL, 0);
}
/*
* strip leading and trailing blanks
*/
static char *strstrip(char *s)
{
size_t size;
char *end;
size = strlen(s);
if (!size)
return s;
end = s + size - 1;
while (end >= s && isspace(*end))
end--;
*(end + 1) = '\0';
while (*s && isspace(*s))
s++;
return s;
}
/*
* Check whether reader can handle class of reader spool file
*/
static int check_class(struct vmur *info)
{
char cmd[MAXCMDLEN];
char device_class, file_class;
char *buf;
sprintf(cmd, "QUERY VIRTUAL %X", info->devno);
cpcmd(cmd, &buf, NULL, 0);
device_class = buf[13];
free(buf);
if (device_class == '*') /* reader device can handle any class */
return 0;
sprintf(cmd, "QUERY RDR * %s ALL", info->spoolid);
cpcmd(cmd, &buf, NULL, 0);
file_class = buf[91];
free(buf);
if (file_class != device_class)
return 1;
return 0;
}
/*
* Get filename for spoolid from reader
*/
static int get_filename_from_reader(struct vmur *info)
{
char cmd[MAXCMDLEN];
char name[9] = {0};
char type[9] = {0};
char *buf;
sprintf(cmd, "QUERY RDR * %s ALL", info->spoolid);
cpcmd(cmd, &buf, NULL, 0);
memcpy(name, &buf[130], 8);
strstrip(name);
memcpy(type, &buf[140], 8);
strstrip(type);
free(buf);
if (strlen(name) == 0) {
ERR("Please specify name to receive "
"unnamed spool file: %s\n", info->spoolid);
return 1;
}
to_valid_linux_name(name);
to_valid_linux_name(type);
if (strlen(type) == 0)
strcpy(info->file_name, name);
else
sprintf(info->file_name, "%s.%s", name, type);
info->file_name_specified = 1;
return 0;
}
/*
* Serialize access to unit record devices and their related spool file queues:
* open lock file and apply lock
*/
static void acquire_lock(struct vmur *info)
{
int fd;
char failed_action[10] = {};
fd = open(LOCK_FILE, O_RDONLY | O_CREAT, S_IRUSR);
if (fd == -1) {
ERR("WARNING: Unable to open lock file %s, continuing "
"without any serialization.\n", LOCK_FILE);
return;
}
if (flock(fd, LOCK_EX | LOCK_NB) == -1) {
switch (info->action) {
case RECEIVE:
strcpy(failed_action, "received");
break;
case PUNCH:
strcpy(failed_action, "punched");
break;
case PRINT:
strcpy(failed_action, "printed");
break;
case PURGE:
strcpy(failed_action, "purged");
break;
case ORDER:
strcpy(failed_action, "ordered");
break;
default:
strcpy(failed_action, "processed");
}
ERR("A concurrent instance of vmur is already active."
" No file %s.\n", failed_action);
exit(EBUSY);
}
}
/*
* Check if file already exists. If yes, ask if it should be overwritten.
*/
static void check_overwrite(struct vmur *info)
{
char buf[5] = {};
struct stat stat_info;
if (info->force_specified)
return;
if (stat(info->file_name, &stat_info))
return;
if (S_ISDIR(stat_info.st_mode)) {
ERR("Cannot overwrite directory '%s'\n", info->file_name);
exit(1);
}
fprintf(stderr, "%s: Overwrite '%s'? ", prog_name, info->file_name);
fgets(buf, sizeof(buf), stdin);
if (strcasecmp(buf, "y\n") == 0)
return;
if (strcasecmp(buf, "yes\n") == 0)
return;
close_reader(info, "HOLD");
exit(0);
}
/*
* Get format of spool file: Check VMDUMP and NETDATA flags,
* set record length of file
*/
enum spoolfile_fmt get_spoolfile_fmt(struct vmur *info,
struct splink_page *buf)
{
struct splink_record *rec;
char netdata_id[5] = {0xc9, 0xd5, 0xd4, 0xd9, 0xf0}; /* EBCDIC: INMR0 */
int i;
rec = (struct splink_record *) &buf->data;
if (buf->magic != 0)
return TYPE_VMDUMP;
info->file_reclen = buf->rec_len;
for (i = 0; i < buf->data_recs; i++) {
if (rec->ccw.flag & CCW_IMMED_FLAG) {
rec = ((void *) rec) + sizeof(rec->ccw);
continue; /* skip immediate CCWs */
}
if ((rec->data.flag & IS_CONTROL_RECORD) &&
(memcmp(rec->data.magic, netdata_id, 5) == 0))
return TYPE_NETDATA;
rec = ((void *) rec) + rec->record_len;
}
return TYPE_NORMAL;
}
/*
* Convert record for texmode: Do EBCDIC->ASCII translation
*/
static int convert_text(struct vmur *info, struct splink_record *rec,
char **out_ptr)
{
size_t in_count = rec->ccw.data_len;
size_t out_count = rec->ccw.data_len;
char *data_ptr = (char *) &rec->data;
int rc;
if ((rec->ccw.data_len == 1) && (data_ptr[0] == 0x40))
goto out; /* one blank -> just a newline */
rc = iconv(info->iconv, &data_ptr, &in_count, out_ptr, &out_count);
if ((rc == -1) || (in_count != 0)) {
ERR("Code page translation EBCDIC-ASCII failed\n");
return -1;
}
out:
**out_ptr = ASCII_LF;
*out_ptr += 1;
return 0;
}
/*
* Convert record for binary mode: Fill up missing 0x40 bytes
*/
static int convert_binary(struct vmur *info, struct splink_record *rec,
char **out_ptr)
{
int residual;
memcpy(*out_ptr, &rec->data, rec->ccw.data_len);
*out_ptr += rec->ccw.data_len;
/* Since CP removed trailing EBCDIC blanks, we have */
/* to insert them again */
residual = info->file_reclen - rec->ccw.data_len;
memset(*out_ptr, 0x40, residual);
*out_ptr += residual;
return 0;
}
/*
* Convert record for blocked mode: remove padding bytes and add separator
*/
static int convert_blocked(struct vmur *info, struct splink_record *rec,
char **out_ptr)
{
int residual, i;
memcpy(*out_ptr, &rec->data, rec->ccw.data_len);
*out_ptr += rec->ccw.data_len;
/* Since CP removed trailing EBCDIC blanks, we have */
/* to insert them again */
residual = info->file_reclen - rec->ccw.data_len;
memset(*out_ptr, 0x40, residual);
*out_ptr += residual;
/* Now remove trailing padding bytes */
for (i = 0; i < info->file_reclen; i++) {
if (*(*out_ptr - 1) != info->blocked_padding)
break;
*out_ptr -= 1;
}
/* ... and insert separator */
**out_ptr = info->blocked_separator;
*out_ptr += 1;
return 0;
}
/*
* Extract data from VM spool file data blocks (SPLINK).
*/
ssize_t convert_sfdata(struct vmur *info, struct splink_page *in, char *out)
{
struct splink_record *rec;
char *out_ptr = out;
int i, rc = 0;
rec = (struct splink_record *) &in->data;
for (i = 0; i < in->data_recs; i++) {
if (rec->ccw.opcode == NOP) {
rec = ((void *) rec) + rec->record_len;
continue; /* skip NOP CCWs */
} else if (rec->ccw.flag & CCW_IMMED_FLAG) {
rec = ((void *) rec) + sizeof(rec->ccw);
continue; /* skip immediate CCWs */
}
if (info->text_specified) {
rc = convert_text(info, rec, &out_ptr);
if (rc)
return rc;
} else if (info->blocked_specified) {
rc = convert_blocked(info, rec, &out_ptr);
if (rc)
return rc;
} else {
rc = convert_binary(info, rec, &out_ptr);
if (rc)
return rc;
}
rec = ((void *) rec) + rec->record_len;
}
return out_ptr - out;
}
/*
* Write normal spool file data.
*/
int write_normal(struct vmur *info, struct splink_page *sfdata, int count,
int fho)
{
char *outbuf;
int len, i;
for (i = 0; i < count; i++) {
struct splink_page *data;
data = &sfdata[i];
outbuf = malloc((info->file_reclen + 1) * data->data_recs);
if (!outbuf) {
ERR("Out of memory\n");
return -ENOMEM;
}
len = convert_sfdata(info, data, outbuf);
if (len < 0) {
ERR("Data conversion failed\n");
return -EINVAL;
}
if (write(fho, outbuf, len) == -1) {
ERR("Write to file %s failed: %s\n", info->file_name,
strerror(errno));
return -errno;
}
free(outbuf);
}
return 0;
}
/*
* Write vmdump data.
*/
int write_vmdump(struct vmur *info, struct splink_page *sfdata, int count,
int fho)
{
if (write(fho, sfdata, count * sizeof(sfdata[0])) == -1) {
ERR("Write to file %s failed: %s\n", info->file_name,
strerror(errno));
return -errno;
}
return 0;
}
/*
* Close VM virtual reader in case of a signal e.g. CTRL-C
*/
static void ur_receive_sig_handler(int sig, siginfo_t *sip, void *p)
{
close_reader(&vmur_info, "HOLD");
ERR_EXIT("Operation terminated, spool file received incompletely.\n");
}
/*
* Receive reader file.
*/
static void ur_receive(struct vmur *info)
{
struct splink_page sfdata[READ_BLOCKS];
enum spoolfile_fmt type;
int fhi, fho, count;
if (check_class(info))
ERR_EXIT("Reader device class does not match spool file "
"class.\nIssue CP command 'SPOOL %X CLASS *' to "
"enable %X for any spool file class.\n",
info->devno, info->devno);
acquire_lock(info);
close_reader(info, "HOLD");
order_change_reader_file(info);
fhi = open(info->devnode, O_RDONLY | O_NONBLOCK);
if (fhi == -1)
ERR_EXIT("Could not open device %s\n%s\n", info->devnode,
strerror(errno));
set_signal_handler(info, ur_receive_sig_handler);
if (info->stdout_specified) {
fho = STDOUT_FILENO;
} else {
if (!info->file_name_specified &&
get_filename_from_reader(info))
goto fail;
check_overwrite(info);
fho = open(info->file_name, O_WRONLY | O_CREAT | O_TRUNC,
S_IRUSR | S_IWUSR);
if (fho == -1) {
ERR("Could not open file %s\n%s\n", info->file_name,
strerror(errno));
goto fail;
}
}
/* Read first block and check spoolfile format */
count = read(fhi, &sfdata, READ_BLOCKS * sizeof(sfdata[0]));
if (count == -1) {
ERR("Could not read from device %s\n%s\n", info->devnode,
strerror(errno));
goto fail;
}
type = get_spoolfile_fmt(info, &sfdata[0]);
if (type == TYPE_VMDUMP)
ERR("INFO: Reader file %s has VMDUMP format.\n", info->spoolid);
if (type == TYPE_NETDATA)
ERR("INFO: Reader file %s has NETDATA format.\n",
info->spoolid);
if (type != TYPE_VMDUMP) {
int spoolid = atoi(info->spoolid);
if (spoolid != sfdata->spoolid) {
check_hold_state(info->spoolid);
ERR_EXIT("Could not receive spool file %s. Spoolid "
"mismatch (%i)\n", info->spoolid,
sfdata->spoolid);
}
}
/* read spool file data, convert it, and write it to output file or
* stdout */
while (count != 0) {
int rc, blocks;
blocks = count / sizeof(sfdata[0]);
if (type == TYPE_VMDUMP)
rc = write_vmdump(info, &sfdata[0], blocks, fho);
else
rc = write_normal(info, &sfdata[0], blocks, fho);
if (rc)
goto fail;
/* read next records */
count = read(fhi, &sfdata, READ_BLOCKS * sizeof(sfdata[0]));
if (count == -1) {
ERR("Could not read from device %s\n%s\n",
info->devnode, strerror(errno));
goto fail;
}
}
if (fho != STDOUT_FILENO)
close(fho);
close(fhi);
if (info->hold_specified)
close_reader(info, "HOLD");
else
close_reader(info, "NOHOLD NOKEEP");
return;
fail:
close_reader(info, "HOLD");
exit(1);
}
/*
* Issue CP command CLOSE PUNCH
*/
static void close_ur_device(struct vmur *info)
{
char cmd[MAXCMDLEN], spoolid[5] = {}, *response;
int cprc;
if (info->node_specified) {
sprintf(cmd, "SPOOL %X NOCONT", info->devno);
cpcmd(cmd, NULL, NULL, 0);
}
if (info->rdr_specified) {
sprintf(cmd, "CLOSE %X TO ", info->devno);
if (info->node_specified)
strcat(cmd, RSCS_USERID);
else if (info->user_specified)
strcat(cmd, to_upper(info->user));
else
strcat(cmd, "*");
strcat(cmd, " RDR");
} else {
sprintf(cmd, "CLOSE %X", info->devno);
}
strcat(cmd, " NAME ");
strcat(cmd, info->spoolfile_name);
if (info->spoolfile_type_specified) {
strcat(cmd, " ");
strcat(cmd, info->spoolfile_type);
}
cpcmd_cs(cmd, &response, &cprc, 0);
memcpy(spoolid, &response[9], 4);
free(response);
if (cprc == 439) {
if (info->action == PUNCH)
sprintf(cmd, "PURGE * PUN %s", spoolid);
else
sprintf(cmd, "PURGE * PRT %s", spoolid);
cpcmd(cmd, NULL, NULL, 0);
ERR_EXIT("User %s spool fileid limit exceeded.\n"
, info->user);
}
if (info->rdr_specified) {
if (info->node_specified)
printf("Reader file with spoolid %s created and "
"transferred to %s.\n", spoolid, RSCS_USERID);
else if (info->user_specified)
printf("Reader file with spoolid %s created and "
"transferred to %s.\n", spoolid, info->user);
else
printf("Reader file with spoolid %s created.\n",
spoolid);
} else if (info->action == PUNCH)
printf("Punch file with spoolid %s created.\n", spoolid);
else
printf("Printer file with spoolid %s created.\n", spoolid);
}
/*
* Issue CP command CLOSE PUNCH
*/
static void close_ur_device_simple(struct vmur *info)
{
char cmd[MAXCMDLEN];
sprintf(cmd, "CLOSE %X", info->devno);
cpcmd(cmd, NULL, NULL, 0);
}
/*
* Issue CP command CLOSE PUNCH PURGE
*/
static void close_ur_device_purge(struct vmur *info)
{
char cmd[MAXCMDLEN];
if (info->node_specified) {
sprintf(cmd, "SPOOL %X NOCONT", info->devno);
cpcmd(cmd, NULL, NULL, 0);
}
sprintf(cmd, "CLOSE %X PURGE", info->devno);
cpcmd(cmd, NULL, NULL, 0);
}
/*
* Issue "CP QUERY VIRTUAL devno" to retrieve punch device information
* Exit, if devno has CONT status
*/
static int is_punch_cont(struct vmur *info)
{
char *buf;
char cmd[MAXCMDLEN];
int rc = 0;
sprintf(cmd, "QUERY VIRTUAL %X", info->devno);
cpcmd(cmd, &buf, NULL, 0);
if (!strncmp(buf + 15, " CONT", 6))
rc = 1;
free(buf);
return rc;
}
/*
* Provide tag information for RSCS
*/
static void rscs_punch_setup(struct vmur *info)
{
char cmd[MAXCMDLEN];
sprintf(cmd, "SPOOL %X CONT", info->devno);
cpcmd(cmd, NULL, NULL, 0);
sprintf(cmd, "TAG DEV %X %s %s", info->devno, info->node, info->user);
cpcmd(cmd, NULL, NULL, 0);
return;
}
/*
* Purge punch file in case of a signal e.g. CTRL-C
*/
static void ur_write_sig_handler(int sig, siginfo_t *sip, void *p)
{
close_ur_device_purge(&vmur_info);
ERR_EXIT("Operation terminated, no spool file created.\n");
}
/*
* Read on line from fd not including newline
*/
static int read_line(int fd, char *buf, int len, int lf)
{
int offs = 0;
memset(buf, 0, len);
do {
int rc;
rc = read(fd, buf + offs, 1);
if (rc < 0)
return -EIO;
if (rc == 0)
return -ENODATA;
if (*(buf + offs) == lf)
goto found;
offs++;
} while (offs < len);
return -EINVAL;
found:
*(buf + offs) = 0;
return offs;
}
/*
* Read text file for punch/print
*/
static int read_text_file(struct vmur *info, int fd, char *out_buf, size_t len)
{
int rc, pos = 0;
static int line = 1;
char sep, pad;
char *buf;
sep = '\n';
pad = ' ';
buf = malloc(info->ur_reclen + 1);
if (!buf)
return -ENOMEM;
do {
int line_len;
size_t rec_len, out_len;
char *in_ptr, *out_ptr;
line_len = read_line(fd, buf, info->ur_reclen + 1, sep);
if (line_len == -ENODATA) {
break;
} else if (line_len == -EINVAL) {
ERR("Input line %i too long. Unit record length"
" must not exceed %i\n", line, info->ur_reclen);
goto fail;
} else if (line_len < 0) {
ERR("Read failed: %s", strerror(errno));
goto fail;
}
line++;
memset(buf + line_len, pad, info->ur_reclen - line_len);
rec_len = out_len = info->ur_reclen;
in_ptr = buf;
out_ptr = &out_buf[pos];
rc = iconv(info->iconv, &in_ptr, &rec_len, &out_ptr, &out_len);
if ((rc == -1) || (out_len != 0)) {
ERR("Code page conversion failed at line %i\n", line);
goto fail;
}
pos += info->ur_reclen;
} while (pos < len);
free(buf);
return pos;
fail:
free(buf);
return -1;
}
/*
* Read blocked file for punch/print
*/
static int read_blocked_file(struct vmur *info, int fd, char *out_buf,
size_t len)
{
int line_len, pos = 0;
static int line = 1;
char sep, pad;
char *buf;
sep = info->blocked_separator;
pad = info->blocked_padding;
buf = malloc(info->ur_reclen + 1);
if (!buf)
return -ENOMEM;
do {
line_len = read_line(fd, buf, info->ur_reclen + 1, sep);
if (line_len == -ENODATA) {
break;
} else if (line_len == -EINVAL) {
ERR("Input line %i too long. Unit record length"
" must not exceed %i\n", line, info->ur_reclen);
goto fail;
} else if (len < 0) {
ERR("Read failed: %s", strerror(errno));
goto fail;
}
line++;
memset(buf + line_len, pad, info->ur_reclen - line_len);
memcpy(&out_buf[pos], buf, info->ur_reclen);
pos += info->ur_reclen;
} while (pos < len);
free(buf);
return pos;
fail:
free(buf);
return -1;
}
/*
* Read file for punch/print
*/
static int read_input_file(struct vmur *info, int fd, char *out_buf, size_t len)
{
int rc;
if (info->text_specified) {
rc = read_text_file(info, fd, out_buf, len);
} else if (info->blocked_specified) {
rc = read_blocked_file(info, fd, out_buf, len);
} else {
rc = read(fd, out_buf, len);
if (rc == -1) {
ERR("Could not read file %s\n%s\n", info->file_name,
strerror(errno));
return -EIO;
}
}
return rc;
}
/*
* Write function for punch and printer
*/
static void ur_write(struct vmur *info)
{
int fhi, fho, residual, anything_written = 0;
char *sfdata;
ssize_t count;
acquire_lock(info);
/* close punch preventively */
close_ur_device_simple(info);
/* Check punch. If punch is spooled CONT, exit */
if (is_punch_cont(info))
ERR_EXIT("Virtual punch device %X is spooled CONT.\n",
info->devno);
sfdata = malloc(info->ur_reclen * VMUR_REC_COUNT);
if (!sfdata)
ERR_EXIT("Could allocate memory for buffer (%i)\n",
info->ur_reclen);
/* Open Linux file */
if (info->file_name_specified) {
fhi = open(info->file_name, O_RDONLY);
if (fhi == -1)
ERR_EXIT("Could not open file %s\n%s\n",
info->file_name, strerror(errno));
} else {
fhi = STDIN_FILENO;
}
if (info->node_specified)
rscs_punch_setup(info);
/* Open UR device */
fho = open(info->devnode, O_WRONLY | O_NONBLOCK);
if (fho == -1) {
ERR("Could not open device %s\n%s\n", info->devnode,
strerror(errno));
goto fail;
}
set_signal_handler(info, ur_write_sig_handler);
/* read linux file data, and write it to VM punch device */
do {
count = read_input_file(info, fhi, sfdata,
info->ur_reclen * VMUR_REC_COUNT);
if (count < 0)
goto fail;
else if (count == 0)
break; /* EOF */
residual = (info->ur_reclen - (count % info->ur_reclen))
% info->ur_reclen;
memset(sfdata + count, 0, residual);
if (write(fho, sfdata, count + residual) == -1) {
ERR("Could not write on device %s (%s)\n",
info->devnode, strerror(errno));
if (errno == EIO)
ERR("Spool file limit exceeded or spool space "
"full?\n");
goto fail;
} else
anything_written = 1;
} while (1);
close(fho);
if (anything_written)
close_ur_device(info);
else
ERR_EXIT("No spool file created - probably empty input.\n");
free(sfdata);
if (fhi != STDIN_FILENO)
close(fhi);
return;
fail:
close_ur_device_purge(info);
exit(1);
}
/*
* Ask if file should be purged, if -f is not specified
*/
static void ur_purge_question(struct vmur *info)
{
char buf[5] = {};
if (info->force_specified)
return;
if (info->spoolid_specified)
fprintf(stderr, "%s: purge %s %s? ", prog_name, info->queue,
info->spoolid);
else
fprintf(stderr, "%s: purge all %s files? ", prog_name,
info->queue);
fgets(buf, sizeof(buf), stdin);
if (strcasecmp(buf, "y\n") == 0)
return;
if (strcasecmp(buf, "yes\n") == 0)
return;
exit(0);
}
/*
* Purge spool file
*/
static int ur_purge(struct vmur *info)
{
char *buf, cmd[MAXCMDLEN];
ur_purge_question(info);
if (info->spoolid_specified)
sprintf(cmd, "PURGE * %s %s", info->queue, info->spoolid);
else
sprintf(cmd, "PURGE * %s ALL", info->queue);
acquire_lock(info);
cpcmd(cmd, &buf, NULL, 0);
ERR("%s", buf);
free(buf);
return 0;
}
/*
* Order spool file to top of the queue
*/
static int ur_order(struct vmur *info)
{
char cmd[MAXCMDLEN];
sprintf(cmd, "ORDER * %s %s", info->queue, info->spoolid);
acquire_lock(info);
cpcmd(cmd, NULL, NULL, 0);
return 0;
}
/*
* List spool files
*/
static int ur_list(struct vmur *info)
{
char *buf;
char cmd[MAXCMDLEN];
if (info->spoolid_specified)
sprintf(cmd, "QUERY %s * %s ALL", info->queue, info->spoolid);
else
sprintf(cmd, "QUERY %s * ALL", info->queue);
cpcmd(cmd, &buf, NULL, 1);
printf("%s", buf);
free(buf);
return 0;
}
/*
* Initialize iconv: "from" -> "to"
*/
static void setup_iconv(struct vmur *info, char *from, char *to)
{
info->iconv = iconv_open(to, from);
if (info->iconv == ((iconv_t) -1))
ERR_EXIT("Could not initialize conversion table %s->%s.\n",
from, to);
}
int main(int argc, char **argv)
{
/* set name of program */
prog_name = basename(argv[0]);
/* set default values */
init_info(&vmur_info);
/* parse command line options and check syntax */
parse_opts(&vmur_info, argc, argv);
switch (vmur_info.action) {
case RECEIVE:
setup_ur_device(&vmur_info);
if (vmur_info.text_specified)
setup_iconv(&vmur_info, EBCDIC_CODE_PAGE,
ASCII_CODE_PAGE);
ur_receive(&vmur_info);
break;
case PUNCH:
case PRINT:
if (vmur_info.text_specified)
setup_iconv(&vmur_info, ASCII_CODE_PAGE,
EBCDIC_CODE_PAGE);
setup_ur_device(&vmur_info);
ur_write(&vmur_info);
break;
case PURGE:
ur_purge(&vmur_info);
break;
case ORDER:
ur_order(&vmur_info);
break;
case LIST:
ur_list(&vmur_info);
break;
default:
ERR("Internal error: unknown action '%i'\n", vmur_info.action);
return -EINVAL;
}
return 0;
}
|