summaryrefslogtreecommitdiff
path: root/usr/src/cmd/tip/aculib/biz31.c
blob: 5dba92d65e6489752bed710f9bab385ae13fc43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
 * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

/*
 * Copyright (c) 1983 Regents of the University of California.
 * All rights reserved. The Berkeley software License Agreement
 * specifies the terms and conditions for redistribution.
 */

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#include "tip.h"

#define	MAXRETRY	3		/* sync up retry count */
#define	DISCONNECT_CMD	"\21\25\11\24"	/* disconnection string */

static int	detect(char *);
static int	bizsync(int);
static void	echo(char *);
static void	flush(char *);
static void	sigALRM(void);
static int	timeout = 0;
static sigjmp_buf	timeoutbuf;

void	biz31_disconnect(void);

/*
 * Dial up on a BIZCOMP Model 1031 with either
 * 	tone dialing (mod = "f")
 *	pulse dialing (mod = "w")
 */
static int
biz_dialer(char *num, char *mod)
{
	int connected = 0;

	if (!bizsync(FD)) {
		logent(value(HOST), "", "biz", "out of sync");
		(void) printf("bizcomp out of sync\n");
		delock(uucplock);
		exit(0);
	}
	if (boolean(value(VERBOSE)))
		(void) printf("\nstarting call...");
	echo("#\rk$\r$\n");			/* disable auto-answer */
	echo("$>$.$ #\r");			/* tone/pulse dialing */
	echo(mod);
	echo("$\r$\n");
	echo("$>$.$ #\re$ ");			/* disconnection sequence */
	echo(DISCONNECT_CMD);
	echo("\r$\n$\r$\n");
	echo("$>$.$ #\rr$ ");			/* repeat dial */
	echo(num);
	echo("\r$\n");
	if (boolean(value(VERBOSE)))
		(void) printf("ringing...");
	/*
	 * The reply from the BIZCOMP should be:
	 *	`^G NO CONNECTION\r\n^G\r\n'	failure
	 *	` CONNECTION\r\n^G'		success
	 */
	connected = detect(" ");
#ifdef ACULOG
	if (timeout) {
		char line[80];

		(void) sprintf(line, "%d second dial timeout",
		    number(value(DIALTIMEOUT)));
		logent(value(HOST), num, "biz", line);
	}
#endif
	if (!connected)
		flush(" NO CONNECTION\r\n\07\r\n");
	else
		flush("CONNECTION\r\n\07");
	if (timeout)
		biz31_disconnect();	/* insurance */
	return (connected);
}

/* ARGSUSED */
int
biz31w_dialer(char *num, char *acu)
{

	return (biz_dialer(num, "w"));
}

/* ARGSUSED */
int
biz31f_dialer(char *num, char *acu)
{

	return (biz_dialer(num, "f"));
}

void
biz31_disconnect(void)
{

	(void) write(FD, DISCONNECT_CMD, 4);
	(void) sleep(2);
	(void) ioctl(FD, TCFLSH, TCOFLUSH);
}

void
biz31_abort(void)
{

	(void) write(FD, "\33", 1);
}

static void
echo(char *s)
{
	char c;

	while (c = *s++) {
		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(void)
{

	timeout = 1;
	siglongjmp(timeoutbuf, 1);
}

static int
detect(char *s)
{
	char c;
	sig_handler_t f;

	f = signal(SIGALRM, (sig_handler_t)sigALRM);
	timeout = 0;
	while (*s) {
		if (sigsetjmp(timeoutbuf, 1)) {
			(void) printf("\07timeout waiting for reply\n");
			biz31_abort();
			break;
		}
		(void) alarm(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(char *s)
{
	char c;
	sig_handler_t f;

	f = signal(SIGALRM, (sig_handler_t)sigALRM);
	while (*s++) {
		if (sigsetjmp(timeoutbuf, 1))
			break;
		(void) alarm(10);
		(void) read(FD, &c, 1);
		(void) alarm(0);
	}
	(void) signal(SIGALRM, f);
	timeout = 0;			/* guard against disconnection */
}

/*
 * This convoluted piece of code attempts to get
 *  the bizcomp in sync.  If you don't have the capacity or nread
 *  call there are gory ways to simulate this.
 */
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, (caddr_t)&b) >= 0 && chars(b) > 0)
		(void) ioctl(fd, TCFLSH, TCIOFLUSH);
	(void) write(fd, "\rp>\r", 4);
	(void) sleep(1);
	if (ioctl(fd, IOCTL, (caddr_t)&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);
}