18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni *
4cae66988SJoerg Wunsch * Copyright (c) 1983, 1993
5cae66988SJoerg Wunsch * The Regents of the University of California. All rights reserved.
6ea022d16SRodney W. Grimes *
7ea022d16SRodney W. Grimes * Redistribution and use in source and binary forms, with or without
8ea022d16SRodney W. Grimes * modification, are permitted provided that the following conditions
9ea022d16SRodney W. Grimes * are met:
10ea022d16SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
11ea022d16SRodney W. Grimes * notice, this list of conditions and the following disclaimer.
12ea022d16SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
13ea022d16SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
14ea022d16SRodney W. Grimes * documentation and/or other materials provided with the distribution.
155efaea4cSChristian Brueffer * 3. Neither the name of the University nor the names of its contributors
16ea022d16SRodney W. Grimes * may be used to endorse or promote products derived from this software
17ea022d16SRodney W. Grimes * without specific prior written permission.
18ea022d16SRodney W. Grimes *
19ea022d16SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20ea022d16SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21ea022d16SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22ea022d16SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23ea022d16SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24ea022d16SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25ea022d16SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26ea022d16SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27ea022d16SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28ea022d16SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29ea022d16SRodney W. Grimes * SUCH DAMAGE.
30ea022d16SRodney W. Grimes */
31ea022d16SRodney W. Grimes
32ea022d16SRodney W. Grimes /*
33ea022d16SRodney W. Grimes * Melbourne getty.
34ea022d16SRodney W. Grimes */
35d748864dSPhilippe Charnier #include <sys/ioctl.h>
36d748864dSPhilippe Charnier #include <sys/param.h>
37d748864dSPhilippe Charnier #include <sys/time.h>
38a3e4b982SPedro F. Giffuni
39a3e4b982SPedro F. Giffuni #include <poll.h>
40f73ff060SAlexey Dokuchaev #include <regex.h>
41a3e4b982SPedro F. Giffuni #include <stdlib.h>
42a3e4b982SPedro F. Giffuni #include <string.h>
43d748864dSPhilippe Charnier #include <syslog.h>
44a3e4b982SPedro F. Giffuni #include <termios.h>
45a3e4b982SPedro F. Giffuni #include <unistd.h>
46ea022d16SRodney W. Grimes
47cae66988SJoerg Wunsch #include "gettytab.h"
48cae66988SJoerg Wunsch #include "pathnames.h"
49cae66988SJoerg Wunsch #include "extern.h"
50cae66988SJoerg Wunsch
51ea022d16SRodney W. Grimes /*
52ea022d16SRodney W. Grimes * Get a table entry.
53ea022d16SRodney W. Grimes */
54cae66988SJoerg Wunsch void
gettable(const char * name)558ad7a14aSDag-Erling Smørgrav gettable(const char *name)
56ea022d16SRodney W. Grimes {
578ad7a14aSDag-Erling Smørgrav char *buf = NULL;
5895289b27SWarner Losh struct gettystrs *sp;
5995289b27SWarner Losh struct gettynums *np;
6095289b27SWarner Losh struct gettyflags *fp;
61cae66988SJoerg Wunsch long n;
6204a59e67SDavid Nugent int l;
6304a59e67SDavid Nugent char *p;
6418587b84SEdward Tomasz Napierala static char path_gettytab[PATH_MAX];
6518587b84SEdward Tomasz Napierala char *dba[2];
6604a59e67SDavid Nugent
6704a59e67SDavid Nugent static int firsttime = 1;
6804a59e67SDavid Nugent
6918587b84SEdward Tomasz Napierala strlcpy(path_gettytab, _PATH_GETTYTAB, sizeof(path_gettytab));
7018587b84SEdward Tomasz Napierala dba[0] = path_gettytab;
7173906f57SPedro F. Giffuni dba[1] = NULL;
72ea022d16SRodney W. Grimes
7304a59e67SDavid Nugent if (firsttime) {
7404a59e67SDavid Nugent /*
7504a59e67SDavid Nugent * we need to strdup() anything in the strings array
7604a59e67SDavid Nugent * initially in order to simplify things later
7704a59e67SDavid Nugent */
78ea022d16SRodney W. Grimes for (sp = gettystrs; sp->field; sp++)
7904a59e67SDavid Nugent if (sp->value != NULL) {
8004a59e67SDavid Nugent /* handle these ones more carefully */
8104a59e67SDavid Nugent if (sp >= &gettystrs[4] && sp <= &gettystrs[6])
8204a59e67SDavid Nugent l = 2;
8304a59e67SDavid Nugent else
8404a59e67SDavid Nugent l = strlen(sp->value) + 1;
8576b71718SXin LI if ((p = malloc(l)) != NULL)
8676b71718SXin LI strlcpy(p, sp->value, l);
8704a59e67SDavid Nugent /*
8804a59e67SDavid Nugent * replace, even if NULL, else we'll
8904a59e67SDavid Nugent * have problems with free()ing static mem
9004a59e67SDavid Nugent */
9104a59e67SDavid Nugent sp->value = p;
9204a59e67SDavid Nugent }
9304a59e67SDavid Nugent firsttime = 0;
9404a59e67SDavid Nugent }
9504a59e67SDavid Nugent
9618587b84SEdward Tomasz Napierala switch (cgetent(&buf, dba, name)) {
9704a59e67SDavid Nugent case 1:
9818587b84SEdward Tomasz Napierala syslog(LOG_ERR, "getty: couldn't resolve 'tc=' in gettytab '%s'", name);
9918587b84SEdward Tomasz Napierala return;
10004a59e67SDavid Nugent case 0:
10104a59e67SDavid Nugent break;
10204a59e67SDavid Nugent case -1:
10318587b84SEdward Tomasz Napierala syslog(LOG_ERR, "getty: unknown gettytab entry '%s'", name);
10418587b84SEdward Tomasz Napierala return;
10504a59e67SDavid Nugent case -2:
10618587b84SEdward Tomasz Napierala syslog(LOG_ERR, "getty: retrieving gettytab entry '%s': %m", name);
10718587b84SEdward Tomasz Napierala return;
10804a59e67SDavid Nugent case -3:
10918587b84SEdward Tomasz Napierala syslog(LOG_ERR, "getty: recursive 'tc=' reference gettytab entry '%s'", name);
11018587b84SEdward Tomasz Napierala return;
11104a59e67SDavid Nugent default:
11218587b84SEdward Tomasz Napierala syslog(LOG_ERR, "getty: unexpected cgetent() error for entry '%s'", name);
11304a59e67SDavid Nugent return;
11404a59e67SDavid Nugent }
11504a59e67SDavid Nugent
11604a59e67SDavid Nugent for (sp = gettystrs; sp->field; sp++) {
117076ec402SEdward Tomasz Napierala if ((l = cgetstr(buf, sp->field, &p)) >= 0) {
11804a59e67SDavid Nugent if (sp->value) {
11904a59e67SDavid Nugent /* prefer existing value */
12004a59e67SDavid Nugent if (strcmp(p, sp->value) != 0)
12104a59e67SDavid Nugent free(sp->value);
12204a59e67SDavid Nugent else {
12304a59e67SDavid Nugent free(p);
12404a59e67SDavid Nugent p = sp->value;
12504a59e67SDavid Nugent }
12604a59e67SDavid Nugent }
12704a59e67SDavid Nugent sp->value = p;
12804a59e67SDavid Nugent } else if (l == -1) {
12904a59e67SDavid Nugent free(sp->value);
13004a59e67SDavid Nugent sp->value = NULL;
13104a59e67SDavid Nugent }
13204a59e67SDavid Nugent }
13304a59e67SDavid Nugent
134ea022d16SRodney W. Grimes for (np = gettynums; np->field; np++) {
135076ec402SEdward Tomasz Napierala if (cgetnum(buf, np->field, &n) == -1)
136ea022d16SRodney W. Grimes np->set = 0;
137ea022d16SRodney W. Grimes else {
138ea022d16SRodney W. Grimes np->set = 1;
139ea022d16SRodney W. Grimes np->value = n;
140ea022d16SRodney W. Grimes }
141ea022d16SRodney W. Grimes }
14204a59e67SDavid Nugent
143ea022d16SRodney W. Grimes for (fp = gettyflags; fp->field; fp++) {
144076ec402SEdward Tomasz Napierala if (cgetcap(buf, fp->field, ':') == NULL)
145ea022d16SRodney W. Grimes fp->set = 0;
146ea022d16SRodney W. Grimes else {
147ea022d16SRodney W. Grimes fp->set = 1;
148cae66988SJoerg Wunsch fp->value = 1 ^ fp->invrt;
149ea022d16SRodney W. Grimes }
150ea022d16SRodney W. Grimes }
1518ad7a14aSDag-Erling Smørgrav free(buf);
152ea022d16SRodney W. Grimes }
153ea022d16SRodney W. Grimes
154cae66988SJoerg Wunsch void
gendefaults(void)15595289b27SWarner Losh gendefaults(void)
156ea022d16SRodney W. Grimes {
15795289b27SWarner Losh struct gettystrs *sp;
15895289b27SWarner Losh struct gettynums *np;
15995289b27SWarner Losh struct gettyflags *fp;
160ea022d16SRodney W. Grimes
161ea022d16SRodney W. Grimes for (sp = gettystrs; sp->field; sp++)
162ea022d16SRodney W. Grimes if (sp->value)
16304a59e67SDavid Nugent sp->defalt = strdup(sp->value);
164ea022d16SRodney W. Grimes for (np = gettynums; np->field; np++)
165ea022d16SRodney W. Grimes if (np->set)
166ea022d16SRodney W. Grimes np->defalt = np->value;
167ea022d16SRodney W. Grimes for (fp = gettyflags; fp->field; fp++)
168ea022d16SRodney W. Grimes if (fp->set)
169ea022d16SRodney W. Grimes fp->defalt = fp->value;
170ea022d16SRodney W. Grimes else
171ea022d16SRodney W. Grimes fp->defalt = fp->invrt;
172ea022d16SRodney W. Grimes }
173ea022d16SRodney W. Grimes
174cae66988SJoerg Wunsch void
setdefaults(void)17595289b27SWarner Losh setdefaults(void)
176ea022d16SRodney W. Grimes {
17795289b27SWarner Losh struct gettystrs *sp;
17895289b27SWarner Losh struct gettynums *np;
17995289b27SWarner Losh struct gettyflags *fp;
180ea022d16SRodney W. Grimes
181ea022d16SRodney W. Grimes for (sp = gettystrs; sp->field; sp++)
182ea022d16SRodney W. Grimes if (!sp->value)
183*f285f414SDag-Erling Smørgrav sp->value = !sp->defalt ?
184*f285f414SDag-Erling Smørgrav sp->defalt : strdup(sp->defalt);
185ea022d16SRodney W. Grimes for (np = gettynums; np->field; np++)
186ea022d16SRodney W. Grimes if (!np->set)
187ea022d16SRodney W. Grimes np->value = np->defalt;
188ea022d16SRodney W. Grimes for (fp = gettyflags; fp->field; fp++)
189ea022d16SRodney W. Grimes if (!fp->set)
190ea022d16SRodney W. Grimes fp->value = fp->defalt;
191ea022d16SRodney W. Grimes }
192ea022d16SRodney W. Grimes
193ea022d16SRodney W. Grimes static char **
194ea022d16SRodney W. Grimes charnames[] = {
195ea022d16SRodney W. Grimes &ER, &KL, &IN, &QU, &XN, &XF, &ET, &BK,
196ea022d16SRodney W. Grimes &SU, &DS, &RP, &FL, &WE, &LN, 0
197ea022d16SRodney W. Grimes };
198ea022d16SRodney W. Grimes
1998ad7a14aSDag-Erling Smørgrav #define CV(a) (char *)(&tmode.c_cc[a])
2008ad7a14aSDag-Erling Smørgrav
201ea022d16SRodney W. Grimes static char *
202ea022d16SRodney W. Grimes charvars[] = {
2038ad7a14aSDag-Erling Smørgrav CV(VERASE), CV(VKILL), CV(VINTR),
2048ad7a14aSDag-Erling Smørgrav CV(VQUIT), CV(VSTART), CV(VSTOP),
2058ad7a14aSDag-Erling Smørgrav CV(VEOF), CV(VEOL), CV(VSUSP),
2068ad7a14aSDag-Erling Smørgrav CV(VDSUSP), CV(VREPRINT), CV(VDISCARD),
2078ad7a14aSDag-Erling Smørgrav CV(VWERASE), CV(VLNEXT), 0
208ea022d16SRodney W. Grimes };
209ea022d16SRodney W. Grimes
210cae66988SJoerg Wunsch void
setchars(void)21195289b27SWarner Losh setchars(void)
212ea022d16SRodney W. Grimes {
21395289b27SWarner Losh int i;
21495289b27SWarner Losh const char *p;
215ea022d16SRodney W. Grimes
216ea022d16SRodney W. Grimes for (i = 0; charnames[i]; i++) {
217ea022d16SRodney W. Grimes p = *charnames[i];
218ea022d16SRodney W. Grimes if (p && *p)
219ea022d16SRodney W. Grimes *charvars[i] = *p;
220ea022d16SRodney W. Grimes else
221cae66988SJoerg Wunsch *charvars[i] = _POSIX_VDISABLE;
222ea022d16SRodney W. Grimes }
223ea022d16SRodney W. Grimes }
224ea022d16SRodney W. Grimes
225cae66988SJoerg Wunsch /* Macros to clear/set/test flags. */
226cae66988SJoerg Wunsch #define SET(t, f) (t) |= (f)
227cae66988SJoerg Wunsch #define CLR(t, f) (t) &= ~(f)
228cae66988SJoerg Wunsch #define ISSET(t, f) ((t) & (f))
229cae66988SJoerg Wunsch
230cae66988SJoerg Wunsch void
set_flags(int n)23195289b27SWarner Losh set_flags(int n)
232ea022d16SRodney W. Grimes {
23395289b27SWarner Losh tcflag_t iflag, oflag, cflag, lflag;
234cae66988SJoerg Wunsch
235ea022d16SRodney W. Grimes
236ea022d16SRodney W. Grimes switch (n) {
237ea022d16SRodney W. Grimes case 0:
238cae66988SJoerg Wunsch if (C0set && I0set && L0set && O0set) {
239cae66988SJoerg Wunsch tmode.c_cflag = C0;
240cae66988SJoerg Wunsch tmode.c_iflag = I0;
241cae66988SJoerg Wunsch tmode.c_lflag = L0;
242cae66988SJoerg Wunsch tmode.c_oflag = O0;
243cae66988SJoerg Wunsch return;
244cae66988SJoerg Wunsch }
245ea022d16SRodney W. Grimes break;
246ea022d16SRodney W. Grimes case 1:
247cae66988SJoerg Wunsch if (C1set && I1set && L1set && O1set) {
248cae66988SJoerg Wunsch tmode.c_cflag = C1;
249cae66988SJoerg Wunsch tmode.c_iflag = I1;
250cae66988SJoerg Wunsch tmode.c_lflag = L1;
251cae66988SJoerg Wunsch tmode.c_oflag = O1;
252cae66988SJoerg Wunsch return;
253cae66988SJoerg Wunsch }
254ea022d16SRodney W. Grimes break;
255ea022d16SRodney W. Grimes default:
256cae66988SJoerg Wunsch if (C2set && I2set && L2set && O2set) {
257cae66988SJoerg Wunsch tmode.c_cflag = C2;
258cae66988SJoerg Wunsch tmode.c_iflag = I2;
259cae66988SJoerg Wunsch tmode.c_lflag = L2;
260cae66988SJoerg Wunsch tmode.c_oflag = O2;
261cae66988SJoerg Wunsch return;
262cae66988SJoerg Wunsch }
263ea022d16SRodney W. Grimes break;
264ea022d16SRodney W. Grimes }
265ea022d16SRodney W. Grimes
266cae66988SJoerg Wunsch iflag = omode.c_iflag;
267cae66988SJoerg Wunsch oflag = omode.c_oflag;
268cae66988SJoerg Wunsch cflag = omode.c_cflag;
269cae66988SJoerg Wunsch lflag = omode.c_lflag;
270ea022d16SRodney W. Grimes
271cae66988SJoerg Wunsch if (NP) {
272cae66988SJoerg Wunsch CLR(cflag, CSIZE|PARENB);
273cae66988SJoerg Wunsch SET(cflag, CS8);
274cae66988SJoerg Wunsch CLR(iflag, ISTRIP|INPCK|IGNPAR);
275cae66988SJoerg Wunsch } else if (AP || EP || OP) {
276cae66988SJoerg Wunsch CLR(cflag, CSIZE);
277cae66988SJoerg Wunsch SET(cflag, CS7|PARENB);
278cae66988SJoerg Wunsch SET(iflag, ISTRIP);
279cae66988SJoerg Wunsch if (OP && !EP) {
280cae66988SJoerg Wunsch SET(iflag, INPCK|IGNPAR);
281cae66988SJoerg Wunsch SET(cflag, PARODD);
282ea022d16SRodney W. Grimes if (AP)
283cae66988SJoerg Wunsch CLR(iflag, INPCK);
284cae66988SJoerg Wunsch } else if (EP && !OP) {
285cae66988SJoerg Wunsch SET(iflag, INPCK|IGNPAR);
286cae66988SJoerg Wunsch CLR(cflag, PARODD);
287cae66988SJoerg Wunsch if (AP)
288cae66988SJoerg Wunsch CLR(iflag, INPCK);
289cae66988SJoerg Wunsch } else if (AP || (EP && OP)) {
290cae66988SJoerg Wunsch CLR(iflag, INPCK|IGNPAR);
291cae66988SJoerg Wunsch CLR(cflag, PARODD);
292cae66988SJoerg Wunsch }
293cae66988SJoerg Wunsch } /* else, leave as is */
294ea022d16SRodney W. Grimes
295cae66988SJoerg Wunsch #if 0
296ea022d16SRodney W. Grimes if (UC)
297ea022d16SRodney W. Grimes f |= LCASE;
298cae66988SJoerg Wunsch #endif
299ea022d16SRodney W. Grimes
300cae66988SJoerg Wunsch if (HC)
301cae66988SJoerg Wunsch SET(cflag, HUPCL);
302ea022d16SRodney W. Grimes else
303cae66988SJoerg Wunsch CLR(cflag, HUPCL);
304cae66988SJoerg Wunsch
305cae66988SJoerg Wunsch if (MB)
306cae66988SJoerg Wunsch SET(cflag, MDMBUF);
307cae66988SJoerg Wunsch else
308cae66988SJoerg Wunsch CLR(cflag, MDMBUF);
309cae66988SJoerg Wunsch
310fe552114SDavid Nugent if (HW)
311fe552114SDavid Nugent SET(cflag, CRTSCTS);
312fe552114SDavid Nugent else
313fe552114SDavid Nugent CLR(cflag, CRTSCTS);
314fe552114SDavid Nugent
315cae66988SJoerg Wunsch if (NL) {
316cae66988SJoerg Wunsch SET(iflag, ICRNL);
317cae66988SJoerg Wunsch SET(oflag, ONLCR|OPOST);
318cae66988SJoerg Wunsch } else {
319cae66988SJoerg Wunsch CLR(iflag, ICRNL);
320cae66988SJoerg Wunsch CLR(oflag, ONLCR);
321ea022d16SRodney W. Grimes }
322ea022d16SRodney W. Grimes
323ea022d16SRodney W. Grimes if (!HT)
324cae66988SJoerg Wunsch SET(oflag, OXTABS|OPOST);
325cae66988SJoerg Wunsch else
326cae66988SJoerg Wunsch CLR(oflag, OXTABS);
327ea022d16SRodney W. Grimes
328cae66988SJoerg Wunsch #ifdef XXX_DELAY
329cae66988SJoerg Wunsch SET(f, delaybits());
330cae66988SJoerg Wunsch #endif
331ea022d16SRodney W. Grimes
332cae66988SJoerg Wunsch if (n == 1) { /* read mode flags */
333cae66988SJoerg Wunsch if (RW) {
334cae66988SJoerg Wunsch iflag = 0;
335cae66988SJoerg Wunsch CLR(oflag, OPOST);
336cae66988SJoerg Wunsch CLR(cflag, CSIZE|PARENB);
337cae66988SJoerg Wunsch SET(cflag, CS8);
338cae66988SJoerg Wunsch lflag = 0;
339cae66988SJoerg Wunsch } else {
340cae66988SJoerg Wunsch CLR(lflag, ICANON);
341cae66988SJoerg Wunsch }
342cae66988SJoerg Wunsch goto out;
343ea022d16SRodney W. Grimes }
344ea022d16SRodney W. Grimes
345cae66988SJoerg Wunsch if (n == 0)
346cae66988SJoerg Wunsch goto out;
347cae66988SJoerg Wunsch
348cae66988SJoerg Wunsch #if 0
349cae66988SJoerg Wunsch if (CB)
350cae66988SJoerg Wunsch SET(f, CRTBS);
351cae66988SJoerg Wunsch #endif
352cae66988SJoerg Wunsch
353cae66988SJoerg Wunsch if (CE)
354cae66988SJoerg Wunsch SET(lflag, ECHOE);
355cae66988SJoerg Wunsch else
356cae66988SJoerg Wunsch CLR(lflag, ECHOE);
357cae66988SJoerg Wunsch
358cae66988SJoerg Wunsch if (CK)
359cae66988SJoerg Wunsch SET(lflag, ECHOKE);
360cae66988SJoerg Wunsch else
361cae66988SJoerg Wunsch CLR(lflag, ECHOKE);
362cae66988SJoerg Wunsch
363cae66988SJoerg Wunsch if (PE)
364cae66988SJoerg Wunsch SET(lflag, ECHOPRT);
365cae66988SJoerg Wunsch else
366cae66988SJoerg Wunsch CLR(lflag, ECHOPRT);
367cae66988SJoerg Wunsch
368cae66988SJoerg Wunsch if (EC)
369cae66988SJoerg Wunsch SET(lflag, ECHO);
370cae66988SJoerg Wunsch else
371cae66988SJoerg Wunsch CLR(lflag, ECHO);
372cae66988SJoerg Wunsch
373cae66988SJoerg Wunsch if (XC)
374cae66988SJoerg Wunsch SET(lflag, ECHOCTL);
375cae66988SJoerg Wunsch else
376cae66988SJoerg Wunsch CLR(lflag, ECHOCTL);
377cae66988SJoerg Wunsch
378cae66988SJoerg Wunsch if (DX)
379cae66988SJoerg Wunsch SET(lflag, IXANY);
380cae66988SJoerg Wunsch else
381cae66988SJoerg Wunsch CLR(lflag, IXANY);
382cae66988SJoerg Wunsch
383cae66988SJoerg Wunsch out:
384cae66988SJoerg Wunsch tmode.c_iflag = iflag;
385cae66988SJoerg Wunsch tmode.c_oflag = oflag;
386cae66988SJoerg Wunsch tmode.c_cflag = cflag;
387cae66988SJoerg Wunsch tmode.c_lflag = lflag;
388cae66988SJoerg Wunsch }
389cae66988SJoerg Wunsch
390cae66988SJoerg Wunsch
391cae66988SJoerg Wunsch #ifdef XXX_DELAY
392ea022d16SRodney W. Grimes struct delayval {
393ea022d16SRodney W. Grimes unsigned delay; /* delay in ms */
394ea022d16SRodney W. Grimes int bits;
395ea022d16SRodney W. Grimes };
396ea022d16SRodney W. Grimes
397ea022d16SRodney W. Grimes /*
398ea022d16SRodney W. Grimes * below are random guesses, I can't be bothered checking
399ea022d16SRodney W. Grimes */
400ea022d16SRodney W. Grimes
401ea022d16SRodney W. Grimes struct delayval crdelay[] = {
402cae66988SJoerg Wunsch { 1, CR1 },
403cae66988SJoerg Wunsch { 2, CR2 },
404cae66988SJoerg Wunsch { 3, CR3 },
405cae66988SJoerg Wunsch { 83, CR1 },
406cae66988SJoerg Wunsch { 166, CR2 },
407cae66988SJoerg Wunsch { 0, CR3 },
408ea022d16SRodney W. Grimes };
409ea022d16SRodney W. Grimes
410ea022d16SRodney W. Grimes struct delayval nldelay[] = {
411cae66988SJoerg Wunsch { 1, NL1 }, /* special, calculated */
412cae66988SJoerg Wunsch { 2, NL2 },
413cae66988SJoerg Wunsch { 3, NL3 },
414cae66988SJoerg Wunsch { 100, NL2 },
415cae66988SJoerg Wunsch { 0, NL3 },
416ea022d16SRodney W. Grimes };
417ea022d16SRodney W. Grimes
418ea022d16SRodney W. Grimes struct delayval bsdelay[] = {
419cae66988SJoerg Wunsch { 1, BS1 },
420cae66988SJoerg Wunsch { 0, 0 },
421ea022d16SRodney W. Grimes };
422ea022d16SRodney W. Grimes
423ea022d16SRodney W. Grimes struct delayval ffdelay[] = {
424cae66988SJoerg Wunsch { 1, FF1 },
425cae66988SJoerg Wunsch { 1750, FF1 },
426cae66988SJoerg Wunsch { 0, FF1 },
427ea022d16SRodney W. Grimes };
428ea022d16SRodney W. Grimes
429ea022d16SRodney W. Grimes struct delayval tbdelay[] = {
430cae66988SJoerg Wunsch { 1, TAB1 },
431cae66988SJoerg Wunsch { 2, TAB2 },
432cae66988SJoerg Wunsch { 3, XTABS }, /* this is expand tabs */
433cae66988SJoerg Wunsch { 100, TAB1 },
434cae66988SJoerg Wunsch { 0, TAB2 },
435ea022d16SRodney W. Grimes };
436ea022d16SRodney W. Grimes
437cae66988SJoerg Wunsch int
delaybits(void)43895289b27SWarner Losh delaybits(void)
439ea022d16SRodney W. Grimes {
44095289b27SWarner Losh int f;
441ea022d16SRodney W. Grimes
442ea022d16SRodney W. Grimes f = adelay(CD, crdelay);
443ea022d16SRodney W. Grimes f |= adelay(ND, nldelay);
444ea022d16SRodney W. Grimes f |= adelay(FD, ffdelay);
445ea022d16SRodney W. Grimes f |= adelay(TD, tbdelay);
446ea022d16SRodney W. Grimes f |= adelay(BD, bsdelay);
447ea022d16SRodney W. Grimes return (f);
448ea022d16SRodney W. Grimes }
449ea022d16SRodney W. Grimes
450cae66988SJoerg Wunsch int
adelay(int ms,struct delayval * dp)45195289b27SWarner Losh adelay(int ms, struct delayval *dp)
452ea022d16SRodney W. Grimes {
453ea022d16SRodney W. Grimes if (ms == 0)
454ea022d16SRodney W. Grimes return (0);
455ea022d16SRodney W. Grimes while (dp->delay && ms > dp->delay)
456ea022d16SRodney W. Grimes dp++;
457ea022d16SRodney W. Grimes return (dp->bits);
458ea022d16SRodney W. Grimes }
459cae66988SJoerg Wunsch #endif
460ea022d16SRodney W. Grimes
461c568fce9SAndrey A. Chernov char editedhost[MAXHOSTNAMELEN];
462ea022d16SRodney W. Grimes
463cae66988SJoerg Wunsch void
edithost(const char * pattern)464f73ff060SAlexey Dokuchaev edithost(const char *pattern)
465ea022d16SRodney W. Grimes {
466f73ff060SAlexey Dokuchaev regex_t regex;
467f73ff060SAlexey Dokuchaev regmatch_t *match;
468f73ff060SAlexey Dokuchaev int found;
469ea022d16SRodney W. Grimes
470f73ff060SAlexey Dokuchaev if (pattern == NULL || *pattern == '\0')
471f73ff060SAlexey Dokuchaev goto copyasis;
472f73ff060SAlexey Dokuchaev if (regcomp(®ex, pattern, REG_EXTENDED) != 0)
473f73ff060SAlexey Dokuchaev goto copyasis;
474ea022d16SRodney W. Grimes
475f73ff060SAlexey Dokuchaev match = calloc(regex.re_nsub + 1, sizeof(*match));
476f73ff060SAlexey Dokuchaev if (match == NULL) {
477f73ff060SAlexey Dokuchaev regfree(®ex);
478f73ff060SAlexey Dokuchaev goto copyasis;
479ea022d16SRodney W. Grimes }
480f73ff060SAlexey Dokuchaev
481f73ff060SAlexey Dokuchaev found = !regexec(®ex, HN, regex.re_nsub + 1, match, 0);
482f73ff060SAlexey Dokuchaev if (found) {
483f73ff060SAlexey Dokuchaev size_t subex, totalsize;
484f73ff060SAlexey Dokuchaev
485f73ff060SAlexey Dokuchaev /*
486f73ff060SAlexey Dokuchaev * We found a match. If there were no parenthesized
487f73ff060SAlexey Dokuchaev * subexpressions in the pattern, use entire matched
488f73ff060SAlexey Dokuchaev * string as ``editedhost''; otherwise use the first
489f73ff060SAlexey Dokuchaev * matched subexpression.
490f73ff060SAlexey Dokuchaev */
491f73ff060SAlexey Dokuchaev subex = !!regex.re_nsub;
492f73ff060SAlexey Dokuchaev totalsize = match[subex].rm_eo - match[subex].rm_so + 1;
493f73ff060SAlexey Dokuchaev strlcpy(editedhost, HN + match[subex].rm_so, totalsize >
494f73ff060SAlexey Dokuchaev sizeof(editedhost) ? sizeof(editedhost) : totalsize);
495f73ff060SAlexey Dokuchaev }
496f73ff060SAlexey Dokuchaev free(match);
497f73ff060SAlexey Dokuchaev regfree(®ex);
498f73ff060SAlexey Dokuchaev if (found)
499ea022d16SRodney W. Grimes return;
500f73ff060SAlexey Dokuchaev /*
501f73ff060SAlexey Dokuchaev * In case of any errors, or if the pattern did not match, pass
502f73ff060SAlexey Dokuchaev * the original hostname as is.
503f73ff060SAlexey Dokuchaev */
504f73ff060SAlexey Dokuchaev copyasis:
505f73ff060SAlexey Dokuchaev strlcpy(editedhost, HN, sizeof(editedhost));
506ea022d16SRodney W. Grimes }
507ea022d16SRodney W. Grimes
508cae66988SJoerg Wunsch static struct speedtab {
509ea022d16SRodney W. Grimes int speed;
510ea022d16SRodney W. Grimes int uxname;
511ea022d16SRodney W. Grimes } speedtab[] = {
512cae66988SJoerg Wunsch { 50, B50 },
513cae66988SJoerg Wunsch { 75, B75 },
514cae66988SJoerg Wunsch { 110, B110 },
515cae66988SJoerg Wunsch { 134, B134 },
516cae66988SJoerg Wunsch { 150, B150 },
517cae66988SJoerg Wunsch { 200, B200 },
518cae66988SJoerg Wunsch { 300, B300 },
519cae66988SJoerg Wunsch { 600, B600 },
520cae66988SJoerg Wunsch { 1200, B1200 },
521cae66988SJoerg Wunsch { 1800, B1800 },
522cae66988SJoerg Wunsch { 2400, B2400 },
523cae66988SJoerg Wunsch { 4800, B4800 },
524cae66988SJoerg Wunsch { 9600, B9600 },
525cae66988SJoerg Wunsch { 19200, EXTA },
526cae66988SJoerg Wunsch { 19, EXTA }, /* for people who say 19.2K */
527cae66988SJoerg Wunsch { 38400, EXTB },
528cae66988SJoerg Wunsch { 38, EXTB },
529cae66988SJoerg Wunsch { 7200, EXTB }, /* alternative */
530cae66988SJoerg Wunsch { 57600, B57600 },
531cae66988SJoerg Wunsch { 115200, B115200 },
532ee98a93fSPoul-Henning Kamp { 230400, B230400 },
5331776dc9fSEdward Tomasz Napierala { 0, 0 }
534ea022d16SRodney W. Grimes };
535ea022d16SRodney W. Grimes
536cae66988SJoerg Wunsch int
speed(int val)53795289b27SWarner Losh speed(int val)
538ea022d16SRodney W. Grimes {
53995289b27SWarner Losh struct speedtab *sp;
540ea022d16SRodney W. Grimes
541ee98a93fSPoul-Henning Kamp if (val <= B230400)
542ea022d16SRodney W. Grimes return (val);
543ea022d16SRodney W. Grimes
544ea022d16SRodney W. Grimes for (sp = speedtab; sp->speed; sp++)
545ea022d16SRodney W. Grimes if (sp->speed == val)
546ea022d16SRodney W. Grimes return (sp->uxname);
547ea022d16SRodney W. Grimes
548ea022d16SRodney W. Grimes return (B300); /* default in impossible cases */
549ea022d16SRodney W. Grimes }
550ea022d16SRodney W. Grimes
551cae66988SJoerg Wunsch void
makeenv(char * env[])55295289b27SWarner Losh makeenv(char *env[])
553ea022d16SRodney W. Grimes {
554ea022d16SRodney W. Grimes static char termbuf[128] = "TERM=";
55595289b27SWarner Losh char *p, *q;
55695289b27SWarner Losh char **ep;
557ea022d16SRodney W. Grimes
558ea022d16SRodney W. Grimes ep = env;
559ea022d16SRodney W. Grimes if (TT && *TT) {
5606e76e16fSKris Kennaway strlcat(termbuf, TT, sizeof(termbuf));
561ea022d16SRodney W. Grimes *ep++ = termbuf;
562ea022d16SRodney W. Grimes }
5638725f0b9SXin LI if ((p = EV)) {
5648725f0b9SXin LI q = p;
565cae66988SJoerg Wunsch while ((q = strchr(q, ','))) {
566ea022d16SRodney W. Grimes *q++ = '\0';
567ea022d16SRodney W. Grimes *ep++ = p;
568ea022d16SRodney W. Grimes p = q;
569ea022d16SRodney W. Grimes }
570ea022d16SRodney W. Grimes if (*p)
571ea022d16SRodney W. Grimes *ep++ = p;
572ea022d16SRodney W. Grimes }
573ea022d16SRodney W. Grimes *ep = (char *)0;
574ea022d16SRodney W. Grimes }
575ea022d16SRodney W. Grimes
576ea022d16SRodney W. Grimes /*
577ea022d16SRodney W. Grimes * This speed select mechanism is written for the Develcon DATASWITCH.
578ea022d16SRodney W. Grimes * The Develcon sends a string of the form "B{speed}\n" at a predefined
579ea022d16SRodney W. Grimes * baud rate. This string indicates the user's actual speed.
580ea022d16SRodney W. Grimes * The routine below returns the terminal type mapped from derived speed.
581ea022d16SRodney W. Grimes */
5829c33cc93SEdward Tomasz Napierala static struct portselect {
583cae66988SJoerg Wunsch const char *ps_baud;
584cae66988SJoerg Wunsch const char *ps_type;
585ea022d16SRodney W. Grimes } portspeeds[] = {
586ea022d16SRodney W. Grimes { "B110", "std.110" },
587ea022d16SRodney W. Grimes { "B134", "std.134" },
588ea022d16SRodney W. Grimes { "B150", "std.150" },
589ea022d16SRodney W. Grimes { "B300", "std.300" },
590ea022d16SRodney W. Grimes { "B600", "std.600" },
591ea022d16SRodney W. Grimes { "B1200", "std.1200" },
592ea022d16SRodney W. Grimes { "B2400", "std.2400" },
593ea022d16SRodney W. Grimes { "B4800", "std.4800" },
594ea022d16SRodney W. Grimes { "B9600", "std.9600" },
595ea022d16SRodney W. Grimes { "B19200", "std.19200" },
59673906f57SPedro F. Giffuni { NULL, NULL }
597ea022d16SRodney W. Grimes };
598ea022d16SRodney W. Grimes
599cae66988SJoerg Wunsch const char *
portselector(void)60095289b27SWarner Losh portselector(void)
601ea022d16SRodney W. Grimes {
602cae66988SJoerg Wunsch char c, baud[20];
603cae66988SJoerg Wunsch const char *type = "default";
60495289b27SWarner Losh struct portselect *ps;
60573906f57SPedro F. Giffuni size_t len;
606ea022d16SRodney W. Grimes
607ea022d16SRodney W. Grimes alarm(5*60);
608ea022d16SRodney W. Grimes for (len = 0; len < sizeof (baud) - 1; len++) {
609ea022d16SRodney W. Grimes if (read(STDIN_FILENO, &c, 1) <= 0)
610ea022d16SRodney W. Grimes break;
611ea022d16SRodney W. Grimes c &= 0177;
612ea022d16SRodney W. Grimes if (c == '\n' || c == '\r')
613ea022d16SRodney W. Grimes break;
614ea022d16SRodney W. Grimes if (c == 'B')
615ea022d16SRodney W. Grimes len = 0; /* in case of leading garbage */
616ea022d16SRodney W. Grimes baud[len] = c;
617ea022d16SRodney W. Grimes }
618ea022d16SRodney W. Grimes baud[len] = '\0';
619ea022d16SRodney W. Grimes for (ps = portspeeds; ps->ps_baud; ps++)
620ea022d16SRodney W. Grimes if (strcmp(ps->ps_baud, baud) == 0) {
621ea022d16SRodney W. Grimes type = ps->ps_type;
622ea022d16SRodney W. Grimes break;
623ea022d16SRodney W. Grimes }
624ea022d16SRodney W. Grimes sleep(2); /* wait for connection to complete */
625ea022d16SRodney W. Grimes return (type);
626ea022d16SRodney W. Grimes }
627ea022d16SRodney W. Grimes
628ea022d16SRodney W. Grimes /*
629ea022d16SRodney W. Grimes * This auto-baud speed select mechanism is written for the Micom 600
630ea022d16SRodney W. Grimes * portselector. Selection is done by looking at how the character '\r'
631ea022d16SRodney W. Grimes * is garbled at the different speeds.
632ea022d16SRodney W. Grimes */
633cae66988SJoerg Wunsch const char *
autobaud(void)63495289b27SWarner Losh autobaud(void)
635ea022d16SRodney W. Grimes {
636a3e4b982SPedro F. Giffuni struct pollfd set[1];
637a3e4b982SPedro F. Giffuni struct timespec timeout;
638cae66988SJoerg Wunsch char c;
639cae66988SJoerg Wunsch const char *type = "9600-baud";
640ea022d16SRodney W. Grimes
641cae66988SJoerg Wunsch (void)tcflush(0, TCIOFLUSH);
642a3e4b982SPedro F. Giffuni set[0].fd = STDIN_FILENO;
643a3e4b982SPedro F. Giffuni set[0].events = POLLIN;
644a3e4b982SPedro F. Giffuni if (poll(set, 1, 5000) <= 0)
645ea022d16SRodney W. Grimes return (type);
646ea022d16SRodney W. Grimes if (read(STDIN_FILENO, &c, sizeof(char)) != sizeof(char))
647ea022d16SRodney W. Grimes return (type);
648ea022d16SRodney W. Grimes timeout.tv_sec = 0;
649a3e4b982SPedro F. Giffuni timeout.tv_nsec = 20000;
650a3e4b982SPedro F. Giffuni (void)nanosleep(&timeout, NULL);
651cae66988SJoerg Wunsch (void)tcflush(0, TCIOFLUSH);
652ea022d16SRodney W. Grimes switch (c & 0377) {
653ea022d16SRodney W. Grimes
654ea022d16SRodney W. Grimes case 0200: /* 300-baud */
655ea022d16SRodney W. Grimes type = "300-baud";
656ea022d16SRodney W. Grimes break;
657ea022d16SRodney W. Grimes
658ea022d16SRodney W. Grimes case 0346: /* 1200-baud */
659ea022d16SRodney W. Grimes type = "1200-baud";
660ea022d16SRodney W. Grimes break;
661ea022d16SRodney W. Grimes
662ea022d16SRodney W. Grimes case 015: /* 2400-baud */
663ea022d16SRodney W. Grimes case 0215:
664ea022d16SRodney W. Grimes type = "2400-baud";
665ea022d16SRodney W. Grimes break;
666ea022d16SRodney W. Grimes
667ea022d16SRodney W. Grimes default: /* 4800-baud */
668ea022d16SRodney W. Grimes type = "4800-baud";
669ea022d16SRodney W. Grimes break;
670ea022d16SRodney W. Grimes
671ea022d16SRodney W. Grimes case 0377: /* 9600-baud */
672ea022d16SRodney W. Grimes type = "9600-baud";
673ea022d16SRodney W. Grimes break;
674ea022d16SRodney W. Grimes }
675ea022d16SRodney W. Grimes return (type);
676ea022d16SRodney W. Grimes }
677