#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <sys/cdefs.h>
__RCSID("$NetBSD: mkheaders.c,v 1.31 2026/03/13 21:13:46 andvar Exp $");
#include <sys/param.h>
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <util.h>
#include <err.h>
#include "defs.h"
#include <crc_extern.h>
static int emitcnt(struct nvlist *);
static int emitopts(void);
static int emittime(void);
static int herr(const char *, const char *, FILE *);
static int defopts_print(const char *, struct defoptlist *, void *);
static char *cntname(const char *);
#define UNDEFINED ('n' << 24 | 0 << 20 | 't' << 12 | 0xdefU)
#define DEFINED (0xdef1U << 16 | 'n' << 8 | 0xed)
int
mkheaders(void)
{
struct files *fi;
TAILQ_FOREACH(fi, &allfiles, fi_next) {
if (fi->fi_flags & FI_HIDDEN)
continue;
if (fi->fi_flags & (FI_NEEDSCOUNT | FI_NEEDSFLAG) &&
emitcnt(fi->fi_optf))
return (1);
}
if (emitopts() || emitlocs() || emitioconfh())
return (1);
if (version <= 20090513 && emittime())
return (1);
return (0);
}
static void
fprint_global(FILE *fp, const char *name, long long value)
{
fprintf(fp, "#ifdef _LOCORE\n"
" .ifndef _KERNEL_OPT_%s\n"
" .global _KERNEL_OPT_%s\n"
" .equiv _KERNEL_OPT_%s,0x%llx\n"
" .endif\n"
"#else\n"
"__asm(\" .ifndef _KERNEL_OPT_%s\\n"
" .global _KERNEL_OPT_%s\\n"
" .equiv _KERNEL_OPT_%s,0x%llx\\n"
" .endif\");\n"
"#endif\n",
name, name, name, value,
name, name, name, value);
}
static unsigned int
global_hash(const char *str)
{
unsigned long h;
char *ep;
h = strtoul(str, &ep, 0);
if (*ep != 0)
h = crc_buf(0, str, strlen(str));
return (unsigned int)(h != UNDEFINED ? h : DEFINED);
}
static void
fprintcnt(FILE *fp, struct nvlist *nv)
{
const char *name = cntname(nv->nv_name);
fprintf(fp, "#define\t%s\t%lld\n", name, nv->nv_num);
fprint_global(fp, name, nv->nv_num);
}
static int
emitcnt(struct nvlist *head)
{
char nfname[BUFSIZ], tfname[BUFSIZ];
struct nvlist *nv;
FILE *fp;
(void)snprintf(nfname, sizeof(nfname), "%s.h", head->nv_name);
(void)snprintf(tfname, sizeof(tfname), "tmp_%s", nfname);
if ((fp = fopen(tfname, "w")) == NULL)
return (herr("open", tfname, NULL));
for (nv = head; nv != NULL; nv = nv->nv_next)
fprintcnt(fp, nv);
fflush(fp);
if (ferror(fp))
return herr("writ", tfname, fp);
if (fclose(fp) == EOF)
return (herr("clos", tfname, NULL));
return (moveifchanged(tfname, nfname));
}
static void
fprintstr(FILE *fp, const char *str)
{
if (strncmp(str, "\\\"", 2) != 0) {
(void)fprintf(fp, "\t%s", str);
return;
}
(void)fputc('\t', fp);
for (; *str; str++) {
switch (*str) {
case '\\':
if (!*++str)
str--;
default:
(void)fputc(*str, fp);
break;
}
}
}
static int
defopts_print(const char *name, struct defoptlist *value, void *arg)
{
char tfname[BUFSIZ];
struct nvlist *option;
struct defoptlist *dl;
const char *opt_value;
int isfsoption;
FILE *fp;
(void)snprintf(tfname, sizeof(tfname), "tmp_%s", name);
if ((fp = fopen(tfname, "w")) == NULL)
return (herr("open", tfname, NULL));
for (dl = value; dl != NULL; dl = dl->dl_next) {
isfsoption = OPT_FSOPT(dl->dl_name);
if (dl->dl_obsolete) {
fprintf(fp, "/* %s `%s' is obsolete */\n",
isfsoption ? "file system" : "option",
dl->dl_name);
fprint_global(fp, dl->dl_name, 0xdeadbeef);
continue;
}
if (((option = ht_lookup(opttab, dl->dl_name)) == NULL &&
(option = ht_lookup(fsopttab, dl->dl_name)) == NULL) &&
(dl->dl_value == NULL)) {
fprintf(fp, "/* %s `%s' not defined */\n",
isfsoption ? "file system" : "option",
dl->dl_name);
fprint_global(fp, dl->dl_name, UNDEFINED);
continue;
}
opt_value = option != NULL ? option->nv_str : dl->dl_value;
if (isfsoption == 1)
opt_value = NULL;
fprintf(fp, "#define\t%s", dl->dl_name);
if (opt_value != NULL)
fprintstr(fp, opt_value);
else if (!isfsoption)
fprintstr(fp, "1");
fputc('\n', fp);
fprint_global(fp, dl->dl_name,
opt_value == NULL ? 1 : global_hash(opt_value));
}
fflush(fp);
if (ferror(fp))
return herr("writ", tfname, fp);
if (fclose(fp) == EOF)
return (herr("clos", tfname, NULL));
return (moveifchanged(tfname, name));
}
static int
emitopts(void)
{
return (dlhash_enumerate(optfiletab, defopts_print, NULL));
}
static int
locators_print(const char *name, void *value, void *arg)
{
struct attr *a;
struct loclist *ll;
int i;
char *locdup, *namedup;
char *cp;
FILE *fp = arg;
a = value;
if (a->a_locs) {
if (strchr(name, ' ') != NULL || strchr(name, '\t') != NULL)
return 0;
locdup = estrdup(name);
for (cp = locdup; *cp; cp++)
if (islower((unsigned char)*cp))
*cp = (char)toupper((unsigned char)*cp);
for (i = 0, ll = a->a_locs; ll; ll = ll->ll_next, i++) {
if (strchr(ll->ll_name, ' ') != NULL ||
strchr(ll->ll_name, '\t') != NULL)
continue;
namedup = estrdup(ll->ll_name);
for (cp = namedup; *cp; cp++)
if (islower((unsigned char)*cp))
*cp = (char)toupper((unsigned char)*cp);
else if (*cp == ARRCHR)
*cp = '_';
fprintf(fp, "#define %sCF_%s %d\n", locdup, namedup, i);
if (ll->ll_string != NULL)
fprintf(fp, "#define %sCF_%s_DEFAULT %s\n",
locdup, namedup, ll->ll_string);
free(namedup);
}
fprintf(fp, "#define %sCF_NLOCS %d\n", locdup, a->a_loclen);
free(locdup);
}
return 0;
}
int
emitlocs(void)
{
const char *tfname;
int rval;
FILE *tfp;
tfname = "tmp_locators.h";
if ((tfp = fopen(tfname, "w")) == NULL)
return (herr("open", tfname, NULL));
rval = ht_enumerate(attrtab, locators_print, tfp);
fflush(tfp);
if (ferror(tfp))
return (herr("writ", tfname, NULL));
if (fclose(tfp) == EOF)
return (herr("clos", tfname, NULL));
if (rval)
return (rval);
return (moveifchanged(tfname, "locators.h"));
}
int
emitioconfh(void)
{
const char *tfname;
FILE *tfp;
struct devbase *d;
struct devi *i;
tfname = "tmp_ioconf.h";
if ((tfp = fopen(tfname, "w")) == NULL)
return (herr("open", tfname, NULL));
fputs("\n/* pseudo-devices */\n", tfp);
TAILQ_FOREACH(i, &allpseudo, i_next) {
fprintf(tfp, "void %sattach(int);\n",
i->i_base->d_name);
}
fputs("\n/* driver structs */\n", tfp);
TAILQ_FOREACH(d, &allbases, d_next) {
if (!devbase_has_instances(d, WILD))
continue;
fprintf(tfp, "extern struct cfdriver %s_cd;\n", d->d_name);
}
fflush(tfp);
if (ferror(tfp))
return herr("writ", tfname, tfp);
if (fclose(tfp) == EOF)
return (herr("clos", tfname, NULL));
return (moveifchanged(tfname, "ioconf.h"));
}
static int
emittime(void)
{
FILE *fp;
time_t t;
struct tm *tm;
char buf[128];
t = time(NULL);
tm = gmtime(&t);
if ((fp = fopen("config_time.src", "w")) == NULL)
return (herr("open", "config_time.src", NULL));
if (strftime(buf, sizeof(buf), "%c %Z", tm) == 0)
return (herr("strftime", "config_time.src", fp));
fprintf(fp, "/* %s */\n"
"#define CONFIG_TIME\t%2lld\n"
"#define CONFIG_YEAR\t%2d\n"
"#define CONFIG_MONTH\t%2d\n"
"#define CONFIG_DATE\t%2d\n"
"#define CONFIG_HOUR\t%2d\n"
"#define CONFIG_MINS\t%2d\n"
"#define CONFIG_SECS\t%2d\n",
buf, (long long)t,
tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec);
fflush(fp);
if (ferror(fp))
return (herr("fprintf", "config_time.src", fp));
if (fclose(fp) != 0)
return (herr("clos", "config_time.src", NULL));
return (0);
}
int
moveifchanged(const char *tfname, const char *nfname)
{
char tbuf[BUFSIZ], nbuf[BUFSIZ];
FILE *tfp, *nfp;
if ((tfp = fopen(tfname, "r")) == NULL)
return (herr("open", tfname, NULL));
if ((nfp = fopen(nfname, "r")) == NULL)
goto moveit;
while (fgets(tbuf, sizeof(tbuf), tfp) != NULL) {
if (fgets(nbuf, sizeof(nbuf), nfp) == NULL) {
goto moveit;
}
if (strcmp(tbuf, nbuf) != 0)
goto moveit;
}
if (fgets(nbuf, sizeof(nbuf), nfp) != NULL) {
goto moveit;
}
(void) fclose(nfp);
(void) fclose(tfp);
if (remove(tfname) == -1)
return(herr("remov", tfname, NULL));
return (0);
moveit:
if (nfp)
(void) fclose(nfp);
if (tfp)
(void) fclose(tfp);
if (rename(tfname, nfname) == -1)
return (herr("renam", tfname, NULL));
return (0);
}
static int
herr(const char *what, const char *fname, FILE *fp)
{
warn("error %sing %s", what, fname);
if (fp)
(void)fclose(fp);
return (1);
}
static char *
cntname(const char *src)
{
char *dst;
char c;
static char buf[100];
dst = buf;
*dst++ = 'N';
while ((c = *src++) != 0)
*dst++ = (char)(islower((u_char)c) ? toupper((u_char)c) : c);
*dst = 0;
return (buf);
}