2 * Copyright (c) 1980, 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
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
33 * @(#)mkheaders.c 8.1 (Berkeley) 6/6/93
34 * $FreeBSD: src/usr.sbin/config/mkheaders.c,v 1.14.2.2 2001/01/23 00:09:32 peter Exp $
35 * $DragonFly: src/usr.sbin/config/mkheaders.c,v 1.13 2005/01/12 00:26:03 cpressey Exp $
39 * Make all the .h files for the optional entries
46 #include <sys/param.h>
50 static void do_header(const char *, char *, int);
51 static void do_count(const char *, char *, int);
52 static char *toheader(const char *);
53 static char *tomacro(const char *);
61 for (fl
= ftab
; fl
!= NULL
; fl
= fl
->f_next
)
62 if (fl
->f_needs
!= NULL
)
63 do_count(fl
->f_needs
, fl
->f_needs
, 1);
64 for (dp
= dtab
; dp
!= NULL
; dp
= dp
->d_next
) {
65 if ((dp
->d_type
& TYPEMASK
) == PSEUDO_DEVICE
) {
66 if (!(dp
->d_type
& DEVDONE
)) {
67 printf("Warning: pseudo-device \"%s\" is unknown\n",
72 if ((dp
->d_type
& TYPEMASK
) == DEVICE
) {
73 if (!(dp
->d_type
& DEVDONE
)) {
74 printf("Warning: device \"%s\" is unknown\n",
83 * count all the devices of a certain type and recurse to count
84 * whatever the device is connected to
87 do_count(const char *dev
, char *hname
, int search
)
94 * After this loop, "count" will be the actual number of units,
95 * and "hicount" will be the highest unit declared. do_header()
96 * must use the higher of these values.
98 for (dp
= dtab
; dp
!= NULL
; dp
= dp
->d_next
) {
99 if (strcmp(dp
->d_name
, dev
) == 0) {
100 if ((dp
->d_type
& TYPEMASK
) == PSEUDO_DEVICE
)
101 dp
->d_type
|= DEVDONE
;
102 else if ((dp
->d_type
& TYPEMASK
) == DEVICE
)
103 dp
->d_type
|= DEVDONE
;
106 for (hicount
= count
= 0, dp
= dtab
; dp
!= NULL
; dp
= dp
->d_next
) {
107 if (dp
->d_unit
!= -1 && strcmp(dp
->d_name
, dev
) == 0) {
108 if ((dp
->d_type
& TYPEMASK
) == PSEUDO_DEVICE
) {
110 dp
->d_count
!= UNKNOWN
? dp
->d_count
: 1;
115 * Allow holes in unit numbering,
116 * assumption is unit numbering starts
119 if (dp
->d_unit
+ 1 > hicount
)
120 hicount
= dp
->d_unit
+ 1;
123 if (mp
!= NULL
&& dp
->d_connunit
< 0)
125 if (mp
!= NULL
&& strcmp(mp
, "nexus") == 0)
128 do_count(mp
, hname
, 0);
134 do_header(dev
, hname
, count
> hicount
? count
: hicount
);
138 do_header(const char *dev
, char *hname
, int count
)
140 char *file
, *name
, *inw
;
141 struct file_list
*fl
, *fl_head
, *tflp
;
145 file
= toheader(hname
);
147 inf
= fopen(file
, "r");
150 outf
= fopen(file
, "w");
153 fprintf(outf
, "#define %s %d\n", name
, count
);
160 if ((inw
= get_word(inf
)) == NULL
|| inw
== (char *)EOF
)
162 if ((inw
= get_word(inf
)) == NULL
|| inw
== (char *)EOF
)
166 if (cp
== NULL
|| cp
== (char *)EOF
)
169 if (strcmp(inw
, name
) == 0) {
174 if (cp
== (char *)EOF
)
176 fl
= malloc(sizeof(*fl
));
177 bzero(fl
, sizeof(*fl
));
178 fl
->f_fn
= inw
; /* malloced */
180 fl
->f_next
= fl_head
;
184 if (count
== oldcount
) {
185 for (fl
= fl_head
; fl
!= NULL
; fl
= tflp
) {
192 if (oldcount
== -1) {
193 fl
= malloc(sizeof(*fl
));
194 bzero(fl
, sizeof(*fl
));
195 fl
->f_fn
= strdup(name
);
197 fl
->f_next
= fl_head
;
200 outf
= fopen(file
, "w");
203 for (fl
= fl_head
; fl
!= NULL
; fl
= tflp
) {
205 "#define %s %u\n", fl
->f_fn
, count
? fl
->f_type
: 0);
214 * convert a dev name to a .h file name
217 toheader(const char *dev
)
219 static char hbuf
[MAXPATHLEN
];
220 static char udev
[MAXPATHLEN
];
222 snprintf(udev
, sizeof(udev
), "use_%s", dev
);
224 snprintf(hbuf
, sizeof(hbuf
), "%s.h", path(udev
));
229 * convert a dev name to a macro name
232 tomacro(const char *dev
)
234 static char mbuf
[20];
240 *cp
++ = islower(*dev
) ? toupper(*dev
++) : *dev
++;