courier.c revision 1.8 1 1.8 lukem /* $NetBSD: courier.c,v 1.8 1997/11/22 07:28:53 lukem Exp $ */
2 1.4 jtc
3 1.1 cgd /*
4 1.4 jtc * Copyright (c) 1986, 1993
5 1.4 jtc * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.8 lukem #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.4 jtc #if 0
39 1.4 jtc static char sccsid[] = "@(#)courier.c 8.1 (Berkeley) 6/6/93";
40 1.4 jtc #endif
41 1.8 lukem __RCSID("$NetBSD: courier.c,v 1.8 1997/11/22 07:28:53 lukem Exp $");
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*
45 1.1 cgd * Routines for calling up on a Courier modem.
46 1.1 cgd * Derived from Hayes driver.
47 1.1 cgd */
48 1.1 cgd #include "tip.h"
49 1.1 cgd
50 1.1 cgd #define MAXRETRY 5
51 1.1 cgd
52 1.1 cgd static int timeout = 0;
53 1.1 cgd static int connected = 0;
54 1.8 lukem static jmp_buf timeoutbuf;
55 1.1 cgd
56 1.8 lukem static int cour_connect __P((void));
57 1.8 lukem static void cour_nap __P((void));
58 1.8 lukem static void cour_napx __P((int));
59 1.8 lukem static int cour_swallow __P((char *));
60 1.8 lukem static int coursync __P((void));
61 1.8 lukem #ifdef DEBUG
62 1.8 lukem static void cour_verbose_read __P((void));
63 1.8 lukem #endif
64 1.8 lukem static void cour_write __P((int, char *, int));
65 1.8 lukem static void sigALRM __P((int));
66 1.8 lukem
67 1.8 lukem int
68 1.1 cgd cour_dialer(num, acu)
69 1.8 lukem char *num;
70 1.1 cgd char *acu;
71 1.1 cgd {
72 1.8 lukem char *cp;
73 1.1 cgd #ifdef ACULOG
74 1.1 cgd char line[80];
75 1.1 cgd #endif
76 1.5 pk struct termios cntrl;
77 1.1 cgd
78 1.1 cgd if (boolean(value(VERBOSE)))
79 1.1 cgd printf("Using \"%s\"\n", acu);
80 1.1 cgd
81 1.5 pk tcgetattr(FD, &cntrl);
82 1.5 pk cntrl.c_cflag |= HUPCL;
83 1.5 pk tcsetattr(FD, TCSAFLUSH, &cntrl);
84 1.1 cgd /*
85 1.1 cgd * Get in synch.
86 1.1 cgd */
87 1.1 cgd if (!coursync()) {
88 1.1 cgd badsynch:
89 1.1 cgd printf("can't synchronize with courier\n");
90 1.1 cgd #ifdef ACULOG
91 1.1 cgd logent(value(HOST), num, "courier", "can't synch up");
92 1.1 cgd #endif
93 1.1 cgd return (0);
94 1.1 cgd }
95 1.1 cgd cour_write(FD, "AT E0\r", 6); /* turn off echoing */
96 1.1 cgd sleep(1);
97 1.1 cgd #ifdef DEBUG
98 1.1 cgd if (boolean(value(VERBOSE)))
99 1.4 jtc cour_verbose_read();
100 1.1 cgd #endif
101 1.5 pk tcflush(FD, TCIOFLUSH);
102 1.1 cgd cour_write(FD, "AT C1 E0 H0 Q0 X6 V1\r", 21);
103 1.1 cgd if (!cour_swallow("\r\nOK\r\n"))
104 1.1 cgd goto badsynch;
105 1.1 cgd fflush(stdout);
106 1.1 cgd cour_write(FD, "AT D", 4);
107 1.1 cgd for (cp = num; *cp; cp++)
108 1.1 cgd if (*cp == '=')
109 1.1 cgd *cp = ',';
110 1.1 cgd cour_write(FD, num, strlen(num));
111 1.1 cgd cour_write(FD, "\r", 1);
112 1.1 cgd connected = cour_connect();
113 1.1 cgd #ifdef ACULOG
114 1.1 cgd if (timeout) {
115 1.7 mrg (void)snprintf(line, sizeof line, "%d second dial timeout",
116 1.8 lukem (int)number(value(DIALTIMEOUT)));
117 1.1 cgd logent(value(HOST), num, "cour", line);
118 1.1 cgd }
119 1.1 cgd #endif
120 1.1 cgd if (timeout)
121 1.1 cgd cour_disconnect();
122 1.1 cgd return (connected);
123 1.1 cgd }
124 1.1 cgd
125 1.8 lukem void
126 1.1 cgd cour_disconnect()
127 1.1 cgd {
128 1.1 cgd /* first hang up the modem*/
129 1.1 cgd ioctl(FD, TIOCCDTR, 0);
130 1.1 cgd sleep(1);
131 1.1 cgd ioctl(FD, TIOCSDTR, 0);
132 1.1 cgd coursync(); /* reset */
133 1.1 cgd close(FD);
134 1.1 cgd }
135 1.1 cgd
136 1.8 lukem void
137 1.1 cgd cour_abort()
138 1.1 cgd {
139 1.1 cgd cour_write(FD, "\r", 1); /* send anything to abort the call */
140 1.1 cgd cour_disconnect();
141 1.1 cgd }
142 1.1 cgd
143 1.1 cgd static void
144 1.8 lukem sigALRM(dummy)
145 1.8 lukem int dummy;
146 1.1 cgd {
147 1.1 cgd printf("\07timeout waiting for reply\n");
148 1.1 cgd timeout = 1;
149 1.1 cgd longjmp(timeoutbuf, 1);
150 1.1 cgd }
151 1.1 cgd
152 1.1 cgd static int
153 1.1 cgd cour_swallow(match)
154 1.8 lukem char *match;
155 1.8 lukem {
156 1.1 cgd sig_t f;
157 1.1 cgd char c;
158 1.1 cgd
159 1.8 lukem #if __GNUC__ /* XXX pacify gcc */
160 1.8 lukem (void)&match;
161 1.8 lukem #endif
162 1.8 lukem
163 1.1 cgd f = signal(SIGALRM, sigALRM);
164 1.1 cgd timeout = 0;
165 1.1 cgd do {
166 1.1 cgd if (*match =='\0') {
167 1.1 cgd signal(SIGALRM, f);
168 1.1 cgd return (1);
169 1.1 cgd }
170 1.1 cgd if (setjmp(timeoutbuf)) {
171 1.1 cgd signal(SIGALRM, f);
172 1.1 cgd return (0);
173 1.1 cgd }
174 1.1 cgd alarm(number(value(DIALTIMEOUT)));
175 1.1 cgd read(FD, &c, 1);
176 1.1 cgd alarm(0);
177 1.1 cgd c &= 0177;
178 1.1 cgd #ifdef DEBUG
179 1.1 cgd if (boolean(value(VERBOSE)))
180 1.1 cgd putchar(c);
181 1.1 cgd #endif
182 1.1 cgd } while (c == *match++);
183 1.1 cgd #ifdef DEBUG
184 1.1 cgd if (boolean(value(VERBOSE)))
185 1.1 cgd fflush(stdout);
186 1.1 cgd #endif
187 1.1 cgd signal(SIGALRM, SIG_DFL);
188 1.1 cgd return (0);
189 1.1 cgd }
190 1.1 cgd
191 1.1 cgd struct baud_msg {
192 1.1 cgd char *msg;
193 1.1 cgd int baud;
194 1.1 cgd } baud_msg[] = {
195 1.8 lukem { "", B300 },
196 1.8 lukem { " 1200", B1200 },
197 1.8 lukem { " 2400", B2400 },
198 1.8 lukem { " 9600", B9600 },
199 1.8 lukem { " 9600/ARQ", B9600 },
200 1.8 lukem { 0, 0 }
201 1.1 cgd };
202 1.1 cgd
203 1.1 cgd static int
204 1.1 cgd cour_connect()
205 1.1 cgd {
206 1.1 cgd char c;
207 1.1 cgd int nc, nl, n;
208 1.1 cgd char dialer_buf[64];
209 1.1 cgd struct baud_msg *bm;
210 1.1 cgd sig_t f;
211 1.1 cgd
212 1.8 lukem #if __GNUC__ /* XXX pacify gcc */
213 1.8 lukem (void)&nc;
214 1.8 lukem (void)&nl;
215 1.8 lukem #endif
216 1.8 lukem
217 1.1 cgd if (cour_swallow("\r\n") == 0)
218 1.1 cgd return (0);
219 1.1 cgd f = signal(SIGALRM, sigALRM);
220 1.1 cgd again:
221 1.1 cgd nc = 0; nl = sizeof(dialer_buf)-1;
222 1.8 lukem memset(dialer_buf, 0, sizeof(dialer_buf));
223 1.1 cgd timeout = 0;
224 1.1 cgd for (nc = 0, nl = sizeof(dialer_buf)-1 ; nl > 0 ; nc++, nl--) {
225 1.1 cgd if (setjmp(timeoutbuf))
226 1.1 cgd break;
227 1.1 cgd alarm(number(value(DIALTIMEOUT)));
228 1.1 cgd n = read(FD, &c, 1);
229 1.1 cgd alarm(0);
230 1.1 cgd if (n <= 0)
231 1.1 cgd break;
232 1.1 cgd c &= 0x7f;
233 1.1 cgd if (c == '\r') {
234 1.1 cgd if (cour_swallow("\n") == 0)
235 1.1 cgd break;
236 1.1 cgd if (!dialer_buf[0])
237 1.1 cgd goto again;
238 1.1 cgd if (strcmp(dialer_buf, "RINGING") == 0 &&
239 1.1 cgd boolean(value(VERBOSE))) {
240 1.1 cgd #ifdef DEBUG
241 1.1 cgd printf("%s\r\n", dialer_buf);
242 1.1 cgd #endif
243 1.1 cgd goto again;
244 1.1 cgd }
245 1.1 cgd if (strncmp(dialer_buf, "CONNECT",
246 1.1 cgd sizeof("CONNECT")-1) != 0)
247 1.1 cgd break;
248 1.2 cgd for (bm = baud_msg ; bm->msg ; bm++)
249 1.1 cgd if (strcmp(bm->msg,
250 1.1 cgd dialer_buf+sizeof("CONNECT")-1) == 0) {
251 1.5 pk struct termios cntrl;
252 1.5 pk
253 1.5 pk tcgetattr(FD, &cntrl);
254 1.5 pk cfsetospeed(&cntrl, bm->baud);
255 1.5 pk cfsetispeed(&cntrl, bm->baud);
256 1.5 pk tcsetattr(FD, TCSAFLUSH, &cntrl);
257 1.1 cgd signal(SIGALRM, f);
258 1.1 cgd #ifdef DEBUG
259 1.1 cgd if (boolean(value(VERBOSE)))
260 1.1 cgd printf("%s\r\n", dialer_buf);
261 1.1 cgd #endif
262 1.1 cgd return (1);
263 1.1 cgd }
264 1.1 cgd break;
265 1.1 cgd }
266 1.1 cgd dialer_buf[nc] = c;
267 1.1 cgd #ifdef notdef
268 1.1 cgd if (boolean(value(VERBOSE)))
269 1.1 cgd putchar(c);
270 1.1 cgd #endif
271 1.1 cgd }
272 1.1 cgd printf("%s\r\n", dialer_buf);
273 1.1 cgd signal(SIGALRM, f);
274 1.1 cgd return (0);
275 1.1 cgd }
276 1.1 cgd
277 1.1 cgd /*
278 1.1 cgd * This convoluted piece of code attempts to get
279 1.1 cgd * the courier in sync.
280 1.1 cgd */
281 1.1 cgd static int
282 1.1 cgd coursync()
283 1.1 cgd {
284 1.1 cgd int already = 0;
285 1.1 cgd int len;
286 1.1 cgd char buf[40];
287 1.1 cgd
288 1.1 cgd while (already++ < MAXRETRY) {
289 1.5 pk tcflush(FD, TCIOFLUSH);
290 1.1 cgd cour_write(FD, "\rAT Z\r", 6); /* reset modem */
291 1.8 lukem memset(buf, 0, sizeof(buf));
292 1.1 cgd sleep(1);
293 1.1 cgd ioctl(FD, FIONREAD, &len);
294 1.1 cgd if (len) {
295 1.1 cgd len = read(FD, buf, sizeof(buf));
296 1.1 cgd #ifdef DEBUG
297 1.1 cgd buf[len] = '\0';
298 1.1 cgd printf("coursync: (\"%s\")\n\r", buf);
299 1.1 cgd #endif
300 1.8 lukem if (strchr(buf, '0') ||
301 1.8 lukem (strchr(buf, 'O') && strchr(buf, 'K')))
302 1.1 cgd return(1);
303 1.1 cgd }
304 1.1 cgd /*
305 1.1 cgd * If not strapped for DTR control,
306 1.1 cgd * try to get command mode.
307 1.1 cgd */
308 1.1 cgd sleep(1);
309 1.1 cgd cour_write(FD, "+++", 3);
310 1.1 cgd sleep(1);
311 1.1 cgd /*
312 1.1 cgd * Toggle DTR to force anyone off that might have left
313 1.1 cgd * the modem connected.
314 1.1 cgd */
315 1.1 cgd ioctl(FD, TIOCCDTR, 0);
316 1.1 cgd sleep(1);
317 1.1 cgd ioctl(FD, TIOCSDTR, 0);
318 1.1 cgd }
319 1.1 cgd cour_write(FD, "\rAT Z\r", 6);
320 1.1 cgd return (0);
321 1.1 cgd }
322 1.1 cgd
323 1.8 lukem static void
324 1.1 cgd cour_write(fd, cp, n)
325 1.8 lukem int fd;
326 1.8 lukem char *cp;
327 1.8 lukem int n;
328 1.1 cgd {
329 1.1 cgd #ifdef notdef
330 1.1 cgd if (boolean(value(VERBOSE)))
331 1.1 cgd write(1, cp, n);
332 1.1 cgd #endif
333 1.5 pk tcdrain(fd);
334 1.1 cgd cour_nap();
335 1.1 cgd for ( ; n-- ; cp++) {
336 1.1 cgd write(fd, cp, 1);
337 1.5 pk tcdrain(fd);
338 1.1 cgd cour_nap();
339 1.1 cgd }
340 1.1 cgd }
341 1.1 cgd
342 1.1 cgd #ifdef DEBUG
343 1.8 lukem static void
344 1.4 jtc cour_verbose_read()
345 1.1 cgd {
346 1.1 cgd int n = 0;
347 1.1 cgd char buf[BUFSIZ];
348 1.1 cgd
349 1.1 cgd if (ioctl(FD, FIONREAD, &n) < 0)
350 1.1 cgd return;
351 1.1 cgd if (n <= 0)
352 1.1 cgd return;
353 1.1 cgd if (read(FD, buf, n) != n)
354 1.1 cgd return;
355 1.1 cgd write(1, buf, n);
356 1.1 cgd }
357 1.1 cgd #endif
358 1.1 cgd
359 1.1 cgd /*
360 1.1 cgd * Code stolen from /usr/src/lib/libc/gen/sleep.c
361 1.1 cgd */
362 1.1 cgd #define mask(s) (1<<((s)-1))
363 1.1 cgd #define setvec(vec, a) \
364 1.1 cgd vec.sv_handler = a; vec.sv_mask = vec.sv_onstack = 0
365 1.1 cgd
366 1.1 cgd static napms = 50; /* Give the courier 50 milliseconds between characters */
367 1.1 cgd
368 1.1 cgd static int ringring;
369 1.1 cgd
370 1.8 lukem void
371 1.1 cgd cour_nap()
372 1.1 cgd {
373 1.1 cgd
374 1.1 cgd int omask;
375 1.1 cgd struct itimerval itv, oitv;
376 1.8 lukem struct itimerval *itp = &itv;
377 1.1 cgd struct sigvec vec, ovec;
378 1.1 cgd
379 1.1 cgd timerclear(&itp->it_interval);
380 1.1 cgd timerclear(&itp->it_value);
381 1.1 cgd if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
382 1.1 cgd return;
383 1.1 cgd setvec(ovec, SIG_DFL);
384 1.1 cgd omask = sigblock(mask(SIGALRM));
385 1.1 cgd itp->it_value.tv_sec = napms/1000;
386 1.1 cgd itp->it_value.tv_usec = ((napms%1000)*1000);
387 1.1 cgd setvec(vec, cour_napx);
388 1.1 cgd ringring = 0;
389 1.1 cgd (void) sigvec(SIGALRM, &vec, &ovec);
390 1.1 cgd (void) setitimer(ITIMER_REAL, itp, (struct itimerval *)0);
391 1.1 cgd while (!ringring)
392 1.1 cgd sigpause(omask &~ mask(SIGALRM));
393 1.1 cgd (void) sigvec(SIGALRM, &ovec, (struct sigvec *)0);
394 1.1 cgd (void) setitimer(ITIMER_REAL, &oitv, (struct itimerval *)0);
395 1.1 cgd (void) sigsetmask(omask);
396 1.1 cgd }
397 1.1 cgd
398 1.1 cgd static void
399 1.8 lukem cour_napx(dummy)
400 1.8 lukem int dummy;
401 1.1 cgd {
402 1.1 cgd ringring = 1;
403 1.1 cgd }
404