2000-10-11 18:46:00 +04:00
|
|
|
/* $NetBSD: tip.c,v 1.23 2000/10/11 14:46:19 is Exp $ */
|
1994-12-08 12:30:36 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-12-08 12:30:36 +03:00
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1997-11-22 10:28:39 +03:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1994-12-08 12:30:36 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)tip.c 8.1 (Berkeley) 6/6/93";
|
|
|
|
#endif
|
2000-10-11 18:46:00 +04:00
|
|
|
__RCSID("$NetBSD: tip.c,v 1.23 2000/10/11 14:46:19 is Exp $");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tip - UNIX link to other systems
|
|
|
|
* tip [-v] [-speed] system-name
|
|
|
|
* or
|
|
|
|
* cu phone-number [-s speed] [-l line] [-a acu]
|
|
|
|
*/
|
|
|
|
#include "tip.h"
|
|
|
|
#include "pathnames.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Baud rate mapping table
|
|
|
|
*/
|
1995-10-29 03:49:38 +03:00
|
|
|
int rates[] = {
|
1993-03-21 12:45:37 +03:00
|
|
|
0, 50, 75, 110, 134, 150, 200, 300, 600,
|
1993-06-06 02:40:40 +04:00
|
|
|
1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200, -1
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
int escape __P((void));
|
|
|
|
int main __P((int, char **));
|
|
|
|
void intprompt __P((int));
|
|
|
|
void tipin __P((void));
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
char PNbuf[256]; /* This limits the size of a number */
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
1997-11-22 10:28:39 +03:00
|
|
|
int argc;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *argv[];
|
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
char *system = NULL;
|
|
|
|
int i;
|
|
|
|
char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
char sbuf[12];
|
1997-12-17 19:56:30 +03:00
|
|
|
int fcarg;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
gid = getgid();
|
|
|
|
egid = getegid();
|
|
|
|
uid = getuid();
|
|
|
|
euid = geteuid();
|
1997-11-22 10:28:39 +03:00
|
|
|
if (equal(basename(argv[0]), "cu")) {
|
1993-03-21 12:45:37 +03:00
|
|
|
cumode = 1;
|
|
|
|
cumain(argc, argv);
|
|
|
|
goto cucommon;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 4) {
|
|
|
|
fprintf(stderr, "usage: tip [-v] [-speed] [system-name]\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (!isatty(0)) {
|
|
|
|
fprintf(stderr, "tip: must be interactive\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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:
|
|
|
|
fprintf(stderr, "tip: %s, unknown option\n", argv[1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
if (system == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto notnumber;
|
1998-12-20 02:00:18 +03:00
|
|
|
if (isalpha((unsigned char)*system))
|
1993-03-21 12:45:37 +03:00
|
|
|
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) {
|
|
|
|
fprintf(stderr, "tip: phone number too long (max = %d bytes)\n",
|
1997-11-23 07:03:04 +03:00
|
|
|
(int)sizeof(PNbuf) - 1);
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
1998-07-12 13:59:29 +04:00
|
|
|
strncpy(PNbuf, system, sizeof PNbuf - 1);
|
|
|
|
PNbuf[sizeof PNbuf - 1] = '\0';
|
1993-03-21 12:45:37 +03:00
|
|
|
for (p = system; *p; p++)
|
|
|
|
*p = '\0';
|
|
|
|
PN = PNbuf;
|
1997-11-22 10:28:39 +03:00
|
|
|
(void)snprintf(sbuf, sizeof sbuf, "tip%d", (int)BR);
|
1993-03-21 12:45:37 +03:00
|
|
|
system = sbuf;
|
|
|
|
|
|
|
|
notnumber:
|
|
|
|
(void)signal(SIGINT, cleanup);
|
|
|
|
(void)signal(SIGQUIT, cleanup);
|
|
|
|
(void)signal(SIGHUP, cleanup);
|
|
|
|
(void)signal(SIGTERM, cleanup);
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
1993-06-12 07:41:40 +04:00
|
|
|
/*
|
|
|
|
* 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();
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Kludge, their's no easy way to get the initialization
|
|
|
|
* in the right order, so force it here
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
if ((PH = getenv("PHONES")) == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
PH = _PATH_PHONES;
|
|
|
|
vinit(); /* init variables */
|
|
|
|
setparity("even"); /* set the parity table */
|
1995-10-29 03:49:38 +03:00
|
|
|
if ((i = speed(number(value(BAUDRATE)))) == 0) {
|
1997-11-22 10:28:39 +03:00
|
|
|
printf("tip: bad baud rate %d\n", (int)number(value(BAUDRATE)));
|
1993-06-12 07:41:40 +04:00
|
|
|
daemon_uid();
|
1993-03-21 12:45:37 +03:00
|
|
|
(void)uu_unlock(uucplock);
|
|
|
|
exit(3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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);
|
1997-11-22 10:28:39 +03:00
|
|
|
if ((p = connect()) != NULL) {
|
1993-03-21 12:45:37 +03:00
|
|
|
printf("\07%s\n[EOT]\n", p);
|
|
|
|
daemon_uid();
|
|
|
|
(void)uu_unlock(uucplock);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (!HW)
|
|
|
|
ttysetup(i);
|
1997-12-17 19:56:30 +03:00
|
|
|
|
1997-12-17 20:09:33 +03:00
|
|
|
/*
|
|
|
|
* Direct connections with no carrier require using O_NONBLOCK on
|
|
|
|
* open, but we don't want to keep O_NONBLOCK after open because it
|
|
|
|
* will cause busy waits.
|
|
|
|
*/
|
|
|
|
if (DC &&
|
|
|
|
((fcarg = fcntl(FD, F_GETFL, 0)) < 0 ||
|
|
|
|
fcntl(FD, F_SETFL, fcarg & ~O_NONBLOCK) < 0)) {
|
1997-12-17 19:56:30 +03:00
|
|
|
printf("tip: can't clear O_NONBLOCK: %s", strerror (errno));
|
|
|
|
daemon_uid();
|
1998-07-12 13:59:29 +04:00
|
|
|
(void)uu_unlock(uucplock);
|
1997-12-17 19:56:30 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
cucommon:
|
|
|
|
/*
|
|
|
|
* From here down the code is shared with
|
|
|
|
* the "cu" version of tip.
|
|
|
|
*/
|
|
|
|
|
1995-10-29 03:49:38 +03:00
|
|
|
tcgetattr(0, &defterm);
|
|
|
|
term = defterm;
|
|
|
|
term.c_lflag &= ~(ICANON|IEXTEN|ECHO);
|
|
|
|
term.c_iflag &= ~(INPCK|ICRNL);
|
|
|
|
term.c_oflag &= ~OPOST;
|
|
|
|
term.c_cc[VMIN] = 1;
|
|
|
|
term.c_cc[VTIME] = 0;
|
|
|
|
defchars = term;
|
|
|
|
term.c_cc[VINTR] = term.c_cc[VQUIT] = term.c_cc[VSUSP] =
|
|
|
|
term.c_cc[VDSUSP] = term.c_cc[VDISCARD] =
|
|
|
|
term.c_cc[VLNEXT] = _POSIX_VDISABLE;
|
1993-03-21 12:45:37 +03:00
|
|
|
raw();
|
|
|
|
|
|
|
|
pipe(fildes); pipe(repdes);
|
1997-11-22 10:28:39 +03:00
|
|
|
(void)signal(SIGALRM, alrmtimeout);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2000-10-11 18:46:00 +04:00
|
|
|
printf("%s", cumode ? "Connected\r\n" : "\07connected\r\n");
|
1997-11-22 10:28:39 +03:00
|
|
|
switch (pid = fork()) {
|
|
|
|
default:
|
1993-03-21 12:45:37 +03:00
|
|
|
tipin();
|
1997-11-22 10:28:39 +03:00
|
|
|
break;
|
|
|
|
case 0:
|
1993-03-21 12:45:37 +03:00
|
|
|
tipout();
|
1997-11-22 10:28:39 +03:00
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
err(1, "can't fork");
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
/*NOTREACHED*/
|
1997-11-22 10:28:39 +03:00
|
|
|
exit(0); /* XXX: pacify gcc */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1997-11-22 10:28:39 +03:00
|
|
|
cleanup(dummy)
|
|
|
|
int dummy;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
daemon_uid();
|
|
|
|
(void)uu_unlock(uucplock);
|
|
|
|
if (odisc)
|
|
|
|
ioctl(0, TIOCSETD, (char *)&odisc);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
user_uid()
|
|
|
|
{
|
1998-07-12 13:59:29 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (uidswapped == 0) {
|
1994-04-20 21:21:28 +04:00
|
|
|
seteuid(uid);
|
1993-03-21 12:45:37 +03:00
|
|
|
uidswapped = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
daemon_uid()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (uidswapped) {
|
1994-04-20 21:21:28 +04:00
|
|
|
seteuid(euid);
|
1993-03-21 12:45:37 +03:00
|
|
|
uidswapped = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
shell_uid()
|
|
|
|
{
|
1998-07-12 13:59:29 +04:00
|
|
|
|
1994-12-08 12:30:36 +03:00
|
|
|
seteuid(uid);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* put the controlling keyboard into raw mode
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
raw()
|
|
|
|
{
|
1998-07-12 13:59:29 +04:00
|
|
|
|
1995-10-29 03:49:38 +03:00
|
|
|
tcsetattr(0, TCSADRAIN, &term);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* return keyboard to normal mode
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
unraw()
|
|
|
|
{
|
1998-07-12 13:59:29 +04:00
|
|
|
|
1995-10-29 03:49:38 +03:00
|
|
|
tcsetattr(0, TCSADRAIN, &defterm);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
int
|
1998-07-12 13:59:29 +04:00
|
|
|
prompt(s, p, l)
|
1993-03-21 12:45:37 +03:00
|
|
|
char *s;
|
1997-11-22 10:28:39 +03:00
|
|
|
char *p;
|
1998-07-12 13:59:29 +04:00
|
|
|
size_t l;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
int c;
|
|
|
|
char *b = p;
|
1993-03-21 12:45:37 +03:00
|
|
|
sig_t oint, oquit;
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
#if __GNUC__ /* XXX: pacify gcc */
|
|
|
|
(void)&p;
|
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
stoprompt = 0;
|
|
|
|
oint = signal(SIGINT, intprompt);
|
|
|
|
oquit = signal(SIGQUIT, SIG_IGN);
|
|
|
|
unraw();
|
|
|
|
printf("%s", s);
|
|
|
|
if (setjmp(promptbuf) == 0)
|
1998-07-12 13:59:29 +04:00
|
|
|
while ((c = getchar()) != -1 && (*p = c) != '\n' &&
|
|
|
|
b + l > p)
|
1993-03-21 12:45:37 +03:00
|
|
|
p++;
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
raw();
|
|
|
|
(void)signal(SIGINT, oint);
|
|
|
|
(void)signal(SIGQUIT, oquit);
|
|
|
|
return (stoprompt || p == b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Interrupt service routine during prompting
|
|
|
|
*/
|
|
|
|
void
|
1997-11-22 10:28:39 +03:00
|
|
|
intprompt(dummy)
|
|
|
|
int dummy;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
(void)signal(SIGINT, SIG_IGN);
|
|
|
|
stoprompt = 1;
|
|
|
|
printf("\r\n");
|
|
|
|
longjmp(promptbuf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ****TIPIN TIPIN****
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
tipin()
|
|
|
|
{
|
|
|
|
char gch, bol = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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) {
|
1995-10-29 03:49:38 +03:00
|
|
|
gch = getchar()&STRIP_PAR;
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((gch == character(value(ESCAPE))) && bol) {
|
|
|
|
if (!(gch = escape()))
|
|
|
|
continue;
|
1997-11-22 11:29:58 +03:00
|
|
|
} else if (!cumode &&
|
|
|
|
gch && gch == character(value(RAISECHAR))) {
|
1996-12-29 13:34:03 +03:00
|
|
|
setboolean(value(RAISE), !boolean(value(RAISE)));
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
|
|
|
} else if (gch == '\r') {
|
|
|
|
bol = 1;
|
1998-07-01 03:42:08 +04:00
|
|
|
xpwrite(FD, &gch, 1);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (boolean(value(HALFDUPLEX)))
|
|
|
|
printf("\r\n");
|
|
|
|
continue;
|
1997-11-22 11:29:58 +03:00
|
|
|
} else if (!cumode && gch && gch == character(value(FORCE)))
|
1995-10-29 03:49:38 +03:00
|
|
|
gch = getchar()&STRIP_PAR;
|
1993-03-21 12:45:37 +03:00
|
|
|
bol = any(gch, value(EOL));
|
1998-12-20 02:00:18 +03:00
|
|
|
if (boolean(value(RAISE)) && islower((unsigned char)gch))
|
1993-03-21 12:45:37 +03:00
|
|
|
gch = toupper(gch);
|
1998-07-01 03:42:08 +04:00
|
|
|
xpwrite(FD, &gch, 1);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (boolean(value(HALFDUPLEX)))
|
|
|
|
printf("%c", gch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Escape handler --
|
|
|
|
* called on recognition of ``escapec'' at the beginning of a line
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
escape()
|
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
char gch;
|
|
|
|
esctable_t *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
char c = character(value(ESCAPE));
|
|
|
|
|
1995-10-29 03:49:38 +03:00
|
|
|
gch = (getchar()&STRIP_PAR);
|
1993-03-21 12:45:37 +03:00
|
|
|
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)
|
1998-07-01 03:42:08 +04:00
|
|
|
xpwrite(FD, &c, 1);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (gch);
|
|
|
|
}
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
speed(n)
|
|
|
|
int n;
|
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
int *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-10-29 03:49:38 +03:00
|
|
|
for (p = rates; *p != -1; p++)
|
1993-03-21 12:45:37 +03:00
|
|
|
if (*p == n)
|
1995-10-29 03:49:38 +03:00
|
|
|
return n;
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1997-11-22 10:28:39 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
any(c, p)
|
1997-11-22 10:28:39 +03:00
|
|
|
char c, *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1998-07-12 13:59:29 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
while (p && *p)
|
|
|
|
if (*p++ == c)
|
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
interp(s)
|
1997-11-22 10:28:39 +03:00
|
|
|
char *s;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
static char buf[256];
|
1997-11-22 10:28:39 +03:00
|
|
|
char *p = buf, c, *q;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-07-12 13:59:29 +04:00
|
|
|
while ((c = *s++) != 0 && buf + sizeof buf - p > 2) {
|
1993-03-21 12:45:37 +03:00
|
|
|
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
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
help(c)
|
|
|
|
char c;
|
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
esctable_t *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
ttysetup(speed)
|
|
|
|
int speed;
|
|
|
|
{
|
1995-10-29 03:49:38 +03:00
|
|
|
struct termios cntrl;
|
|
|
|
|
|
|
|
tcgetattr(FD, &cntrl);
|
|
|
|
cfsetospeed(&cntrl, speed);
|
|
|
|
cfsetispeed(&cntrl, speed);
|
|
|
|
cntrl.c_cflag &= ~(CSIZE|PARENB);
|
|
|
|
cntrl.c_cflag |= CS8;
|
1997-05-14 04:20:01 +04:00
|
|
|
if (DC)
|
1997-04-20 04:03:05 +04:00
|
|
|
cntrl.c_cflag |= CLOCAL;
|
1995-10-29 03:49:38 +03:00
|
|
|
cntrl.c_iflag &= ~(ISTRIP|ICRNL);
|
|
|
|
cntrl.c_oflag &= ~OPOST;
|
|
|
|
cntrl.c_lflag &= ~(ICANON|ISIG|IEXTEN|ECHO);
|
|
|
|
cntrl.c_cc[VMIN] = 1;
|
|
|
|
cntrl.c_cc[VTIME] = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (boolean(value(TAND)))
|
1995-10-29 03:49:38 +03:00
|
|
|
cntrl.c_iflag |= IXOFF;
|
|
|
|
tcsetattr(FD, TCSAFLUSH, &cntrl);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static char partab[0200];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1998-07-01 03:42:08 +04:00
|
|
|
xpwrite(fd, buf, n)
|
1993-03-21 12:45:37 +03:00
|
|
|
int fd;
|
|
|
|
char *buf;
|
1997-11-22 10:28:39 +03:00
|
|
|
int n;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
int i;
|
|
|
|
char *bp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
bp = buf;
|
1994-12-08 12:30:36 +03:00
|
|
|
if (bits8 == 0)
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
*bp = partab[(*bp) & 0177];
|
|
|
|
bp++;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-12-08 12:30:36 +03:00
|
|
|
if (write(fd, buf, n) < 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (errno == EIO)
|
|
|
|
tipabort("Lost carrier.");
|
|
|
|
/* this is questionable */
|
|
|
|
perror("write");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Build a parity table with appropriate high-order bit.
|
|
|
|
*/
|
1997-11-22 10:28:39 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
setparity(defparity)
|
|
|
|
char *defparity;
|
|
|
|
{
|
1997-11-22 10:28:39 +03:00
|
|
|
int i, flip, clr, set;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *parity;
|
|
|
|
|
1997-11-22 11:29:58 +03:00
|
|
|
if (value(PARITY) == NULL || (value(PARITY))[0] == '\0')
|
1993-03-21 12:45:37 +03:00
|
|
|
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++)
|
1997-11-22 10:28:39 +03:00
|
|
|
partab[i] = ((evenpartab[i] ^ flip) | set) & clr;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|