MFC:
[dragonfly.git] / lib / libc / gen / getttyent.c
blob4f606e8bc72f5f242cada0241f8a9e26a11fb8b4
1 /*
2 * Copyright (c) 1989, 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
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.
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.
33 * $FreeBSD: src/lib/libc/gen/getttyent.c,v 1.11 1999/11/04 04:16:27 ache Exp $
34 * $DragonFly: src/lib/libc/gen/getttyent.c,v 1.5 2005/11/13 00:07:42 swildner Exp $
36 * @(#)getttyent.c 8.1 (Berkeley) 6/4/93
39 #include <ttyent.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <ctype.h>
43 #include <string.h>
45 static char zapchar;
46 static FILE *tf;
47 static size_t lbsize;
48 static char *line;
50 #define MALLOCCHUNK 100
52 static char *skip (char *);
53 static char *value (char *);
55 struct ttyent *
56 getttynam(const char *tty)
58 struct ttyent *t;
60 if (strncmp(tty, "/dev/", 5) == 0)
61 tty += 5;
62 setttyent();
63 while ( (t = getttyent()) )
64 if (!strcmp(tty, t->ty_name))
65 break;
66 endttyent();
67 return (t);
70 struct ttyent *
71 getttyent(void)
73 static struct ttyent tty;
74 char *p;
75 int c;
76 size_t i;
78 if (!tf && !setttyent())
79 return (NULL);
80 for (;;) {
81 if (!fgets(p = line, lbsize, tf))
82 return (NULL);
83 /* extend buffer if line was too big, and retry */
84 while (!index(p, '\n')) {
85 i = strlen(p);
86 lbsize += MALLOCCHUNK;
87 if ((p = realloc(line, lbsize)) == NULL) {
88 endttyent();
89 return (NULL);
91 line = p;
92 if (!fgets(&line[i], lbsize - i, tf))
93 return (NULL);
95 while (isspace((unsigned char)*p))
96 ++p;
97 if (*p && *p != '#')
98 break;
101 #define scmp(e) !strncmp(p, e, sizeof(e) - 1) && isspace((unsigned char)p[sizeof(e) - 1])
102 #define vcmp(e) !strncmp(p, e, sizeof(e) - 1) && p[sizeof(e) - 1] == '='
104 zapchar = 0;
105 tty.ty_name = p;
106 p = skip(p);
107 if (!*(tty.ty_getty = p))
108 tty.ty_getty = tty.ty_type = NULL;
109 else {
110 p = skip(p);
111 if (!*(tty.ty_type = p))
112 tty.ty_type = NULL;
113 else {
114 /* compatibility kludge: handle network/dialup specially */
115 if (scmp(_TTYS_DIALUP))
116 tty.ty_status |= TTY_DIALUP;
117 else if (scmp(_TTYS_NETWORK))
118 tty.ty_status |= TTY_NETWORK;
119 p = skip(p);
122 tty.ty_status = 0;
123 tty.ty_window = NULL;
124 tty.ty_group = _TTYS_NOGROUP;
126 for (; *p; p = skip(p)) {
127 if (scmp(_TTYS_OFF))
128 tty.ty_status &= ~TTY_ON;
129 else if (scmp(_TTYS_ON))
130 tty.ty_status |= TTY_ON;
131 else if (scmp(_TTYS_SECURE))
132 tty.ty_status |= TTY_SECURE;
133 else if (scmp(_TTYS_INSECURE))
134 tty.ty_status &= ~TTY_SECURE;
135 else if (scmp(_TTYS_DIALUP))
136 tty.ty_status |= TTY_DIALUP;
137 else if (scmp(_TTYS_NETWORK))
138 tty.ty_status |= TTY_NETWORK;
139 else if (vcmp(_TTYS_WINDOW))
140 tty.ty_window = value(p);
141 else if (vcmp(_TTYS_GROUP))
142 tty.ty_group = value(p);
143 else
144 break;
147 if (zapchar == '#' || *p == '#')
148 while ((c = *++p) == ' ' || c == '\t')
150 tty.ty_comment = p;
151 if (*p == 0)
152 tty.ty_comment = 0;
153 if ( (p = index(p, '\n')) )
154 *p = '\0';
155 return (&tty);
158 #define QUOTED 1
161 * Skip over the current field, removing quotes, and return a pointer to
162 * the next field.
164 static char *
165 skip(char *p)
167 char *t;
168 int c, q;
170 for (q = 0, t = p; (c = *p) != '\0'; p++) {
171 if (c == '"') {
172 q ^= QUOTED; /* obscure, but nice */
173 continue;
175 if (q == QUOTED && *p == '\\' && *(p+1) == '"')
176 p++;
177 *t++ = *p;
178 if (q == QUOTED)
179 continue;
180 if (c == '#') {
181 zapchar = c;
182 *p = 0;
183 break;
185 if (c == '\t' || c == ' ' || c == '\n') {
186 zapchar = c;
187 *p++ = 0;
188 while ((c = *p) == '\t' || c == ' ' || c == '\n')
189 p++;
190 break;
193 *--t = '\0';
194 return (p);
197 static char *
198 value(char *p)
201 return ((p = index(p, '=')) ? ++p : NULL);
205 setttyent(void)
208 if (line == NULL) {
209 if ((line = malloc(MALLOCCHUNK)) == NULL)
210 return (0);
211 lbsize = MALLOCCHUNK;
213 if (tf) {
214 rewind(tf);
215 return (1);
216 } else if ( (tf = fopen(_PATH_TTYS, "r")) )
217 return (1);
218 return (0);
222 endttyent(void)
224 int rval;
227 * NB: Don't free `line' because getttynam()
228 * may still be referencing it
230 if (tf) {
231 rval = (fclose(tf) != EOF);
232 tf = NULL;
233 return (rval);
235 return (1);
238 static int
239 isttystat(const char *tty, int flag)
241 struct ttyent *t;
243 return ((t = getttynam(tty)) == NULL) ? 0 : !!(t->ty_status & flag);
248 isdialuptty(const char *tty)
251 return isttystat(tty, TTY_DIALUP);
255 isnettty(const char *tty)
258 return isttystat(tty, TTY_NETWORK);