2 * Copyright (c) 1995 Peter Wemm
3 * Copyright (c) 1980, 1993
4 * The Regents of the University of California. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by the University of
17 * California, Berkeley and its contributors.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#)mkheaders.c 8.1 (Berkeley) 6/6/93
35 * $FreeBSD: src/usr.sbin/config/mkoptions.c,v 1.17.2.3 2001/12/13 19:18:01 dillon Exp $
36 * $DragonFly: src/usr.sbin/config/mkoptions.c,v 1.19 2007/01/19 07:23:43 dillon Exp $
40 * Make all the .h files for the optional entries
47 #include <sys/param.h>
51 static char *lower(char *);
52 static void read_options(void);
53 static void do_option(char *);
54 static char *tooption(char *);
64 /* Fake the cpu types as options. */
65 for (cp
= cputype
; cp
!= NULL
; cp
= cp
->cpu_next
) {
66 op
= malloc(sizeof(*op
));
67 bzero(op
, sizeof(*op
));
68 op
->op_name
= strdup(cp
->cpu_name
);
74 /* printf("maxusers not specified; will auto-size\n"); */
76 } else if (maxusers
< 2) {
77 puts("minimum of 2 maxusers assumed");
79 } else if (maxusers
> 512) {
80 printf("warning: maxusers > 512 (%d)\n", maxusers
);
83 /* Fake MAXUSERS as an option. */
84 op
= malloc(sizeof(*op
));
85 bzero(op
, sizeof(*op
));
86 op
->op_name
= strdup("MAXUSERS");
87 snprintf(buf
, sizeof(buf
), "%d", maxusers
);
88 op
->op_value
= strdup(buf
);
93 for (ol
= otab
; ol
!= NULL
; ol
= ol
->o_next
)
94 do_option(ol
->o_name
);
95 for (op
= opt
; op
!= NULL
; op
= op
->op_next
) {
96 if (!op
->op_ownfile
) {
97 printf("%s:%d: unknown option \"%s\"\n",
98 PREFIX
, op
->op_line
, op
->op_name
);
105 * Generate an <options>.h file
109 do_option(char *name
)
111 const char *basefile
, *file
;
114 struct opt
*op
, *op_head
, *topp
;
121 file
= tooption(name
);
124 * Check to see if the option was specified..
127 for (op
= opt
; op
!= NULL
; op
= op
->op_next
) {
128 if (strcmp(name
, op
->op_name
) == 0) {
130 value
= op
->op_value
;
133 if (oldvalue
!= NULL
&& strcmp(value
, oldvalue
) != 0)
135 "%s:%d: option \"%s\" redefined from %s to %s\n",
136 PREFIX
, op
->op_line
, op
->op_name
, oldvalue
,
142 inf
= fopen(file
, "r");
144 outf
= fopen(file
, "w");
148 /* was the option in the config file? */
150 fprintf(outf
, "#define %s %s\n", name
, value
);
151 } /* else empty file */
157 for (ol
= otab
; ol
!= NULL
; ol
= ol
->o_next
)
158 if (strcmp(name
, ol
->o_name
) == 0) {
159 basefile
= ol
->o_file
;
170 /* get the #define */
171 if ((inw
= get_word(inf
)) == NULL
|| inw
== (char *)EOF
)
173 /* get the option name */
174 if ((inw
= get_word(inf
)) == NULL
|| inw
== (char *)EOF
)
177 /* get the option value */
178 if ((cp
= get_word(inf
)) == NULL
|| cp
== (char *)EOF
)
181 invalue
= strdup(cp
); /* malloced */
182 if (strcmp(inw
, name
) == 0) {
187 for (ol
= otab
; ol
!= NULL
; ol
= ol
->o_next
)
188 if (strcmp(inw
, ol
->o_name
) == 0)
190 if (strcmp(inw
, name
) != 0 && ol
== NULL
) {
191 printf("WARNING: unknown option `%s' removed from %s\n",
194 } else if (ol
!= NULL
&& strcmp(basefile
, ol
->o_file
) != 0) {
195 printf("WARNING: option `%s' moved from %s to %s\n",
196 inw
, basefile
, ol
->o_file
);
199 op
= malloc(sizeof(*op
));
200 bzero(op
, sizeof(*op
));
202 op
->op_value
= invalue
;
203 op
->op_next
= op_head
;
209 if (cp
== (char *)EOF
)
213 if (!tidy
&& ((value
== NULL
&& oldvalue
== NULL
) ||
214 (value
&& oldvalue
&& strcmp(value
, oldvalue
) == 0))) {
215 for (op
= op_head
; op
!= NULL
; op
= topp
) {
224 if (value
!= NULL
&& !seen
) {
225 /* New option appears */
226 op
= malloc(sizeof(*op
));
227 bzero(op
, sizeof(*op
));
228 op
->op_name
= strdup(name
);
229 op
->op_value
= value
!= NULL
? strdup(value
) : NULL
;
230 op
->op_next
= op_head
;
234 outf
= fopen(file
, "w");
237 for (op
= op_head
; op
!= NULL
; op
= topp
) {
238 /* was the option in the config file? */
239 if (op
->op_value
!= NULL
) {
240 fprintf(outf
, "#define %s %s\n",
241 op
->op_name
, op
->op_value
);
252 * Find the filename to store the option spec into.
257 static char hbuf
[MAXPATHLEN
];
258 char nbuf
[MAXPATHLEN
];
261 /* "cannot happen"? the otab list should be complete.. */
262 strlcpy(nbuf
, "options.h", sizeof(nbuf
));
264 for (po
= otab
; po
!= NULL
; po
= po
->o_next
) {
265 if (strcmp(po
->o_name
, name
) == 0) {
266 strlcpy(nbuf
, po
->o_file
, sizeof(nbuf
));
271 strlcpy(hbuf
, path(nbuf
), sizeof(hbuf
));
276 * read the options and options.<machine> files
282 char fname
[MAXPATHLEN
];
283 char *wd
, *this, *val
;
286 char genopt
[MAXPATHLEN
];
290 printf("no ident line specified\n");
293 snprintf(fname
, sizeof(fname
), "../conf/options");
295 fp
= fopen(fname
, "r");
301 if (wd
== (char *)EOF
) {
305 snprintf(fname
, sizeof(fname
),
306 "../platform/%s/conf/options",
308 fp
= fopen(fname
, "r");
311 snprintf(fname
, sizeof(fname
), "options.%s",
317 snprintf(fname
, sizeof(fname
), "options.%s", raisestr(ident
));
318 fp
= fopen(fname
, "r");
328 while (((wd
= get_word(fp
)) != (char *)EOF
) && wd
!= NULL
)
334 if (val
== (char *)EOF
)
340 snprintf(genopt
, sizeof(genopt
), "opt_%s.h", lower(s
));
346 for (po
= otab
; po
!= NULL
; po
= po
->o_next
) {
347 if (strcmp(po
->o_name
, this) == 0) {
348 printf("%s: Duplicate option %s.\n",
354 po
= malloc(sizeof(*po
));
355 bzero(po
, sizeof(*po
));
371 *str
= tolower(*str
);