#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)hayes.c 8.1 (Berkeley) 6/6/93";
#endif
__RCSID("$NetBSD: hayes.c,v 1.17 2011/09/06 18:33:01 joerg Exp $");
#endif
#include "tip.h"
#define min(a,b) ((a < b) ? a : b)
static int timeout = 0;
static jmp_buf timeoutbuf;
#define DUMBUFLEN 40
static char dumbuf[DUMBUFLEN];
static void error_rep(char);
static char gobble(const char *);
static void goodbye(void);
static int hay_sync(void);
__dead static void sigALRM(int);
int
hay_dialer(char *num, char *acu __unused)
{
char *cp;
int connected = 0;
char dummy;
struct termios cntrl;
if (hay_sync() == 0)
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);
(void)tcflush(FD, TCIOFLUSH);
(void)write(FD, "ATv0\r", 5);
(void)gobble("\r");
(void)gobble("\r");
(void)write(FD, "ATTD", 4);
for (cp = num; *cp; cp++)
if (*cp == '=')
*cp = ',';
(void)write(FD, num, strlen(num));
(void)write(FD, "\r", 1);
connected = 0;
if (gobble("\r")) {
if ((dummy = gobble("01234")) != '1')
error_rep(dummy);
else
connected = 1;
}
if (!connected)
return (connected);
(void)tcflush(FD, TCIOFLUSH);
if (timeout)
hay_disconnect();
return (connected);
}
void
hay_disconnect(void)
{
#ifdef DEBUG
(void)printf("\rdisconnecting modem....\n\r");
#endif
(void)ioctl(FD, TIOCCDTR, 0);
(void)sleep(1);
(void)ioctl(FD, TIOCSDTR, 0);
goodbye();
}
void
hay_abort(void)
{
(void)write(FD, "\r", 1);
hay_disconnect();
}
static void
sigALRM(int dummy __unused)
{
(void)printf("\07timeout waiting for reply\n\r");
timeout = 1;
longjmp(timeoutbuf, 1);
}
static char
gobble(const char *match)
{
char c;
sig_t f;
size_t i;
volatile int status = 0;
f = signal(SIGALRM, sigALRM);
timeout = 0;
#ifdef DEBUG
(void)printf("\ngobble: waiting for %s\n", match);
#endif
do {
if (setjmp(timeoutbuf)) {
(void)signal(SIGALRM, f);
return (0);
}
(void)alarm((unsigned int)number(value(DIALTIMEOUT)));
(void)read(FD, &c, 1);
(void)alarm(0);
c &= 0177;
#ifdef DEBUG
(void)printf("%c 0x%x ", c, c);
#endif
for (i = 0; i < strlen(match); i++)
if (c == match[i])
status = c;
} while (status == 0);
(void)signal(SIGALRM, SIG_DFL);
#ifdef DEBUG
(void)printf("\n");
#endif
return (status);
}
static void
error_rep(char c)
{
(void)printf("\n\r");
switch (c) {
case '0':
(void)printf("OK");
break;
case '1':
(void)printf("CONNECT");
break;
case '2':
(void)printf("RING");
break;
case '3':
(void)printf("NO CARRIER");
break;
case '4':
(void)printf("ERROR in input");
break;
case '5':
(void)printf("CONNECT 1200");
break;
default:
(void)printf("Unknown Modem error: %c (0x%x)", c, c);
}
(void)printf("\n\r");
return;
}
void
goodbye(void)
{
int len;
char c;
(void)tcflush(FD, TCIOFLUSH);
if (hay_sync()) {
(void)sleep(1);
#ifndef DEBUG
(void)tcflush(FD, TCIOFLUSH);
#endif
(void)write(FD, "ATH0\r", 5);
#ifndef DEBUG
c = gobble("03");
if (c != '0' && c != '3') {
(void)printf("cannot hang up modem\n\r");
(void)printf("please use 'tip dialer' to make sure the line is hung up\n\r");
}
#endif
(void)sleep(1);
(void)ioctl(FD, FIONREAD, &len);
#ifdef DEBUG
(void)printf("goodbye1: len=%d -- ", len);
rlen = read(FD, dumbuf, min(len, DUMBUFLEN));
dumbuf[rlen] = '\0';
(void)printf("read (%d): %s\r\n", rlen, dumbuf);
#endif
(void)write(FD, "ATv1\r", 5);
(void)sleep(1);
#ifdef DEBUG
(void)ioctl(FD, FIONREAD, &len);
(void)printf("goodbye2: len=%d -- ", len);
rlen = read(FD, dumbuf, min(len, DUMBUFLEN));
dumbuf[rlen] = '\0';
(void)printf("read (%d): %s\r\n", rlen, dumbuf);
#endif
}
(void)tcflush(FD, TCIOFLUSH);
(void)ioctl(FD, TIOCCDTR, 0);
(void)close(FD);
}
#define MAXRETRY 5
int
hay_sync(void)
{
int len, retry = 0;
while (retry++ <= MAXRETRY) {
(void)write(FD, "AT\r", 3);
(void)sleep(1);
(void)ioctl(FD, FIONREAD, &len);
if (len) {
len = read(FD, dumbuf, (size_t)min(len, DUMBUFLEN));
if (strchr(dumbuf, '0') ||
(strchr(dumbuf, 'O') && strchr(dumbuf, 'K')))
return(1);
#ifdef DEBUG
dumbuf[len] = '\0';
(void)printf("hay_sync: (\"%s\") %d\n\r", dumbuf, retry);
#endif
}
(void)ioctl(FD, TIOCCDTR, 0);
(void)ioctl(FD, TIOCSDTR, 0);
}
(void)printf("Cannot synchronize with hayes...\n\r");
return(0);
}