2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software donated to Berkeley by
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the University of
20 * California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * @(#)conf.c 8.2 (Berkeley) 3/27/94
39 * $FreeBSD: src/sbin/mount_portal/conf.c,v 1.8 1999/08/28 00:13:35 peter Exp $
40 * $DragonFly: src/sbin/mount_portal/conf.c,v 1.5 2005/11/06 12:36:40 swildner Exp $
50 #include <sys/types.h>
51 #include <sys/param.h>
52 #include <sys/syslog.h>
56 #define ALLOC(ty) (xmalloc(sizeof(ty)))
58 typedef struct path path
;
60 qelem p_q
; /* 2-way linked list */
61 int p_lno
; /* Line number of this record */
62 char *p_args
; /* copy of arg string (malloc) */
63 char *p_key
; /* Pathname to match (also p_argv[0]) */
64 regex_t p_rx
; /* RE to match against pathname () */
65 int p_rxvalid
; /* non-zero if valid regular expression */
66 int p_argc
; /* number of elements in arg string */
67 char **p_argv
; /* argv[] pointers into arg string (malloc) */
70 static char *conf_file
; /* XXX for regerror */
71 static path
*curp
; /* XXX for regerror */
74 * Add an element to a 2-way list,
78 ins_que(qelem
*elem
, qelem
*pred
)
80 qelem
*p
= pred
->q_forw
;
88 * Remove an element from a 2-way list
93 qelem
*p
= elem
->q_forw
;
94 qelem
*p2
= elem
->q_back
;
100 * Error checking malloc
103 xmalloc(unsigned siz
)
105 void *p
= malloc(siz
);
108 syslog(LOG_ALERT
, "malloc: failed to get %d bytes", siz
);
113 * Insert the path in the list.
114 * If there is already an element with the same key then
115 * the *second* one is ignored (return 0). If the key is
116 * not found then the path is added to the end of the list
120 pinsert(path
*p0
, qelem
*q0
)
127 for (q
= q0
->q_forw
; q
!= q0
; q
= q
->q_forw
) {
128 path
*p
= (path
*) q
;
129 if (strcmp(p
->p_key
, p0
->p_key
) == 0)
132 ins_que(&p0
->p_q
, q0
->q_back
);
138 palloc(char *cline
, int lno
)
147 * Implement comment chars
149 s
= strchr(cline
, '#');
154 * Do a pass through the string to count the number
159 for (s
= key
; s
!= NULL
; ) {
161 while ((val
= strsep(&s
, " \t\n")) != NULL
&& *val
== '\0')
173 * Now do another pass and generate a new path structure
177 p
->p_argv
= xmalloc(c
* sizeof(char *));
178 p
->p_args
= strdup(cline
);
180 for (s
= p
->p_args
; s
!= NULL
; ) {
182 while ((val
= strsep(&s
, " \t\n")) != NULL
&& *val
== '\0')
192 for (c
= 0; c
< p
->p_argc
; c
++)
193 printf("%sv[%d] = %s\n", c
?"\t":"", c
, p
->p_argv
[c
]);
196 p
->p_key
= p
->p_argv
[0];
197 if (strpbrk(p
->p_key
, RE_CHARS
)) {
201 val
= regcomp(&p
->p_rx
, p
->p_key
, REG_EXTENDED
| REG_NOSUB
);
203 char errbuf
[_POSIX2_LINE_MAX
];
204 regerror(val
, &p
->p_rx
, errbuf
, sizeof errbuf
);
205 syslog(LOG_ERR
, "%s:%d: regcomp %s: %s",
206 conf_file
, curp
->p_lno
, curp
->p_key
, errbuf
);
222 * Free a path structure
231 free((char *) p
->p_argv
);
236 * Discard all currently held path structures on q0.
237 * and add all the ones on xq.
240 preplace(qelem
*q0
, qelem
*xq
)
243 * While the list is not empty,
244 * take the first element off the list
247 while (q0
->q_forw
!= q0
) {
248 qelem
*q
= q0
->q_forw
;
252 while (xq
->q_forw
!= xq
) {
253 qelem
*q
= xq
->q_forw
;
260 * Read the lines from the configuration file and
261 * add them to the list of paths.
264 readfp(qelem
*q0
, FILE *fp
)
266 char cline
[LINE_MAX
];
271 * Make a new empty list.
273 q
.q_forw
= q
.q_back
= &q
;
276 * Read the lines from the configuration file.
278 while (fgets(cline
, sizeof(cline
), fp
)) {
279 path
*p
= palloc(cline
, nread
+1);
280 if (p
&& !pinsert(p
, &q
))
286 * If some records were read, then throw
287 * away the old list and replace with the
295 * Read the configuration file (conf) and replace
296 * the existing path list with the new version.
297 * If the file is not readable, then no changes take place
300 conf_read(qelem
*q
, char *conf
)
302 FILE *fp
= fopen(conf
, "r");
304 conf_file
= conf
; /* XXX */
306 conf_file
= 0; /* XXX */
309 syslog(LOG_ERR
, "open config file \"%s\": %s", conf
, strerror(errno
));
315 conf_match(qelem
*q0
, char *key
)
319 for (q
= q0
->q_forw
; q
!= q0
; q
= q
->q_forw
) {
320 path
*p
= (path
*) q
;
322 if (!regexec(&p
->p_rx
, key
, 0, 0, 0)) {
323 return p
->p_argv
+ 1;
326 if (strncmp(p
->p_key
, key
, strlen(p
->p_key
)) == 0)
327 return (p
->p_argv
+1);