#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)ventel.c 8.1 (Berkeley) 6/6/93";
#endif
__RCSID("$NetBSD: ventel.c,v 1.17 2020/07/22 01:24:40 msaitoh Exp $");
#endif
#include "tip.h"
#define MAXRETRY 5
static int timeout = 0;
static jmp_buf timeoutbuf;
static void echo(const char *);
static int gobble(char, char *);
static void sigALRM(int);
static int vensync(int);
#define DELAYUS 100000
int
ven_dialer(char *num, char *acu __unused)
{
char *cp;
int connected = 0;
char *msg, line[80];
struct termios cntrl;
if (!vensync(FD)) {
(void)printf("can't synchronize with ventel\n");
return (0);
}
if (boolean(value(VERBOSE)))
(void)printf("\ndialing...");
(void)fflush(stdout);
(void)tcgetattr(FD, &cntrl);
cntrl.c_cflag |= HUPCL;
(void)tcsetattr(FD, TCSANOW, &cntrl);
echo("#k$\r$\n$D$I$A$L$:$ ");
for (cp = num; *cp; cp++) {
(void)usleep(DELAYUS);
(void)write(FD, cp, 1);
}
(void)usleep(DELAYUS);
(void)write(FD, "\r", 1);
(void)gobble('\n', line);
if (gobble('\n', line))
connected = gobble('!', line);
(void)tcflush(FD, TCIOFLUSH);
if (timeout)
ven_disconnect();
if (connected || timeout || !boolean(value(VERBOSE)))
return (connected);
cp = strchr(line, '\r');
if (cp)
*cp = '\0';
for (cp = line; (cp = strchr(cp, ' ')) != NULL; cp++)
if (cp[1] == ' ')
break;
if (cp) {
while (*cp == ' ')
cp++;
msg = cp;
while (*cp) {
if (isupper((unsigned char)*cp))
*cp = tolower((unsigned char)*cp);
cp++;
}
(void)printf("%s...", msg);
}
return (connected);
}
void
ven_disconnect(void)
{
(void)close(FD);
}
void
ven_abort(void)
{
(void)write(FD, "\03", 1);
(void)close(FD);
}
static void
echo(const char *s)
{
char c;
while ((c = *s++) != 0) switch (c) {
case '$':
(void)read(FD, &c, 1);
s++;
break;
case '#':
c = *s++;
(void)write(FD, &c, 1);
break;
default:
(void)write(FD, &c, 1);
(void)read(FD, &c, 1);
}
}
static void
sigALRM(int dummy __unused)
{
(void)printf("\07timeout waiting for reply\n");
timeout = 1;
longjmp(timeoutbuf, 1);
}
static int
gobble(char match, char response[])
{
char * volatile cp;
sig_t f;
char c;
cp = response;
f = signal(SIGALRM, sigALRM);
timeout = 0;
do {
if (setjmp(timeoutbuf)) {
(void)signal(SIGALRM, f);
*cp = '\0';
return (0);
}
(void)alarm((unsigned)number(value(DIALTIMEOUT)));
(void)read(FD, cp, 1);
(void)alarm(0);
c = (*cp++ &= 0177);
#ifdef notdef
if (boolean(value(VERBOSE)))
(void)putchar(c);
#endif
} while (c != '\n' && c != match);
(void)signal(SIGALRM, SIG_DFL);
*cp = '\0';
return (c == match);
}
#define min(a,b) ((a)>(b)?(b):(a))
static int
vensync(int fd)
{
int already = 0, nread;
char buf[60];
(void)ioctl(FD, TIOCCDTR, 0);
(void)sleep(1);
(void)ioctl(FD, TIOCSDTR, 0);
while (already < MAXRETRY) {
(void)write(fd, "\r", 1);
(void)usleep(DELAYUS);
(void)write(fd, "\r", 1);
(void)sleep(2);
if (ioctl(fd, FIONREAD, &nread) < 0) {
perror("tip: ioctl");
continue;
}
while (nread > 0) {
(void)read(fd, buf, min(nread, sizeof buf));
if ((buf[min(nread, sizeof buf) - 1] & 0177) == '$')
return (1);
nread -= min(nread, 60);
}
(void)sleep(1);
already++;
}
return (0);
}