2006-08-31 14:14:30 +00:00
|
|
|
/* $OpenBSD: v3451.c,v 1.9 2006/03/17 19:17:13 moritz Exp $ */
|
2001-12-20 13:06:50 +00:00
|
|
|
/* $NetBSD: v3451.c,v 1.6 1997/02/11 09:24:20 mrg Exp $ */
|
|
|
|
|
2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1995-03-31 11:47:39 +00:00
|
|
|
* 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.
|
2006-08-31 14:14:30 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-03-31 11:47:39 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-12-20 14:25:46 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1995-03-31 11:47:39 +00:00
|
|
|
#ifndef lint
|
2001-12-20 13:06:50 +00:00
|
|
|
#if 0
|
1995-03-31 11:47:39 +00:00
|
|
|
static char sccsid[] = "@(#)v3451.c 8.1 (Berkeley) 6/6/93";
|
2006-08-31 14:14:30 +00:00
|
|
|
static const char rcsid[] = "$OpenBSD: v3451.c,v 1.9 2006/03/17 19:17:13 moritz Exp $";
|
2001-12-20 14:25:46 +00:00
|
|
|
#endif
|
1995-03-31 11:47:39 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Routines for calling up on a Vadic 3451 Modem
|
|
|
|
*/
|
|
|
|
#include "tip.h"
|
|
|
|
|
|
|
|
static jmp_buf Sjbuf;
|
|
|
|
|
2006-08-31 14:14:30 +00:00
|
|
|
static void vawrite(char *, int);
|
|
|
|
static int expect(char *);
|
|
|
|
static void alarmtr(int);
|
|
|
|
static int notin(char *, char *);
|
|
|
|
static int prefix(char *, char *);
|
2001-12-20 13:06:50 +00:00
|
|
|
|
|
|
|
int
|
2006-08-31 14:14:30 +00:00
|
|
|
v3451_dialer(char *num, char *acu)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
sig_t func;
|
|
|
|
int ok;
|
2001-12-20 13:06:50 +00:00
|
|
|
int slow = number(value(BAUDRATE)) < 1200;
|
1995-03-31 11:47:39 +00:00
|
|
|
char phone[50];
|
2001-12-20 13:06:50 +00:00
|
|
|
struct termios cntrl;
|
1995-03-31 11:47:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get in synch
|
|
|
|
*/
|
|
|
|
vawrite("I\r", 1 + slow);
|
|
|
|
vawrite("I\r", 1 + slow);
|
|
|
|
vawrite("I\r", 1 + slow);
|
|
|
|
vawrite("\005\r", 2 + slow);
|
|
|
|
if (!expect("READY")) {
|
|
|
|
printf("can't synchronize with vadic 3451\n");
|
2001-12-20 13:06:50 +00:00
|
|
|
#ifdef ACULOG
|
1995-03-31 11:47:39 +00:00
|
|
|
logent(value(HOST), num, "vadic", "can't synch up");
|
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
2001-12-20 13:06:50 +00:00
|
|
|
tcgetattr(FD, &cntrl);
|
|
|
|
term.c_cflag |= HUPCL;
|
|
|
|
tcsetattr(FD, TCSANOW, &cntrl);
|
1995-03-31 11:47:39 +00:00
|
|
|
sleep(1);
|
|
|
|
vawrite("D\r", 2 + slow);
|
|
|
|
if (!expect("NUMBER?")) {
|
|
|
|
printf("Vadic will not accept dial command\n");
|
2001-12-20 13:06:50 +00:00
|
|
|
#ifdef ACULOG
|
1995-03-31 11:47:39 +00:00
|
|
|
logent(value(HOST), num, "vadic", "will not accept dial");
|
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
2001-12-20 13:06:50 +00:00
|
|
|
(void)snprintf(phone, sizeof phone, "%s\r", num);
|
1995-03-31 11:47:39 +00:00
|
|
|
vawrite(phone, 1 + slow);
|
|
|
|
if (!expect(phone)) {
|
|
|
|
printf("Vadic will not accept phone number\n");
|
2001-12-20 13:06:50 +00:00
|
|
|
#ifdef ACULOG
|
1995-03-31 11:47:39 +00:00
|
|
|
logent(value(HOST), num, "vadic", "will not accept number");
|
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
func = signal(SIGINT,SIG_IGN);
|
|
|
|
/*
|
|
|
|
* You cannot interrupt the Vadic when its dialing;
|
|
|
|
* even dropping DTR does not work (definitely a
|
|
|
|
* brain damaged design).
|
|
|
|
*/
|
|
|
|
vawrite("\r", 1 + slow);
|
|
|
|
vawrite("\r", 1 + slow);
|
|
|
|
if (!expect("DIALING:")) {
|
|
|
|
printf("Vadic failed to dial\n");
|
2001-12-20 13:06:50 +00:00
|
|
|
#ifdef ACULOG
|
1995-03-31 11:47:39 +00:00
|
|
|
logent(value(HOST), num, "vadic", "failed to dial");
|
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (boolean(value(VERBOSE)))
|
|
|
|
printf("\ndialing...");
|
|
|
|
ok = expect("ON LINE");
|
|
|
|
signal(SIGINT, func);
|
|
|
|
if (!ok) {
|
|
|
|
printf("call failed\n");
|
2001-12-20 13:06:50 +00:00
|
|
|
#ifdef ACULOG
|
1995-03-31 11:47:39 +00:00
|
|
|
logent(value(HOST), num, "vadic", "call failed");
|
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
2001-12-20 13:06:50 +00:00
|
|
|
tcflush(FD, TCIOFLUSH);
|
1995-03-31 11:47:39 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2001-12-20 13:06:50 +00:00
|
|
|
void
|
2006-08-31 14:14:30 +00:00
|
|
|
v3451_disconnect(void)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
close(FD);
|
|
|
|
}
|
|
|
|
|
2001-12-20 13:06:50 +00:00
|
|
|
void
|
2006-08-31 14:14:30 +00:00
|
|
|
v3451_abort(void)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
close(FD);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-08-31 14:14:30 +00:00
|
|
|
vawrite(char *cp, int delay)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
for (; *cp; sleep(delay), cp++)
|
|
|
|
write(FD, cp, 1);
|
|
|
|
}
|
|
|
|
|
2001-12-20 13:06:50 +00:00
|
|
|
static int
|
2006-08-31 14:14:30 +00:00
|
|
|
expect(char *cp)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
char buf[300];
|
2001-12-20 13:06:50 +00:00
|
|
|
char *rp = buf;
|
1995-03-31 11:47:39 +00:00
|
|
|
int timeout = 30, online = 0;
|
|
|
|
|
|
|
|
if (strcmp(cp, "\"\"") == 0)
|
|
|
|
return (1);
|
|
|
|
*rp = 0;
|
|
|
|
/*
|
|
|
|
* If we are waiting for the Vadic to complete
|
|
|
|
* dialing and get a connection, allow more time
|
|
|
|
* Unfortunately, the Vadic times out 24 seconds after
|
|
|
|
* the last digit is dialed
|
|
|
|
*/
|
|
|
|
online = strcmp(cp, "ON LINE") == 0;
|
|
|
|
if (online)
|
|
|
|
timeout = number(value(DIALTIMEOUT));
|
|
|
|
signal(SIGALRM, alarmtr);
|
|
|
|
if (setjmp(Sjbuf))
|
|
|
|
return (0);
|
|
|
|
alarm(timeout);
|
|
|
|
while (notin(cp, buf) && rp < buf + sizeof (buf) - 1) {
|
|
|
|
if (online && notin("FAILED CALL", buf) == 0)
|
|
|
|
return (0);
|
|
|
|
if (read(FD, rp, 1) < 0) {
|
|
|
|
alarm(0);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (*rp &= 0177)
|
|
|
|
rp++;
|
|
|
|
*rp = '\0';
|
|
|
|
}
|
|
|
|
alarm(0);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2006-08-31 14:14:30 +00:00
|
|
|
/*ARGSUSED*/
|
1995-03-31 11:47:39 +00:00
|
|
|
static void
|
2006-08-31 14:14:30 +00:00
|
|
|
alarmtr(int signo)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
longjmp(Sjbuf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-08-31 14:14:30 +00:00
|
|
|
notin(char *sh, char *lg)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
|
|
|
for (; *lg; lg++)
|
|
|
|
if (prefix(sh, lg))
|
|
|
|
return (0);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2001-12-20 13:06:50 +00:00
|
|
|
static int
|
2006-08-31 14:14:30 +00:00
|
|
|
prefix(char *s1, char *s2)
|
1995-03-31 11:47:39 +00:00
|
|
|
{
|
2001-12-20 13:06:50 +00:00
|
|
|
char c;
|
1995-03-31 11:47:39 +00:00
|
|
|
|
|
|
|
while ((c = *s1++) == *s2++)
|
|
|
|
if (c == '\0')
|
|
|
|
return (1);
|
|
|
|
return (c == '\0');
|
|
|
|
}
|