Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / tip / tip / acu.c
1 /*
2  * Copyright (c) 1983, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
20  *
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
31  * SUCH DAMAGE.
32  *
33  * @(#)acu.c    8.1 (Berkeley) 6/6/93
34  * $FreeBSD: src/usr.bin/tip/tip/acu.c,v 1.5 1999/08/28 01:06:31 peter Exp $
35  * $DragonFly: src/usr.bin/tip/tip/acu.c,v 1.2 2003/06/17 04:29:32 dillon Exp $
36  */
37
38 #include "tipconf.h"
39 #include "tip.h"
40
41 #if UNIDIALER
42 acu_t* unidialer_getmodem (const char *modem_name);
43 #endif
44
45 static acu_t *acu = NOACU;
46 static int conflag;
47 static void acuabort();
48 static acu_t *acutype();
49 static jmp_buf jmpbuf;
50 /*
51  * Establish connection for tip
52  *
53  * If DU is true, we should dial an ACU whose type is AT.
54  * The phone numbers are in PN, and the call unit is in CU.
55  *
56  * If the PN is an '@', then we consult the PHONES file for
57  *   the phone numbers.  This file is /etc/phones, unless overriden
58  *   by an exported shell variable.
59  *
60  * The data base files must be in the format:
61  *      host-name[ \t]*phone-number
62  *   with the possibility of multiple phone numbers
63  *   for a single host acting as a rotary (in the order
64  *   found in the file).
65  */
66 char *
67 connect()
68 {
69         register char *cp = PN;
70         char *phnum, string[256];
71         FILE *fd;
72         int tried = 0;
73
74         if (!DU) {              /* regular connect message */
75                 if (CM != NOSTR)
76                         xpwrite(FD, CM, size(CM));
77                 logent(value(HOST), "", DV, "call completed");
78                 return (NOSTR);
79         }
80         /*
81          * @ =>'s use data base in PHONES environment variable
82          *        otherwise, use /etc/phones
83          */
84         signal(SIGINT, acuabort);
85         signal(SIGQUIT, acuabort);
86         if (setjmp(jmpbuf)) {
87                 signal(SIGINT, SIG_IGN);
88                 signal(SIGQUIT, SIG_IGN);
89                 printf("\ncall aborted\n");
90                 logent(value(HOST), "", "", "call aborted");
91                 if (acu != NOACU) {
92                         boolean(value(VERBOSE)) = FALSE;
93                         if (conflag)
94                                 disconnect(NOSTR);
95                         else
96                                 (*acu->acu_abort)();
97                 }
98                 return ("interrupt");
99         }
100         if ((acu = acutype(AT)) == NOACU)
101                 return ("unknown ACU type");
102         if (*cp != '@') {
103                 while (*cp) {
104                         for (phnum = cp; *cp && *cp != ','; cp++)
105                                 ;
106                         if (*cp)
107                                 *cp++ = '\0';
108
109                         if ((conflag = (*acu->acu_dialer)(phnum, CU))) {
110                                 if (CM != NOSTR)
111                                         xpwrite(FD, CM, size(CM));
112                                 logent(value(HOST), phnum, acu->acu_name,
113                                         "call completed");
114                                 return (NOSTR);
115                         } else
116                                 logent(value(HOST), phnum, acu->acu_name,
117                                         "call failed");
118                         tried++;
119                 }
120         } else {
121                 if ((fd = fopen(PH, "r")) == NOFILE) {
122                         printf("%s: ", PH);
123                         return ("can't open phone number file");
124                 }
125                 while (fgets(string, sizeof(string), fd) != NOSTR) {
126                         for (cp = string; !any(*cp, " \t\n"); cp++)
127                                 ;
128                         if (*cp == '\n') {
129                                 fclose(fd);
130                                 return ("unrecognizable host name");
131                         }
132                         *cp++ = '\0';
133                         if (strcmp(string, value(HOST)))
134                                 continue;
135                         while (any(*cp, " \t"))
136                                 cp++;
137                         if (*cp == '\n') {
138                                 fclose(fd);
139                                 return ("missing phone number");
140                         }
141                         for (phnum = cp; *cp && *cp != ',' && *cp != '\n'; cp++)
142                                 ;
143                         if (*cp)
144                                 *cp++ = '\0';
145
146                         if ((conflag = (*acu->acu_dialer)(phnum, CU))) {
147                                 fclose(fd);
148                                 if (CM != NOSTR)
149                                         xpwrite(FD, CM, size(CM));
150                                 logent(value(HOST), phnum, acu->acu_name,
151                                         "call completed");
152                                 return (NOSTR);
153                         } else
154                                 logent(value(HOST), phnum, acu->acu_name,
155                                         "call failed");
156                         tried++;
157                 }
158                 fclose(fd);
159         }
160         if (!tried)
161                 logent(value(HOST), "", acu->acu_name, "missing phone number");
162         else
163                 (*acu->acu_abort)();
164         return (tried ? "call failed" : "missing phone number");
165 }
166
167 void
168 disconnect(reason)
169         char *reason;
170 {
171         if (!conflag) {
172                 logent(value(HOST), "", DV, "call terminated");
173                 return;
174         }
175         if (reason == NOSTR) {
176                 logent(value(HOST), "", acu->acu_name, "call terminated");
177                 if (boolean(value(VERBOSE)))
178                         printf("\r\ndisconnecting...");
179         } else
180                 logent(value(HOST), "", acu->acu_name, reason);
181         (*acu->acu_disconnect)();
182 }
183
184 static void
185 acuabort(s)
186 {
187         signal(s, SIG_IGN);
188         longjmp(jmpbuf, 1);
189 }
190
191 static acu_t *
192 acutype(s)
193         register char *s;
194 {
195         register acu_t *p;
196         extern acu_t acutable[];
197
198         for (p = acutable; p->acu_name != '\0'; p++)
199                 if (!strcmp(s, p->acu_name))
200                         return (p);
201
202         #if UNIDIALER
203         return unidialer_getmodem (s);
204         #else
205         return (NOACU);
206         #endif
207 }