/* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved. * @(#)tip.c 8.1 (Berkeley) 6/6/93 * $FreeBSD: src/usr.bin/tip/tip/tip.c,v 1.12.2.2 2001/06/02 08:08:24 phk Exp $ * $DragonFly: src/usr.bin/tip/tip/tip.c,v 1.2 2003/06/17 04:29:32 dillon Exp $ */ /* Forward declarations */ void ttysetup (int speed); /* * tip - UNIX link to other systems * tip [-v] [-speed] system-name * or * cu phone-number [-s speed] [-l line] [-a acu] */ #include #include #include #include #include "tipconf.h" #include "tip.h" #include "pathnames.h" /* * Baud rate mapping table */ #if !HAVE_TERMIOS CONST int bauds[] = { 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200, -1 }; #endif #if !HAVE_TERMIOS int disc = OTTYDISC; /* tip normally runs this way */ #endif void intprompt(); void timeout(); void killchild(); void cleanup(); void tipdone(); char *sname(); char PNbuf[256]; /* This limits the size of a number */ static void usage __P((void)); void setparity __P((char *)); void xpwrite __P((int, char *, int)); char escape __P((void)); void tipin __P((void)); int prompt __P((char *, char *, size_t)); void unraw __P((void)); void shell_uid __P((void)); void daemon_uid __P((void)); void user_uid __P((void)); int speed __P((int)); int main(argc, argv) char *argv[]; { char *system = NOSTR; register int i; register char *p; char sbuf[12]; gid = getgid(); egid = getegid(); uid = getuid(); euid = geteuid(); #if INCLUDE_CU_INTERFACE if (equal(sname(argv[0]), "cu")) { cumode = 1; cumain(argc, argv); goto cucommon; } #endif /* INCLUDE_CU_INTERFACE */ if (argc > 4) usage(); if (!isatty(0)) errx(1, "must be interactive"); for (; argc > 1; argv++, argc--) { if (argv[1][0] != '-') system = argv[1]; else switch (argv[1][1]) { case 'v': vflag++; break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': BR = atoi(&argv[1][1]); break; default: warnx("%s, unknown option", argv[1]); break; } } if (system == NOSTR) goto notnumber; if (isalpha(*system)) goto notnumber; /* * System name is really a phone number... * Copy the number then stomp on the original (in case the number * is private, we don't want 'ps' or 'w' to find it). */ if (strlen(system) > sizeof(PNbuf) - 1) errx(1, "phone number too long (max = %d bytes)", sizeof PNbuf - 1); strncpy(PNbuf, system, sizeof(PNbuf) - 1); for (p = system; *p; p++) *p = '\0'; PN = PNbuf; (void)snprintf(sbuf, sizeof(sbuf), "tip%ld", BR); system = sbuf; notnumber: (void)signal(SIGINT, cleanup); (void)signal(SIGQUIT, cleanup); (void)signal(SIGHUP, cleanup); (void)signal(SIGTERM, cleanup); (void)signal(SIGUSR1, tipdone); if ((i = hunt(system)) == 0) { printf("all ports busy\n"); exit(3); } if (i == -1) { printf("link down\n"); (void)uu_unlock(uucplock); exit(3); } setbuf(stdout, NULL); loginit(); /* * Kludge, their's no easy way to get the initialization * in the right order, so force it here */ if ((PH = getenv("PHONES")) == NOSTR) PH = _PATH_PHONES; vinit(); /* init variables */ setparity("even"); /* set the parity table */ if ((i = speed(number(value(BAUDRATE)))) == 0) { printf("tip: bad baud rate %d\n", number(value(BAUDRATE))); (void)uu_unlock(uucplock); exit(3); } /* * Now that we have the logfile and the ACU open * return to the real uid and gid. These things will * be closed on exit. Swap real and effective uid's * so we can get the original permissions back * for removing the uucp lock. */ user_uid(); /* * Hardwired connections require the * line speed set before they make any transmissions * (this is particularly true of things like a DF03-AC) */ if (HW) ttysetup(i); if ((p = connect())) { printf("\07%s\n[EOT]\n", p); daemon_uid(); (void)uu_unlock(uucplock); exit(1); } if (!HW) ttysetup(i); /* cucommon:*/ /* * From here down the code is shared with * the "cu" version of tip. */ #if HAVE_TERMIOS tcgetattr (0, &otermios); ctermios = otermios; #ifndef _POSIX_SOURCE ctermios.c_iflag = (IMAXBEL|IXANY|ISTRIP|IXON|BRKINT); ctermios.c_lflag = (PENDIN|IEXTEN|ISIG|ECHOCTL|ECHOE|ECHOKE); #else ctermios.c_iflag = (ISTRIP|IXON|BRKINT); ctermios.c_lflag = (PENDIN|IEXTEN|ISIG|ECHOE); #endif ctermios.c_cflag = (CLOCAL|HUPCL|CREAD|CS8); ctermios.c_cc[VINTR] = ctermios.c_cc[VQUIT] = -1; ctermios.c_cc[VSUSP] = ctermios.c_cc[VDSUSP] = ctermios.c_cc[VDISCARD] = ctermios.c_cc[VLNEXT] = -1; #else /* HAVE_TERMIOS */ ioctl(0, TIOCGETP, (char *)&defarg); ioctl(0, TIOCGETC, (char *)&defchars); ioctl(0, TIOCGLTC, (char *)&deflchars); ioctl(0, TIOCGETD, (char *)&odisc); arg = defarg; arg.sg_flags = ANYP | CBREAK; tchars = defchars; tchars.t_intrc = tchars.t_quitc = -1; ltchars = deflchars; ltchars.t_suspc = ltchars.t_dsuspc = ltchars.t_flushc = ltchars.t_lnextc = -1; #endif /* HAVE_TERMIOS */ raw(); pipe(fildes); pipe(repdes); (void)signal(SIGALRM, timeout); /* * Everything's set up now: * connection established (hardwired or dialup) * line conditioned (baud rate, mode, etc.) * internal data structures (variables) * so, fork one process for local side and one for remote. */ printf(cumode ? "Connected\r\n" : "\07connected\r\n"); if (LI != NOSTR && tiplink (LI, 0) != 0) { tipabort ("login failed"); } if ((pid = fork())) tipin(); else tipout(); /*NOTREACHED*/ } static void usage() { fprintf(stderr, "usage: tip [-v] [-speed] [system-name]\n"); exit(1); } void killchild() { if (pid != 0) { kill(pid, SIGTERM); pid = 0; } } void cleanup() { daemon_uid(); (void)uu_unlock(uucplock); #if !HAVE_TERMIOS if (odisc) ioctl(0, TIOCSETD, (char *)&odisc); #endif exit(0); } void tipdone() { tipabort("Hangup."); } /* * Muck with user ID's. We are setuid to the owner of the lock * directory when we start. user_uid() reverses real and effective * ID's after startup, to run with the user's permissions. * daemon_uid() switches back to the privileged uid for unlocking. * Finally, to avoid running a shell with the wrong real uid, * shell_uid() sets real and effective uid's to the user's real ID. */ static int uidswapped; void user_uid() { if (uidswapped == 0) { seteuid(uid); uidswapped = 1; } } void daemon_uid() { if (uidswapped) { seteuid(euid); uidswapped = 0; } } void shell_uid() { setegid(gid); seteuid(uid); } /* * put the controlling keyboard into raw mode */ void raw () { #if HAVE_TERMIOS tcsetattr (0, TCSANOW, &ctermios); #else /* HAVE_TERMIOS */ ioctl(0, TIOCSETP, &arg); ioctl(0, TIOCSETC, &tchars); ioctl(0, TIOCSLTC, <chars); ioctl(0, TIOCSETD, (char *)&disc); #endif /* HAVE_TERMIOS */ } /* * return keyboard to normal mode */ void unraw() { #if HAVE_TERMIOS tcsetattr (0, TCSANOW, &otermios); #else /* HAVE_TERMIOS */ ioctl(0, TIOCSETD, (char *)&odisc); ioctl(0, TIOCSETP, (char *)&defarg); ioctl(0, TIOCSETC, (char *)&defchars); ioctl(0, TIOCSLTC, (char *)&deflchars); #endif /* HAVE_TERMIOS */ } static jmp_buf promptbuf; /* * Print string ``s'', then read a string * in from the terminal. Handles signals & allows use of * normal erase and kill characters. */ int prompt(s, p, sz) char *s; register char *p; size_t sz; { register char *b = p; sig_t oint, oquit; stoprompt = 0; oint = signal(SIGINT, intprompt); oquit = signal(SIGQUIT, SIG_IGN); unraw(); printf("%s", s); if (setjmp(promptbuf) == 0) while ((*p = getchar()) != EOF && *p != '\n' && --sz > 0) p++; *p = '\0'; raw(); (void)signal(SIGINT, oint); (void)signal(SIGQUIT, oquit); return (stoprompt || p == b); } /* * Interrupt service routine during prompting */ void intprompt() { (void)signal(SIGINT, SIG_IGN); stoprompt = 1; printf("\r\n"); longjmp(promptbuf, 1); } /* * ****TIPIN TIPIN**** */ void tipin() { int i; char gch, bol = 1; atexit(killchild); /* * Kinda klugey here... * check for scripting being turned on from the .tiprc file, * but be careful about just using setscript(), as we may * send a SIGEMT before tipout has a chance to set up catching * it; so wait a second, then setscript() */ if (boolean(value(SCRIPT))) { sleep(1); setscript(); } while (1) { i = getchar(); if (i == EOF) break; gch = i&0177; if ((gch == character(value(ESCAPE))) && bol) { if (!(gch = escape())) continue; } else if (!cumode && gch == character(value(RAISECHAR))) { boolean(value(RAISE)) = !boolean(value(RAISE)); continue; } else if (gch == '\r') { bol = 1; xpwrite(FD, &gch, 1); if (boolean(value(HALFDUPLEX))) printf("\r\n"); continue; } else if (!cumode && gch == character(value(FORCE))) { i = getchar(); if (i == EOF) break; gch = i & 0177; } bol = any(gch, value(EOL)); if (boolean(value(RAISE)) && islower(gch)) gch = toupper(gch); xpwrite(FD, &gch, 1); if (boolean(value(HALFDUPLEX))) printf("%c", gch); } } extern esctable_t etable[]; /* * Escape handler -- * called on recognition of ``escapec'' at the beginning of a line */ char escape() { register char gch; register esctable_t *p; char c = character(value(ESCAPE)); int i; i = getchar(); if (i == EOF) return 0; gch = (i&0177); for (p = etable; p->e_char; p++) if (p->e_char == gch) { if ((p->e_flags&PRIV) && uid) continue; printf("%s", ctrl(c)); (*p->e_func)(gch); return (0); } /* ESCAPE ESCAPE forces ESCAPE */ if (c != gch) xpwrite(FD, &c, 1); return (gch); } int speed(n) int n; { #if HAVE_TERMIOS return (n); #else register CONST int *p; for (p = bauds; *p != -1; p++) if (*p == n) return (p - bauds); return (NULL); #endif } int any(c, p) register char c, *p; { while (p && *p) if (*p++ == c) return (1); return (0); } int size(s) register char *s; { register int i = 0; while (s && *s++) i++; return (i); } char * interp(s) register char *s; { static char buf[256]; register char *p = buf, c, *q; while ((c = *s++)) { for (q = "\nn\rr\tt\ff\033E\bb"; *q; q++) if (*q++ == c) { *p++ = '\\'; *p++ = *q; goto next; } if (c < 040) { *p++ = '^'; *p++ = c + 'A'-1; } else if (c == 0177) { *p++ = '^'; *p++ = '?'; } else *p++ = c; next: ; } *p = '\0'; return (buf); } char * ctrl(c) char c; { static char s[3]; if (c < 040 || c == 0177) { s[0] = '^'; s[1] = c == 0177 ? '?' : c+'A'-1; s[2] = '\0'; } else { s[0] = c; s[1] = '\0'; } return (s); } /* * Help command */ void help(c) char c; { register esctable_t *p; printf("%c\r\n", c); for (p = etable; p->e_char; p++) { if ((p->e_flags&PRIV) && uid) continue; printf("%2s", ctrl(character(value(ESCAPE)))); printf("%-2s %c %s\r\n", ctrl(p->e_char), p->e_flags&EXP ? '*': ' ', p->e_help); } } /* * Set up the "remote" tty's state */ void ttysetup (int speed) { #if HAVE_TERMIOS struct termios termios; tcgetattr (FD, &termios); if (boolean(value(TAND))) termios.c_iflag = IXOFF; else termios.c_iflag = 0; #ifndef _POSIX_SOURCE termios.c_lflag = (PENDIN|ECHOKE|ECHOE); #else termios.c_lflag = (PENDIN|ECHOE); #endif termios.c_cflag = (CLOCAL|HUPCL|CREAD|CS8); termios.c_ispeed = termios.c_ospeed = speed; tcsetattr (FD, TCSANOW, &termios); #else /* HAVE_TERMIOS */ unsigned bits = LDECCTQ; arg.sg_ispeed = arg.sg_ospeed = speed; arg.sg_flags = RAW; if (boolean(value(TAND))) arg.sg_flags |= TANDEM; ioctl(FD, TIOCSETP, (char *)&arg); ioctl(FD, TIOCLBIS, (char *)&bits); #endif /* HAVE_TERMIOS */ } /* * Return "simple" name from a file name, * strip leading directories. */ char * sname(s) register char *s; { register char *p = s; while (*s) if (*s++ == '/') p = s; return (p); } static char partab[0200]; static int bits8; /* * Do a write to the remote machine with the correct parity. * We are doing 8 bit wide output, so we just generate a character * with the right parity and output it. */ void xpwrite(fd, buf, n) int fd; char *buf; register int n; { register int i; register char *bp; bp = buf; if (bits8 == 0) for (i = 0; i < n; i++) { *bp = partab[(*bp) & 0177]; bp++; } if (write(fd, buf, n) < 0) { if (errno == EIO) tipabort("Lost carrier."); if (errno == ENODEV) tipabort("tty not available."); tipabort("Something wrong..."); } } /* * Build a parity table with appropriate high-order bit. */ void setparity(defparity) char *defparity; { register int i, flip, clr, set; char *parity; extern char evenpartab[]; if (value(PARITY) == NOSTR) value(PARITY) = defparity; parity = value(PARITY); if (equal(parity, "none")) { bits8 = 1; return; } bits8 = 0; flip = 0; clr = 0377; set = 0; if (equal(parity, "odd")) flip = 0200; /* reverse bit 7 */ else if (equal(parity, "zero")) clr = 0177; /* turn off bit 7 */ else if (equal(parity, "one")) set = 0200; /* turn on bit 7 */ else if (!equal(parity, "even")) { (void) fprintf(stderr, "%s: unknown parity value\r\n", parity); (void) fflush(stderr); } for (i = 0; i < 0200; i++) partab[i] = (evenpartab[i] ^ flip) | (set & clr); }