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
|
/************************************************************************
* This program is Copyright (C) 1986-1996 by Jonathan Payne. JOVE is *
* provided to you without charge, and with no warranty. You may give *
* away copies of JOVE, including sources, provided that this notice is *
* included in all the files. *
************************************************************************/
#include "jove.h"
#ifdef IPROCS /* the body is the rest of this file */
#include <signal.h>
#include "re.h"
#include "jctype.h"
#include "disp.h"
#include "fp.h"
#include "sysprocs.h"
#include "iproc.h"
#include "ask.h"
#include "extend.h"
#include "fmt.h"
#include "insert.h"
#include "marks.h"
#include "move.h"
#include "proc.h"
#include "wind.h"
#ifdef USE_KILLPG
# ifndef FULL_UNISTD
extern int UNMACRO(killpg) proto((int /*pgrp*/, int /*sig*/));
# endif
#else /* !USE_KILLPG */
#define killpg(pid, sig) kill(-(pid), (sig))
#endif /* USE_KILLPG */
#include <errno.h>
struct process {
Process p_next;
#ifdef PIPEPROCS
int p_toproc; /* write end of pipe to process */
pid_t p_portpid, /* pid of direct child (the portsrv) */
p_pid; /* pid of real child i.e. not portsrv */
bool p_portlive; /* is portsrv still live? */
#else
int p_fd; /* file descriptor of pty? opened r/w */
# define p_portpid p_pid /* pid of direct child (the shell) */
pid_t p_pid; /* pid of child (the shell) */
#endif
Buffer *p_buffer; /* add output to end of this buffer */
char *p_name; /* ... */
int p_io_state; /* state of communication with child and descendents */
# define IO_NEW 0 /* brand new, process has not yet sent output */
# define IO_RUNNING 1 /* just running */
# define IO_EOFED 2 /* we have sent EOF, or have received it */
int p_child_state; /* state of child process, as disclosed by SIGCHLD/wait */
# define C_LIVE 0 /* no news is good news */
# define C_STOPPED 1
# define C_EXITED 2
# define C_KILLED 3
int p_reason; /* If killed, p_reason is the signal;
if exited, it is the the exit code */
Mark *p_mark; /* where output left us */
bool p_dbx_mode; /* whether to parse output for file/lineno
pairs */
};
private void
jputenv proto((char *)),
proc_rec proto((Process, char *, size_t)),
proc_close proto ((Process)),
SendData proto((bool)),
obituary proto((register Process child, wait_status_t w));
private bool
proc_kill proto((Process, int));
#define child_dead(p) ((p)->p_child_state >= C_EXITED)
#define io_eofed(p) ((p)->p_io_state == IO_EOFED)
private bool
dead(p)
Process p;
{
return p == NULL || (io_eofed(p) && child_dead(p));
}
#define proc_cmd(p) ((p)->p_name)
private Process procs = NULL;
private Process
proc_pid(pid)
pid_t pid;
{
register Process p;
for (p = procs; ; p = p->p_next)
if (p == NULL || p->p_portpid == pid)
return p;
}
private char *
proc_bufname(p)
Process p;
{
Buffer *b = p->p_buffer;
return (b != NULL) ? b->b_name : "<Deleted>";
}
void
ProcKill()
{
(void) proc_kill(
buf_exists(ask_buf(curbuf, ALLOW_OLD | ALLOW_INDEX))->b_process,
SIGKILL);
}
private void
make_argv(argv, ap)
register char *argv[];
va_list ap;
{
register int i = 0;
argv[i++] = va_arg(ap, char *);
argv[i++] = basename(argv[0]);
do ; while ((argv[i++] = va_arg(ap, char *)) != NULL);
}
/* There are two very different implementation techniques: pipes and ptys.
* The following two chunks of code implement the same operations using
* the two techniques: the first uses pipes and the second uses ptys.
*/
#ifdef PIPEPROCS
#include <sgtty.h>
char Portsrv[FILESIZE]; /* path to portsrv program (in LibDir) */
int NumProcs = 0;
File *ProcInput;
private int ProcOutput = -1;
pid_t kbd_pid = -1;
void
read_pipe_proc(pid, nbytes)
pid_t pid;
register int nbytes;
{
register Process p = proc_pid(pid);
if (p == NULL) {
writef("\riproc: unknown pid (%d)", (int)pid);
} else if (p->p_io_state == IO_NEW) {
/* first message: pid of real child, not of portsrv */
pid_t rpid;
(void) f_readn(ProcInput, (char *) &rpid, sizeof(pid_t));
p->p_pid = rpid;
p->p_io_state = IO_RUNNING;
UpdModLine = YES;
} else if (nbytes == -1) {
/* okay to clean up this process */
wait_status_t status;
(void) f_readn(ProcInput, (char *) &status, sizeof(status));
/* Reap portsrv process, if it still remains.
* Note that any status for this process is uninteresting:
* the interesting status came (just now) by pipe.
*/
while (p->p_portlive) {
wait_status_t w;
pid_t rpid = wait(&w);
if (rpid == -1) {
if (errno == ECHILD) {
/* oops: no children, not even portsrv */
p->p_portlive = NO;
}
} else {
kill_off(rpid, w);
}
}
proc_close(p);
obituary(p, status);
} else {
/* regular data */
while (nbytes > 0) {
char ibuf[512+1]; /* NOTE: room for added NUL */
size_t n = f_readn(ProcInput, ibuf,
(size_t)min((int)(sizeof ibuf) - 1, nbytes));
nbytes -= n;
proc_rec(p, ibuf, n);
}
}
}
void
ProcInt()
{
(void) proc_kill(curbuf->b_process, SIGINT);
}
void
ProcQuit()
{
(void) proc_kill(curbuf->b_process, SIGQUIT);
}
private void
proc_close(p)
Process p;
{
if (p->p_toproc >= 0) {
(void) close(p->p_toproc);
p->p_toproc = -1; /* writes will fail */
NumProcs -= 1;
p->p_io_state = IO_EOFED; /* process output EOF is tied to reaping */
UpdModLine = YES;
}
}
private void
proc_write(p, buf, nbytes)
Process p;
char *buf;
size_t nbytes;
{
if (p->p_toproc >= 0) {
while (nbytes != 0) {
SSIZE_T wr = write(p->p_toproc, (UnivConstPtr)buf, nbytes);
if (wr >= 0) {
nbytes -= wr;
buf += wr;
} else if (errno != EINTR) {
complain("[error writing to iproc: %d %s]", errno, strerror(errno));
}
}
}
}
# ifdef STDARGS
private void
proc_strt(char *bufname, bool clobber, char *procname, ...)
# else
private /*VARARGS3*/ void
proc_strt(bufname, clobber, procname, va_alist)
char *bufname;
bool clobber;
char *procname;
va_dcl
# endif
{
Window *owind = curwind;
int toproc[2];
pid_t pid;
Process newp;
Buffer *newbuf;
char *argv[32];
va_list ap;
untieDeadProcess(buf_exists(bufname));
isprocbuf(bufname); /* make sure BUFNAME is either nonexistant
or is of type B_PROCESS */
if (access(Portsrv, X_OK) < 0) {
complain("[Couldn't access %s: %s]", Portsrv, strerror(errno));
/* NOTREACHED */
}
dopipe(toproc);
if (NumProcs++ == 0)
kbd_strt(); /* may create kbd process: must be done before fork */
switch (pid = fork()) {
case -1:
pipeclose(toproc);
if (--NumProcs == 0)
kbd_stop();
complain("[Fork failed: %s]", strerror(errno));
/* NOTREACHED */
case 0:
argv[0] = "portsrv";
va_init(ap, procname);
make_argv(&argv[1], ap);
va_end(ap);
(void) dup2(toproc[0], 0);
(void) dup2(ProcOutput, 1);
(void) dup2(ProcOutput, 2);
pipeclose(toproc);
jcloseall();
jputenv("EMACS=t");
jputenv("TERM=emacs");
/* ??? the following line is not useful for terminfo systems */
jputenv(sprint("TERMCAP=emacs:co#%d:tc=unknown:", CO-1));
execv(Portsrv, argv);
raw_complain("execl failed: %s", strerror(errno));
_exit(1);
}
newp = (Process) emalloc(sizeof *newp);
newp->p_next = procs;
newp->p_io_state = IO_NEW;
newp->p_child_state = C_LIVE;
newp->p_name = copystr(procname);
procs = newp;
newp->p_portpid = pid;
newp->p_pid = -1;
newp->p_portlive = YES;
newbuf = do_select((Window *)NULL, bufname);
newbuf->b_type = B_PROCESS;
newp->p_buffer = newbuf;
newbuf->b_process = newp; /* sorta circular, eh? */
pop_wind(bufname, clobber, B_PROCESS);
ToLast();
if (!bolp())
LineInsert(1);
/* Pop_wind() after everything is set up; important!
Bindings won't work right unless newbuf->b_process is already
set up BEFORE NEWBUF is first SetBuf()'d. */
newp->p_mark = MakeMark(curline, curchar);
newp->p_dbx_mode = NO;
newp->p_toproc = toproc[1];
(void) close(toproc[0]);
SetWind(owind);
}
void
closeiprocs()
{
Process p;
if (ProcOutput != -1)
close(ProcOutput);
for (p=procs; p!=NULL; p=p->p_next)
if (p->p_toproc >= 0)
close(p->p_toproc);
}
private void
kbd_init()
{
/* Initiate the keyboard process.
* We only get here after a portsrv process has been started
* so we know that the portsrv program must exist -- no need to test.
*/
int p[2];
(void) pipe(p);
ProcInput = fd_open("process-input", F_READ|F_LOCKED, p[0],
(char *)NULL, 512);
ProcOutput = p[1];
switch (kbd_pid = fork()) {
case -1:
complain("Cannot fork kbd process! %s\n", strerror(errno));
/* NOTREACHED */
case 0:
(void) setsighandler(SIGINT, SIG_IGN);
(void) setsighandler(SIGALRM, SIG_IGN);
close(1);
dup(ProcOutput);
jcloseall();
execl(Portsrv, "kbd", (char *)NULL);
raw_complain("kbd exec failed: %s", strerror(errno));
exit(-1);
}
}
/* kbd_stop() returns true if it changes the state of (i.e. stops)
the keyboard process. This is so kbd stopping and starting in
pairs works - see finish() in jove.c. */
private bool kbd_state = NO;
void
kbd_strt()
{
if (!kbd_state) {
if (kbd_pid == -1)
kbd_init();
else
kill(kbd_pid, KBDSIG);
kbd_state = YES;
}
}
bool
kbd_stop()
{
if (kbd_state) {
kbd_state = NO;
kill(kbd_pid, KBDSIG);
return YES;
}
return NO;
}
void
kbd_kill()
{
if (kbd_pid != -1) {
kill(kbd_pid, SIGKILL);
kbd_pid = -1;
}
}
#else /* !PIPEPROCS */
#include <sys/time.h>
#include <fcntl.h>
#include "select.h"
#include "ttystate.h"
# ifdef SVR4_PTYS
# include <stdlib.h> /* for grantpt and unlockpt, at least in Solaris 2.3 */
# include <sys/stropts.h>
extern char *ptsname proto((int /*filedes*/)); /* get name of slave */
# endif
# ifdef IRIX_PTYS
# include <sys/types.h>
# include <sys/stat.h>
# endif
void
read_pty_proc(fd)
register int fd;
{
register Process p;
int n;
char ibuf[1024+1]; /* NOTE: room for added NUL */
for (p = procs; ; p = p->p_next) {
if (p == NULL) {
writef("\riproc: unknown fd %d", fd);
return;
}
if (p->p_fd == fd)
break;
}
n = read(fd, (UnivPtr) ibuf, sizeof(ibuf) - 1);
if (n <= 0) {
if (n < 0) {
switch (errno) {
case EIO:
case EWOULDBLOCK:
#if EWOULDBLOCK != EAGAIN
case EAGAIN:
#endif
/* ??? On some systems, pty reads fail initially, for
* reasons that are not clear to me (DHR). This code
* forgives these specific kinds of failure until the
* process leaves the NEW state. We hope that this
* does not cause a long busy wait.
*/
if (p->p_io_state == IO_NEW)
return;
/* We get here if the i-proc closes stdout
* before exiting (eg. Bourne Shell),
* so we treat it as a simple EOF.
*/
break;
default:
/* true I/O error */
swritef(ibuf, sizeof(ibuf),
"\n[pty read error: %s]\n", strerror(errno));
proc_rec(p, ibuf, strlen(ibuf));
/* now treat as EOF... */
}
} /* else, EOF received */
proc_close(p);
} else {
if (p->p_io_state == IO_NEW) {
p->p_io_state = IO_RUNNING;
UpdModLine = YES;
}
proc_rec(p, ibuf, (size_t)n);
}
}
void
ProcCont()
{
Process p = curbuf->b_process;
if (proc_kill(p, SIGCONT) && p->p_child_state == C_STOPPED) {
p->p_child_state = C_LIVE;
UpdModLine = YES;
}
}
/* Sending non-character info through "keyboard"
*
* There are two kinds of "out of band" signals we wish to send
* through the pty: signals (such as SIGINT) and EOF. On top
* of that, there is a kind of out of band signal we wish not to
* send: ERASE and KILL. Unfortunately, there are a number of ways
* in which our environment may vary. Two ioctls are useful:
* TIOCREMOTE and TIOCSIGNAL/TIOCSIG.
*
*
* TIOCREMOTE:
*
* Some systems support the TIOCREMOTE ioctl. With this ioctl,
* the "input editing" is suppressed on the characters sent
* to the slave. Input editing involves interpreting ERASE,
* KILL, INTERRUPT, QUIT, EOF, etc. characters. It is best
* to run this way since JOVE already does input editing.
*
* The scant documentation on TIOCREMOTE in Solaris2.3 suggests
* that the third argument to the TIOCREMOTE ioctl ought to be
* an integer (but a pointer to the integer works). The SunOS4
* ldterm(4m) manpage says that the third argument is to be a
* pointer to an integer. At the moment, we only use the pointer
* form.
*
* Although IRIX defines TIOCREMOTE, it does not seem to work.
* This may well be true of other systems, so as a safety,
* we support "NO_TIOCREMOTE" as a feature deselect macro
* for systems that define TIOCREMOTE but are broken.
*
* Under BSDI's BSD/386 v1.[01], the TIOCREMOTE ioctls appear to fail
* for send_xc (without an error indication), but work otherwise. This
* only affects dstop-process, so it is probably best not to define
* NO_TIOCREMOTE. Even if we do define NO_TIOCREMOTE, the dstop-process
* may require the user to do a process-newline (apparently, if the tty
* input is being canonicalized). How odd.
*
*
* TIOCSIGNAL/TIOCSIG:
*
* Some systems support the TIOCSIGNAL ioctl. With this ioctl,
* a signal can be sent through the pty. Recent (4.3 or later?)
* BSD systems seem to provide a TIOCSIG ioctl which is similar.
*
* The TIOCSIGNAL ioctl is not well documented and seems to be
* broken on at least IRIX 5.3. Again, we provide "NO_TIOCSIGNAL"
* to prevent using it on systems that define it but are broken.
*
* Another mystery: systems vary on how the signal number should be
* passed in the TIOCSIGNAL ioctl. SunOS4 requires that the third
* argument be a pointer to an integer, the signal number. Vanilla
* SVR4 requires that the third argument be a an integer, the signal
* number. Solaris2.3 accepts either. The SunOS 5.3 STREAMS
* Programmer's Guide says that the third argument is an int. We have
* not figured out, for an arbitrary system with TIOCSIGNAL, how to
* tell which form the third argument should take. For now, it is
* conditionalized on SVR4_PTYS.
*
* If TIOCSIGNAL/TIOCSIG isn't supplied (perhaps from termios.h), we
* cannot send signals to the child when TIOCREMOTE is on, so we just
* turn it off for a moment. This is pretty dubious because the user
* might have done an stty to change or disable the characters.
*
* We don't know how to implement dstop using TIOCSIGNAL/TIOCSIG, so
* we use the dubious trick.
*/
# if !defined(NO_TIOCREMOTE) && !defined(TIOCREMOTE)
# define NO_TIOCREMOTE 1
# endif
# if !defined(NO_TIOCSIGNAL) && !defined(TIOCSIGNAL) && !defined(TIOCSIG)
# define NO_TIOCSIGNAL 1
# endif
# ifdef NO_TIOCSIGNAL
# define kbd_sig(sig, tch, sch) send_oxc(tch, sch)
# else /* !NO_TIOCSIGNAL */
# define kbd_sig(sig, tch, sch) send_sig(sig)
private void
send_sig(sig)
int sig;
{
Process p;
if ((p = curbuf->b_process) == NULL || p->p_fd < 0)
complain("[No process]");
ToLast();
# ifdef TIOCSIG
if (ioctl(p->p_fd, TIOCSIG, sig) < 0)
complain("TIOCSIG failed: %d %s", errno, strerror(errno));
# else /* !TIOCSIG */
# ifdef SVR4_PTYS
if (ioctl(p->p_fd, TIOCSIGNAL, sig) < 0)
complain("TIOCSIGNAL failed: %d %s", errno, strerror(errno));
# else /* !SVR4_PTYS */
if (ioctl(p->p_fd, TIOCSIGNAL, (void *) &sig) < 0)
complain("TIOCSIGNAL failed: %d %s", errno, strerror(errno));
# endif /* !SVR4_PTYS */
# endif /* !TIOCSIG */
}
# endif /* !NO_TIOCSIGNAL */
# if defined(NO_TIOCREMOTE) || defined(NO_TIOCSIGNAL) || (!defined(TERMIO) && !defined(TERMIOS)) || defined(VDSUSP)
# if defined(TERMIO) || defined(TERMIOS)
# define send_oxc(tch, sch) send_xc(sg[NO].c_cc[tch])
# else
# define send_oxc(tch, sfld) send_xc(tc[NO].sfld)
# endif
private void
send_xc(c)
char c;
{
Process p;
if ((p = curbuf->b_process) == NULL || p->p_fd < 0)
complain("[No process]");
ToLast();
{
char buf[1+1]; /* NOTE: room for added NUL */
buf[0] = c;
proc_rec(p, buf, (size_t)1);
{
# ifndef NO_TIOCREMOTE
int
off = 0,
on = 1;
while (ioctl(p->p_fd, TIOCREMOTE, (UnivPtr) &off) < 0)
if (errno != EINTR)
complain("TIOCREMOTE OFF failed: %d %s", errno, strerror(errno));
# endif /* !NO_TIOCREMOTE */
for (;;) {
switch (write(p->p_fd, (UnivPtr) &c, sizeof(c))) {
case -1: /* error: consider ERRNO */
if (errno == EINTR)
continue; /* interrupted: try again */
complain("pty write of control failed: %d %s", errno, strerror(errno));
/* NOTREACHED */
case 0: /* nothing happened: try again */
continue;
case 1: /* done */
break;
}
break;
}
# ifndef NO_TIOCREMOTE
while (ioctl(p->p_fd, TIOCREMOTE, (UnivPtr) &on) < 0)
if (errno != EINTR)
complain("TIOCREMOTE ON failed: %d %s", errno, strerror(errno));
# endif /* !NO_TIOCREMOTE */
}
}
}
# endif /* defined(NO_TIOCREMOTE) || defined(NO_TIOCSIGNAL) */
void
ProcEof()
{
# ifdef NO_TIOCREMOTE
/* we have to write a char */
send_oxc(VEOF, t_eofc);
# else /* !NO_TIOCREMOTE */
/* write a zero-length record to signify EOF */
static char mess[] = "<EOF> "; /* NOTE: NUL will be overwritten */
Process p;
if ((p = curbuf->b_process) == NULL || p->p_fd < 0)
complain("[No process]");
ToLast();
proc_rec(p, mess, sizeof(mess)-1);
while (write(p->p_fd, (UnivPtr) mess, (size_t)0) < 0)
if (errno != EINTR)
complain("[error writing EOF to iproc: %d %s]", errno, strerror(errno));
# endif /* !NO_TIOCREMOTE */
}
void
ProcInt()
{
kbd_sig(SIGINT, VINTR, t_intrc);
}
void
ProcQuit()
{
kbd_sig(SIGQUIT, VQUIT, t_quitc);
}
void
ProcStop()
{
# if (!defined(TERMIO) && !defined(TERMIOS)) || defined(VSUSP)
kbd_sig(SIGTSTP, VSUSP, t_suspc);
# else
complain("[stop-process not supported]");
# endif
}
void
ProcDStop()
{
/* we don't know how to send a dstop via TIOCSIGNAL/TIOCSIG */
# if (!defined(TERMIO) && !defined(TERMIOS)) || defined(VDSUSP)
send_oxc(VDSUSP, t_dsuspc);
# else
complain("[dstop-process not supported]");
# endif
}
private void
proc_close(p)
Process p;
{
if (p->p_fd >= 0) {
(void) close(p->p_fd);
FD_CLR(p->p_fd, &global_fd);
p->p_fd = -1;
p->p_io_state = IO_EOFED; /* I/O is finished */
UpdModLine = YES;
}
}
private void
proc_write(p, buf, nbytes)
Process p;
char *buf;
size_t nbytes;
{
if (p->p_fd >= 0) {
fd_set mask;
FD_ZERO(&mask);
FD_SET(p->p_fd, &mask);
while (write(p->p_fd, (UnivPtr) buf, nbytes) < 0)
(void) select(p->p_fd + 1, (fd_set *)NULL, &mask, (fd_set *)NULL,
(struct timeval *)NULL);
}
}
# ifdef STDARGS
private void
proc_strt(char *bufname, bool clobber, char *procname, ...)
# else
private /*VARARGS2*/ void
proc_strt(bufname, clobber, procname, va_alist)
char *bufname;
bool clobber;
char *procname;
va_dcl
# endif
{
va_list ap;
char *argv[32];
Window *owind = curwind;
pid_t pid;
Process newp;
Buffer *newbuf;
int i,
ptyfd = -1;
# if !defined(TERMIO) && !defined(TERMIOS)
# ifdef TIOCSETD
int ldisc; /* tty line discipline */
# endif
# ifdef TIOCLSET
int lmode; /* tty local flags */
# endif
# endif
register char *s,
*t;
char ttybuf[32];
# ifdef TERMIO
struct termio sgt;
# endif
# ifdef TERMIOS
struct termios sgt;
# endif
# ifdef SGTTY
struct sgttyb sgt;
# endif
# ifdef TIOCGWINSZ
struct winsize win;
# else
# ifdef BTL_BLIT
# include <sys/jioctl.h>
struct jwinsize jwin;
# endif
# endif
untieDeadProcess(buf_exists(bufname));
isprocbuf(bufname); /* make sure BUFNAME is either nonexistant
or is of type B_PROCESS */
va_init(ap, procname);
make_argv(argv, ap);
va_end(ap);
if (access(argv[0], X_OK) != 0) {
complain("[Couldn't access %s: %s]", argv[0], strerror(errno));
/* NOTREACHED */
}
# ifdef IRIX_PTYS
/*
* _getpty may fork off a child to execute mkpts to make a slave pty
* in /dev (if we need more) and set the correct ownership and
* modes on the slave pty. Since _getpty uses waitpid this works
* fine with regard to our other children, but we do have to be
* prepared to catch a SIGCHLD for an unknown child and ignore it ...
*/
s = _getpty(&ptyfd, O_RDWR|O_NDELAY, 0600, 0);
if (s == NULL) {
message("[No ptys!]");
goto fail;
}
(void)strcpy(ttybuf, s);
# endif /* IRIX_PTYS */
# ifdef SVR4_PTYS
if ((ptyfd = open("/dev/ptmx", O_RDWR)) < 0) {
message("[No ptys!]");
goto fail;
}
# ifndef GRANTPT_BUG
/* grantpt() seems to be implemented using a fork/exec.
* This is done to allow grantpt do do priviledged things
* via a setuid program. One consequence is that JOVE's
* SIGCLD/SIGCHLD handler must not do a wait that would
* reap the grantpt process. So much for library routines
* being black boxes. Worse, this restriction is not documented.
*/
if (grantpt(ptyfd) < 0) {
message("[grantpt failed]");
goto fail;
}
if (unlockpt(ptyfd) < 0) {
message("[unlockpt failed]");
goto fail;
}
# endif /* !GRANTPT_BUG */
if ((s = ptsname(ptyfd)) == NULL) {
message("[ptsname failed]");
goto fail;
}
strcpy(ttybuf, s);
(void) ioctl(ptyfd, TIOCFLUSH, (UnivPtr) NULL); /* ??? why? */
# endif /* SVR4_PTYS */
# ifdef BSD_PTYS
for (s = "pqrs"; ptyfd<0; s++) {
if (*s == '\0') {
message("[Out of ptys!]");
goto fail;
}
for (t = "0123456789abcdef"; *t; t++) {
swritef(ttybuf, sizeof(ttybuf), "/dev/pty%c%c", *s, *t);
if ((ptyfd = open(ttybuf, 2)) >= 0) {
ttybuf[5] = 't'; /* pty => tty */
# ifdef NEVER
/* Make sure both ends are available.
* ??? This code seems to confuse BSDI's BSD/386 v1.[01]
* so we have eliminated it. We leave this scar
* in case the checking was in fact useful on other
* systems. Part of this checking will still be
* done by the "access" below, but with no recovery.
*/
if ((i = open(ttybuf, 2)) < 0) {
(void) close(ptyfd);
ptyfd = -1;
} else {
(void) close(i);
break;
}
# else
break;
# endif
}
}
}
# endif /* BSD_PTYS */
/* Check that we can write to the pty, else things will fail in the
* child, where they're harder to detect. This will not work with
* GRANTPT_BUG because the grantpt and unlockpt have not been done yet.
*/
# ifndef GRANTPT_BUG
if (access(ttybuf, W_OK) != 0) {
int ugh = errno;
message("[Couldn't access ");
message(ttybuf);
message(": ");
message(strerror(ugh));
message("]");
goto fail;
}
# endif /* !GRANTPT_BUG */
# if !defined(TERMIO) && !defined(TERMIOS)
# ifdef TIOCGETD
(void) ioctl(0, TIOCGETD, (UnivPtr) &ldisc);
# endif
# ifdef TIOCLGET
(void) ioctl(0, TIOCLGET, (UnivPtr) &lmode);
# endif
# endif /* !defined(TERMIO) && !defined(TERMIOS) */
# ifdef TIOCGWINSZ
(void) ioctl(0, TIOCGWINSZ, (UnivPtr) &win);
# else
# ifdef BTL_BLIT
(void) ioctl(0, JWINSIZE, (UnivPtr) &jwin);
# endif /* BTL_BLIT */
# endif
switch (pid = fork()) {
case -1:
/* fork failed */
{
int ugh = errno; /* hold across library calls */
message("[Fork failed! ");
message(strerror(ugh));
message("]");
goto fail;
}
case 0:
/* child process */
# ifdef GRANTPT_BUG
/* grantpt() seems to be implemented using a fork/exec.
* This is done to allow grantpt do do priviledged things
* via a setuid program. One consequence is that JOVE's
* SIGCLD/SIGCHLD handler must not do a wait that would
* reap the grantpt process. So much for library routines
* being black boxes. Worse, this restriction is not documented.
*
* Worse still, at least Solaris 2.0 and SVR4.0 appear to have
* a bug: the wait is not restarted once interrupted. If the wait
* is interrupted, (1) the grantpt will return a failure status
* and (2) the process will not be reaped -- it will remain a
* zombie until JOVE exits or happens to reap it accidentally.
* Any interrupt could cause the premature end of the wait,
* but SIGCHLD (actually, SIGCLD) is the most probable.
*
* To dodge these bullets, we moved the grantpt into the child
* where we can turn off signal handling. Too bad this prevents
* us giving good diagnostics for grantpt and unlockpt.
* I hope I've found all the signals caught everywhere else.
*/
(void) setsighandler(SIGCHLD, SIG_DFL);
(void) setsighandler(SIGWINCH, SIG_DFL);
(void) setsighandler(SIGALRM, SIG_DFL);
(void) setsighandler(SIGINT, SIG_DFL);
/* (void) setsighandler(SIGQUIT, SIG_DFL); */ /* dead anyway */
/* (void) setsighandler(SIGHUP, SIG_DFL); */ /* dead anyway */
/* (void) setsighandler(SIGTERM, SIG_DFL); */ /* no longer used */
/* (void) setsighandler(SIGBUS, SIG_DFL); */ /* dead anyway */
/* (void) setsighandler(SIGSEGV, SIG_DFL); */ /* dead anyway */
/* (void) setsighandler(SIGPIPE, SIG_DFL); */ /* dead anyway */
if (grantpt(ptyfd) < 0) {
_exit(errno + 1);
}
if (unlockpt(ptyfd) < 0) {
_exit(errno + 1);
}
# endif /* GRANTPT_BUG */
jcloseall();
(void) close(0);
(void) close(1);
(void) close(2);
# ifdef TERMIOS
setsid();
# else /* !TERMIOS */
# ifdef TIOCNOTTY
/* get rid of controlling tty */
if ((i = open("/dev/tty", 2)) >= 0) {
(void) ioctl(i, TIOCNOTTY, (UnivPtr)NULL);
(void) close(i);
}
# endif /* TIOCNOTTY */
# endif /* !TERMIOS */
if (open(ttybuf, 2) != 0)
_exit(errno+1);
(void) dup2(0, 1);
(void) dup2(0, 2);
# ifdef SVR4_PTYS
(void) ioctl(0, I_PUSH, (UnivPtr) "ptem");
(void) ioctl(0, I_PUSH, (UnivPtr) "ldterm");
(void) ioctl(0, I_PUSH, (UnivPtr) "ttcompat");
# endif
# ifdef TIOCSCTTY
/* This is needed by OSF. It may be needed by BSDPOSIX systems.
* It should not hurt any system that define TIOCSCTTY.
*/
(void) ioctl(0, TIOCSCTTY); /* make this controling tty */
# endif
# ifndef NO_TIOCREMOTE
/* The TIOCREMOTE ioctl prevents the pty code from doing
* input editing on characters from the master. In particular
* we don't want ERASE, KILL, INTERRUPT, QUIT, etc. characters
* interpreted.
* On SVR4, this must be done *after* the slave side is set up.
* The easiest way to ensure this is to put it here, in the child
* after the slave is opened and has the STREAMS modules pushed,
* and before the master is closed.
*/
{
int on = 1;
if (ioctl(ptyfd, TIOCREMOTE, (UnivPtr) &on) < 0)
_exit(errno+1); /* no good way to signal user */
}
# endif
close(ptyfd);
# if !defined(TERMIO) && !defined(TERMIOS)
# ifdef TIOCSETD
(void) ioctl(0, TIOCSETD, (UnivPtr) &ldisc);
# endif
# ifdef TIOCLSET
(void) ioctl(0, TIOCLSET, (UnivPtr) &lmode);
# endif
# ifdef TIOCSETC
(void) ioctl(0, TIOCSETC, (UnivPtr) &tc[NO]);
# endif
# ifdef USE_TIOCSLTC
(void) ioctl(0, TIOCSLTC, (UnivPtr) &ls[NO]);
# endif
# endif /* !defined(TERMIO) && !defined(TERMIOS) */
# ifdef TIOCGWINSZ
win.ws_row = curwind->w_height;
(void) ioctl(0, TIOCSWINSZ, (UnivPtr) &win);
# else /* !TIOCGWINSZ */
# ifdef BTL_BLIT
jwin.bytesy = curwind->w_height;
(void) ioctl(0, JSWINSIZE, (UnivPtr) &jwin);
# endif
# endif /* !TIOCGWINSZ */
# if defined(TERMIO) || defined(TERMIOS)
sgt = sg[NO];
sgt.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | ICRNL
# ifdef IXANY /* not in QNX */
| IXANY
# endif
| IXON | IXOFF);
sgt.c_lflag &= ~(ECHO);
sgt.c_oflag &= ~(ONLCR | TABDLY);
# ifdef TERMIO
do ; while (ioctl(0, TCSETAW, (UnivPtr) &sgt) < 0 && errno == EINTR);
# endif
# ifdef TERMIOS
do ; while (tcsetattr(0, TCSADRAIN, &sgt) < 0 && errno == EINTR);
# endif
# else /* !(defined(TERMIO) || defined(TERMIOS)) */
sgt = sg[NO];
sgt.sg_flags &= ~(ECHO | CRMOD | ANYP | ALLDELAY | RAW | LCASE | CBREAK | TANDEM);
(void) stty(0, &sgt);
# endif /* !(defined(TERMIO) || defined(TERMIOS)) */
NEWPG();
# ifdef POSIX_PROCS
tcsetpgrp(0, getpid());
# else /* !POSIX_PROCS */
i = getpid();
(void) ioctl(0, TIOCSPGRP, (UnivPtr) &i);
# endif /* POSIX_PROCS */
jputenv("EMACS=t");
jputenv("TERM=emacs");
/* ??? the following line is not useful for terminfo systems */
jputenv(sprint("TERMCAP=emacs:co#%d:tc=unknown:", CO-1));
execvp(argv[0], &argv[1]);
raw_complain("execvp failed! %s", strerror(errno));
_exit(errno + 1);
}
newp = (Process) emalloc(sizeof *newp);
# ifdef O_NDELAY
fcntl(ptyfd, F_SETFL, O_NDELAY);
# endif
# ifdef O_NONBLOCK
fcntl(ptyfd, F_SETFL, O_NONBLOCK);
# endif
newp->p_fd = ptyfd;
newp->p_pid = pid;
newbuf = do_select((Window *)NULL, bufname);
newbuf->b_type = B_PROCESS;
newp->p_buffer = newbuf;
newbuf->b_process = newp; /* sorta circular, eh? */
pop_wind(bufname, clobber, B_PROCESS);
/* Pop_wind() after everything is set up; important!
Bindings won't work right unless newbuf->b_process is already
set up BEFORE NEWBUF is first SetBuf()'d. */
ToLast();
if (!bolp())
LineInsert(1);
newp->p_name = copystr(procname);
newp->p_io_state = IO_NEW;
newp->p_child_state = C_LIVE;
newp->p_mark = MakeMark(curline, curchar);
newp->p_dbx_mode = NO;
newp->p_next = procs;
procs = newp;
FD_SET(newp->p_fd, &global_fd);
if (global_maxfd <= newp->p_fd)
global_maxfd = newp->p_fd + 1;
SetWind(owind);
return;
fail:
if (ptyfd >= 0)
close(ptyfd);
}
/* NOTE 1: SIGCHLD is an asynchronous signal. To safely handle it,
* the sigchld_handler simply sets a flag requesting later processing.
* reap_procs is called synchronously to do the actual work.
*
* NOTE 2: SIGCHLD is "level triggered" on some systems (HPUX, IRIX, ...).
* If the signal signal handler is re-established before the child is reaped,
* another signal will be generated immediately. For this reason, we
* defer the re-establishment until reap_procs is done.
*/
volatile bool procs_to_reap = NO;
/*ARGSUSED*/
SIGRESTYPE
sigchld_handler(junk)
int junk; /* needed for signal handler; not used */
{
procs_to_reap = YES;
return SIGRESVALUE;
}
void
reap_procs()
{
wait_status_t w;
register pid_t pid;
for (;;) {
pid = wait_opt(&w, (WNOHANG | WUNTRACED));
if (pid <= 0) {
if (procs_to_reap) {
resetsighandler(SIGCHLD, sigchld_handler);
procs_to_reap = NO;
/* go around once more to avoid window of vulnerability */
} else {
break;
}
} else {
kill_off(pid, w);
}
}
}
void
closeiprocs()
{
Process p;
for (p=procs; p!=NULL; p=p->p_next)
if (p->p_fd >= 0)
close(p->p_fd);
}
#endif /* !PIPEPROCS */
extern char **environ;
private void
jputenv(def)
char *def; /* Note: caller must ensure string persists */
{
char **p, *eq;
static int headroom = -1; /* trick: -1 is flag for first time */
if ((eq = strchr(def, '=')) == NULL)
return;
for (p = environ; ; p++) {
if (*p == NULL) {
if (headroom <= 0) {
# define JENV_INCR 5
size_t sz = ((p-environ) + 1) * sizeof(char *);
char **ne = (char **)malloc(sz + JENV_INCR*sizeof(char *));
if (ne == NULL)
break;
byte_copy(environ, ne, sz);
p = ne + (p-environ);
if (headroom == 0)
free((UnivPtr)environ);
headroom = JENV_INCR;
environ = ne;
# undef JENV_INCR
}
headroom -= 1;
*p++ = def;
*p = NULL;
break;
}
if (strncmp(*p, def, (size_t) (eq - def + 1)) == 0) {
*p = def;
break;
}
}
}
char proc_prompt[128] = "% "; /* VAR: process prompt */
const char *
dbxness(p)
Process p;
{
return (p == NULL || !p->p_dbx_mode)? NullStr : "DBX ";
}
const char *
pstate(p)
Process p;
{
static const char *const ios_name[] = { "New", "Running", "EOFed" };
if (p == NULL)
return "No process";
/* Try *not* to report the whole cross-product of child and IO states. */
switch (p->p_child_state) {
case C_LIVE:
return ios_name[p->p_io_state];
case C_STOPPED:
return io_eofed(p)? "Stopped; EOFed" : "Stopped";
case C_EXITED:
if (io_eofed(p) && p->p_reason == 0)
return "Done";
/* FALLTHROUGH */
default:
return sprint("%s %d%s",
(p->p_child_state == C_EXITED? "Exited" : "Killed"),
p->p_reason,
(io_eofed(p)? "" : "; not EOFed"));
}
}
bool
KillProcs()
{
register Process p;
bool asked = NO;
for (p = procs; p != NULL; p = p->p_next) {
if (!dead(p)) {
if (!asked) {
if (!yes_or_no_p("Some interactive processes are still running; leave anyway? "))
return NO; /* processes not killed */
asked = YES;
}
if (!child_dead(p))
(void) proc_kill(p, SIGKILL);
proc_close(p);
}
}
return YES; /* processes killed */
}
/* VAR: dbx-mode parse string */
char dbx_parse_fmt[128] = "line \\([0-9]*\\) in \\{file\\|\\} *\"\\([^\"]*\\)\"";
void
DBXpoutput()
{
if (curbuf->b_process == NULL)
complain("[Must be in a process buffer to enable dbx mode]");
curbuf->b_process->p_dbx_mode = !curbuf->b_process->p_dbx_mode;
UpdModLine = YES;
}
private void
watch_input(m)
Mark *m;
{
Bufpos save;
char fname[FILESIZE],
lineno[FILESIZE];
int lnum;
Window *savew = curwind;
Buffer *buf;
DOTsave(&save);
ToMark(m);
if (dosearch(dbx_parse_fmt, FORWARD, YES) != NULL) {
get_FL_info(fname, lineno);
buf = do_find((Window *)NULL, fname, YES, YES);
pop_wind(buf->b_name, NO, -1);
lnum = atoi(lineno);
SetLine(next_line(buf->b_first, lnum - 1));
SetWind(savew);
}
SetDot(&save);
}
/* Process receive: receives the characters in buf, and appends them to
the buffer associated with p. */
private void
proc_rec(p, buf, len)
register Process p;
char *buf;
size_t len;
{
Buffer *saveb = curbuf;
register Window *w;
register Mark *savepoint;
bool sameplace,
do_disp;
if (curwind->w_bufp == p->p_buffer)
w = curwind;
else
w = windbp(p->p_buffer); /* Is this window visible? */
do_disp = w != NULL && in_window(w, p->p_mark->m_line) != -1;
SetBuf(p->p_buffer);
savepoint = MakeMark(curline, curchar);
ToMark(p->p_mark); /* where output last stopped */
sameplace = savepoint->m_line == curline && savepoint->m_char == curchar;
/* insert contents of buffer, carefully translating NUL to ^@ */
buf[len] = '\0'; /* NUL-terminate buffer */
while (len != 0) {
if (*buf == '\0') {
ins_str_wrap("^@", YES, WrapProcessLines ? CO-1 : LBSIZE-1);
buf++;
len--;
} else {
size_t sublen = strlen(buf);
ins_str_wrap(buf, YES, WrapProcessLines ? CO-1 : LBSIZE-1);
buf += sublen;
len -= sublen;
}
}
if (do_disp && p->p_dbx_mode)
watch_input(p->p_mark);
MarkSet(p->p_mark, curline, curchar);
if (!sameplace)
ToMark(savepoint); /* back to where we were */
DelMark(savepoint);
/* redisplay now, instead of right after the ins_str, so that
we don't get a bouncing effect if point is not the same as
the process output position */
if (do_disp) {
w->w_line = curline;
w->w_char = curchar;
redisplay();
}
SetBuf(saveb);
}
private bool
proc_kill(p, sig)
register Process p;
int sig;
{
if (p == NULL)
complain("[no process]");
if (!child_dead(p)) {
if (killpg(p->p_pid, sig) != -1)
return YES;
s_mess("Cannot kill %s!", proc_bufname(p));
}
return NO;
}
/* Free process CHILD. Do all the necessary cleaning up (closing fd's,
etc.). */
private void
free_proc(child)
Process child;
{
register Process
p,
prev = NULL;
if (!dead(child))
return;
untieDeadProcess(child->p_buffer);
for (p = procs; p != child; prev = p, p = p->p_next)
;
if (prev == NULL)
procs = child->p_next;
else
prev->p_next = child->p_next;
proc_close(child); /* if not already closed */
free((UnivPtr) child->p_name);
free((UnivPtr) child);
}
void
untieDeadProcess(b)
register Buffer *b;
{
if (b != NULL) {
register Process p = b->b_process;
if (p != NULL) {
Buffer *old = curbuf;
if (!dead(p))
complain("Process %s, attached to %b, is %s.",
proc_cmd(p), b, pstate(p));
SetBuf(p->p_buffer);
DelMark(p->p_mark);
SetBuf(old);
p->p_buffer = NULL;
b->b_process = NULL;
}
}
}
void
ProcList()
{
register Process
p,
next;
char *fmt = "%-15s %-15s %-8s %s",
pidstr[16];
if (procs == NULL) {
message("[No subprocesses]");
return;
}
TOstart("Process list");
Typeout(fmt, "Buffer", "Status", "Pid ", "Command");
Typeout(fmt, "------", "------", "--- ", "-------");
for (p = procs; p != NULL; p = next) {
next = p->p_next;
swritef(pidstr, sizeof(pidstr), "%d", (int) p->p_pid);
Typeout(fmt, proc_bufname(p), pstate(p), pidstr, p->p_name);
if (dead(p)) {
free_proc(p);
UpdModLine = YES;
}
}
TOstop();
}
private void
do_rtp(mp)
register Mark *mp;
{
register Process p = curbuf->b_process;
LinePtr line1 = curline,
line2 = mp->m_line;
int char1 = curchar,
char2 = mp->m_char;
char *gp;
size_t nbytes;
if (dead(p) || p->p_buffer != curbuf)
return;
(void) fixorder(&line1, &char1, &line2, &char2);
while (line1 != line2->l_next) {
gp = ltobuf(line1, genbuf) + char1;
if (line1 == line2) {
nbytes = char2 - char1;
} else {
genbuf[Jr_Len] = EOL; /* replace NUL with EOL */
nbytes = Jr_Len - char1 + 1; /* and include it */
}
if (nbytes != 0)
proc_write(p, gp, nbytes);
line1 = line1->l_next;
char1 = 0;
}
}
void
ProcNewline()
{
#ifdef ABBREV
MaybeAbbrevExpand();
#endif
SendData(YES);
}
void
ProcSendData()
{
#ifdef ABBREV
MaybeAbbrevExpand();
#endif
SendData(NO);
}
private void
SendData(newlinep)
bool newlinep;
{
register Process p = curbuf->b_process;
register char *lp,
*gp; /* JF fix for better prompt handling */
if (dead(p))
return;
/* If the process mark was involved in a big deletion, because
the user hit ^W or something, then let's do some magic with
the process mark. Problem is that if the user yanks back the
text he deleted, the mark stays at the beginning of the region,
and so the next time SendData() is called the entire region
will be sent. That's not good. So, to deal with that we reset
the mark to the last line, after skipping over the prompt, etc. */
if (p->p_mark->m_big_delete) {
Bufpos bp;
p->p_mark->m_big_delete = NO;
DOTsave(&bp);
ToLast();
Bol();
/* While we're looking at a prompt, and while we're
moving forward. This is for people who accidently
set their process-prompt to ">*" which will always
match! */
while (LookingAt(proc_prompt, linebuf, curchar)
&& (REeom > curchar))
curchar = REeom;
MarkSet(p->p_mark, curline, curchar);
SetDot(&bp);
}
if (lastp(curline)) {
Eol();
if (newlinep)
LineInsert(1);
do_rtp(p->p_mark);
MarkSet(p->p_mark, curline, curchar);
} else {
/* Either we're looking at a prompt, or we're not, in
which case we want to strip off the beginning of the
line anything that looks like what the prompt at the
end of the file is. In other words, if "(dbx) stop in
ProcessNewline" is the line we're on, and the last
line in the buffer is "(dbx) ", then we strip off the
leading "(dbx) " from this line, because we know it's
part of the prompt. But this only happens if "(dbx) "
isn't one of the process prompts ... follow what I'm
saying? */
Bol();
if (LookingAt(proc_prompt, linebuf, curchar)) {
do {
curchar = REeom;
} while (LookingAt(proc_prompt, linebuf, curchar)
&& (REeom > curchar));
strcpy(genbuf, linebuf + curchar);
Eof();
ins_str(genbuf);
} else {
strcpy(genbuf, linebuf + curchar);
Eof();
gp = genbuf;
lp = linebuf;
while (*lp == *gp && *lp != '\0') {
lp += 1;
gp += 1;
}
ins_str(gp);
}
}
}
void
ShellProc()
{
char shbuf[20];
register Buffer *b;
swritef(shbuf, sizeof(shbuf), "*shell-%d*", arg_value());
b = buf_exists(shbuf);
if (b == NULL || dead(b->b_process))
proc_strt(shbuf, NO, "i-shell", Shell, "-is", pr_name(curbuf->b_fname, NO),
(char *)NULL);
pop_wind(shbuf, NO, -1);
}
void
Iprocess()
{
char scratch[64],
*bnm;
int cnt = 1;
Buffer *bp;
char *fn = pr_name(curbuf->b_fname, NO);
null_ncpy(ShcomBuf, ask(ShcomBuf, ProcFmt), (sizeof ShcomBuf) - 1);
bnm = MakeName(ShcomBuf);
null_ncpy(scratch, bnm, (sizeof scratch) - 1);
while ((bp = buf_exists(scratch)) != NULL && !dead(bp->b_process))
swritef(scratch, sizeof(scratch), "%s.%d", bnm, cnt++);
proc_strt(scratch, YES, ShcomBuf, Shell, ShFlags, ShcomBuf, fn, fn, (char *)NULL);
}
pid_t DeadPid; /* info about ChildPid, if reaped by kill_off */
wait_status_t DeadStatus;
#ifdef USE_PROTOTYPES
void
kill_off(pid_t pid, wait_status_t w)
#else
void
kill_off(pid, w)
register pid_t pid;
wait_status_t w;
#endif
{
register Process child;
if (pid == ChildPid) {
/* we are reaping the non-iproc process: record info */
DeadPid = pid;
DeadStatus = w;
return;
}
if ((child = proc_pid(pid)) == NULL)
return;
UpdModLine = YES; /* we're changing state ... */
if (WIFSTOPPED(w))
child->p_child_state = C_STOPPED;
else {
#ifdef PIPEPROCS
/* the true process status comes by pipe, not from wait().
* However, we must note the death of portsrv processes.
*/
child->p_portlive = NO;
#else /* !PIPEPROCS */
/* record the details of the death of the process.
* Kludge: see if we can get any queued EOF from pty first.
* We wish to do this to make our message less confusing.
*/
while (!io_eofed(child)) {
int nfds;
fd_set reads;
struct timeval notime;
FD_ZERO(&reads);
FD_SET(child->p_fd, &reads);
notime.tv_sec = 0;
notime.tv_usec = 0;
nfds = select(global_maxfd, &reads,
(fd_set *)NULL, (fd_set *)NULL, ¬ime);
if (nfds == 1)
read_pty_proc(child->p_fd);
else if (nfds >= 0 || errno != EINTR) {
# ifdef NO_EOF_FROM_PTY
/* Certain systems never indicate EOF from a slave.
* On those systems, we force a close when the direct
* child terminates.
*/
proc_close(child);
# endif
break;
}
}
obituary(child, w);
#endif /* !PIPEPROCS */
}
}
#ifdef USE_PROTOTYPES
private void
obituary(register Process child, wait_status_t w)
#else
private void
obituary(child, w)
register Process child;
wait_status_t w;
#endif
{
UpdModLine = YES; /* we're changing state ... */
if (WIFEXITED(w)) {
child->p_child_state = C_EXITED;
child->p_reason = WEXITSTATUS(w);
} else if (WIFSIGNALED(w)) {
child->p_child_state = C_KILLED;
child->p_reason = WTERMSIG(w);
} else {
/* presume it died peacefully! */
child->p_child_state = C_EXITED;
child->p_reason = 0;
}
{
Buffer *save = curbuf;
Bufpos bp;
char mesg[128];
/* insert status message now */
swritef(mesg, sizeof(mesg), "[Process %s: %s]\n",
proc_cmd(child), pstate(child));
SetBuf(child->p_buffer);
DOTsave(&bp);
ToLast();
ins_str(mesg);
SetDot(&bp);
SetBuf(save);
redisplay();
}
}
#endif /* IPROCS */
|