defs.h revision 1.6 1 /* $NetBSD: defs.h,v 1.6 2005/10/04 13:06:45 cube Exp $ */
2
3 /*
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This software was developed by the Computer Systems Engineering group
8 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 * contributed to Berkeley.
10 *
11 * All advertising materials mentioning features or use of this software
12 * must display the following acknowledgement:
13 * This product includes software developed by the University of
14 * California, Lawrence Berkeley Laboratories.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 3. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 *
40 * from: @(#)config.h 8.1 (Berkeley) 6/6/93
41 */
42
43 /*
44 * defs.h: Global definitions for "config"
45 */
46
47 #if HAVE_NBTOOL_CONFIG_H
48 #include "nbtool_config.h"
49 #endif
50
51 #include <sys/types.h>
52 #include <sys/param.h>
53 #include <sys/queue.h>
54
55 #if !defined(MAKE_BOOTSTRAP) && defined(BSD)
56 #include <sys/cdefs.h>
57 #include <paths.h>
58 #endif
59
60 #include <stdio.h>
61 #include <stdlib.h>
62 #include <unistd.h>
63
64 /* These are really for MAKE_BOOTSTRAP but harmless. */
65 #ifndef __dead
66 #define __dead
67 #endif
68 #ifndef _PATH_DEVNULL
69 #define _PATH_DEVNULL "/dev/null"
70 #endif
71
72 #ifdef MAKE_BOOTSTRAP
73 #undef dev_t
74 #undef NODEV
75 #undef major
76 #undef minor
77 #undef makedev
78 #define dev_t int /* XXX: assumes int is 32 bits */
79 #define NODEV ((dev_t)-1)
80 #define major(x) ((int)((((x) & 0x000fff00) >> 8)))
81 #define minor(x) ((int)((((x) & 0xfff00000) >> 12) | \
82 (((x) & 0x000000ff) >> 0)))
83 #define makedev(x,y) ((dev_t)((((x) << 8) & 0x000fff00) | \
84 (((y) << 12) & 0xfff00000) | \
85 (((y) << 0) & 0x000000ff)))
86 #define __attribute__(x)
87 #endif /* MAKE_BOOTSTRAP */
88
89 #undef setprogname
90 #undef getprogname
91 extern const char *progname;
92 #define setprogname(s) ((void)(progname = (s)))
93 #define getprogname() (progname)
94
95 #define ARRCHR '#'
96
97 /*
98 * Name/value lists. Values can be strings or pointers and/or can carry
99 * integers. The names can be NULL, resulting in simple value lists.
100 */
101 struct nvlist {
102 struct nvlist *nv_next;
103 const char *nv_name;
104 union {
105 const char *un_str;
106 void *un_ptr;
107 } nv_un;
108 #define nv_str nv_un.un_str
109 #define nv_ptr nv_un.un_ptr
110 int nv_int;
111 int nv_ifunit; /* XXX XXX XXX */
112 int nv_flags;
113 #define NV_DEPENDED 1
114 };
115
116 /*
117 * Kernel configurations.
118 */
119 struct config {
120 TAILQ_ENTRY(config) cf_next;
121 const char *cf_name; /* "netbsd" */
122 int cf_lineno; /* source line */
123 const char *cf_fstype; /* file system type */
124 struct nvlist *cf_root; /* "root on ra0a" */
125 struct nvlist *cf_swap; /* "swap on ra0b and ra1b" */
126 struct nvlist *cf_dump; /* "dumps on ra0b" */
127 };
128
129 /*
130 * Attributes. These come in three flavors: "plain", "device class,"
131 * and "interface". Plain attributes (e.g., "ether") simply serve
132 * to pull in files. Device class attributes are like plain
133 * attributes, but additionally specify a device class (e.g., the
134 * "disk" device class attribute specifies that devices with the
135 * attribute belong to the "DV_DISK" class) and are mutually exclusive.
136 * Interface attributes (e.g., "scsi") carry three lists: locators,
137 * child devices, and references. The locators are those things
138 * that must be specified in order to configure a device instance
139 * using this attribute (e.g., "tg0 at scsi0"). The a_devs field
140 * lists child devices that can connect here (e.g., "tg"s), while
141 * the a_refs are parents that carry the attribute (e.g., actual
142 * SCSI host adapter drivers such as the SPARC "esp").
143 */
144 struct attr {
145 const char *a_name; /* name of this attribute */
146 int a_iattr; /* true => allows children */
147 const char *a_devclass; /* device class described */
148 struct nvlist *a_locs; /* locators required */
149 int a_loclen; /* length of above list */
150 struct nvlist *a_devs; /* children */
151 struct nvlist *a_refs; /* parents */
152 struct nvlist *a_deps; /* we depend on these other attrs */
153 int a_expanding; /* to detect cycles in attr graph */
154 };
155
156 /*
157 * Parent specification. Multiple device instances may share a
158 * given parent spec. Parent specs are emitted only if there are
159 * device instances which actually reference it.
160 */
161 struct pspec {
162 TAILQ_ENTRY(pspec) p_list; /* link on parent spec list */
163 struct attr *p_iattr; /* interface attribute of parent */
164 struct devbase *p_atdev; /* optional parent device base */
165 int p_atunit; /* optional parent device unit */
166 struct nvlist *p_devs; /* children using it */
167 int p_inst; /* parent spec instance */
168 int p_active; /* parent spec is actively used */
169 };
170
171 /*
172 * The "base" part (struct devbase) of a device ("uba", "sd"; but not
173 * "uba2" or "sd0"). It may be found "at" one or more attributes,
174 * including "at root" (this is represented by a NULL attribute), as
175 * specified by the device attachments (struct deva).
176 *
177 * Each device may also export attributes. If any provide an output
178 * interface (e.g., "esp" provides "scsi"), other devices (e.g.,
179 * "tg"s) can be found at instances of this one (e.g., "esp"s).
180 * Such a connection must provide locators as specified by that
181 * interface attribute (e.g., "target"). The base device can
182 * export both output (aka `interface') attributes, as well as
183 * import input (`plain') attributes. Device attachments may
184 * only import input attributes; it makes no sense to have a
185 * specific attachment export a new interface to other devices.
186 *
187 * Each base carries a list of instances (via d_ihead). Note that this
188 * list "skips over" aliases; those must be found through the instances
189 * themselves. Each base also carries a list of possible attachments,
190 * each of which specify a set of devices that the device can attach
191 * to, as well as the device instances that are actually using that
192 * attachment.
193 */
194 struct devbase {
195 const char *d_name; /* e.g., "sd" */
196 TAILQ_ENTRY(devbase) d_next;
197 int d_isdef; /* set once properly defined */
198 int d_ispseudo; /* is a pseudo-device */
199 int d_major; /* used for "root on sd0", e.g. */
200 struct nvlist *d_attrs; /* attributes, if any */
201 int d_umax; /* highest unit number + 1 */
202 struct devi *d_ihead; /* first instance, if any */
203 struct devi **d_ipp; /* used for tacking on more instances */
204 struct deva *d_ahead; /* first attachment, if any */
205 struct deva **d_app; /* used for tacking on attachments */
206 struct attr *d_classattr; /* device class attribute (if any) */
207 };
208
209 struct deva {
210 const char *d_name; /* name of attachment, e.g. "com_isa" */
211 TAILQ_ENTRY(deva) d_next; /* list of all instances */
212 struct deva *d_bsame; /* list on same base */
213 int d_isdef; /* set once properly defined */
214 struct devbase *d_devbase; /* the base device */
215 struct nvlist *d_atlist; /* e.g., "at tg" (attr list) */
216 struct nvlist *d_attrs; /* attributes, if any */
217 struct devi *d_ihead; /* first instance, if any */
218 struct devi **d_ipp; /* used for tacking on more instances */
219 };
220
221 /*
222 * An "instance" of a device. The same instance may be listed more
223 * than once, e.g., "xx0 at isa? port FOO" + "xx0 at isa? port BAR".
224 *
225 * After everything has been read in and verified, the devi's are
226 * "packed" to collect all the information needed to generate ioconf.c.
227 * In particular, we try to collapse multiple aliases into a single entry.
228 * We then assign each "primary" (non-collapsed) instance a cfdata index.
229 * Note that there may still be aliases among these.
230 */
231 struct devi {
232 /* created while parsing config file */
233 const char *i_name; /* e.g., "sd0" */
234 int i_unit; /* unit from name, e.g., 0 */
235 struct devbase *i_base;/* e.g., pointer to "sd" base */
236 TAILQ_ENTRY(devi) i_next; /* list of all instances */
237 struct devi *i_bsame; /* list on same base */
238 struct devi *i_asame; /* list on same base attachment */
239 struct devi *i_alias; /* other aliases of this instance */
240 const char *i_at; /* where this is "at" (NULL if at root) */
241 struct pspec *i_pspec; /* parent spec (NULL if at root) */
242 struct deva *i_atdeva;
243 const char **i_locs; /* locators (as given by pspec's iattr) */
244 int i_cfflags; /* flags from config line */
245 int i_lineno; /* line # in config, for later errors */
246 const char *i_srcfile; /* file it appears in */
247 int i_active;
248 #define DEVI_ORPHAN 0 /* instance has no active parent */
249 #define DEVI_ACTIVE 1 /* instance has an active parent */
250 #define DEVI_IGNORED 2 /* instance's parent has been removed */
251 #define DEVI_BROKEN 3 /* instance is broken (syntax error) */
252
253 /* created during packing or ioconf.c generation */
254 short i_collapsed; /* set => this alias no longer needed */
255 short i_cfindex; /* our index in cfdata */
256 short i_locoff; /* offset in locators.vec */
257
258 };
259 /* special units */
260 #define STAR (-1) /* unit number for, e.g., "sd*" */
261 #define WILD (-2) /* unit number for, e.g., "sd?" */
262
263 /*
264 * Files. Each file is either standard (always included) or optional,
265 * depending on whether it has names on which to *be* optional. The
266 * options field (fi_optx) is actually an expression tree, with nodes
267 * for OR, AND, and NOT, as well as atoms (words) representing some
268 * particular option. The node type is stored in the nv_int field.
269 * Subexpressions appear in the `next' field; for the binary operators
270 * AND and OR, the left subexpression is first stored in the nv_ptr field.
271 *
272 * For any file marked as needs-count or needs-flag, fixfiles() will
273 * build fi_optf, a `flat list' of the options with nv_int fields that
274 * contain counts or `need' flags; this is used in mkheaders().
275 */
276 struct files {
277 TAILQ_ENTRY(files) fi_next;
278 const char *fi_srcfile; /* the name of the "files" file that got us */
279 u_short fi_srcline; /* and the line number */
280 u_char fi_flags; /* as below */
281 char fi_lastc; /* last char from path */
282 const char *fi_path; /* full file path */
283 const char *fi_tail; /* name, i.e., strrchr(fi_path, '/') + 1 */
284 const char *fi_base; /* tail minus ".c" (or whatever) */
285 const char *fi_prefix; /* any file prefix */
286 struct nvlist *fi_optx;/* options expression */
287 struct nvlist *fi_optf;/* flattened version of above, if needed */
288 const char *fi_mkrule; /* special make rule, if any */
289 };
290 /* flags */
291 #define FI_SEL 0x01 /* selected */
292 #define FI_NEEDSCOUNT 0x02 /* needs-count */
293 #define FI_NEEDSFLAG 0x04 /* needs-flag */
294 #define FI_HIDDEN 0x08 /* obscured by other(s), base names overlap */
295
296 /*
297 * Objects and libraries. This allows precompiled object and library
298 * files (e.g. binary-only device drivers) to be linked in.
299 */
300 struct objects {
301 TAILQ_ENTRY(objects) oi_next;
302 const char *oi_srcfile; /* the name of the "objects" file that got us */
303 u_short oi_srcline; /* and the line number */
304 u_char oi_flags; /* as below */
305 char oi_lastc; /* last char from path */
306 const char *oi_path; /* full object path */
307 const char *oi_prefix; /* any file prefix */
308 struct nvlist *oi_optx;/* options expression */
309 struct nvlist *oi_optf;/* flattened version of above, if needed */
310 };
311 /* flags */
312 #define OI_SEL 0x01 /* selected */
313 #define OI_NEEDSFLAG 0x02 /* needs-flag */
314
315 #define FX_ATOM 0 /* atom (in nv_name) */
316 #define FX_NOT 1 /* NOT expr (subexpression in nv_next) */
317 #define FX_AND 2 /* AND expr (lhs in nv_ptr, rhs in nv_next) */
318 #define FX_OR 3 /* OR expr (lhs in nv_ptr, rhs in nv_next) */
319
320 /*
321 * File/object prefixes. These are arranged in a stack, and affect
322 * the behavior of the source path.
323 */
324 struct prefix {
325 SLIST_ENTRY(prefix) pf_next; /* next prefix in stack */
326 const char *pf_prefix; /* the actual prefix */
327 };
328
329 /*
330 * Device major informations.
331 */
332 struct devm {
333 TAILQ_ENTRY(devm) dm_next;
334 const char *dm_srcfile; /* the name of the "majors" file */
335 u_short dm_srcline; /* the line number */
336 const char *dm_name; /* [bc]devsw name */
337 int dm_cmajor; /* character major */
338 int dm_bmajor; /* block major */
339 struct nvlist *dm_opts; /* options */
340 };
341
342 /*
343 * Hash tables look up name=value pairs. The pointer value of the name
344 * is assumed to be constant forever; this can be arranged by interning
345 * the name. (This is fairly convenient since our lexer does this for
346 * all identifier-like strings---it has to save them anyway, lest yacc's
347 * look-ahead wipe out the current one.)
348 */
349 struct hashtab;
350
351 const char *conffile; /* source file, e.g., "GENERIC.sparc" */
352 const char *machine; /* machine type, e.g., "sparc" or "sun3" */
353 const char *machinearch; /* machine arch, e.g., "sparc" or "m68k" */
354 struct nvlist *machinesubarches;
355 /* machine subarches, e.g., "sun68k" or "hpc" */
356 const char *srcdir; /* path to source directory (rel. to build) */
357 const char *builddir; /* path to build directory */
358 const char *defbuilddir; /* default build directory */
359 const char *ident; /* kernel "ident"ification string */
360 int errors; /* counts calls to error() */
361 int minmaxusers; /* minimum "maxusers" parameter */
362 int defmaxusers; /* default "maxusers" parameter */
363 int maxmaxusers; /* default "maxusers" parameter */
364 int maxusers; /* configuration's "maxusers" parameter */
365 int maxpartitions; /* configuration's "maxpartitions" parameter */
366 struct nvlist *options; /* options */
367 struct nvlist *fsoptions; /* filesystems */
368 struct nvlist *mkoptions; /* makeoptions */
369 struct nvlist *appmkoptions; /* appending mkoptions */
370 struct hashtab *condmkopttab; /* conditional makeoption table */
371 struct hashtab *devbasetab; /* devbase lookup */
372 struct hashtab *devroottab; /* attach at root lookup */
373 struct hashtab *devatab; /* devbase attachment lookup */
374 struct hashtab *devitab; /* device instance lookup */
375 struct hashtab *deaddevitab; /* removed instances lookup */
376 struct hashtab *selecttab; /* selects things that are "optional foo" */
377 struct hashtab *needcnttab; /* retains names marked "needs-count" */
378 struct hashtab *opttab; /* table of configured options */
379 struct hashtab *fsopttab; /* table of configured file systems */
380 struct hashtab *defopttab; /* options that have been "defopt"'d */
381 struct hashtab *defflagtab; /* options that have been "defflag"'d */
382 struct hashtab *defparamtab; /* options that have been "defparam"'d */
383 struct hashtab *deffstab; /* defined file systems */
384 struct hashtab *optfiletab; /* "defopt"'d option .h files */
385 struct hashtab *attrtab; /* attributes (locators, etc.) */
386 struct hashtab *bdevmtab; /* block devm lookup */
387 struct hashtab *cdevmtab; /* character devm lookup */
388
389 TAILQ_HEAD(, devbase) allbases; /* list of all devbase structures */
390 TAILQ_HEAD(, deva) alldevas; /* list of all devbase attachments */
391 TAILQ_HEAD(, config) allcf; /* list of configured kernels */
392 TAILQ_HEAD(, devi) alldevi, /* list of all instances */
393 allpseudo; /* list of all pseudo-devices */
394 TAILQ_HEAD(, devm) alldevms; /* list of all device-majors */
395 TAILQ_HEAD(, pspec) allpspecs; /* list of all parent specs */
396 int ndevi; /* number of devi's (before packing) */
397 int npspecs; /* number of parent specs */
398 int maxbdevm; /* max number of block major */
399 int maxcdevm; /* max number of character major */
400 int do_devsw; /* 0 if pre-devsw config */
401 int oktopackage; /* 0 before setmachine() */
402
403 TAILQ_HEAD(, files) allfiles; /* list of all kernel source files */
404 TAILQ_HEAD(, objects) allobjects; /* list of all kernel object and
405 library files */
406
407 SLIST_HEAD(, prefix) prefixes, /* prefix stack */
408 allprefixes; /* all prefixes used (after popped) */
409 SLIST_HEAD(, prefix) curdirs; /* curdir stack */
410
411 struct devi **packed; /* arrayified table for packed devi's */
412 int npacked; /* size of packed table, <= ndevi */
413
414 struct { /* loc[] table for config */
415 const char **vec;
416 int used;
417 } locators;
418
419 struct numconst {
420 int64_t val;
421 int fmt;
422 };
423
424 /* files.c */
425 void initfiles(void);
426 void checkfiles(void);
427 int fixfiles(void); /* finalize */
428 int fixobjects(void);
429 int fixdevsw(void);
430 void addfile(const char *, struct nvlist *, int, const char *);
431 void addobject(const char *, struct nvlist *, int);
432
433 /* hash.c */
434 struct hashtab *ht_new(void);
435 int ht_insrep(struct hashtab *, const char *, void *, int);
436 #define ht_insert(ht, nam, val) ht_insrep(ht, nam, val, 0)
437 #define ht_replace(ht, nam, val) ht_insrep(ht, nam, val, 1)
438 int ht_remove(struct hashtab *, const char *);
439 void *ht_lookup(struct hashtab *, const char *);
440 void initintern(void);
441 const char *intern(const char *);
442 typedef int (*ht_callback)(const char *, void *, void *);
443 int ht_enumerate(struct hashtab *, ht_callback, void *);
444
445 /* main.c */
446 void addoption(const char *, const char *);
447 void addfsoption(const char *);
448 void addmkoption(const char *, const char *);
449 void appendmkoption(const char *, const char *);
450 void appendcondmkoption(const char *, const char *, const char *);
451 void deffilesystem(const char *, struct nvlist *);
452 void defoption(const char *, struct nvlist *, struct nvlist *);
453 void defflag(const char *, struct nvlist *, struct nvlist *);
454 void defparam(const char *, struct nvlist *, struct nvlist *);
455 void deloption(const char *);
456 void delfsoption(const char *);
457 void delmkoption(const char *);
458 int devbase_has_instances(struct devbase *, int);
459 struct nvlist * find_declared_option(const char *);
460 int deva_has_instances(struct deva *, int);
461 void setupdirs(void);
462
463 /* tests on option types */
464 #define OPT_FSOPT(n) (ht_lookup(deffstab, (n)) != NULL)
465 #define OPT_DEFOPT(n) (ht_lookup(defopttab, (n)) != NULL)
466 #define OPT_DEFFLAG(n) (ht_lookup(defflagtab, (n)) != NULL)
467 #define OPT_DEFPARAM(n) (ht_lookup(defparamtab, (n)) != NULL)
468 #define DEFINED_OPTION(n) (find_declared_option((n)) != NULL)
469
470 /* main.c */
471 void logconfig_include(FILE *, const char *);
472
473 /* mkdevsw.c */
474 int mkdevsw(void);
475
476 /* mkheaders.c */
477 int mkheaders(void);
478 int moveifchanged(const char *, const char *);
479
480 /* mkioconf.c */
481 int mkioconf(void);
482
483 /* mkmakefile.c */
484 int mkmakefile(void);
485
486 /* mkswap.c */
487 int mkswap(void);
488
489 /* pack.c */
490 void pack(void);
491
492 /* scan.l */
493 int currentline(void);
494 int firstfile(const char *);
495 void package(const char *);
496 int include(const char *, int, int, int);
497
498 /* sem.c, other than for yacc actions */
499 void initsem(void);
500
501 /* util.c */
502 void *ecalloc(size_t, size_t);
503 void *emalloc(size_t);
504 void *erealloc(void *, size_t);
505 char *estrdup(const char *);
506 void prefix_push(const char *);
507 void prefix_pop(void);
508 char *sourcepath(const char *);
509 void warn(const char *, ...) /* immediate warns */
510 __attribute__((__format__(__printf__, 1, 2)));
511 void xwarn(const char *, int, const char *, ...) /* delayed warns */
512 __attribute__((__format__(__printf__, 3, 4)));
513 void error(const char *, ...) /* immediate errs */
514 __attribute__((__format__(__printf__, 1, 2)));
515 void xerror(const char *, int, const char *, ...) /* delayed errs */
516 __attribute__((__format__(__printf__, 3, 4)));
517 __dead void panic(const char *, ...)
518 __attribute__((__format__(__printf__, 1, 2)));
519 struct nvlist *newnv(const char *, const char *, void *, int, struct nvlist *);
520 void nvfree(struct nvlist *);
521 void nvfreel(struct nvlist *);
522
523 /* liby */
524 void yyerror(const char *);
525 int yylex(void);
526