2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * $FreeBSD: src/usr.bin/tip/libacu/v831.c,v 1.1.12.1 2000/07/01 12:24:22 ps Exp $
34 * $DragonFly: src/usr.bin/tip/libacu/v831.c,v 1.3 2005/05/07 23:20:43 corecode Exp $
36 * @(#)v831.c 8.1 (Berkeley) 6/6/93
40 * Routines for dialing up on Vadic 831
47 static void alarmtr();
48 static int dialit(char *, char *);
49 static char *sanitize(char *);
51 static jmp_buf jmpbuf
;
52 static int child
= -1;
57 int status
, pid
, connected
= 1;
60 if (boolean(value(VERBOSE
)))
61 printf("\nstarting call...");
63 printf ("(acu=%s)\n", acu
);
65 if ((AC
= open(acu
, O_RDWR
)) < 0) {
67 printf("line busy...");
69 printf("acu open error...");
77 signal(SIGALRM
, alarmtr
);
78 timelim
= 5 * strlen(num
);
79 alarm(timelim
< 30 ? 30 : timelim
);
80 if ((child
= fork()) == 0) {
82 * ignore this stuff for aborts
84 signal(SIGALRM
, SIG_IGN
);
85 signal(SIGINT
, SIG_IGN
);
86 signal(SIGQUIT
, SIG_IGN
);
88 exit(dialit(num
, acu
) != 'A');
91 * open line - will return on carrier
93 if ((FD
= open(DV
, O_RDWR
)) < 0) {
95 printf("(after open, errno=%d)\n", errno
);
98 printf("lost carrier...");
100 printf("dialup line open failed...");
102 kill(child
, SIGKILL
);
108 ioctl(AC
, TIOCHPCL
, 0);
110 signal(SIGALRM
, SIG_DFL
);
111 while ((pid
= wait(&status
)) != child
&& pid
!= -1)
128 * Insurance, for some reason we don't seem to be
135 printf("[disconnect: FD=%d]\n", FD
);
138 ioctl(FD
, TIOCCDTR
, 0);
140 ioctl(FD
, TIOCNXCL
, 0);
149 printf("[abort: AC=%d]\n", AC
);
153 kill(child
, SIGKILL
);
155 ioctl(FD
, TIOCNXCL
, 0);
158 ioctl(FD
, TIOCCDTR
, 0);
163 * Sigh, this probably must be changed at each site.
170 { "/dev/cua0",'4','0' },
171 { "/dev/cua1",'4','1' },
175 #define pc(x) (c = x, write(AC,&c,1))
182 dialit(phonenum
, acu
)
183 register char *phonenum
;
186 register struct vaconfig
*vp
;
190 phonenum
= sanitize(phonenum
);
192 printf ("(dial phonenum=%s)\n", phonenum
);
194 if (*phonenum
== '<' && phonenum
[1] == 0)
196 for (vp
= vaconfig
; vp
->vc_name
; vp
++)
197 if (strcmp(vp
->vc_name
, acu
) == 0)
199 if (vp
->vc_name
== 0) {
200 printf("Unable to locate dialer (%s)\n", acu
);
205 struct termios termios
;
206 tcgetattr (AC
, &termios
);
208 #ifndef _POSIX_SOURCE
209 termios
.c_lflag
= (PENDIN
|ECHOKE
|ECHOE
);
211 termios
.c_lflag
= (PENDIN
|ECHOE
);
213 termios
.c_cflag
= (CLOCAL
|HUPCL
|CREAD
|CS8
);
214 termios
.c_ispeed
= termios
.c_ospeed
= B2400
;
215 tcsetattr (AC
, TCSANOW
, &termios
);
216 #else /* HAVE_TERMIOS */
218 ioctl(AC
, TIOCGETP
, &cntrl
);
219 cntrl
.sg_ispeed
= cntrl
.sg_ospeed
= B2400
;
220 cntrl
.sg_flags
= RAW
| EVENP
| ODDP
;
221 ioctl(AC
, TIOCSETP
, &cntrl
);
224 ioctl(AC
, TIOCFLUSH
, &two
);
228 while (*phonenum
&& *phonenum
!= '<')
235 printf("read %d chars, char=%c, errno %d\n", i
, c
, errno
);
239 if (c
== 'B' || c
== 'G') {
245 printf("abort response=%c\n", cc
);
252 printf("dialit: returns %c\n", c
);
261 static char buf
[128];
264 for (cp
= buf
; *s
; s
++) {
265 if (!isdigit(*s
) && *s
== '<' && *s
!= '_')