1 /* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by the University of 16 * California, Berkeley and its contributors. 17 * 4. Neither the name of the University nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #ifndef lint 35 #if 0 36 static char sccsid[] = "@(#)tipout.c 8.1 (Berkeley) 6/6/93"; 37 #endif 38 static const char rcsid[] = 39 "$FreeBSD$"; 40 #endif /* not lint */ 41 42 #include "tip.h" 43 #include <errno.h> 44 /* 45 * tip 46 * 47 * lower fork of tip -- handles passive side 48 * reading from the remote host 49 */ 50 51 static jmp_buf sigbuf; 52 53 /* 54 * TIPOUT wait state routine -- 55 * sent by TIPIN when it wants to posses the remote host 56 */ 57 void 58 intIOT() 59 { 60 61 write(repdes[1],&ccc,1); 62 read(fildes[0], &ccc,1); 63 longjmp(sigbuf, 1); 64 } 65 66 /* 67 * Scripting command interpreter -- 68 * accepts script file name over the pipe and acts accordingly 69 */ 70 void 71 intEMT() 72 { 73 char c, line[256]; 74 register char *pline = line; 75 char reply; 76 77 read(fildes[0], &c, 1); 78 while (c != '\n' && pline - line < sizeof(line)) { 79 *pline++ = c; 80 read(fildes[0], &c, 1); 81 } 82 *pline = '\0'; 83 if (boolean(value(SCRIPT)) && fscript != NULL) 84 fclose(fscript); 85 if (pline == line) { 86 boolean(value(SCRIPT)) = FALSE; 87 reply = 'y'; 88 } else { 89 if ((fscript = fopen(line, "a")) == NULL) 90 reply = 'n'; 91 else { 92 reply = 'y'; 93 boolean(value(SCRIPT)) = TRUE; 94 } 95 } 96 write(repdes[1], &reply, 1); 97 longjmp(sigbuf, 1); 98 } 99 100 void 101 intTERM() 102 { 103 104 if (boolean(value(SCRIPT)) && fscript != NULL) 105 fclose(fscript); 106 exit(0); 107 } 108 109 void 110 intSYS() 111 { 112 113 boolean(value(BEAUTIFY)) = !boolean(value(BEAUTIFY)); 114 longjmp(sigbuf, 1); 115 } 116 117 /* 118 * ****TIPOUT TIPOUT**** 119 */ 120 void 121 tipout() 122 { 123 char buf[BUFSIZ]; 124 register char *cp; 125 register int cnt; 126 int omask; 127 128 signal(SIGINT, SIG_IGN); 129 signal(SIGQUIT, SIG_IGN); 130 signal(SIGEMT, intEMT); /* attention from TIPIN */ 131 signal(SIGTERM, intTERM); /* time to go signal */ 132 signal(SIGIOT, intIOT); /* scripting going on signal */ 133 signal(SIGHUP, intTERM); /* for dial-ups */ 134 signal(SIGSYS, intSYS); /* beautify toggle */ 135 (void) setjmp(sigbuf); 136 for (omask = 0;; sigsetmask(omask)) { 137 cnt = read(FD, buf, BUFSIZ); 138 if (cnt <= 0) { 139 /* lost carrier */ 140 if (cnt < 0 && errno == EIO) { 141 sigblock(sigmask(SIGTERM)); 142 intTERM(); 143 /*NOTREACHED*/ 144 } else if (cnt == 0 && errno == ENOENT) { 145 if (getppid() != 1) 146 kill(getppid(),SIGUSR1); 147 sigblock(sigmask(SIGTERM)); 148 intTERM(); 149 /*NOTREACHED*/ 150 } else if (cnt < 0) { 151 if (getppid() != 1) 152 kill(getppid(),SIGUSR1); 153 sigblock(sigmask(SIGTERM)); 154 intTERM(); 155 /*NOTREACHED*/ 156 } 157 continue; 158 } 159 #define ALLSIGS sigmask(SIGEMT)|sigmask(SIGTERM)|sigmask(SIGIOT)|sigmask(SIGSYS) 160 omask = sigblock(ALLSIGS); 161 for (cp = buf; cp < buf + cnt; cp++) 162 *cp &= 0177; 163 write(1, buf, cnt); 164 if (boolean(value(SCRIPT)) && fscript != NULL) { 165 if (!boolean(value(BEAUTIFY))) { 166 fwrite(buf, 1, cnt, fscript); 167 continue; 168 } 169 for (cp = buf; cp < buf + cnt; cp++) 170 if ((*cp >= ' ' && *cp <= '~') || 171 any(*cp, value(EXCEPTIONS))) 172 putc(*cp, fscript); 173 } 174 } 175 } 176