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
|
/* tstuu.c
Test the uucp package on a UNIX system.
Copyright (C) 1991, 1992, 1993, 1994, 1995, 2002 Ian Lance Taylor
This file is part of the Taylor UUCP package.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
The author of the program may be contacted at ian@airs.com.
*/
#include "uucp.h"
#if USE_RCS_ID
const char tstuu_rcsid[] = "$Id: tstuu.c,v 1.89 2002/03/05 19:10:41 ian Rel $";
#endif
#include "sysdep.h"
#include "system.h"
#include "getopt.h"
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#if HAVE_SYS_TIMES_H
#include <sys/times.h>
#endif
#if HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#if HAVE_SELECT
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#if HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#endif
#if HAVE_POLL
#if HAVE_STROPTS_H
#include <stropts.h>
#endif
#if HAVE_POLL_H
#include <poll.h>
#endif
#endif
#if HAVE_FCNTL_H
#include <fcntl.h>
#else
#if HAVE_SYS_FILE_H
#include <sys/file.h>
#endif
#endif
#ifndef O_RDONLY
#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR 2
#endif
#if HAVE_TIME_H
#if ! HAVE_SYS_TIME_H || ! HAVE_SELECT || TIME_WITH_SYS_TIME
#include <time.h>
#endif
#endif
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#if HAVE_UNION_WAIT
typedef union wait wait_status;
#else
typedef int wait_status;
#endif
#if HAVE_STREAMS_PTYS
#include <termio.h>
extern char *ptsname ();
#endif
/* Get definitions for both O_NONBLOCK and O_NDELAY. */
#ifndef O_NDELAY
#ifdef FNDELAY
#define O_NDELAY FNDELAY
#else /* ! defined (FNDELAY) */
#define O_NDELAY 0
#endif /* ! defined (FNDELAY) */
#endif /* ! defined (O_NDELAY) */
#ifndef O_NONBLOCK
#ifdef FNBLOCK
#define O_NONBLOCK FNBLOCK
#else /* ! defined (FNBLOCK) */
#define O_NONBLOCK 0
#endif /* ! defined (FNBLOCK) */
#endif /* ! defined (O_NONBLOCK) */
#if O_NDELAY == 0 && O_NONBLOCK == 0
#error No way to do nonblocking I/O
#endif
/* Get definitions for EAGAIN, EWOULDBLOCK and ENODATA. */
#ifndef EAGAIN
#ifndef EWOULDBLOCK
#define EAGAIN (-1)
#define EWOULDBLOCK (-1)
#else /* defined (EWOULDBLOCK) */
#define EAGAIN EWOULDBLOCK
#endif /* defined (EWOULDBLOCK) */
#else /* defined (EAGAIN) */
#ifndef EWOULDBLOCK
#define EWOULDBLOCK EAGAIN
#endif /* ! defined (EWOULDBLOCK) */
#endif /* defined (EAGAIN) */
#ifndef ENODATA
#define ENODATA EAGAIN
#endif
/* Make sure we have a CLK_TCK definition, even if it makes no sense.
This is in case TIMES_TICK is defined as CLK_TCK. */
#ifndef CLK_TCK
#define CLK_TCK (60)
#endif
/* Don't try too hard to get a TIMES_TICK value; it doesn't matter
that much. */
#if TIMES_TICK == 0
#undef TIMES_TICK
#define TIMES_TICK CLK_TCK
#endif
#if TIMES_DECLARATION_OK
extern long times ();
#endif
#ifndef SIGCHLD
#define SIGCHLD SIGCLD
#endif
#if 1
#define ZUUCICO_CMD "login uucp"
#define UUCICO_EXECL "/bin/login", "login", "uucp"
#else
#define ZUUCICO_CMD "su - nuucp"
#define UUCICO_EXECL "/bin/su", "su", "-", "nuucp"
#endif
#if ! HAVE_SELECT && ! HAVE_POLL
#error You need select or poll
#endif
#if ! HAVE_REMOVE
#undef remove
#define remove unlink
#endif
/* Buffer chain to hold data read from a uucico. */
#define BUFCHARS (512)
struct sbuf
{
struct sbuf *qnext;
int cstart;
int cend;
char ab[BUFCHARS];
};
/* Local functions. */
static void umake_file P((const char *zfile, int cextra));
static void uprepare_test P((boolean fmake, int itest,
boolean fcall_uucico,
const char *zsys));
static void ucheck_file P((const char *zfile, const char *zerr,
int cextra));
static void ucheck_test P((int itest, boolean fcall_uucico));
static RETSIGTYPE uchild P((int isig));
static int cpshow P((char *z, int bchar));
static void uchoose P((int *po1, int *po2));
static long cread P((int o, struct sbuf **));
static boolean fsend P((int o, int oslave, struct sbuf **));
static boolean fwritable P((int o));
static void xsystem P((const char *zcmd));
static FILE *xfopen P((const char *zname, const char *zmode));
static char *zDebug;
static int iTest;
static boolean fCall_uucico;
static int iPercent;
static pid_t iPid1, iPid2;
static int cFrom1, cFrom2;
static char abLogout1[sizeof "tstout /dev/ptyp0"];
static char abLogout2[sizeof "tstout /dev/ptyp0"];
static char *zProtocols;
int
main (argc, argv)
int argc;
char **argv;
{
int iopt;
const char *zcmd1, *zcmd2;
const char *zsys;
boolean fmake = TRUE;
int omaster1, oslave1, omaster2, oslave2;
char abpty1[sizeof "/dev/ptyp0"];
char abpty2[sizeof "/dev/ptyp0"];
struct sbuf *qbuf1, *qbuf2;
#if ! HAVE_TAYLOR_CONFIG
fprintf (stderr, "%s: only works when compiled with HAVE_TAYLOR_CONFIG\n",
argv[0]);
exit (1);
#endif
zcmd1 = NULL;
zcmd2 = NULL;
zsys = "test2";
while ((iopt = getopt (argc, argv, "c:np:s:t:ux:1:2:")) != EOF)
{
switch (iopt)
{
case 'c':
zProtocols = optarg;
break;
case 'n':
fmake = FALSE;
break;
case 'p':
iPercent = (int) strtol (optarg, (char **) NULL, 10);
srand ((unsigned int) ixsysdep_time ((long *) NULL));
break;
case 's':
zsys = optarg;
break;
case 't':
iTest = (int) strtol (optarg, (char **) NULL, 10);
break;
case 'u':
fCall_uucico = TRUE;
break;
case 'x':
zDebug = optarg;
break;
case '1':
zcmd1 = optarg;
break;
case '2':
zcmd2 = optarg;
break;
default:
fprintf (stderr,
"Taylor UUCP %s, copyright (C) 1991, 92, 93, 94, 1995 Ian Lance Taylor\n",
VERSION);
fprintf (stderr,
"Usage: tstuu [-xn] [-t #] [-u] [-1 cmd] [-2 cmd]\n");
exit (EXIT_FAILURE);
}
}
if (fCall_uucico && zcmd2 == NULL)
zcmd2 = ZUUCICO_CMD;
uprepare_test (fmake, iTest, fCall_uucico, zsys);
(void) remove ("/usr/tmp/tstuu/spool1/core");
(void) remove ("/usr/tmp/tstuu/spool2/core");
omaster1 = -1;
oslave1 = -1;
omaster2 = -1;
oslave2 = -1;
#if ! HAVE_STREAMS_PTYS
{
char *zptyname;
const char *zpty;
zptyname = abpty1;
for (zpty = "pqrs"; *zpty != '\0'; ++zpty)
{
int ipty;
for (ipty = 0; ipty < 16; ipty++)
{
int om, os;
FILE *e;
sprintf (zptyname, "/dev/pty%c%c", *zpty,
"0123456789abcdef"[ipty]);
om = open (zptyname, O_RDWR);
if (om < 0)
continue;
zptyname[5] = 't';
os = open (zptyname, O_RDWR);
if (os < 0)
{
(void) close (om);
continue;
}
if (omaster1 == -1)
{
omaster1 = om;
oslave1 = os;
e = fopen ("/usr/tmp/tstuu/pty1", "w");
if (e == NULL)
{
perror ("fopen");
exit (EXIT_FAILURE);
}
fprintf (e, "%s", zptyname + 5);
if (fclose (e) != 0)
{
perror ("fclose");
exit (EXIT_FAILURE);
}
zptyname = abpty2;
}
else
{
omaster2 = om;
oslave2 = os;
e = fopen ("/usr/tmp/tstuu/pty2", "w");
if (e == NULL)
{
perror ("fopen");
exit (EXIT_FAILURE);
}
fprintf (e, "%s", zptyname + 5);
if (fclose (e) != 0)
{
perror ("fclose");
exit (EXIT_FAILURE);
}
break;
}
}
if (omaster1 != -1 && omaster2 != -1)
break;
}
}
#else /* HAVE_STREAMS_PTYS */
{
int ipty;
for (ipty = 0; ipty < 2; ipty++)
{
int om, os;
FILE *e;
char *znam;
struct termio stio;
om = open ((char *) "/dev/ptmx", O_RDWR);
if (om < 0)
break;
znam = ptsname (om);
if (znam == NULL)
break;
if (unlockpt (om) != 0
|| grantpt (om) != 0)
break;
os = open (znam, O_RDWR);
if (os < 0)
{
(void) close (om);
om = -1;
break;
}
if (ioctl (os, I_PUSH, "ptem") < 0
|| ioctl(os, I_PUSH, "ldterm") < 0)
{
perror ("ioctl");
exit (EXIT_FAILURE);
}
/* Can this really be right? */
memset (&stio, 0, sizeof (stio));
stio.c_cflag = B9600 | CS8 | CREAD | HUPCL;
if (ioctl(os, TCSETA, &stio) < 0)
{
perror ("TCSETA");
exit (EXIT_FAILURE);
}
if (omaster1 == -1)
{
strcpy (abpty1, znam);
omaster1 = om;
oslave1 = os;
e = fopen ("/usr/tmp/tstuu/pty1", "w");
if (e == NULL)
{
perror ("fopen");
exit (EXIT_FAILURE);
}
fprintf (e, "%s", znam + 5);
if (fclose (e) != 0)
{
perror ("fclose");
exit (EXIT_FAILURE);
}
}
else
{
strcpy (abpty2, znam);
omaster2 = om;
oslave2 = os;
e = fopen ("/usr/tmp/tstuu/pty2", "w");
if (e == NULL)
{
perror ("fopen");
exit (EXIT_FAILURE);
}
fprintf (e, "%s", znam + 5);
if (fclose (e) != 0)
{
perror ("fclose");
exit (EXIT_FAILURE);
}
}
}
}
#endif /* HAVE_STREAMS_PTYS */
if (omaster2 == -1)
{
fprintf (stderr, "No pseudo-terminals available\n");
exit (EXIT_FAILURE);
}
/* Make sure we can or these into an int for the select call. Most
systems could use 31 instead of 15, but it should never be a
problem. */
if (omaster1 > 15 || omaster2 > 15)
{
fprintf (stderr, "File descriptors are too large\n");
exit (EXIT_FAILURE);
}
/* Prepare to log out the command if it is a login command. On
Ultrix 4.0 uucico can only be run from login for some reason. */
if (zcmd1 == NULL
|| strncmp (zcmd1, "login", sizeof "login" - 1) != 0)
abLogout1[0] = '\0';
else
sprintf (abLogout1, "tstout %s", abpty1);
if (zcmd2 == NULL
|| strncmp (zcmd2, "login", sizeof "login" - 1) != 0)
abLogout2[0] = '\0';
else
sprintf (abLogout2, "tstout %s", abpty2);
iPid1 = fork ();
if (iPid1 < 0)
{
perror ("fork");
exit (EXIT_FAILURE);
}
else if (iPid1 == 0)
{
if (close (0) < 0
|| close (1) < 0
|| close (omaster1) < 0
|| close (omaster2) < 0
|| close (oslave2) < 0)
perror ("close");
if (dup2 (oslave1, 0) < 0
|| dup2 (oslave1, 1) < 0)
perror ("dup2");
if (close (oslave1) < 0)
perror ("close");
/* This is said to improve the tests on Linux. */
sleep (3);
if (zDebug != NULL)
fprintf (stderr, "About to exec first process\n");
if (zcmd1 != NULL)
exit (system ((char *) zcmd1));
else
{
(void) execl ("uucico", "uucico", "-I", "/usr/tmp/tstuu/Config1",
"-q", "-S", zsys, "-pstdin", (const char *) NULL);
perror ("execl failed");
exit (EXIT_FAILURE);
}
}
iPid2 = fork ();
if (iPid2 < 0)
{
perror ("fork");
kill (iPid1, SIGTERM);
exit (EXIT_FAILURE);
}
else if (iPid2 == 0)
{
if (close (0) < 0
|| close (1) < 0
|| close (omaster1) < 0
|| close (oslave1) < 0
|| close (omaster2) < 0)
perror ("close");
if (dup2 (oslave2, 0) < 0
|| dup2 (oslave2, 1) < 0)
perror ("dup2");
if (close (oslave2) < 0)
perror ("close");
/* This is said to improve the tests on Linux. */
sleep (5);
if (zDebug != NULL)
fprintf (stderr, "About to exec second process\n");
if (fCall_uucico)
{
(void) execl (UUCICO_EXECL, (const char *) NULL);
perror ("execl failed");
exit (EXIT_FAILURE);
}
else if (zcmd2 != NULL)
exit (system ((char *) zcmd2));
else
{
(void) execl ("uucico", "uucico", "-I", "/usr/tmp/tstuu/Config2",
"-lq", (const char *)NULL);
perror ("execl failed");
exit (EXIT_FAILURE);
}
}
signal (SIGCHLD, uchild);
if (fcntl (omaster1, F_SETFL, O_NDELAY | O_NONBLOCK) < 0
&& errno == EINVAL)
(void) fcntl (omaster1, F_SETFL, O_NONBLOCK);
if (fcntl (omaster2, F_SETFL, O_NDELAY | O_NONBLOCK) < 0
&& errno == EINVAL)
(void) fcntl (omaster2, F_SETFL, O_NONBLOCK);
qbuf1 = NULL;
qbuf2 = NULL;
while (TRUE)
{
int o1, o2;
boolean fcont;
o1 = omaster1;
o2 = omaster2;
uchoose (&o1, &o2);
if (o1 == -1 && o2 == -1)
{
if (zDebug != NULL)
fprintf (stderr, "Five second pause\n");
continue;
}
if (o1 != -1)
cFrom1 += cread (omaster1, &qbuf1);
if (o2 != -1)
cFrom2 += cread (omaster2, &qbuf2);
do
{
fcont = FALSE;
if (qbuf1 != NULL
&& fwritable (omaster2)
&& fsend (omaster2, oslave2, &qbuf1))
fcont = TRUE;
if (qbuf2 != NULL
&& fwritable (omaster1)
&& fsend (omaster1, oslave1, &qbuf2))
fcont = TRUE;
if (! fcont
&& (qbuf1 != NULL || qbuf2 != NULL))
{
long cgot1, cgot2;
cgot1 = cread (omaster1, &qbuf1);
cFrom1 += cgot1;
cgot2 = cread (omaster2, &qbuf2);
cFrom2 += cgot2;
fcont = TRUE;
}
}
while (fcont);
}
/*NOTREACHED*/
}
/* When a child dies, kill them both. */
static RETSIGTYPE
uchild (isig)
int isig ATTRIBUTE_UNUSED;
{
struct tms sbase, s1, s2;
signal (SIGCHLD, SIG_DFL);
/* Give the processes a chance to die on their own. */
sleep (2);
(void) kill (iPid1, SIGTERM);
(void) kill (iPid2, SIGTERM);
(void) times (&sbase);
#if HAVE_WAITPID
(void) waitpid (iPid1, (pointer) NULL, 0);
#else /* ! HAVE_WAITPID */
#if HAVE_WAIT4
(void) wait4 (iPid1, (pointer) NULL, 0, (struct rusage *) NULL);
#else /* ! HAVE_WAIT4 */
(void) wait ((wait_status *) NULL);
#endif /* ! HAVE_WAIT4 */
#endif /* ! HAVE_WAITPID */
(void) times (&s1);
#if HAVE_WAITPID
(void) waitpid (iPid2, (pointer) NULL, 0);
#else /* ! HAVE_WAITPID */
#if HAVE_WAIT4
(void) wait4 (iPid2, (wait_status *) NULL, 0, (struct rusage *) NULL);
#else /* ! HAVE_WAIT4 */
(void) wait ((wait_status *) NULL);
#endif /* ! HAVE_WAIT4 */
#endif /* ! HAVE_WAITPID */
(void) times (&s2);
fprintf (stderr,
" First child: user: %g; system: %g\n",
(double) (s1.tms_cutime - sbase.tms_cutime) / (double) TIMES_TICK,
(double) (s1.tms_cstime - sbase.tms_cstime) / (double) TIMES_TICK);
fprintf (stderr,
"Second child: user: %g; system: %g\n",
(double) (s2.tms_cutime - s1.tms_cutime) / (double) TIMES_TICK,
(double) (s2.tms_cstime - s1.tms_cstime) / (double) TIMES_TICK);
ucheck_test (iTest, fCall_uucico);
if (abLogout1[0] != '\0')
{
if (zDebug != NULL)
fprintf (stderr, "Executing %s\n", abLogout1);
(void) system (abLogout1);
}
if (abLogout2[0] != '\0')
{
if (zDebug != NULL)
fprintf (stderr, "Executing %s\n", abLogout2);
(void) system (abLogout2);
}
fprintf (stderr, "Wrote %d bytes from 1 to 2\n", cFrom1);
fprintf (stderr, "Wrote %d bytes from 2 to 1\n", cFrom2);
if (access ("/usr/tmp/tstuu/spool1/core", R_OK) == 0)
fprintf (stderr, "core file 1 exists\n");
if (access ("/usr/tmp/tstuu/spool2/core", R_OK) == 0)
fprintf (stderr, "core file 2 exists\n");
exit (EXIT_SUCCESS);
}
/* Open a file without error. */
static FILE *
xfopen (zname, zmode)
const char *zname;
const char *zmode;
{
FILE *eret;
eret = fopen (zname, zmode);
if (eret == NULL)
{
perror (zname);
exit (EXIT_FAILURE);
}
return eret;
}
/* Close a file without error. */
static void xfclose P((FILE *e));
static void
xfclose (e)
FILE *e;
{
if (fclose (e) != 0)
{
perror ("fclose");
exit (EXIT_FAILURE);
}
}
/* Create a test file. */
static void
umake_file (z, c)
const char *z;
int c;
{
int i;
FILE *e;
e = xfopen (z, "w");
for (i = 0; i < 256; i++)
{
int i2;
for (i2 = 0; i2 < 256; i2++)
putc (i, e);
}
for (i = 0; i < c; i++)
putc (i, e);
xfclose (e);
}
/* Check a test file. */
static void
ucheck_file (z, zerr, c)
const char *z;
const char *zerr;
int c;
{
int i;
FILE *e;
e = xfopen (z, "r");
for (i = 0; i < 256; i++)
{
int i2;
for (i2 = 0; i2 < 256; i2++)
{
int bread;
bread = getc (e);
if (bread == EOF)
{
fprintf (stderr,
"%s: Unexpected EOF at position %d,%d\n",
zerr, i, i2);
xfclose (e);
return;
}
if (bread != i)
fprintf (stderr,
"%s: At position %d,%d got %d expected %d\n",
zerr, i, i2, bread, i);
}
}
for (i = 0; i < c; i++)
{
int bread;
bread = getc (e);
if (bread == EOF)
{
fprintf (stderr, "%s: Unexpected EOF at extra %d\n", zerr, i);
xfclose (e);
return;
}
if (bread != i)
fprintf (stderr, "%s: At extra %d got %d expected %d\n",
zerr, i, bread, i);
}
if (getc (e) != EOF)
fprintf (stderr, "%s: File is too long", zerr);
xfclose (e);
}
/* Prepare all the configuration files for testing. */
static void
uprepare_test (fmake, itest, fcall_uucico, zsys)
boolean fmake;
int itest;
boolean fcall_uucico;
const char *zsys;
{
FILE *e;
const char *zuucp1, *zuucp2;
const char *zuux1, *zuux2;
char ab[1000];
const char *zfrom;
const char *zto;
/* We must make /usr/tmp/tstuu world writeable or we won't be able to
receive files into it. */
(void) umask (0);
#ifndef S_IWOTH
#define S_IWOTH 02
#endif
if (mkdir ((char *) "/usr/tmp/tstuu",
IPUBLIC_DIRECTORY_MODE | S_IWOTH) != 0
&& errno != EEXIST)
{
perror ("mkdir");
exit (EXIT_FAILURE);
}
if (mkdir ((char *) "/usr/tmp/tstuu/spool1", IPUBLIC_DIRECTORY_MODE) != 0
&& errno != EEXIST)
{
perror ("mkdir");
exit (EXIT_FAILURE);
}
if (mkdir ((char *) "/usr/tmp/tstuu/spool2", IPUBLIC_DIRECTORY_MODE) != 0
&& errno != EEXIST)
{
perror ("mkdir");
exit (EXIT_FAILURE);
}
if (fmake)
{
e = xfopen ("/usr/tmp/tstuu/Config1", "w");
fprintf (e, "# First test configuration file\n");
fprintf (e, "nodename test1\n");
fprintf (e, "spool /usr/tmp/tstuu/spool1\n");
fprintf (e, "lockdir /usr/tmp/tstuu/spool1\n");
fprintf (e, "sysfile /usr/tmp/tstuu/System1\n");
fprintf (e, "sysfile /usr/tmp/tstuu/System1.2\n");
fprintf (e, "portfile /usr/tmp/tstuu/Port1\n");
(void) remove ("/usr/tmp/tstuu/Log1");
#if ! HAVE_HDB_LOGGING
fprintf (e, "logfile /usr/tmp/tstuu/Log1\n");
#else
fprintf (e, "%s\n", "logfile /usr/tmp/tstuu/Log1/%s/%s");
#endif
fprintf (e, "statfile /usr/tmp/tstuu/Stats1\n");
fprintf (e, "debugfile /usr/tmp/tstuu/Debug1\n");
fprintf (e, "callfile /usr/tmp/tstuu/Call1\n");
fprintf (e, "pubdir /usr/tmp/tstuu\n");
#if HAVE_V2_CONFIG
fprintf (e, "v2-files no\n");
#endif
#if HAVE_HDB_CONFIG
fprintf (e, "hdb-files no\n");
#endif
if (zDebug != NULL)
fprintf (e, "debug %s\n", zDebug);
xfclose (e);
e = xfopen ("/usr/tmp/tstuu/System1", "w");
fprintf (e, "# This file is ignored, to test multiple system files\n");
fprintf (e, "time never\n");
xfclose (e);
e = xfopen ("/usr/tmp/tstuu/System1.2", "w");
fprintf (e, "# First test system file\n");
fprintf (e, "time any\n");
fprintf (e, "port stdin\n");
fprintf (e, "# That was the defaults\n");
fprintf (e, "system %s\n", zsys);
if (! fcall_uucico)
{
FILE *eprog;
eprog = xfopen ("/usr/tmp/tstuu/Chat1", "w");
/* Wait for the other side to open the port and flush input. */
fprintf (eprog, "sleep 2\n");
fprintf (eprog,
"echo password $1 speed $2 1>&2\n");
fprintf (eprog, "echo test1\n");
fprintf (eprog, "exit 0\n");
xfclose (eprog);
if (chmod ("/usr/tmp/tstuu/Chat1",
S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0)
{
perror ("chmod (/usr/tmp/tstuu/Chat1)");
exit (EXIT_FAILURE);
}
fprintf (e, "chat-program /usr/tmp/tstuu/Chat1 \\P \\S\n");
fprintf (e, "chat word: \\P\n");
fprintf (e, "chat-fail login;\n");
fprintf (e, "call-login *\n");
fprintf (e, "call-password *\n");
}
else
fprintf (e, "chat \"\"\n");
fprintf (e, "call-transfer yes\n");
fprintf (e, "commands cat\n");
if (! fcall_uucico && iPercent == 0)
{
fprintf (e, "protocol-parameter g window 7\n");
fprintf (e, "protocol-parameter g packet-size 4096\n");
fprintf (e, "protocol-parameter j avoid \\377\n");
}
if (zProtocols != NULL)
fprintf (e, "protocol %s\n", zProtocols);
xfclose (e);
e = xfopen ("/usr/tmp/tstuu/Port1", "w");
fprintf (e, "port stdin\n");
fprintf (e, "type stdin\n");
xfclose (e);
e = xfopen ("/usr/tmp/tstuu/Call1", "w");
fprintf (e, "Call out password file\n");
fprintf (e, "%s test1 pass\\s1\n", zsys);
xfclose (e);
if (! fcall_uucico)
{
FILE *eprog;
e = xfopen ("/usr/tmp/tstuu/Config2", "w");
fprintf (e, "# Second test configuration file\n");
fprintf (e, "nodename test2\n");
fprintf (e, "spool /usr/tmp/tstuu/spool2\n");
fprintf (e, "lockdir /usr/tmp/tstuu/spool2\n");
fprintf (e, "sysfile /usr/tmp/tstuu/System2\n");
(void) remove ("/usr/tmp/tstuu/Log2");
#if ! HAVE_HDB_LOGGING
fprintf (e, "logfile /usr/tmp/tstuu/Log2\n");
#else
fprintf (e, "%s\n", "logfile /usr/tmp/tstuu/Log2/%s/%s");
#endif
fprintf (e, "statfile /usr/tmp/tstuu/Stats2\n");
fprintf (e, "debugfile /usr/tmp/tstuu/Debug2\n");
fprintf (e, "passwdfile /usr/tmp/tstuu/Pass2\n");
fprintf (e, "pubdir /usr/tmp/tstuu\n");
#if HAVE_V2_CONFIG
fprintf (e, "v2-files no\n");
#endif
#if HAVE_HDB_CONFIG
fprintf (e, "hdb-files no\n");
#endif
if (zDebug != NULL)
fprintf (e, "debug %s\n", zDebug);
xfclose (e);
e = xfopen ("/usr/tmp/tstuu/System2", "w");
fprintf (e, "# Second test system file\n");
fprintf (e, "system test1\n");
fprintf (e, "called-login test1\n");
fprintf (e, "request true\n");
fprintf (e, "commands cat\n");
if (zProtocols != NULL)
fprintf (e, "protocol %s\n", zProtocols);
eprog = xfopen ("/usr/tmp/tstuu/Chat2", "w");
fprintf (eprog,
"echo port $1 1>&2\n");
fprintf (eprog, "exit 0\n");
xfclose (eprog);
if (chmod ("/usr/tmp/tstuu/Chat2",
S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0)
{
perror ("chmod (/usr/tmp/tstuu/Chat2");
exit (EXIT_FAILURE);
}
fprintf (e, "called-chat-program /bin/sh /usr/tmp/tstuu/Chat2 \\Y\n");
fprintf (e, "time any\n");
xfclose (e);
e = xfopen ("/usr/tmp/tstuu/Pass2", "w");
fprintf (e, "# Call in password file\n");
fprintf (e, "test1 pass\\s1\n");
xfclose (e);
}
}
zuucp1 = "./uucp -I /usr/tmp/tstuu/Config1 -r";
zuux1 = "./uux -I /usr/tmp/tstuu/Config1 -r";
if (fcall_uucico)
{
zuucp2 = "/usr/bin/uucp -r";
zuux2 = "/usr/bin/uux -r";
}
else
{
zuucp2 = "./uucp -I /usr/tmp/tstuu/Config2 -r";
zuux2 = "./uux -I /usr/tmp/tstuu/Config2 -r";
}
/* Test transferring a file from the first system to the second. */
if (itest == 0 || itest == 1)
{
zfrom = "/usr/tmp/tstuu/from1";
if (fcall_uucico)
zto = "/usr/spool/uucppublic/to1";
else
zto = "/usr/tmp/tstuu/to1";
(void) remove (zto);
umake_file (zfrom, 0);
sprintf (ab, "%s %s %s!%s", zuucp1, zfrom, zsys, zto);
xsystem (ab);
}
/* Test having the first system request a file from the second. */
if (itest == 0 || itest == 2)
{
if (fcall_uucico)
zfrom = "/usr/spool/uucppublic/from2";
else
zfrom = "/usr/tmp/tstuu/from2";
zto = "/usr/tmp/tstuu/to2";
(void) remove (zto);
umake_file (zfrom, 3);
sprintf (ab, "%s %s!%s %s", zuucp1, zsys, zfrom, zto);
xsystem (ab);
}
/* Test having the second system send a file to the first. */
if (itest == 0 || itest == 3)
{
if (fcall_uucico)
zfrom = "/usr/spool/uucppublic/from3";
else
zfrom = "/usr/tmp/tstuu/from3";
zto = "/usr/tmp/tstuu/to3";
(void) remove (zto);
umake_file (zfrom, 5);
sprintf (ab, "%s -c \\~/from3 test1!~/to3", zuucp2);
xsystem (ab);
}
/* Test having the second system request a file from the first. */
if (itest == 0 || itest == 4)
{
zfrom = "/usr/tmp/tstuu/from4";
if (fcall_uucico)
zto = "/usr/spool/uucppublic/to4";
else
zto = "/usr/tmp/tstuu/to4";
(void) remove (zto);
umake_file (zfrom, 7);
sprintf (ab, "%s test1!%s %s", zuucp2, zfrom, zto);
xsystem (ab);
}
/* Test having the second system make an execution request. */
if (itest == 0 || itest == 5)
{
zfrom = "/usr/tmp/tstuu/from5";
if (fcall_uucico)
zto = "/usr/spool/uucppublic/to5";
else
zto = "/usr/tmp/tstuu/to5";
(void) remove (zto);
umake_file (zfrom, 11);
sprintf (ab, "%s test1!cat '<%s' '>%s'", zuux2, zfrom, zto);
xsystem (ab);
}
/* Test having the first system request a wildcard. */
if (itest == 0 || itest == 6)
{
const char *zfrom1, *zfrom2;
if (fcall_uucico)
{
zfrom = "/usr/spool/uucppublic/to6\\*";
zfrom1 = "/usr/spool/uucppublic/to6.1";
zfrom2 = "/usr/spool/uucppublic/to6.2";
}
else
{
zfrom = "/usr/tmp/tstuu/spool2/to6\\*";
zfrom1 = "/usr/tmp/tstuu/spool2/to6.1";
zfrom2 = "/usr/tmp/tstuu/spool2/to6.2";
}
umake_file (zfrom1, 100);
umake_file (zfrom2, 101);
(void) remove ("/usr/tmp/tstuu/to6.1");
(void) remove ("/usr/tmp/tstuu/to6.2");
sprintf (ab, "%s %s!%s /usr/tmp/tstuu", zuucp1, zsys, zfrom);
xsystem (ab);
}
/* Test having the second system request a wildcard. */
if (itest == 0 || itest == 7)
{
const char *zto1, *zto2;
if (fcall_uucico)
{
zto = "/usr/spool/uucppublic";
zto1 = "/usr/spool/uucppublic/to7.1";
zto2 = "/usr/spool/uucppublic/to7.2";
}
else
{
zto = "/usr/tmp/tstuu";
zto1 = "/usr/tmp/tstuu/to7.1";
zto2 = "/usr/tmp/tstuu/to7.2";
}
umake_file ("/usr/tmp/tstuu/spool1/to7.1", 150);
umake_file ("/usr/tmp/tstuu/spool1/to7.2", 155);
(void) remove (zto1);
(void) remove (zto2);
sprintf (ab, "%s test1!/usr/tmp/tstuu/spool1/to7.\\* %s", zuucp2,
zto);
xsystem (ab);
}
/* Test an E command. This runs cat, discarding the output. */
if ((itest == 0 || itest == 8) && ! fcall_uucico)
{
umake_file ("/usr/tmp/tstuu/from8", 30);
sprintf (ab, "%s - test2!cat < /usr/tmp/tstuu/from8", zuux1);
xsystem (ab);
}
}
/* Try to make sure the file transfers were successful. */
static void
ucheck_test (itest, fcall_uucico)
int itest;
boolean fcall_uucico;
{
if (itest == 0 || itest == 1)
{
if (fcall_uucico)
ucheck_file ("/usr/spool/uucppublic/to1", "test 1", 0);
else
ucheck_file ("/usr/tmp/tstuu/to1", "test 1", 0);
}
if (itest == 0 || itest == 2)
ucheck_file ("/usr/tmp/tstuu/to2", "test 2", 3);
if (itest == 0 || itest == 3)
ucheck_file ("/usr/tmp/tstuu/to3", "test 3", 5);
if (itest == 0 || itest == 4)
{
if (fcall_uucico)
ucheck_file ("/usr/spool/uucppublic/to4", "test 4", 7);
else
ucheck_file ("/usr/tmp/tstuu/to4", "test 4", 7);
}
if (itest == 0 || itest == 6)
{
ucheck_file ("/usr/tmp/tstuu/to6.1", "test 6.1", 100);
ucheck_file ("/usr/tmp/tstuu/to6.2", "test 6.2", 101);
}
if (itest == 0 || itest == 7)
{
const char *zto1, *zto2;
if (fcall_uucico)
{
zto1 = "/usr/spool/uucppublic/to7.1";
zto2 = "/usr/spool/uucppublic/to7.2";
}
else
{
zto1 = "/usr/tmp/tstuu/to7.1";
zto2 = "/usr/tmp/tstuu/to7.2";
}
ucheck_file (zto1, "test 7.1", 150);
ucheck_file (zto2, "test 7.2", 155);
}
}
/* A debugging routine used when displaying buffers. */
static int
cpshow (z, ichar)
char *z;
int ichar;
{
if (isprint (BUCHAR (ichar)) && ichar != '\"')
{
*z = (char) ichar;
return 1;
}
*z++ = '\\';
switch (ichar)
{
case '\n':
*z = 'n';
return 2;
case '\r':
*z = 'r';
return 2;
case '\"':
*z = '\"';
return 2;
default:
sprintf (z, "%03o", (unsigned int)(ichar & 0xff));
return strlen (z) + 1;
}
}
/* Pick one of two file descriptors which is ready for reading, or
return in five seconds. If the argument is ready for reading,
leave it alone; otherwise set it to -1. */
static void
uchoose (po1, po2)
int *po1;
int *po2;
{
#if HAVE_SELECT
int iread;
struct timeval stime;
iread = (1 << *po1) | (1 << *po2);
stime.tv_sec = 5;
stime.tv_usec = 0;
if (select ((*po1 > *po2 ? *po1 : *po2) + 1, (pointer) &iread,
(pointer) NULL, (pointer) NULL, &stime) < 0)
{
perror ("select");
uchild (SIGCHLD);
}
if ((iread & (1 << *po1)) == 0)
*po1 = -1;
if ((iread & (1 << *po2)) == 0)
*po2 = -1;
#else /* ! HAVE_SELECT */
#if HAVE_POLL
struct pollfd as[2];
as[0].fd = *po1;
as[0].events = POLLIN;
as[1].fd = *po2;
as[1].events = POLLIN;
if (poll (as, 2, 5 * 1000) < 0)
{
perror ("poll");
uchild (SIGCHLD);
}
if ((as[0].revents & POLLIN) == 0)
*po1 = -1;
if ((as[1].revents & POLLIN) == 0)
*po2 = -1;
#endif /* HAVE_POLL */
#endif /* ! HAVE_SELECT */
}
/* Read some data from a file descriptor. This keeps reading until
one of the reads gets no data. */
static long
cread (o, pqbuf)
int o;
struct sbuf **pqbuf;
{
long ctotal;
while (*pqbuf != NULL && (*pqbuf)->qnext != NULL)
pqbuf = &(*pqbuf)->qnext;
ctotal = 0;
while (TRUE)
{
int cgot;
if (*pqbuf != NULL
&& (size_t) (*pqbuf)->cend >= sizeof (*pqbuf)->ab)
pqbuf = &(*pqbuf)->qnext;
if (*pqbuf == NULL)
{
*pqbuf = (struct sbuf *) malloc (sizeof (struct sbuf));
if (*pqbuf == NULL)
{
fprintf (stderr, "Out of memory\n");
uchild (SIGCHLD);
}
(*pqbuf)->qnext = NULL;
(*pqbuf)->cstart = 0;
(*pqbuf)->cend = 0;
}
cgot = read (o, (*pqbuf)->ab + (*pqbuf)->cend,
(sizeof (*pqbuf)->ab) - (*pqbuf)->cend);
if (cgot < 0)
{
if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENODATA)
cgot = 0;
else
{
perror ("read");
uchild (SIGCHLD);
}
}
if (cgot == 0)
return ctotal;
ctotal += cgot;
if (zDebug != NULL)
{
char abshow[325];
char *zfrom;
char *zshow;
int i;
zfrom = (*pqbuf)->ab + (*pqbuf)->cend;
zshow = abshow;
for (i = 0; i < cgot && i < 80; i++, zfrom++)
zshow += cpshow (zshow, *zfrom);
if (i < cgot)
{
*zshow++ = '.';
*zshow++ = '.';
*zshow++ = '.';
}
*zshow = '\0';
fprintf (stderr, "Read from %d: %d \"%s\"\n", o, cgot, abshow);
fflush (stderr);
}
if (iPercent > 0)
{
int i;
int c;
c = 0;
for (i = 0; i < cgot; i++)
{
if (rand () % 1000 < iPercent)
{
++(*pqbuf)->ab[(*pqbuf)->cend + i];
++c;
}
}
if (zDebug != NULL && c > 0)
fprintf (stderr, "Clobbered %d bytes\n", c);
}
(*pqbuf)->cend += cgot;
if (ctotal > 256)
return ctotal;
}
}
/* Write data to a file descriptor until one of the writes gets no
data. */
static boolean
fsend (o, oslave, pqbuf)
int o;
int oslave;
struct sbuf **pqbuf;
{
long ctotal;
ctotal = 0;
while (*pqbuf != NULL)
{
int cwrite, cwrote;
if ((*pqbuf)->cstart >= (*pqbuf)->cend)
{
struct sbuf *qfree;
qfree = *pqbuf;
*pqbuf = (*pqbuf)->qnext;
free ((pointer) qfree);
continue;
}
#ifdef FIONREAD
{
long cunread;
if (ioctl (oslave, FIONREAD, &cunread) < 0)
{
perror ("FIONREAD");
uchild (SIGCHLD);
}
if (zDebug != NULL)
fprintf (stderr, "%ld unread\n", cunread);
cwrite = 256 - cunread;
if (cwrite <= 0)
break;
}
#else /* ! FIONREAD */
if (! fwritable (o))
break;
cwrite = 1;
#endif /* ! FIONREAD */
if (cwrite > (*pqbuf)->cend - (*pqbuf)->cstart)
cwrite = (*pqbuf)->cend - (*pqbuf)->cstart;
cwrote = write (o, (*pqbuf)->ab + (*pqbuf)->cstart, cwrite);
if (cwrote < 0)
{
if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENODATA)
cwrote = 0;
else
{
perror ("write");
uchild (SIGCHLD);
}
}
if (cwrote == 0)
break;
ctotal += cwrote;
(*pqbuf)->cstart += cwrote;
}
if (zDebug != NULL && ctotal > 0)
fprintf (stderr, "Wrote %ld to %d\n", ctotal, o);
return ctotal > 0;
}
/* Check whether a file descriptor can be written to. */
static boolean
fwritable (o)
int o;
{
#if HAVE_SELECT
int iwrite;
struct timeval stime;
int cfds;
iwrite = 1 << o;
stime.tv_sec = 0;
stime.tv_usec = 0;
cfds = select (o + 1, (pointer) NULL, (pointer) &iwrite,
(pointer) NULL, &stime);
if (cfds < 0)
{
perror ("select");
uchild (SIGCHLD);
}
return cfds > 0;
#else /* ! HAVE_SELECT */
#if HAVE_POLL
struct pollfd s;
int cfds;
s.fd = o;
s.events = POLLOUT;
cfds = poll (&s, 1, 0);
if (cfds < 0)
{
perror ("poll");
uchild (SIGCHLD);
}
return cfds > 0;
#endif /* HAVE_POLL */
#endif /* ! HAVE_SELECT */
}
/* A version of the system command that checks for errors. */
static void
xsystem (zcmd)
const char *zcmd;
{
int istat;
istat = system ((char *) zcmd);
if (istat != 0)
{
fprintf (stderr, "Command failed with status %d\n", istat);
fprintf (stderr, "%s\n", zcmd);
exit (EXIT_FAILURE);
}
}
|