main.c revision 1.27 1 /* $NetBSD: main.c,v 1.27 2008/06/10 18:11:31 drochner 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: @(#)main.c 8.1 (Berkeley) 6/6/93
41 */
42
43 #if HAVE_NBTOOL_CONFIG_H
44 #include "nbtool_config.h"
45 #endif
46
47 #ifndef MAKE_BOOTSTRAP
48 #include <sys/cdefs.h>
49 #define COPYRIGHT(x) __COPYRIGHT(x)
50 #else
51 #define COPYRIGHT(x) static const char copyright[] = x
52 #endif
53
54 #ifndef lint
55 COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
56 The Regents of the University of California. All rights reserved.\n");
57 #endif /* not lint */
58
59 #include <sys/types.h>
60 #include <sys/stat.h>
61 #include <sys/param.h>
62 #include <sys/mman.h>
63 #include <paths.h>
64 #include <ctype.h>
65 #include <err.h>
66 #include <errno.h>
67 #include <fcntl.h>
68 #include <stdio.h>
69 #include <stdlib.h>
70 #include <string.h>
71 #include <unistd.h>
72 #include <vis.h>
73 #include <util.h>
74
75 #include "defs.h"
76 #include "sem.h"
77
78 #ifndef LINE_MAX
79 #define LINE_MAX 1024
80 #endif
81
82 int vflag; /* verbose output */
83 int Pflag; /* pack locators */
84 int Lflag; /* lint config generation */
85
86 int yyparse(void);
87
88 #ifndef MAKE_BOOTSTRAP
89 extern int yydebug;
90 #endif
91
92 static struct hashtab *obsopttab;
93 static struct hashtab *mkopttab;
94 static struct nvlist **nextopt;
95 static struct nvlist **nextmkopt;
96 static struct nvlist **nextappmkopt;
97 static struct nvlist **nextfsopt;
98
99 static void usage(void) __dead;
100 static void dependopts(void);
101 static void do_depend(struct nvlist *);
102 static void stop(void);
103 static int do_option(struct hashtab *, struct nvlist ***,
104 const char *, const char *, const char *);
105 static int undo_option(struct hashtab *, struct nvlist **,
106 struct nvlist ***, const char *, const char *);
107 static int crosscheck(void);
108 static int badstar(void);
109 int main(int, char **);
110 static int mksymlinks(void);
111 static int mkident(void);
112 static int devbase_has_dead_instances(const char *, void *, void *);
113 static int devbase_has_any_instance(struct devbase *, int, int, int);
114 static int check_dead_devi(const char *, void *, void *);
115 static void kill_orphans(void);
116 static void do_kill_orphans(struct devbase *, struct attr *,
117 struct devbase *, int);
118 static int kill_orphans_cb(const char *, void *, void *);
119 static int cfcrosscheck(struct config *, const char *, struct nvlist *);
120 static const char *strtolower(const char *);
121 void defopt(struct hashtab *ht, const char *fname,
122 struct nvlist *opts, struct nvlist *deps, int obs);
123
124 #define LOGCONFIG_LARGE "INCLUDE_CONFIG_FILE"
125 #define LOGCONFIG_SMALL "INCLUDE_JUST_CONFIG"
126
127 static void logconfig_start(void);
128 static void logconfig_end(void);
129 static FILE *cfg;
130 static time_t cfgtime;
131
132 static int is_elf(const char *);
133 static int extract_config(const char *, const char *, int);
134
135 int badfilename(const char *fname);
136
137 const char *progname;
138
139 int
140 main(int argc, char **argv)
141 {
142 char *p, cname[20];
143 const char *last_component;
144 int pflag, xflag, ch, removeit;
145
146 setprogname(argv[0]);
147
148 pflag = 0;
149 xflag = 0;
150 while ((ch = getopt(argc, argv, "DLPgpvb:s:x")) != -1) {
151 switch (ch) {
152
153 #ifndef MAKE_BOOTSTRAP
154 case 'D':
155 yydebug = 1;
156 break;
157 #endif
158
159 case 'L':
160 Lflag = 1;
161 break;
162
163 case 'P':
164 Pflag = 1;
165 break;
166
167 case 'g':
168 /*
169 * In addition to DEBUG, you probably wanted to
170 * set "options KGDB" and maybe others. We could
171 * do that for you, but you really should just
172 * put them in the config file.
173 */
174 warnx("-g is obsolete (use makeoptions DEBUG=\"-g\")");
175 usage();
176 /*NOTREACHED*/
177
178 case 'p':
179 /*
180 * Essentially the same as makeoptions PROF="-pg",
181 * but also changes the path from ../../compile/FOO
182 * to ../../compile/FOO.PROF; i.e., compile a
183 * profiling kernel based on a typical "regular"
184 * kernel.
185 *
186 * Note that if you always want profiling, you
187 * can (and should) use a "makeoptions" line.
188 */
189 pflag = 1;
190 break;
191
192 case 'v':
193 vflag = 1;
194 break;
195
196 case 'b':
197 builddir = optarg;
198 break;
199
200 case 's':
201 srcdir = optarg;
202 break;
203
204 case 'x':
205 xflag = 1;
206 break;
207
208 case '?':
209 default:
210 usage();
211 }
212 }
213
214 argc -= optind;
215 argv += optind;
216 if (argc > 1) {
217 usage();
218 }
219
220 if (xflag && (builddir != NULL || srcdir != NULL || Pflag || pflag ||
221 vflag || Lflag))
222 errx(EXIT_FAILURE, "-x must be used alone");
223 if (Lflag && (builddir != NULL || Pflag || pflag))
224 errx(EXIT_FAILURE, "-L can only be used with -s and -v");
225
226 if (xflag) {
227 #ifdef __NetBSD__
228 conffile = (argc == 1) ? argv[0] : _PATH_UNIX;
229 #else
230 if (argc == 0)
231 errx(EXIT_FAILURE, "no kernel supplied");
232 #endif
233 if (!is_elf(conffile))
234 errx(EXIT_FAILURE, "%s: not a binary kernel",
235 conffile);
236 if (!extract_config(conffile, "stdout", STDOUT_FILENO))
237 errx(EXIT_FAILURE, "%s does not contain embedded "
238 "configuration data", conffile);
239 exit(0);
240 }
241
242 conffile = (argc == 1) ? argv[0] : "CONFIG";
243 if (firstfile(conffile)) {
244 err(EXIT_FAILURE, "Cannot read `%s'", conffile);
245 exit(2);
246 }
247
248 /*
249 * Init variables.
250 */
251 minmaxusers = 1;
252 maxmaxusers = 10000;
253 initintern();
254 initfiles();
255 initsem();
256 ident = NULL;
257 devbasetab = ht_new();
258 devroottab = ht_new();
259 devatab = ht_new();
260 devitab = ht_new();
261 deaddevitab = ht_new();
262 selecttab = ht_new();
263 needcnttab = ht_new();
264 opttab = ht_new();
265 mkopttab = ht_new();
266 condmkopttab = ht_new();
267 fsopttab = ht_new();
268 deffstab = ht_new();
269 defopttab = ht_new();
270 defparamtab = ht_new();
271 defoptlint = ht_new();
272 defflagtab = ht_new();
273 optfiletab = ht_new();
274 obsopttab = ht_new();
275 bdevmtab = ht_new();
276 maxbdevm = 0;
277 cdevmtab = ht_new();
278 maxcdevm = 0;
279 nextopt = &options;
280 nextmkopt = &mkoptions;
281 nextappmkopt = &appmkoptions;
282 nextfsopt = &fsoptions;
283
284 /*
285 * Handle profiling (must do this before we try to create any
286 * files).
287 */
288 last_component = strrchr(conffile, '/');
289 last_component = (last_component) ? last_component + 1 : conffile;
290 if (pflag) {
291 p = emalloc(strlen(last_component) + 17);
292 (void)sprintf(p, "../compile/%s.PROF", last_component);
293 (void)addmkoption(intern("PROF"), "-pg");
294 (void)addoption(intern("GPROF"), NULL);
295 } else {
296 p = emalloc(strlen(last_component) + 13);
297 (void)sprintf(p, "../compile/%s", last_component);
298 }
299 defbuilddir = (argc == 0) ? "." : p;
300
301 if (Lflag) {
302 char resolvedname[MAXPATHLEN];
303
304 if (realpath(conffile, resolvedname) == NULL)
305 err(EXIT_FAILURE, "realpath(%s)", conffile);
306
307 if (yyparse())
308 stop();
309
310 printf("include \"%s\"\n", resolvedname);
311
312 emit_params();
313 emit_options();
314 emit_instances();
315
316 exit(EXIT_SUCCESS);
317 }
318
319 removeit = 0;
320 if (is_elf(conffile)) {
321 const char *tmpdir;
322 int cfd;
323
324 if (builddir == NULL)
325 errx(EXIT_FAILURE, "Build directory must be specified "
326 "with binary kernels");
327
328 /* Open temporary configuration file */
329 tmpdir = getenv("TMPDIR");
330 if (tmpdir == NULL)
331 tmpdir = "/tmp";
332 snprintf(cname, sizeof(cname), "%s/config.tmp.XXXXXX", tmpdir);
333 cfd = mkstemp(cname);
334 if (cfd == -1)
335 err(EXIT_FAILURE, "Cannot create `%s'", cname);
336
337 printf("Using configuration data embedded in kernel...\n");
338 if (!extract_config(conffile, cname, cfd))
339 errx(EXIT_FAILURE, "%s does not contain embedded "
340 "configuration data", conffile);
341
342 removeit = 1;
343 close(cfd);
344 firstfile(cname);
345 }
346
347 /*
348 * Parse config file (including machine definitions).
349 */
350 logconfig_start();
351 if (yyparse())
352 stop();
353 logconfig_end();
354
355 if (removeit)
356 unlink(cname);
357
358 /*
359 * Detect and properly ignore orphaned devices
360 */
361 kill_orphans();
362
363 /*
364 * Select devices and pseudo devices and their attributes
365 */
366 if (fixdevis())
367 stop();
368
369 /*
370 * Deal with option dependencies.
371 */
372 dependopts();
373
374 /*
375 * Fix (as in `set firmly in place') files.
376 */
377 if (fixfiles())
378 stop();
379
380 /*
381 * Fix objects and libraries.
382 */
383 if (fixobjects())
384 stop();
385
386 /*
387 * Fix device-majors.
388 */
389 if (fixdevsw())
390 stop();
391
392 /*
393 * Perform cross-checking.
394 */
395 if (maxusers == 0) {
396 if (defmaxusers) {
397 (void)printf("maxusers not specified; %d assumed\n",
398 defmaxusers);
399 maxusers = defmaxusers;
400 } else {
401 warnx("need \"maxusers\" line");
402 errors++;
403 }
404 }
405 if (fsoptions == NULL) {
406 warnx( "need at least one \"file-system\" line");
407 errors++;
408 }
409 if (crosscheck() || errors)
410 stop();
411
412 /*
413 * Squeeze things down and finish cross-checks (STAR checks must
414 * run after packing).
415 */
416 pack();
417 if (badstar())
418 stop();
419
420 /*
421 * Ready to go. Build all the various files.
422 */
423 if (mksymlinks() || mkmakefile() || mkheaders() || mkswap() ||
424 mkioconf() || (do_devsw ? mkdevsw() : 0) || mkident())
425 stop();
426 (void)printf("Build directory is %s\n", builddir);
427 (void)printf("Don't forget to run \"make depend\"\n");
428 return 0;
429 }
430
431 static void
432 usage(void)
433 {
434 (void)fprintf(stderr, "Usage: %s [-Ppv] [-s srcdir] [-b builddir] "
435 "[config-file]\n\t%s -x [kernel-file]\n"
436 "\t%s -L [-v] [-s srcdir] [config-file]\n",
437 getprogname(), getprogname(), getprogname());
438 exit(1);
439 }
440
441 /*
442 * Set any options that are implied by other options.
443 */
444 static void
445 dependopts(void)
446 {
447 struct nvlist *nv, *opt;
448
449 for (nv = options; nv != NULL; nv = nv->nv_next) {
450 if ((opt = find_declared_option(nv->nv_name)) != NULL) {
451 for (opt = opt->nv_ptr; opt != NULL;
452 opt = opt->nv_next) {
453 do_depend(opt);
454 }
455 }
456 }
457
458 for (nv = fsoptions; nv != NULL; nv = nv->nv_next) {
459 if ((opt = find_declared_option(nv->nv_name)) != NULL) {
460 for (opt = opt->nv_ptr; opt != NULL;
461 opt = opt->nv_next) {
462 do_depend(opt);
463 }
464 }
465 }
466 }
467
468 static void
469 do_depend(struct nvlist *nv)
470 {
471 struct nvlist *nextnv;
472 struct attr *a;
473
474 if (nv != NULL && (nv->nv_flags & NV_DEPENDED) == 0) {
475 nv->nv_flags |= NV_DEPENDED;
476 /*
477 * If the dependency is an attribute, then just add
478 * it to the selecttab.
479 */
480 if ((a = ht_lookup(attrtab, nv->nv_name)) != NULL) {
481 if (a->a_iattr)
482 panic("do_depend(%s): dep `%s' is an iattr",
483 nv->nv_name, a->a_name);
484 expandattr(a, selectattr);
485 } else {
486 if (ht_lookup(opttab, nv->nv_name) == NULL)
487 addoption(nv->nv_name, NULL);
488 if ((nextnv =
489 find_declared_option(nv->nv_name)) != NULL)
490 do_depend(nextnv->nv_ptr);
491 }
492 }
493 }
494
495 static int
496 recreate(const char *p, const char *q)
497 {
498 int ret;
499
500 if ((ret = unlink(q)) == -1 && errno != ENOENT)
501 warn("unlink(%s)\n", q);
502 if ((ret = symlink(p, q)) == -1)
503 warn("symlink(%s -> %s)", q, p);
504 return ret;
505 }
506
507 /*
508 * Make a symlink for "machine" so that "#include <machine/foo.h>" works,
509 * and for the machine's CPU architecture, so that works as well.
510 */
511 static int
512 mksymlinks(void)
513 {
514 int ret;
515 char *p, buf[MAXPATHLEN];
516 const char *q;
517 struct nvlist *nv;
518
519 snprintf(buf, sizeof(buf), "arch/%s/include", machine);
520 p = sourcepath(buf);
521 ret = recreate(p, "machine");
522 free(p);
523
524 if (machinearch != NULL) {
525 snprintf(buf, sizeof(buf), "arch/%s/include", machinearch);
526 p = sourcepath(buf);
527 q = machinearch;
528 } else {
529 p = estrdup("machine");
530 q = machine;
531 }
532
533 ret = recreate(p, q);
534 free(p);
535
536 for (nv = machinesubarches; nv != NULL; nv = nv->nv_next) {
537 q = nv->nv_name;
538 snprintf(buf, sizeof(buf), "arch/%s/include", q);
539 p = sourcepath(buf);
540 ret = recreate(p, q);
541 free(p);
542 }
543
544 return (ret);
545 }
546
547 static __dead void
548 stop(void)
549 {
550 (void)fprintf(stderr, "*** Stop.\n");
551 exit(1);
552 }
553
554 static void
555 add_dependencies(struct nvlist *nv, struct nvlist *deps)
556 {
557 struct nvlist *dep;
558 struct attr *a;
559
560 /* Use nv_ptr to link any other options that are implied. */
561 nv->nv_ptr = deps;
562 for (dep = deps; dep != NULL; dep = dep->nv_next) {
563 /*
564 * If the dependency is an attribute, it must not
565 * be an interface attribute. Otherwise, it must
566 * be a previously declared option.
567 */
568 if ((a = ht_lookup(attrtab, dep->nv_name)) != NULL) {
569 if (a->a_iattr)
570 cfgerror("option `%s' dependency `%s' "
571 "is an interface attribute",
572 nv->nv_name, a->a_name);
573 } else if (OPT_OBSOLETE(dep->nv_name)) {
574 cfgerror("option `%s' dependency `%s' "
575 "is obsolete", nv->nv_name, dep->nv_name);
576 } else if (find_declared_option(dep->nv_name) == NULL) {
577 cfgerror("option `%s' dependency `%s' "
578 "is an unknown option",
579 nv->nv_name, dep->nv_name);
580 }
581 }
582 }
583
584 /*
585 * Define one or more file systems. If file system options file name is
586 * specified, a preprocessor #define for that file system will be placed
587 * in that file. In this case, only one file system may be specified.
588 * Otherwise, no preprocessor #defines will be generated.
589 */
590 void
591 deffilesystem(const char *fname, struct nvlist *fses, struct nvlist *deps)
592 {
593 struct nvlist *nv;
594
595 /*
596 * Mark these options as ones to skip when creating the Makefile.
597 */
598 for (nv = fses; nv != NULL; nv = nv->nv_next) {
599 if (DEFINED_OPTION(nv->nv_name)) {
600 cfgerror("file system or option `%s' already defined",
601 nv->nv_name);
602 return;
603 }
604
605 /*
606 * Also mark it as a valid file system, which may be
607 * used in "file-system" directives in the config
608 * file.
609 */
610 if (ht_insert(deffstab, nv->nv_name, nv))
611 panic("file system `%s' already in table?!",
612 nv->nv_name);
613
614 if (fname != NULL) {
615 /*
616 * Only one file system allowed in this case.
617 */
618 if (nv->nv_next != NULL) {
619 cfgerror("only one file system per option "
620 "file may be specified");
621 return;
622 }
623
624 if (ht_insert(optfiletab, fname, nv)) {
625 cfgerror("option file `%s' already exists",
626 fname);
627 return;
628 }
629 }
630
631 add_dependencies(nv, deps);
632 }
633 }
634
635 /*
636 * Sanity check a file name.
637 */
638 int
639 badfilename(const char *fname)
640 {
641 const char *n;
642
643 /*
644 * We're putting multiple options into one file. Sanity
645 * check the file name.
646 */
647 if (strchr(fname, '/') != NULL) {
648 cfgerror("option file name contains a `/'");
649 return 1;
650 }
651 if ((n = strrchr(fname, '.')) == NULL || strcmp(n, ".h") != 0) {
652 cfgerror("option file name does not end in `.h'");
653 return 1;
654 }
655 return 0;
656 }
657
658
659 /*
660 * Search for a defined option (defopt, filesystem, etc), and if found,
661 * return the option's struct nvlist.
662 */
663 struct nvlist *
664 find_declared_option(const char *name)
665 {
666 struct nvlist *option = NULL;
667
668 if ((option = ht_lookup(defopttab, name)) != NULL ||
669 (option = ht_lookup(defparamtab, name)) != NULL ||
670 (option = ht_lookup(defflagtab, name)) != NULL ||
671 (option = ht_lookup(fsopttab, name)) != NULL) {
672 return (option);
673 }
674
675 return (NULL);
676 }
677
678
679 /*
680 * Define one or more standard options. If an option file name is specified,
681 * place all options in one file with the specified name. Otherwise, create
682 * an option file for each option.
683 * record the option information in the specified table.
684 */
685 void
686 defopt(struct hashtab *ht, const char *fname, struct nvlist *opts,
687 struct nvlist *deps, int obs)
688 {
689 struct nvlist *nv, *nextnv, *oldnv;
690 const char *name;
691 char buf[500];
692
693 if (fname != NULL && badfilename(fname)) {
694 return;
695 }
696
697 /*
698 * Mark these options as ones to skip when creating the Makefile.
699 */
700 for (nv = opts; nv != NULL; nv = nextnv) {
701 nextnv = nv->nv_next;
702
703 if (*(nv->nv_name) == '\0') {
704 if (nextnv == NULL)
705 panic("invalid option chain");
706 /*
707 * If an entry already exists, then we are about to
708 * complain, so no worry.
709 */
710 (void) ht_insert(defoptlint, nextnv->nv_name,
711 nv);
712 nv = nextnv;
713 nextnv = nextnv->nv_next;
714 }
715
716 /* An option name can be declared at most once. */
717 if (DEFINED_OPTION(nv->nv_name)) {
718 cfgerror("file system or option `%s' already defined",
719 nv->nv_name);
720 return;
721 }
722
723 if (ht_insert(ht, nv->nv_name, nv)) {
724 cfgerror("file system or option `%s' already defined",
725 nv->nv_name);
726 return;
727 }
728
729 if (fname == NULL) {
730 /*
731 * Each option will be going into its own file.
732 * Convert the option name to lower case. This
733 * lower case name will be used as the option
734 * file name.
735 */
736 (void) snprintf(buf, sizeof(buf), "opt_%s.h",
737 strtolower(nv->nv_name));
738 name = intern(buf);
739 } else {
740 name = fname;
741 }
742
743 add_dependencies(nv, deps);
744
745 /*
746 * Remove this option from the parameter list before adding
747 * it to the list associated with this option file.
748 */
749 nv->nv_next = NULL;
750
751 /*
752 * Flag as obsolete, if requested.
753 */
754 if (obs) {
755 nv->nv_flags |= NV_OBSOLETE;
756 (void)ht_insert(obsopttab, nv->nv_name, nv);
757 }
758
759 /*
760 * Add this option file if we haven't seen it yet.
761 * Otherwise, append to the list of options already
762 * associated with this file.
763 */
764 if ((oldnv = ht_lookup(optfiletab, name)) == NULL) {
765 (void)ht_insert(optfiletab, name, nv);
766 } else {
767 while (oldnv->nv_next != NULL)
768 oldnv = oldnv->nv_next;
769 oldnv->nv_next = nv;
770 }
771 }
772 }
773
774 /*
775 * Define one or more standard options. If an option file name is specified,
776 * place all options in one file with the specified name. Otherwise, create
777 * an option file for each option.
778 */
779 void
780 defoption(const char *fname, struct nvlist *opts, struct nvlist *deps)
781 {
782
783 cfgwarn("The use of `defopt' is deprecated");
784 defopt(defopttab, fname, opts, deps, 0);
785 }
786
787
788 /*
789 * Define an option for which a value is required.
790 */
791 void
792 defparam(const char *fname, struct nvlist *opts, struct nvlist *deps, int obs)
793 {
794
795 defopt(defparamtab, fname, opts, deps, obs);
796 }
797
798 /*
799 * Define an option which must not have a value, and which
800 * emits a "needs-flag" style output.
801 */
802 void
803 defflag(const char *fname, struct nvlist *opts, struct nvlist *deps, int obs)
804 {
805
806 defopt(defflagtab, fname, opts, deps, obs);
807 }
808
809
810 /*
811 * Add an option from "options FOO". Note that this selects things that
812 * are "optional foo".
813 */
814 void
815 addoption(const char *name, const char *value)
816 {
817 const char *n;
818 int is_fs, is_param, is_flag, is_undecl, is_obs;
819
820 /*
821 * Figure out how this option was declared (if at all.)
822 * XXX should use "params" and "flags" in config.
823 * XXX crying out for a type field in a unified hashtab.
824 */
825 is_fs = OPT_FSOPT(name);
826 is_param = OPT_DEFPARAM(name);
827 is_flag = OPT_DEFFLAG(name);
828 is_obs = OPT_OBSOLETE(name);
829 is_undecl = !DEFINED_OPTION(name);
830
831 /* Warn and pretend the user had not selected the option */
832 if (is_obs) {
833 cfgwarn("obsolete option `%s' will be ignored", name);
834 return;
835 }
836
837 /* Make sure this is not a defined file system. */
838 if (is_fs) {
839 cfgerror("`%s' is a defined file system", name);
840 return;
841 }
842 /* A defparam must have a value */
843 if (is_param && value == NULL) {
844 cfgerror("option `%s' must have a value", name);
845 return;
846 }
847 /* A defflag must not have a value */
848 if (is_flag && value != NULL) {
849 cfgerror("option `%s' must not have a value", name);
850 return;
851 }
852
853 if (is_undecl && vflag) {
854 cfgwarn("undeclared option `%s' added to IDENT", name);
855 }
856
857 if (do_option(opttab, &nextopt, name, value, "options"))
858 return;
859
860 /* make lowercase, then add to select table */
861 n = strtolower(name);
862 (void)ht_insert(selecttab, n, (void *)__UNCONST(n));
863 }
864
865 void
866 deloption(const char *name)
867 {
868
869 if (undo_option(opttab, &options, &nextopt, name, "options"))
870 return;
871 if (undo_option(selecttab, NULL, NULL, strtolower(name), "options"))
872 return;
873 }
874
875 /*
876 * Add a file system option. This routine simply inserts the name into
877 * a list of valid file systems, which is used to validate the root
878 * file system type. The name is then treated like a standard option.
879 */
880 void
881 addfsoption(const char *name)
882 {
883 const char *n;
884
885 /* Make sure this is a defined file system. */
886 if (!OPT_FSOPT(name)) {
887 cfgerror("`%s' is not a defined file system", name);
888 return;
889 }
890
891 /*
892 * Convert to lower case. This will be used in the select
893 * table, to verify root file systems.
894 */
895 n = strtolower(name);
896
897 if (do_option(fsopttab, &nextfsopt, name, n, "file-system"))
898 return;
899
900 /* Add to select table. */
901 (void)ht_insert(selecttab, n, __UNCONST(n));
902 }
903
904 void
905 delfsoption(const char *name)
906 {
907 const char *n;
908
909 n = strtolower(name);
910 if (undo_option(fsopttab, &fsoptions, &nextfsopt, name, "file-system"))
911 return;
912 if (undo_option(selecttab, NULL, NULL, n, "file-system"))
913 return;
914 }
915
916 /*
917 * Add a "make" option.
918 */
919 void
920 addmkoption(const char *name, const char *value)
921 {
922
923 (void)do_option(mkopttab, &nextmkopt, name, value, "makeoptions");
924 }
925
926 void
927 delmkoption(const char *name)
928 {
929
930 (void)undo_option(mkopttab, &mkoptions, &nextmkopt, name,
931 "makeoptions");
932 }
933
934 /*
935 * Add an appending "make" option.
936 */
937 void
938 appendmkoption(const char *name, const char *value)
939 {
940 struct nvlist *nv;
941
942 nv = newnv(name, value, NULL, 0, NULL);
943 *nextappmkopt = nv;
944 nextappmkopt = &nv->nv_next;
945 }
946
947 /*
948 * Add a conditional appending "make" option.
949 */
950 void
951 appendcondmkoption(const char *selname, const char *name, const char *value)
952 {
953 struct nvlist *nv, *lnv;
954 const char *n;
955
956 n = strtolower(selname);
957 nv = newnv(name, value, NULL, 0, NULL);
958 if (ht_insert(condmkopttab, n, nv) == 0)
959 return;
960
961 if ((lnv = ht_lookup(condmkopttab, n)) == NULL)
962 panic("appendcondmkoption");
963 for (; lnv->nv_next != NULL; lnv = lnv->nv_next)
964 /* search for the last list element */;
965 lnv->nv_next = nv;
966 }
967
968 /*
969 * Add a name=value pair to an option list. The value may be NULL.
970 */
971 static int
972 do_option(struct hashtab *ht, struct nvlist ***nppp, const char *name,
973 const char *value, const char *type)
974 {
975 struct nvlist *nv;
976
977 /* assume it will work */
978 nv = newnv(name, value, NULL, 0, NULL);
979 if (ht_insert(ht, name, nv) == 0) {
980 **nppp = nv;
981 *nppp = &nv->nv_next;
982 return (0);
983 }
984
985 /* oops, already got that option */
986 nvfree(nv);
987 if ((nv = ht_lookup(ht, name)) == NULL)
988 panic("do_option");
989 if (nv->nv_str != NULL && !OPT_FSOPT(name))
990 cfgerror("already have %s `%s=%s'", type, name, nv->nv_str);
991 else
992 cfgerror("already have %s `%s'", type, name);
993 return (1);
994 }
995
996 /*
997 * Remove a name from a hash table,
998 * and optionally, a name=value pair from an option list.
999 */
1000 static int
1001 undo_option(struct hashtab *ht, struct nvlist **npp,
1002 struct nvlist ***next, const char *name, const char *type)
1003 {
1004 struct nvlist *nv;
1005
1006 if (ht_remove(ht, name)) {
1007 cfgerror("%s `%s' is not defined", type, name);
1008 return (1);
1009 }
1010 if (npp == NULL)
1011 return (0);
1012
1013 for ( ; *npp != NULL; npp = &(*npp)->nv_next) {
1014 if ((*npp)->nv_name != name)
1015 continue;
1016 if (next != NULL && *next == &(*npp)->nv_next)
1017 *next = npp;
1018 nv = (*npp)->nv_next;
1019 nvfree(*npp);
1020 *npp = nv;
1021 return (0);
1022 }
1023 panic("%s `%s' is not defined in nvlist", type, name);
1024 return (1);
1025 }
1026
1027 /*
1028 * Return true if there is at least one instance of the given unit
1029 * on the given device attachment (or any units, if unit == WILD).
1030 */
1031 int
1032 deva_has_instances(struct deva *deva, int unit)
1033 {
1034 struct devi *i;
1035
1036 for (i = deva->d_ihead; i != NULL; i = i->i_asame)
1037 if (i->i_active == DEVI_ACTIVE &&
1038 (unit == WILD || unit == i->i_unit || i->i_unit == STAR))
1039 return (1);
1040 return (0);
1041 }
1042
1043 /*
1044 * Return true if there is at least one instance of the given unit
1045 * on the given base (or any units, if unit == WILD).
1046 */
1047 int
1048 devbase_has_instances(struct devbase *dev, int unit)
1049 {
1050 struct deva *da;
1051
1052 /*
1053 * Pseudo-devices are a little special. We consider them
1054 * to have instances only if they are both:
1055 *
1056 * 1. Included in this kernel configuration.
1057 *
1058 * 2. Be declared "defpseudodev".
1059 */
1060 if (dev->d_ispseudo) {
1061 return ((ht_lookup(devitab, dev->d_name) != NULL)
1062 && (dev->d_ispseudo > 1));
1063 }
1064
1065 for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
1066 if (deva_has_instances(da, unit))
1067 return (1);
1068 return (0);
1069 }
1070
1071 static int
1072 cfcrosscheck(struct config *cf, const char *what, struct nvlist *nv)
1073 {
1074 struct devbase *dev;
1075 struct devi *pd;
1076 int errs, devunit;
1077
1078 if (maxpartitions <= 0)
1079 panic("cfcrosscheck");
1080
1081 for (errs = 0; nv != NULL; nv = nv->nv_next) {
1082 if (nv->nv_name == NULL)
1083 continue;
1084 dev = ht_lookup(devbasetab, nv->nv_name);
1085 if (dev == NULL)
1086 panic("cfcrosscheck(%s)", nv->nv_name);
1087 if (has_attr(dev->d_attrs, s_ifnet))
1088 devunit = nv->nv_ifunit; /* XXX XXX XXX */
1089 else
1090 devunit = minor((uint32_t)nv->nv_int) / maxpartitions;
1091 if (devbase_has_instances(dev, devunit))
1092 continue;
1093 if (devbase_has_instances(dev, STAR) &&
1094 devunit >= dev->d_umax)
1095 continue;
1096 TAILQ_FOREACH(pd, &allpseudo, i_next) {
1097 if (pd->i_base == dev && devunit < dev->d_umax &&
1098 devunit >= 0)
1099 goto loop;
1100 }
1101 (void)fprintf(stderr,
1102 "%s:%d: %s says %s on %s, but there's no %s\n",
1103 conffile, cf->cf_lineno,
1104 cf->cf_name, what, nv->nv_str, nv->nv_str);
1105 errs++;
1106 loop:
1107 ;
1108 }
1109 return (errs);
1110 }
1111
1112 /*
1113 * Cross-check the configuration: make sure that each target device
1114 * or attribute (`at foo[0*?]') names at least one real device. Also
1115 * see that the root and dump devices for all configurations are there.
1116 */
1117 int
1118 crosscheck(void)
1119 {
1120 struct config *cf;
1121 int errs;
1122
1123 errs = 0;
1124 if (TAILQ_EMPTY(&allcf)) {
1125 warnx("%s has no configurations!", conffile);
1126 errs++;
1127 }
1128 TAILQ_FOREACH(cf, &allcf, cf_next) {
1129 if (cf->cf_root != NULL) { /* i.e., not root on ? */
1130 errs += cfcrosscheck(cf, "root", cf->cf_root);
1131 errs += cfcrosscheck(cf, "dumps", cf->cf_dump);
1132 }
1133 }
1134 return (errs);
1135 }
1136
1137 /*
1138 * Check to see if there is a *'d unit with a needs-count file.
1139 */
1140 int
1141 badstar(void)
1142 {
1143 struct devbase *d;
1144 struct deva *da;
1145 struct devi *i;
1146 int errs, n;
1147
1148 errs = 0;
1149 TAILQ_FOREACH(d, &allbases, d_next) {
1150 for (da = d->d_ahead; da != NULL; da = da->d_bsame)
1151 for (i = da->d_ihead; i != NULL; i = i->i_asame) {
1152 if (i->i_unit == STAR)
1153 goto aybabtu;
1154 }
1155 continue;
1156 aybabtu:
1157 if (ht_lookup(needcnttab, d->d_name)) {
1158 warnx("%s's cannot be *'d until its driver is fixed",
1159 d->d_name);
1160 errs++;
1161 continue;
1162 }
1163 for (n = 0; i != NULL; i = i->i_alias)
1164 if (!i->i_collapsed)
1165 n++;
1166 if (n < 1)
1167 panic("badstar() n<1");
1168 }
1169 return (errs);
1170 }
1171
1172 /*
1173 * Verify/create builddir if necessary, change to it, and verify srcdir.
1174 * This will be called when we see the first include.
1175 */
1176 void
1177 setupdirs(void)
1178 {
1179 struct stat st;
1180
1181 /* srcdir must be specified if builddir is not specified or if
1182 * no configuration filename was specified. */
1183 if ((builddir || strcmp(defbuilddir, ".") == 0) && !srcdir) {
1184 cfgerror("source directory must be specified");
1185 exit(1);
1186 }
1187
1188 if (Lflag) {
1189 if (srcdir == NULL)
1190 srcdir = "../../..";
1191 return;
1192 }
1193
1194 if (srcdir == NULL)
1195 srcdir = "../../../..";
1196 if (builddir == NULL)
1197 builddir = defbuilddir;
1198
1199 if (stat(builddir, &st) == -1) {
1200 if (mkdir(builddir, 0777) == -1)
1201 errx(EXIT_FAILURE, "cannot create %s", builddir);
1202 } else if (!S_ISDIR(st.st_mode))
1203 errx(EXIT_FAILURE, "%s is not a directory", builddir);
1204 if (chdir(builddir) == -1)
1205 err(EXIT_FAILURE, "cannot change to %s", builddir);
1206 if (stat(srcdir, &st) == -1)
1207 err(EXIT_FAILURE, "cannot stat %s", srcdir);
1208 if (!S_ISDIR(st.st_mode))
1209 errx(EXIT_FAILURE, "%s is not a directory", srcdir);
1210 }
1211
1212 /*
1213 * Write identifier from "ident" directive into file, for
1214 * newvers.sh to pick it up.
1215 */
1216 int
1217 mkident(void)
1218 {
1219 FILE *fp;
1220 int error = 0;
1221
1222 (void)unlink("ident");
1223
1224 if (ident == NULL)
1225 return (0);
1226
1227 if ((fp = fopen("ident", "w")) == NULL) {
1228 warn("cannot write ident");
1229 return (1);
1230 }
1231 if (vflag)
1232 (void)printf("using ident '%s'\n", ident);
1233 fprintf(fp, "%s\n", ident);
1234 fflush(fp);
1235 if (ferror(fp))
1236 error = 1;
1237 (void)fclose(fp);
1238
1239 return error;
1240 }
1241
1242 void
1243 logconfig_start(void)
1244 {
1245 extern FILE *yyin;
1246 char line[1024];
1247 const char *tmpdir;
1248 struct stat st;
1249 int fd;
1250
1251 if (yyin == NULL || fstat(fileno(yyin), &st) == -1)
1252 return;
1253 cfgtime = st.st_mtime;
1254
1255 tmpdir = getenv("TMPDIR");
1256 if (tmpdir == NULL)
1257 tmpdir = "/tmp";
1258 (void)snprintf(line, sizeof(line), "%s/config.tmp.XXXXXX", tmpdir);
1259 if ((fd = mkstemp(line)) == -1 ||
1260 (cfg = fdopen(fd, "r+")) == NULL) {
1261 if (fd != -1) {
1262 (void)unlink(line);
1263 (void)close(fd);
1264 }
1265 cfg = NULL;
1266 return;
1267 }
1268 (void)unlink(line);
1269
1270 (void)fprintf(cfg, "#include <sys/cdefs.h>\n\n");
1271 (void)fprintf(cfg, "#include \"opt_config.h\"\n");
1272 (void)fprintf(cfg, "\n");
1273 (void)fprintf(cfg, "/*\n");
1274 (void)fprintf(cfg, " * Add either (or both) of\n");
1275 (void)fprintf(cfg, " *\n");
1276 (void)fprintf(cfg, " *\toptions %s\n", LOGCONFIG_LARGE);
1277 (void)fprintf(cfg, " *\toptions %s\n", LOGCONFIG_SMALL);
1278 (void)fprintf(cfg, " *\n");
1279 (void)fprintf(cfg,
1280 " * to your kernel config file to embed it in the resulting\n");
1281 (void)fprintf(cfg,
1282 " * kernel. The latter option does not include files that are\n");
1283 (void)fprintf(cfg,
1284 " * included (recursively) by your config file. The embedded\n");
1285 (void)fprintf(cfg,
1286 " * data be extracted by using the command:\n");
1287 (void)fprintf(cfg, " *\n");
1288 (void)fprintf(cfg,
1289 " *\tstrings netbsd | sed -n 's/^_CFG_//p' | unvis\n");
1290 (void)fprintf(cfg, " */\n");
1291 (void)fprintf(cfg, "\n");
1292 (void)fprintf(cfg, "#ifdef CONFIG_FILE\n");
1293 (void)fprintf(cfg, "#if defined(%s) || defined(%s)\n\n",
1294 LOGCONFIG_LARGE, LOGCONFIG_SMALL);
1295 (void)fprintf(cfg, "static const char config[] __used =\n\n");
1296
1297 (void)fprintf(cfg, "#ifdef %s\n\n", LOGCONFIG_LARGE);
1298 (void)fprintf(cfg, "\"_CFG_### START CONFIG FILE \\\"%s\\\"\\n\"\n\n",
1299 conffile);
1300 (void)fprintf(cfg, "#endif /* %s */\n\n", LOGCONFIG_LARGE);
1301
1302 logconfig_include(yyin, NULL);
1303
1304 (void)fprintf(cfg, "#ifdef %s\n\n", LOGCONFIG_LARGE);
1305 (void)fprintf(cfg, "\"_CFG_### END CONFIG FILE \\\"%s\\\"\\n\"\n",
1306 conffile);
1307
1308 rewind(yyin);
1309 }
1310
1311 void
1312 logconfig_include(FILE *cf, const char *filename)
1313 {
1314 char line[1024], in[2048], *out;
1315 struct stat st;
1316 int missingeol;
1317
1318 if (!cfg)
1319 return;
1320
1321 missingeol = 0;
1322 if (fstat(fileno(cf), &st) == -1)
1323 return;
1324 if (cfgtime < st.st_mtime)
1325 cfgtime = st.st_mtime;
1326
1327 if (filename)
1328 (void)fprintf(cfg,
1329 "\"_CFG_### (included from \\\"%s\\\")\\n\"\n",
1330 filename);
1331 while (fgets(line, sizeof(line), cf) != NULL) {
1332 missingeol = 1;
1333 (void)fprintf(cfg, "\"_CFG_");
1334 if (filename)
1335 (void)fprintf(cfg, "###> ");
1336 strvis(in, line, VIS_TAB);
1337 for (out = in; *out; out++)
1338 switch (*out) {
1339 case '\n':
1340 (void)fprintf(cfg, "\\n\"\n");
1341 missingeol = 0;
1342 break;
1343 case '"': case '\\':
1344 (void)fputc('\\', cfg);
1345 /* FALLTHROUGH */
1346 default:
1347 (void)fputc(*out, cfg);
1348 break;
1349 }
1350 }
1351 if (missingeol) {
1352 (void)fprintf(cfg, "\\n\"\n");
1353 warnx("%s: newline missing at EOF",
1354 filename != NULL ? filename : conffile);
1355 }
1356 if (filename)
1357 (void)fprintf(cfg, "\"_CFG_### (end include \\\"%s\\\")\\n\"\n",
1358 filename);
1359
1360 rewind(cf);
1361 }
1362
1363 void
1364 logconfig_end(void)
1365 {
1366 char line[1024];
1367 FILE *fp;
1368 struct stat st;
1369
1370 if (!cfg)
1371 return;
1372
1373 (void)fprintf(cfg, "#endif /* %s */\n", LOGCONFIG_LARGE);
1374 (void)fprintf(cfg, ";\n");
1375 (void)fprintf(cfg, "#endif /* %s || %s */\n",
1376 LOGCONFIG_LARGE, LOGCONFIG_SMALL);
1377 (void)fprintf(cfg, "#endif /* CONFIG_FILE */\n");
1378 fflush(cfg);
1379 if (ferror(cfg))
1380 err(EXIT_FAILURE, "write to temporary file for config.h failed");
1381 rewind(cfg);
1382
1383 if (stat("config_file.h", &st) != -1) {
1384 if (cfgtime < st.st_mtime) {
1385 fclose(cfg);
1386 return;
1387 }
1388 }
1389
1390 fp = fopen("config_file.h", "w");
1391 if (!fp)
1392 err(EXIT_FAILURE, "cannot open \"config.h\"");
1393
1394 while (fgets(line, sizeof(line), cfg) != NULL)
1395 fputs(line, fp);
1396 fflush(fp);
1397 if (ferror(fp))
1398 err(EXIT_FAILURE, "write to \"config.h\" failed");
1399 fclose(fp);
1400 fclose(cfg);
1401 }
1402
1403 static const char *
1404 strtolower(const char *name)
1405 {
1406 const char *n;
1407 char *p, low[500];
1408 unsigned char c;
1409
1410 for (n = name, p = low; (c = *n) != '\0'; n++)
1411 *p++ = isupper(c) ? tolower(c) : c;
1412 *p = 0;
1413 return (intern(low));
1414 }
1415
1416 static int
1417 is_elf(const char *file)
1418 {
1419 int kernel;
1420 char hdr[4];
1421
1422 kernel = open(file, O_RDONLY);
1423 if (kernel == -1)
1424 err(EXIT_FAILURE, "cannot open %s", file);
1425 if (read(kernel, hdr, 4) != 4)
1426 err(EXIT_FAILURE, "Cannot read from %s", file);
1427 (void)close(kernel);
1428
1429 return memcmp("\177ELF", hdr, 4) == 0 ? 1 : 0;
1430 }
1431
1432 static int
1433 extract_config(const char *kname, const char *cname, int cfd)
1434 {
1435 char *ptr;
1436 int found, kfd, i;
1437 struct stat st;
1438
1439 found = 0;
1440
1441 /* mmap(2) binary kernel */
1442 kfd = open(conffile, O_RDONLY);
1443 if (kfd == -1)
1444 err(EXIT_FAILURE, "cannot open %s", kname);
1445 if (fstat(kfd, &st) == -1)
1446 err(EXIT_FAILURE, "cannot stat %s", kname);
1447 ptr = mmap(0, st.st_size, PROT_READ, MAP_FILE | MAP_SHARED,
1448 kfd, 0);
1449 if (ptr == MAP_FAILED)
1450 err(EXIT_FAILURE, "cannot mmap %s", kname);
1451
1452 /* Scan mmap(2)'ed region, extracting kernel configuration */
1453 for (i = 0; i < st.st_size; i++) {
1454 if ((*ptr == '_') && (st.st_size - i > 5) && memcmp(ptr,
1455 "_CFG_", 5) == 0) {
1456 /* Line found */
1457 char *oldptr, line[LINE_MAX + 1], uline[LINE_MAX + 1];
1458 int j;
1459
1460 found = 1;
1461
1462 oldptr = (ptr += 5);
1463 while (*ptr != '\n' && *ptr != '\0')
1464 ptr++;
1465 if (ptr - oldptr > LINE_MAX)
1466 errx(EXIT_FAILURE, "line too long");
1467 i += ptr - oldptr + 5;
1468 (void)memcpy(line, oldptr, (size_t)(ptr - oldptr));
1469 line[ptr - oldptr] = '\0';
1470 j = strunvis(uline, line);
1471 if (j == -1)
1472 errx(EXIT_FAILURE, "unvis: invalid "
1473 "encoded sequence");
1474 uline[j] = '\n';
1475 if (write(cfd, uline, (size_t)j + 1) == -1)
1476 err(EXIT_FAILURE, "cannot write to %s", cname);
1477 } else
1478 ptr++;
1479 }
1480
1481 (void)close(kfd);
1482
1483 return found;
1484 }
1485
1486 struct dhdi_params {
1487 struct devbase *d;
1488 int unit;
1489 int level;
1490 };
1491
1492 static int
1493 devbase_has_dead_instances(const char *key, void *value, void *aux)
1494 {
1495 struct devi *i;
1496 struct dhdi_params *dhdi = aux;
1497
1498 for (i = value; i != NULL; i = i->i_alias)
1499 if (i->i_base == dhdi->d &&
1500 (dhdi->unit == WILD || dhdi->unit == i->i_unit ||
1501 i->i_unit == STAR) &&
1502 i->i_level >= dhdi->level)
1503 return 1;
1504 return 0;
1505 }
1506
1507 /*
1508 * This is almost the same as devbase_has_instances, except it
1509 * may have special considerations regarding ignored instances.
1510 */
1511
1512 static int
1513 devbase_has_any_instance(struct devbase *dev, int unit, int state, int level)
1514 {
1515 struct deva *da;
1516 struct devi *i;
1517
1518 if (dev->d_ispseudo) {
1519 if (dev->d_ihead != NULL)
1520 return 1;
1521 else if (state != DEVI_IGNORED)
1522 return 0;
1523 if ((i = ht_lookup(deaddevitab, dev->d_name)) == NULL)
1524 return 0;
1525 return (i->i_level >= level);
1526 }
1527
1528 for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
1529 for (i = da->d_ihead; i != NULL; i = i->i_asame)
1530 if ((i->i_active == DEVI_ACTIVE ||
1531 i->i_active == state) &&
1532 (unit == WILD || unit == i->i_unit ||
1533 i->i_unit == STAR))
1534 return 1;
1535
1536 if (state == DEVI_IGNORED) {
1537 struct dhdi_params dhdi = { dev, unit, level };
1538 /* also check dead devices */
1539 return ht_enumerate(deaddevitab, devbase_has_dead_instances,
1540 &dhdi);
1541 }
1542
1543 return 0;
1544 }
1545
1546 /*
1547 * check_dead_devi(), used with ht_enumerate, checks if any of the removed
1548 * device instances would have been a valid instance considering the devbase,
1549 * the parent device and the interface attribute.
1550 *
1551 * In other words, for a non-active device, it checks if children would be
1552 * actual orphans or the result of a negative statement in the config file.
1553 */
1554
1555 struct cdd_params {
1556 struct devbase *d;
1557 struct attr *at;
1558 struct devbase *parent;
1559 };
1560
1561 static int
1562 check_dead_devi(const char *key, void *value, void *aux)
1563 {
1564 struct cdd_params *cdd = aux;
1565 struct devi *i = value;
1566 struct pspec *p;
1567
1568 if (i->i_base != cdd->d)
1569 return 0;
1570
1571 for (; i != NULL; i = i->i_alias) {
1572 p = i->i_pspec;
1573 if ((p == NULL && cdd->at == NULL) ||
1574 (p != NULL && p->p_iattr == cdd->at &&
1575 (p->p_atdev == NULL || p->p_atdev == cdd->parent))) {
1576 if (p != NULL &&
1577 !devbase_has_any_instance(cdd->parent, p->p_atunit,
1578 DEVI_IGNORED, i->i_level))
1579 return 0;
1580 else
1581 return 1;
1582 }
1583 }
1584 return 0;
1585 }
1586
1587 static void
1588 do_kill_orphans(struct devbase *d, struct attr *at, struct devbase *parent,
1589 int state)
1590 {
1591 struct nvlist *nv, *nv1;
1592 struct attr *a;
1593 struct devi *i, *j = NULL;
1594 struct pspec *p;
1595 int active = 0;
1596
1597 /*
1598 * A pseudo-device will always attach at root, and if it has an
1599 * instance (it cannot have more than one), it is enough to consider
1600 * it active, as there is no real attachment.
1601 *
1602 * A pseudo device can never be marked DEVI_IGNORED.
1603 */
1604 if (d->d_ispseudo) {
1605 if (d->d_ihead != NULL)
1606 d->d_ihead->i_active = active = DEVI_ACTIVE;
1607 else {
1608 if (ht_lookup(deaddevitab, d->d_name) != NULL)
1609 active = DEVI_IGNORED;
1610 else
1611 return;
1612 }
1613 } else {
1614 int seen = 0;
1615
1616 for (i = d->d_ihead; i != NULL; i = i->i_bsame) {
1617 for (j = i; j != NULL; j = j->i_alias) {
1618 p = j->i_pspec;
1619 if ((p == NULL && at == NULL) ||
1620 (p != NULL && p->p_iattr == at &&
1621 (p->p_atdev == NULL ||
1622 p->p_atdev == parent))) {
1623 if (p != NULL &&
1624 !devbase_has_any_instance(parent,
1625 p->p_atunit, state, j->i_level))
1626 continue;
1627 /*
1628 * There are Fry-like devices which can
1629 * be their own grand-parent (or even
1630 * parent, like uhub). We don't want
1631 * to loop, so if we've already reached
1632 * an instance for one reason or
1633 * another, stop there.
1634 */
1635 if (j->i_active == DEVI_ACTIVE ||
1636 j->i_active == state) {
1637 /*
1638 * Device has already been
1639 * seen. However it might
1640 * have siblings who still
1641 * have to be activated or
1642 * orphaned.
1643 */
1644 seen = 1;
1645 continue;
1646 }
1647 j->i_active = active = state;
1648 if (p != NULL)
1649 p->p_active = state;
1650 }
1651 }
1652 }
1653 /*
1654 * If we've been there but have made no change, stop.
1655 */
1656 if (seen && !active)
1657 return;
1658 if (!active) {
1659 struct cdd_params cdd = { d, at, parent };
1660 /* Look for a matching dead devi */
1661 if (ht_enumerate(deaddevitab, check_dead_devi, &cdd) &&
1662 d != parent)
1663 /*
1664 * That device had its instances removed.
1665 * Continue the loop marking descendants
1666 * with DEVI_IGNORED instead of DEVI_ACTIVE.
1667 *
1668 * There is one special case for devices that
1669 * are their own parent: if that instance is
1670 * removed (e.g., no uhub* at uhub?), we don't
1671 * have to continue looping.
1672 */
1673 active = DEVI_IGNORED;
1674 else
1675 return;
1676 }
1677 }
1678
1679 for (nv = d->d_attrs; nv != NULL; nv = nv->nv_next) {
1680 a = nv->nv_ptr;
1681 for (nv1 = a->a_devs; nv1 != NULL; nv1 = nv1->nv_next)
1682 do_kill_orphans(nv1->nv_ptr, a, d, active);
1683 }
1684 }
1685
1686 static int
1687 /*ARGSUSED*/
1688 kill_orphans_cb(const char *key, void *value, void *aux)
1689 {
1690 do_kill_orphans((struct devbase *)value, NULL, NULL, DEVI_ACTIVE);
1691 return 0;
1692 }
1693
1694 static void
1695 kill_orphans(void)
1696 {
1697 ht_enumerate(devroottab, kill_orphans_cb, NULL);
1698 }
1699