#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)biz31.c 8.1 (Berkeley) 6/6/93";
#endif
__RCSID("$NetBSD: biz31.c,v 1.12 2006/12/14 17:09:43 christos Exp $");
#endif
#include "tip.h"
#define MAXRETRY 3
#define DISCONNECT_CMD "\21\25\11\24"
static void sigALRM(int);
static int timeout = 0;
static jmp_buf timeoutbuf;
static void echo(const char *);
static int detect(const char *);
static void flush(const char *);
static int bizsync(int);
static int
biz_dialer(char *num, const char *mod)
{
int connected = 0;
if (!bizsync(FD)) {
logent(value(HOST), "", "biz", "out of sync");
(void)printf("bizcomp out of sync\n");
exit(0);
}
if (boolean(value(VERBOSE)))
(void)printf("\nstarting call...");
echo("#\rk$\r$\n");
echo("$>$.$ #\r");
echo(mod);
echo("$\r$\n");
echo("$>$.$ #\re$ ");
echo(DISCONNECT_CMD);
echo("\r$\n$\r$\n");
echo("$>$.$ #\rr$ ");
echo(num);
echo("\r$\n");
if (boolean(value(VERBOSE)))
(void)printf("ringing...");
connected = detect(" ");
if (!connected)
flush(" NO CONNECTION\r\n\07\r\n");
else
flush("CONNECTION\r\n\07");
if (timeout)
biz31_disconnect();
return (connected);
}
int
biz31w_dialer(char *num, char *acu __unused)
{
return (biz_dialer(num, "w"));
}
int
biz31f_dialer(char *num, char *acu __unused)
{
return (biz_dialer(num, "f"));
}
void
biz31_disconnect(void)
{
(void)write(FD, DISCONNECT_CMD, 4);
(void)sleep(2);
(void)tcflush(FD, TCIOFLUSH);
}
void
biz31_abort(void)
{
(void)write(FD, "\33", 1);
}
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 signo __unused)
{
timeout = 1;
longjmp(timeoutbuf, 1);
}
static int
detect(const char *s)
{
sig_t f;
char c;
f = signal(SIGALRM, sigALRM);
timeout = 0;
while (*s) {
if (setjmp(timeoutbuf)) {
(void)printf("\07timeout waiting for reply\n");
biz31_abort();
break;
}
(void)alarm((unsigned)number(value(DIALTIMEOUT)));
(void)read(FD, &c, 1);
(void)alarm(0);
if (c != *s++)
break;
}
(void)signal(SIGALRM, f);
return (timeout == 0);
}
static void
flush(const char *s)
{
sig_t f;
char c;
f = signal(SIGALRM, sigALRM);
while (*s++) {
if (setjmp(timeoutbuf))
break;
(void)alarm(10);
(void)read(FD, &c, 1);
(void)alarm(0);
}
(void)signal(SIGALRM, f);
timeout = 0;
}
static int
bizsync(int fd)
{
#ifdef FIOCAPACITY
struct capacity b;
# define chars(b) ((b).cp_nbytes)
# define IOCTL FIOCAPACITY
#endif
#ifdef FIONREAD
long b;
# define chars(b) (b)
# define IOCTL FIONREAD
#endif
int already = 0;
char buf[10];
retry:
if (ioctl(fd, IOCTL, &b) >= 0 && chars(b) > 0)
(void)tcflush(FD, TCIOFLUSH);
(void)write(fd, "\rp>\r", 4);
(void)sleep(1);
if (ioctl(fd, IOCTL, &b) >= 0) {
if (chars(b) != 10) {
nono:
if (already > MAXRETRY)
return (0);
(void)write(fd, DISCONNECT_CMD, 4);
(void)sleep(2);
already++;
goto retry;
} else {
(void)read(fd, buf, 10);
if (strncmp(buf, "p >\r\n\r\n>", 8))
goto nono;
}
}
return (1);
}