2018-12-18 12:13:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
|
|
|
|
*/
|
|
|
|
|
2019-05-10 06:12:05 +00:00
|
|
|
#include <sys/mman.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <sys/stat.h>
|
2020-11-23 09:38:18 +00:00
|
|
|
#include <sys/types.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <ctype.h>
|
2010-08-17 05:40:20 +00:00
|
|
|
#include <errno.h>
|
2006-06-09 05:12:42 +00:00
|
|
|
#include <fcntl.h>
|
2018-12-21 08:33:04 +00:00
|
|
|
#include <limits.h>
|
2011-06-01 20:00:46 +00:00
|
|
|
#include <stdarg.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "lkc.h"
|
|
|
|
|
2018-07-20 07:46:27 +00:00
|
|
|
/* return true if 'path' exists, false otherwise */
|
|
|
|
static bool is_present(const char *path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
return !stat(path, &st);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return true if 'path' exists and it is a directory, false otherwise */
|
|
|
|
static bool is_dir(const char *path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(path, &st))
|
2021-03-15 06:55:44 +00:00
|
|
|
return false;
|
2018-07-20 07:46:27 +00:00
|
|
|
|
|
|
|
return S_ISDIR(st.st_mode);
|
|
|
|
}
|
|
|
|
|
2019-05-10 06:12:05 +00:00
|
|
|
/* return true if the given two files are the same, false otherwise */
|
|
|
|
static bool is_same(const char *file1, const char *file2)
|
|
|
|
{
|
|
|
|
int fd1, fd2;
|
|
|
|
struct stat st1, st2;
|
|
|
|
void *map1, *map2;
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
fd1 = open(file1, O_RDONLY);
|
|
|
|
if (fd1 < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
fd2 = open(file2, O_RDONLY);
|
|
|
|
if (fd2 < 0)
|
|
|
|
goto close1;
|
|
|
|
|
|
|
|
ret = fstat(fd1, &st1);
|
|
|
|
if (ret)
|
|
|
|
goto close2;
|
|
|
|
ret = fstat(fd2, &st2);
|
|
|
|
if (ret)
|
|
|
|
goto close2;
|
|
|
|
|
|
|
|
if (st1.st_size != st2.st_size)
|
|
|
|
goto close2;
|
|
|
|
|
|
|
|
map1 = mmap(NULL, st1.st_size, PROT_READ, MAP_PRIVATE, fd1, 0);
|
|
|
|
if (map1 == MAP_FAILED)
|
|
|
|
goto close2;
|
|
|
|
|
|
|
|
map2 = mmap(NULL, st2.st_size, PROT_READ, MAP_PRIVATE, fd2, 0);
|
|
|
|
if (map2 == MAP_FAILED)
|
|
|
|
goto close2;
|
|
|
|
|
|
|
|
if (bcmp(map1, map2, st1.st_size))
|
|
|
|
goto close2;
|
|
|
|
|
|
|
|
ret = true;
|
|
|
|
close2:
|
|
|
|
close(fd2);
|
|
|
|
close1:
|
|
|
|
close(fd1);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-07-20 07:46:27 +00:00
|
|
|
/*
|
|
|
|
* Create the parent directory of the given path.
|
|
|
|
*
|
|
|
|
* For example, if 'include/config/auto.conf' is given, create 'include/config'.
|
|
|
|
*/
|
|
|
|
static int make_parent_dir(const char *path)
|
|
|
|
{
|
|
|
|
char tmp[PATH_MAX + 1];
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
strncpy(tmp, path, sizeof(tmp));
|
|
|
|
tmp[sizeof(tmp) - 1] = 0;
|
|
|
|
|
|
|
|
/* Remove the base name. Just return if nothing is left */
|
|
|
|
p = strrchr(tmp, '/');
|
|
|
|
if (!p)
|
|
|
|
return 0;
|
|
|
|
*(p + 1) = 0;
|
|
|
|
|
|
|
|
/* Just in case it is an absolute path */
|
|
|
|
p = tmp;
|
|
|
|
while (*p == '/')
|
|
|
|
p++;
|
|
|
|
|
|
|
|
while ((p = strchr(p, '/'))) {
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
/* skip if the directory exists */
|
|
|
|
if (!is_dir(tmp) && mkdir(tmp, 0755))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*p = '/';
|
|
|
|
while (*p == '/')
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-30 09:15:50 +00:00
|
|
|
static char depfile_path[PATH_MAX];
|
|
|
|
static size_t depfile_prefix_len;
|
|
|
|
|
|
|
|
/* touch depfile for symbol 'name' */
|
|
|
|
static int conf_touch_dep(const char *name)
|
|
|
|
{
|
|
|
|
int fd, ret;
|
2021-04-15 17:36:07 +00:00
|
|
|
char *d;
|
2018-11-30 09:15:50 +00:00
|
|
|
|
2021-04-15 17:36:07 +00:00
|
|
|
/* check overflow: prefix + name + '\0' must fit in buffer. */
|
|
|
|
if (depfile_prefix_len + strlen(name) + 1 > sizeof(depfile_path))
|
2018-11-30 09:15:50 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
d = depfile_path + depfile_prefix_len;
|
2021-04-15 17:36:07 +00:00
|
|
|
strcpy(d, name);
|
2018-11-30 09:15:50 +00:00
|
|
|
|
|
|
|
/* Assume directory path already exists. */
|
|
|
|
fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
|
|
|
|
if (fd == -1) {
|
|
|
|
if (errno != ENOENT)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ret = make_parent_dir(depfile_path);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Try it again. */
|
|
|
|
fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
|
|
|
|
if (fd == -1)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-24 15:37:13 +00:00
|
|
|
struct conf_printer {
|
|
|
|
void (*print_symbol)(FILE *, struct symbol *, const char *, void *);
|
|
|
|
};
|
|
|
|
|
2005-11-09 05:34:54 +00:00
|
|
|
static void conf_warning(const char *fmt, ...)
|
|
|
|
__attribute__ ((format (printf, 1, 2)));
|
|
|
|
|
2010-08-17 08:21:19 +00:00
|
|
|
static void conf_message(const char *fmt, ...)
|
|
|
|
__attribute__ ((format (printf, 1, 2)));
|
|
|
|
|
2005-11-09 05:34:54 +00:00
|
|
|
static const char *conf_filename;
|
2018-01-11 13:39:41 +00:00
|
|
|
static int conf_lineno, conf_warnings;
|
2005-11-09 05:34:54 +00:00
|
|
|
|
|
|
|
static void conf_warning(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
va_end(ap);
|
|
|
|
conf_warnings++;
|
|
|
|
}
|
|
|
|
|
2018-07-05 02:46:12 +00:00
|
|
|
static void conf_default_message_callback(const char *s)
|
2010-08-17 08:21:19 +00:00
|
|
|
{
|
|
|
|
printf("#\n# ");
|
2018-07-05 02:46:12 +00:00
|
|
|
printf("%s", s);
|
2010-08-17 08:21:19 +00:00
|
|
|
printf("\n#\n");
|
|
|
|
}
|
|
|
|
|
2018-07-05 02:46:12 +00:00
|
|
|
static void (*conf_message_callback)(const char *s) =
|
2010-08-17 08:21:19 +00:00
|
|
|
conf_default_message_callback;
|
2018-07-05 02:46:12 +00:00
|
|
|
void conf_set_message_callback(void (*fn)(const char *s))
|
2010-08-17 08:21:19 +00:00
|
|
|
{
|
|
|
|
conf_message_callback = fn;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void conf_message(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
2018-07-05 02:46:12 +00:00
|
|
|
char buf[4096];
|
|
|
|
|
|
|
|
if (!conf_message_callback)
|
|
|
|
return;
|
2010-08-17 08:21:19 +00:00
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2018-07-05 02:46:12 +00:00
|
|
|
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
|
|
|
conf_message_callback(buf);
|
2015-01-12 13:18:26 +00:00
|
|
|
va_end(ap);
|
2010-08-17 08:21:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-09 05:12:51 +00:00
|
|
|
const char *conf_get_configname(void)
|
|
|
|
{
|
|
|
|
char *name = getenv("KCONFIG_CONFIG");
|
|
|
|
|
|
|
|
return name ? name : ".config";
|
|
|
|
}
|
|
|
|
|
2019-05-12 16:00:53 +00:00
|
|
|
static const char *conf_get_autoconfig_name(void)
|
2009-05-17 23:36:54 +00:00
|
|
|
{
|
|
|
|
char *name = getenv("KCONFIG_AUTOCONFIG");
|
|
|
|
|
|
|
|
return name ? name : "include/config/auto.conf";
|
|
|
|
}
|
|
|
|
|
2007-11-10 19:01:56 +00:00
|
|
|
static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
|
|
|
|
{
|
|
|
|
char *p2;
|
|
|
|
|
|
|
|
switch (sym->type) {
|
|
|
|
case S_TRISTATE:
|
|
|
|
if (p[0] == 'm') {
|
|
|
|
sym->def[def].tri = mod;
|
|
|
|
sym->flags |= def_flags;
|
|
|
|
break;
|
|
|
|
}
|
2011-05-31 16:30:26 +00:00
|
|
|
/* fall through */
|
2007-11-10 19:01:56 +00:00
|
|
|
case S_BOOLEAN:
|
|
|
|
if (p[0] == 'y') {
|
|
|
|
sym->def[def].tri = yes;
|
|
|
|
sym->flags |= def_flags;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (p[0] == 'n') {
|
|
|
|
sym->def[def].tri = no;
|
|
|
|
sym->flags |= def_flags;
|
|
|
|
break;
|
|
|
|
}
|
2013-08-06 16:45:07 +00:00
|
|
|
if (def != S_DEF_AUTO)
|
|
|
|
conf_warning("symbol value '%s' invalid for %s",
|
|
|
|
p, sym->name);
|
2011-05-31 16:31:57 +00:00
|
|
|
return 1;
|
2007-11-10 19:01:56 +00:00
|
|
|
case S_STRING:
|
|
|
|
if (*p++ != '"')
|
|
|
|
break;
|
|
|
|
for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
|
|
|
|
if (*p2 == '"') {
|
|
|
|
*p2 = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
memmove(p2, p2 + 1, strlen(p2));
|
|
|
|
}
|
|
|
|
if (!p2) {
|
2013-08-06 16:45:07 +00:00
|
|
|
if (def != S_DEF_AUTO)
|
|
|
|
conf_warning("invalid string found");
|
2007-11-10 19:01:56 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2011-05-31 16:30:26 +00:00
|
|
|
/* fall through */
|
2007-11-10 19:01:56 +00:00
|
|
|
case S_INT:
|
|
|
|
case S_HEX:
|
|
|
|
if (sym_string_valid(sym, p)) {
|
2018-02-16 18:38:31 +00:00
|
|
|
sym->def[def].val = xstrdup(p);
|
2007-11-10 19:01:56 +00:00
|
|
|
sym->flags |= def_flags;
|
|
|
|
} else {
|
2013-08-06 16:45:07 +00:00
|
|
|
if (def != S_DEF_AUTO)
|
|
|
|
conf_warning("symbol value '%s' invalid for %s",
|
|
|
|
p, sym->name);
|
2007-11-10 19:01:56 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-13 18:27:12 +00:00
|
|
|
#define LINE_GROWTH 16
|
|
|
|
static int add_byte(int c, char **lineptr, size_t slen, size_t *n)
|
|
|
|
{
|
|
|
|
char *nline;
|
|
|
|
size_t new_size = slen + 1;
|
|
|
|
if (new_size > *n) {
|
|
|
|
new_size += LINE_GROWTH - 1;
|
|
|
|
new_size *= 2;
|
2018-02-08 16:19:07 +00:00
|
|
|
nline = xrealloc(*lineptr, new_size);
|
2012-07-13 18:27:12 +00:00
|
|
|
if (!nline)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*lineptr = nline;
|
|
|
|
*n = new_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*lineptr)[slen] = c;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream)
|
|
|
|
{
|
|
|
|
char *line = *lineptr;
|
|
|
|
size_t slen = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
int c = getc(stream);
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case '\n':
|
|
|
|
if (add_byte(c, &line, slen, n) < 0)
|
|
|
|
goto e_out;
|
|
|
|
slen++;
|
|
|
|
/* fall through */
|
|
|
|
case EOF:
|
|
|
|
if (add_byte('\0', &line, slen, n) < 0)
|
|
|
|
goto e_out;
|
|
|
|
*lineptr = line;
|
|
|
|
if (slen == 0)
|
|
|
|
return -1;
|
|
|
|
return slen;
|
|
|
|
default:
|
|
|
|
if (add_byte(c, &line, slen, n) < 0)
|
|
|
|
goto e_out;
|
|
|
|
slen++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
e_out:
|
|
|
|
line[slen-1] = '\0';
|
|
|
|
*lineptr = line;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-06-09 05:12:42 +00:00
|
|
|
int conf_read_simple(const char *name, int def)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
FILE *in = NULL;
|
2012-07-13 18:27:12 +00:00
|
|
|
char *line = NULL;
|
|
|
|
size_t line_asize = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
char *p, *p2;
|
|
|
|
struct symbol *sym;
|
2006-06-09 05:12:42 +00:00
|
|
|
int i, def_flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (name) {
|
|
|
|
in = zconf_fopen(name);
|
|
|
|
} else {
|
2021-03-13 19:48:32 +00:00
|
|
|
char *env;
|
2006-06-09 05:12:45 +00:00
|
|
|
|
2006-06-09 05:12:51 +00:00
|
|
|
name = conf_get_configname();
|
2006-06-09 05:12:38 +00:00
|
|
|
in = zconf_fopen(name);
|
|
|
|
if (in)
|
|
|
|
goto load;
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_set_changed(true);
|
2021-03-13 19:48:32 +00:00
|
|
|
|
|
|
|
env = getenv("KCONFIG_DEFCONFIG_LIST");
|
|
|
|
if (!env)
|
2006-06-09 05:12:45 +00:00
|
|
|
return 1;
|
|
|
|
|
2021-03-13 19:48:32 +00:00
|
|
|
while (1) {
|
|
|
|
bool is_last;
|
|
|
|
|
|
|
|
while (isspace(*env))
|
|
|
|
env++;
|
|
|
|
|
|
|
|
if (!*env)
|
|
|
|
break;
|
|
|
|
|
|
|
|
p = env;
|
|
|
|
while (*p && !isspace(*p))
|
|
|
|
p++;
|
|
|
|
|
|
|
|
is_last = (*p == '\0');
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
in = zconf_fopen(env);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (in) {
|
2018-05-22 19:36:12 +00:00
|
|
|
conf_message("using defaults found in %s",
|
2021-03-13 19:48:32 +00:00
|
|
|
env);
|
2006-06-09 05:12:38 +00:00
|
|
|
goto load;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2021-03-13 19:48:32 +00:00
|
|
|
|
|
|
|
if (is_last)
|
|
|
|
break;
|
|
|
|
|
|
|
|
env = p + 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!in)
|
|
|
|
return 1;
|
|
|
|
|
2006-06-09 05:12:38 +00:00
|
|
|
load:
|
2005-11-09 05:34:54 +00:00
|
|
|
conf_filename = name;
|
|
|
|
conf_lineno = 0;
|
|
|
|
conf_warnings = 0;
|
|
|
|
|
2006-06-09 05:12:42 +00:00
|
|
|
def_flags = SYMBOL_DEF << def;
|
2005-04-16 22:20:36 +00:00
|
|
|
for_all_symbols(i, sym) {
|
2006-06-09 05:12:42 +00:00
|
|
|
sym->flags |= SYMBOL_CHANGED;
|
|
|
|
sym->flags &= ~(def_flags|SYMBOL_VALID);
|
2013-06-25 21:37:44 +00:00
|
|
|
if (sym_is_choice(sym))
|
|
|
|
sym->flags |= def_flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (sym->type) {
|
|
|
|
case S_INT:
|
|
|
|
case S_HEX:
|
|
|
|
case S_STRING:
|
2006-06-09 05:12:42 +00:00
|
|
|
if (sym->def[def].val)
|
|
|
|
free(sym->def[def].val);
|
2011-05-31 16:30:26 +00:00
|
|
|
/* fall through */
|
2005-04-16 22:20:36 +00:00
|
|
|
default:
|
2006-06-09 05:12:42 +00:00
|
|
|
sym->def[def].val = NULL;
|
|
|
|
sym->def[def].tri = no;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-13 18:27:12 +00:00
|
|
|
while (compat_getline(&line, &line_asize, in) != -1) {
|
2005-11-09 05:34:54 +00:00
|
|
|
conf_lineno++;
|
2005-04-16 22:20:36 +00:00
|
|
|
sym = NULL;
|
2010-08-24 04:14:47 +00:00
|
|
|
if (line[0] == '#') {
|
2010-08-15 03:57:43 +00:00
|
|
|
if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
|
2005-04-16 22:20:36 +00:00
|
|
|
continue;
|
2010-08-15 03:57:43 +00:00
|
|
|
p = strchr(line + 2 + strlen(CONFIG_), ' ');
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!p)
|
|
|
|
continue;
|
|
|
|
*p++ = 0;
|
|
|
|
if (strncmp(p, "is not set", 10))
|
|
|
|
continue;
|
2006-06-09 05:12:42 +00:00
|
|
|
if (def == S_DEF_USER) {
|
2010-08-15 03:57:43 +00:00
|
|
|
sym = sym_find(line + 2 + strlen(CONFIG_));
|
2008-09-29 03:27:11 +00:00
|
|
|
if (!sym) {
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_set_changed(true);
|
2018-11-30 09:15:48 +00:00
|
|
|
continue;
|
2008-09-29 03:27:11 +00:00
|
|
|
}
|
2006-06-09 05:12:42 +00:00
|
|
|
} else {
|
2010-08-15 03:57:43 +00:00
|
|
|
sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
|
2006-06-09 05:12:42 +00:00
|
|
|
if (sym->type == S_UNKNOWN)
|
|
|
|
sym->type = S_BOOLEAN;
|
|
|
|
}
|
|
|
|
if (sym->flags & def_flags) {
|
2008-01-03 22:33:44 +00:00
|
|
|
conf_warning("override: reassigning to symbol %s", sym->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
|
|
|
case S_TRISTATE:
|
2006-06-09 05:12:42 +00:00
|
|
|
sym->def[def].tri = no;
|
|
|
|
sym->flags |= def_flags;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
2010-08-15 03:57:43 +00:00
|
|
|
} else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
|
|
|
|
p = strchr(line + strlen(CONFIG_), '=');
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!p)
|
|
|
|
continue;
|
|
|
|
*p++ = 0;
|
|
|
|
p2 = strchr(p, '\n');
|
2006-07-13 18:54:07 +00:00
|
|
|
if (p2) {
|
|
|
|
*p2-- = 0;
|
|
|
|
if (*p2 == '\r')
|
|
|
|
*p2 = 0;
|
|
|
|
}
|
kconfig: remove S_OTHER symbol type and correct dependency tracking
The S_OTHER type could be set only when conf_read_simple() is reading
include/config/auto.conf file.
For example, CONFIG_FOO=y exists in include/config/auto.conf but it is
missing from the currently parsed Kconfig files, sym_lookup() allocates
a new symbol, and sets its type to S_OTHER.
Strangely, it will be set to S_STRING by conf_set_sym_val() a few lines
below while it is obviously bool or tristate type. On the other hand,
when CONFIG_BAR="bar" is being dropped from include/config/auto.conf,
its type remains S_OTHER. Because for_all_symbols() omits S_OTHER
symbols, conf_touch_deps() misses to touch include/config/bar.h
This behavior has been a pretty mystery for me, and digging the git
histroy did not help. At least, touching depfiles is broken for string
type symbols.
I removed S_OTHER entirely, and reimplemented it more simply.
If CONFIG_FOO was visible in the previous syncconfig, but is missing
now, what we want to do is quite simple; just call conf_touch_dep()
to touch include/config/foo.h instead of allocating a new symbol data.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-11-30 09:15:51 +00:00
|
|
|
|
|
|
|
sym = sym_find(line + strlen(CONFIG_));
|
|
|
|
if (!sym) {
|
|
|
|
if (def == S_DEF_AUTO)
|
|
|
|
/*
|
|
|
|
* Reading from include/config/auto.conf
|
|
|
|
* If CONFIG_FOO previously existed in
|
|
|
|
* auto.conf but it is missing now,
|
2021-04-15 17:36:07 +00:00
|
|
|
* include/config/FOO must be touched.
|
kconfig: remove S_OTHER symbol type and correct dependency tracking
The S_OTHER type could be set only when conf_read_simple() is reading
include/config/auto.conf file.
For example, CONFIG_FOO=y exists in include/config/auto.conf but it is
missing from the currently parsed Kconfig files, sym_lookup() allocates
a new symbol, and sets its type to S_OTHER.
Strangely, it will be set to S_STRING by conf_set_sym_val() a few lines
below while it is obviously bool or tristate type. On the other hand,
when CONFIG_BAR="bar" is being dropped from include/config/auto.conf,
its type remains S_OTHER. Because for_all_symbols() omits S_OTHER
symbols, conf_touch_deps() misses to touch include/config/bar.h
This behavior has been a pretty mystery for me, and digging the git
histroy did not help. At least, touching depfiles is broken for string
type symbols.
I removed S_OTHER entirely, and reimplemented it more simply.
If CONFIG_FOO was visible in the previous syncconfig, but is missing
now, what we want to do is quite simple; just call conf_touch_dep()
to touch include/config/foo.h instead of allocating a new symbol data.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-11-30 09:15:51 +00:00
|
|
|
*/
|
|
|
|
conf_touch_dep(line + strlen(CONFIG_));
|
|
|
|
else
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_set_changed(true);
|
kconfig: remove S_OTHER symbol type and correct dependency tracking
The S_OTHER type could be set only when conf_read_simple() is reading
include/config/auto.conf file.
For example, CONFIG_FOO=y exists in include/config/auto.conf but it is
missing from the currently parsed Kconfig files, sym_lookup() allocates
a new symbol, and sets its type to S_OTHER.
Strangely, it will be set to S_STRING by conf_set_sym_val() a few lines
below while it is obviously bool or tristate type. On the other hand,
when CONFIG_BAR="bar" is being dropped from include/config/auto.conf,
its type remains S_OTHER. Because for_all_symbols() omits S_OTHER
symbols, conf_touch_deps() misses to touch include/config/bar.h
This behavior has been a pretty mystery for me, and digging the git
histroy did not help. At least, touching depfiles is broken for string
type symbols.
I removed S_OTHER entirely, and reimplemented it more simply.
If CONFIG_FOO was visible in the previous syncconfig, but is missing
now, what we want to do is quite simple; just call conf_touch_dep()
to touch include/config/foo.h instead of allocating a new symbol data.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-11-30 09:15:51 +00:00
|
|
|
continue;
|
2006-06-09 05:12:42 +00:00
|
|
|
}
|
kconfig: remove S_OTHER symbol type and correct dependency tracking
The S_OTHER type could be set only when conf_read_simple() is reading
include/config/auto.conf file.
For example, CONFIG_FOO=y exists in include/config/auto.conf but it is
missing from the currently parsed Kconfig files, sym_lookup() allocates
a new symbol, and sets its type to S_OTHER.
Strangely, it will be set to S_STRING by conf_set_sym_val() a few lines
below while it is obviously bool or tristate type. On the other hand,
when CONFIG_BAR="bar" is being dropped from include/config/auto.conf,
its type remains S_OTHER. Because for_all_symbols() omits S_OTHER
symbols, conf_touch_deps() misses to touch include/config/bar.h
This behavior has been a pretty mystery for me, and digging the git
histroy did not help. At least, touching depfiles is broken for string
type symbols.
I removed S_OTHER entirely, and reimplemented it more simply.
If CONFIG_FOO was visible in the previous syncconfig, but is missing
now, what we want to do is quite simple; just call conf_touch_dep()
to touch include/config/foo.h instead of allocating a new symbol data.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-11-30 09:15:51 +00:00
|
|
|
|
2006-06-09 05:12:42 +00:00
|
|
|
if (sym->flags & def_flags) {
|
2008-01-03 22:33:44 +00:00
|
|
|
conf_warning("override: reassigning to symbol %s", sym->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-11-10 19:01:56 +00:00
|
|
|
if (conf_set_sym_val(sym, def, def_flags, p))
|
|
|
|
continue;
|
2010-08-24 04:14:47 +00:00
|
|
|
} else {
|
|
|
|
if (line[0] != '\r' && line[0] != '\n')
|
2016-03-16 20:27:27 +00:00
|
|
|
conf_warning("unexpected data: %.*s",
|
|
|
|
(int)strcspn(line, "\r\n"), line);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
continue;
|
|
|
|
}
|
2018-11-30 09:15:48 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (sym && sym_is_choice_value(sym)) {
|
|
|
|
struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
|
2006-06-09 05:12:42 +00:00
|
|
|
switch (sym->def[def].tri) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case no:
|
|
|
|
break;
|
|
|
|
case mod:
|
2006-06-09 05:12:42 +00:00
|
|
|
if (cs->def[def].tri == yes) {
|
2005-11-09 05:34:54 +00:00
|
|
|
conf_warning("%s creates inconsistent choice state", sym->name);
|
2013-06-25 21:37:44 +00:00
|
|
|
cs->flags &= ~def_flags;
|
2005-11-09 05:34:54 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case yes:
|
2008-01-03 22:33:44 +00:00
|
|
|
if (cs->def[def].tri != no)
|
|
|
|
conf_warning("override: %s changes choice state", sym->name);
|
|
|
|
cs->def[def].val = sym;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-01-07 20:09:55 +00:00
|
|
|
cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-13 18:27:12 +00:00
|
|
|
free(line);
|
2005-04-16 22:20:36 +00:00
|
|
|
fclose(in);
|
2005-11-09 05:34:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int conf_read(const char *name)
|
|
|
|
{
|
2012-01-23 22:29:05 +00:00
|
|
|
struct symbol *sym;
|
2018-01-11 13:39:41 +00:00
|
|
|
int conf_unsaved = 0;
|
2012-01-23 22:29:05 +00:00
|
|
|
int i;
|
2005-11-09 05:34:49 +00:00
|
|
|
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_set_changed(false);
|
2006-06-09 05:12:38 +00:00
|
|
|
|
2016-01-14 18:13:49 +00:00
|
|
|
if (conf_read_simple(name, S_DEF_USER)) {
|
|
|
|
sym_calc_value(modules_sym);
|
2005-11-09 05:34:49 +00:00
|
|
|
return 1;
|
2016-01-14 18:13:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sym_calc_value(modules_sym);
|
2005-11-09 05:34:49 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
for_all_symbols(i, sym) {
|
|
|
|
sym_calc_value(sym);
|
2018-07-03 12:43:31 +00:00
|
|
|
if (sym_is_choice(sym) || (sym->flags & SYMBOL_NO_WRITE))
|
2012-01-23 22:29:05 +00:00
|
|
|
continue;
|
2005-11-09 05:34:54 +00:00
|
|
|
if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
|
|
|
|
/* check that calculated value agrees with saved value */
|
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
|
|
|
case S_TRISTATE:
|
2019-07-11 07:33:17 +00:00
|
|
|
if (sym->def[S_DEF_USER].tri == sym_get_tristate_value(sym))
|
2012-01-23 22:29:05 +00:00
|
|
|
continue;
|
2019-07-11 07:33:17 +00:00
|
|
|
break;
|
2005-11-09 05:34:54 +00:00
|
|
|
default:
|
2006-06-09 05:12:41 +00:00
|
|
|
if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
|
2012-01-23 22:29:05 +00:00
|
|
|
continue;
|
2005-11-09 05:34:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
|
|
|
|
/* no previous value and not saved */
|
2012-01-23 22:29:05 +00:00
|
|
|
continue;
|
2005-11-09 05:34:54 +00:00
|
|
|
conf_unsaved++;
|
|
|
|
/* maybe print value in verbose mode... */
|
2007-07-09 18:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for_all_symbols(i, sym) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
|
2007-07-09 18:43:58 +00:00
|
|
|
/* Reset values of generates values, so they'll appear
|
|
|
|
* as new, if they should become visible, but that
|
|
|
|
* doesn't quite work if the Kconfig and the saved
|
|
|
|
* configuration disagree.
|
|
|
|
*/
|
|
|
|
if (sym->visible == no && !conf_unsaved)
|
2006-06-09 05:12:42 +00:00
|
|
|
sym->flags &= ~SYMBOL_DEF_USER;
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (sym->type) {
|
|
|
|
case S_STRING:
|
|
|
|
case S_INT:
|
|
|
|
case S_HEX:
|
2007-07-09 18:43:58 +00:00
|
|
|
/* Reset a string value if it's out of range */
|
|
|
|
if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
|
|
|
|
break;
|
|
|
|
sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
|
|
|
|
conf_unsaved++;
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 06:57:22 +00:00
|
|
|
if (conf_warnings || conf_unsaved)
|
|
|
|
conf_set_changed(true);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-10-01 05:32:45 +00:00
|
|
|
struct comment_style {
|
|
|
|
const char *decoration;
|
|
|
|
const char *prefix;
|
|
|
|
const char *postfix;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct comment_style comment_style_pound = {
|
|
|
|
.decoration = "#",
|
|
|
|
.prefix = "#",
|
|
|
|
.postfix = "#",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct comment_style comment_style_c = {
|
|
|
|
.decoration = " *",
|
|
|
|
.prefix = "/*",
|
|
|
|
.postfix = " */",
|
|
|
|
};
|
|
|
|
|
|
|
|
static void conf_write_heading(FILE *fp, const struct comment_style *cs)
|
|
|
|
{
|
|
|
|
fprintf(fp, "%s\n", cs->prefix);
|
|
|
|
|
|
|
|
fprintf(fp, "%s Automatically generated file; DO NOT EDIT.\n",
|
|
|
|
cs->decoration);
|
|
|
|
|
|
|
|
fprintf(fp, "%s %s\n", cs->decoration, rootmenu.prompt->text);
|
|
|
|
|
|
|
|
fprintf(fp, "%s\n", cs->postfix);
|
|
|
|
}
|
|
|
|
|
2011-05-16 03:42:09 +00:00
|
|
|
/*
|
|
|
|
* Kconfig configuration printer
|
|
|
|
*
|
|
|
|
* This printer is used when generating the resulting configuration after
|
|
|
|
* kconfig invocation and `defconfig' files. Unset symbol might be omitted by
|
|
|
|
* passing a non-NULL argument to the printer.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
|
|
|
case S_TRISTATE:
|
|
|
|
if (*value == 'n') {
|
|
|
|
bool skip_unset = (arg != NULL);
|
|
|
|
|
|
|
|
if (!skip_unset)
|
|
|
|
fprintf(fp, "# %s%s is not set\n",
|
|
|
|
CONFIG_, sym->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct conf_printer kconfig_printer_cb =
|
2010-07-31 21:35:33 +00:00
|
|
|
{
|
2011-05-16 03:42:09 +00:00
|
|
|
.print_symbol = kconfig_print_symbol,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Header printer
|
|
|
|
*
|
|
|
|
* This printer is used when generating the `include/generated/autoconf.h' file.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
|
|
|
|
{
|
2010-07-31 21:35:33 +00:00
|
|
|
|
2010-12-05 06:33:16 +00:00
|
|
|
switch (sym->type) {
|
2010-07-31 21:35:33 +00:00
|
|
|
case S_BOOLEAN:
|
2011-07-14 19:31:07 +00:00
|
|
|
case S_TRISTATE: {
|
|
|
|
const char *suffix = "";
|
|
|
|
|
2011-05-16 03:42:09 +00:00
|
|
|
switch (*value) {
|
|
|
|
case 'n':
|
2011-07-20 15:38:57 +00:00
|
|
|
break;
|
2011-05-16 03:42:09 +00:00
|
|
|
case 'm':
|
|
|
|
suffix = "_MODULE";
|
2011-07-14 19:31:07 +00:00
|
|
|
/* fall through */
|
2011-05-16 03:42:09 +00:00
|
|
|
default:
|
2011-07-20 15:38:57 +00:00
|
|
|
fprintf(fp, "#define %s%s%s 1\n",
|
|
|
|
CONFIG_, sym->name, suffix);
|
2010-07-31 21:35:33 +00:00
|
|
|
}
|
2011-07-14 19:31:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case S_HEX: {
|
|
|
|
const char *prefix = "";
|
|
|
|
|
|
|
|
if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
|
|
|
|
prefix = "0x";
|
|
|
|
fprintf(fp, "#define %s%s %s%s\n",
|
|
|
|
CONFIG_, sym->name, prefix, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case S_STRING:
|
|
|
|
case S_INT:
|
|
|
|
fprintf(fp, "#define %s%s %s\n",
|
|
|
|
CONFIG_, sym->name, value);
|
2010-07-31 21:35:33 +00:00
|
|
|
break;
|
2011-05-16 03:42:09 +00:00
|
|
|
default:
|
2010-07-31 21:35:33 +00:00
|
|
|
break;
|
2011-05-16 03:42:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct conf_printer header_printer_cb =
|
|
|
|
{
|
|
|
|
.print_symbol = header_print_symbol,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void conf_write_symbol(FILE *fp, struct symbol *sym,
|
|
|
|
struct conf_printer *printer, void *printer_arg)
|
|
|
|
{
|
2021-10-01 05:32:44 +00:00
|
|
|
const char *val;
|
|
|
|
char *escaped = NULL;
|
2011-05-16 03:42:09 +00:00
|
|
|
|
2021-10-01 05:32:44 +00:00
|
|
|
if (sym->type == S_UNKNOWN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
val = sym_get_string_value(sym);
|
|
|
|
|
|
|
|
if (sym->type == S_STRING) {
|
|
|
|
escaped = sym_escape_string_value(val);
|
|
|
|
val = escaped;
|
2010-07-31 21:35:33 +00:00
|
|
|
}
|
2021-10-01 05:32:44 +00:00
|
|
|
|
|
|
|
printer->print_symbol(fp, sym, val, printer_arg);
|
|
|
|
|
|
|
|
free(escaped);
|
2010-07-31 21:35:33 +00:00
|
|
|
}
|
|
|
|
|
2010-07-31 21:35:34 +00:00
|
|
|
/*
|
|
|
|
* Write out a minimal config.
|
|
|
|
* All values that has default values are skipped as this is redundant.
|
|
|
|
*/
|
|
|
|
int conf_write_defconfig(const char *filename)
|
|
|
|
{
|
|
|
|
struct symbol *sym;
|
|
|
|
struct menu *menu;
|
|
|
|
FILE *out;
|
|
|
|
|
|
|
|
out = fopen(filename, "w");
|
|
|
|
if (!out)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
sym_clear_all_valid();
|
|
|
|
|
|
|
|
/* Traverse all menus to find all relevant symbols */
|
|
|
|
menu = rootmenu.list;
|
|
|
|
|
|
|
|
while (menu != NULL)
|
|
|
|
{
|
|
|
|
sym = menu->sym;
|
|
|
|
if (sym == NULL) {
|
|
|
|
if (!menu_is_visible(menu))
|
|
|
|
goto next_menu;
|
|
|
|
} else if (!sym_is_choice(sym)) {
|
|
|
|
sym_calc_value(sym);
|
|
|
|
if (!(sym->flags & SYMBOL_WRITE))
|
|
|
|
goto next_menu;
|
|
|
|
sym->flags &= ~SYMBOL_WRITE;
|
|
|
|
/* If we cannot change the symbol - skip */
|
2019-07-04 10:50:41 +00:00
|
|
|
if (!sym_is_changeable(sym))
|
2010-07-31 21:35:34 +00:00
|
|
|
goto next_menu;
|
|
|
|
/* If symbol equals to default value - skip */
|
|
|
|
if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
|
|
|
|
goto next_menu;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If symbol is a choice value and equals to the
|
|
|
|
* default for a choice - skip.
|
2010-08-14 21:22:16 +00:00
|
|
|
* But only if value is bool and equal to "y" and
|
|
|
|
* choice is not "optional".
|
|
|
|
* (If choice is "optional" then all values can be "n")
|
2010-07-31 21:35:34 +00:00
|
|
|
*/
|
|
|
|
if (sym_is_choice_value(sym)) {
|
|
|
|
struct symbol *cs;
|
|
|
|
struct symbol *ds;
|
|
|
|
|
|
|
|
cs = prop_get_symbol(sym_get_choice_prop(sym));
|
|
|
|
ds = sym_choice_default(cs);
|
2010-08-14 21:22:16 +00:00
|
|
|
if (!sym_is_optional(cs) && sym == ds) {
|
2010-08-12 07:11:51 +00:00
|
|
|
if ((sym->type == S_BOOLEAN) &&
|
|
|
|
sym_get_tristate_value(sym) == yes)
|
2010-07-31 21:35:34 +00:00
|
|
|
goto next_menu;
|
|
|
|
}
|
|
|
|
}
|
2011-05-16 03:42:09 +00:00
|
|
|
conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
|
2010-07-31 21:35:34 +00:00
|
|
|
}
|
|
|
|
next_menu:
|
|
|
|
if (menu->list != NULL) {
|
|
|
|
menu = menu->list;
|
|
|
|
}
|
|
|
|
else if (menu->next != NULL) {
|
|
|
|
menu = menu->next;
|
|
|
|
} else {
|
|
|
|
while ((menu = menu->parent)) {
|
|
|
|
if (menu->next != NULL) {
|
|
|
|
menu = menu->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(out);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
int conf_write(const char *name)
|
|
|
|
{
|
2006-06-09 05:12:39 +00:00
|
|
|
FILE *out;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct symbol *sym;
|
|
|
|
struct menu *menu;
|
|
|
|
const char *str;
|
kconfig: do not accept a directory for configuration output
Currently, conf_write() can be called with a directory name instead
of a file name. As far as I see, this can happen for menuconfig,
nconfig, gconfig.
If it is given with a directory path, conf_write() kindly appends
getenv("KCONFIG_CONFIG"), but this ends up with hacky dir/basename
handling, and screwed up in corner-cases like "what if KCONFIG_CONFIG
is an absolute path?" as discussed before:
https://patchwork.kernel.org/patch/9910037/
Since conf_write() is already messed up, I'd say "do not do it".
Please pass a file path all the time. If a directory path is specified
for the configuration output, conf_write() will simply error out.
Now that the tmp file is created in the same directory as the .config,
the previously reported "what if KCONFIG_CONFIG points to a different
file system?" has been solved.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nicolas Porcel <nicolasporcel06@gmail.com>
2019-05-10 06:12:04 +00:00
|
|
|
char tmpname[PATH_MAX + 1], oldname[PATH_MAX + 1];
|
2005-04-16 22:20:36 +00:00
|
|
|
char *env;
|
2019-08-03 10:02:12 +00:00
|
|
|
int i;
|
2019-05-17 19:42:22 +00:00
|
|
|
bool need_newline = false;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
kconfig: do not accept a directory for configuration output
Currently, conf_write() can be called with a directory name instead
of a file name. As far as I see, this can happen for menuconfig,
nconfig, gconfig.
If it is given with a directory path, conf_write() kindly appends
getenv("KCONFIG_CONFIG"), but this ends up with hacky dir/basename
handling, and screwed up in corner-cases like "what if KCONFIG_CONFIG
is an absolute path?" as discussed before:
https://patchwork.kernel.org/patch/9910037/
Since conf_write() is already messed up, I'd say "do not do it".
Please pass a file path all the time. If a directory path is specified
for the configuration output, conf_write() will simply error out.
Now that the tmp file is created in the same directory as the .config,
the previously reported "what if KCONFIG_CONFIG points to a different
file system?" has been solved.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nicolas Porcel <nicolasporcel06@gmail.com>
2019-05-10 06:12:04 +00:00
|
|
|
if (!name)
|
|
|
|
name = conf_get_configname();
|
|
|
|
|
|
|
|
if (!*name) {
|
|
|
|
fprintf(stderr, "config name is empty\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_dir(name)) {
|
|
|
|
fprintf(stderr, "%s: Is a directory\n", name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-05-10 16:56:01 +00:00
|
|
|
if (make_parent_dir(name))
|
|
|
|
return -1;
|
|
|
|
|
2006-06-09 05:12:51 +00:00
|
|
|
env = getenv("KCONFIG_OVERWRITECONFIG");
|
kconfig: do not accept a directory for configuration output
Currently, conf_write() can be called with a directory name instead
of a file name. As far as I see, this can happen for menuconfig,
nconfig, gconfig.
If it is given with a directory path, conf_write() kindly appends
getenv("KCONFIG_CONFIG"), but this ends up with hacky dir/basename
handling, and screwed up in corner-cases like "what if KCONFIG_CONFIG
is an absolute path?" as discussed before:
https://patchwork.kernel.org/patch/9910037/
Since conf_write() is already messed up, I'd say "do not do it".
Please pass a file path all the time. If a directory path is specified
for the configuration output, conf_write() will simply error out.
Now that the tmp file is created in the same directory as the .config,
the previously reported "what if KCONFIG_CONFIG points to a different
file system?" has been solved.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nicolas Porcel <nicolasporcel06@gmail.com>
2019-05-10 06:12:04 +00:00
|
|
|
if (env && *env) {
|
2006-06-09 05:12:51 +00:00
|
|
|
*tmpname = 0;
|
kconfig: do not accept a directory for configuration output
Currently, conf_write() can be called with a directory name instead
of a file name. As far as I see, this can happen for menuconfig,
nconfig, gconfig.
If it is given with a directory path, conf_write() kindly appends
getenv("KCONFIG_CONFIG"), but this ends up with hacky dir/basename
handling, and screwed up in corner-cases like "what if KCONFIG_CONFIG
is an absolute path?" as discussed before:
https://patchwork.kernel.org/patch/9910037/
Since conf_write() is already messed up, I'd say "do not do it".
Please pass a file path all the time. If a directory path is specified
for the configuration output, conf_write() will simply error out.
Now that the tmp file is created in the same directory as the .config,
the previously reported "what if KCONFIG_CONFIG points to a different
file system?" has been solved.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nicolas Porcel <nicolasporcel06@gmail.com>
2019-05-10 06:12:04 +00:00
|
|
|
out = fopen(name, "w");
|
|
|
|
} else {
|
|
|
|
snprintf(tmpname, sizeof(tmpname), "%s.%d.tmp",
|
|
|
|
name, (int)getpid());
|
|
|
|
out = fopen(tmpname, "w");
|
2006-06-09 05:12:51 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!out)
|
|
|
|
return 1;
|
2006-06-09 05:12:51 +00:00
|
|
|
|
2021-10-01 05:32:45 +00:00
|
|
|
conf_write_heading(out, &comment_style_pound);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-12-13 08:34:06 +00:00
|
|
|
if (!conf_get_changed())
|
2005-04-16 22:20:36 +00:00
|
|
|
sym_clear_all_valid();
|
|
|
|
|
|
|
|
menu = rootmenu.list;
|
|
|
|
while (menu) {
|
|
|
|
sym = menu->sym;
|
|
|
|
if (!sym) {
|
|
|
|
if (!menu_is_visible(menu))
|
|
|
|
goto next;
|
|
|
|
str = menu_get_prompt(menu);
|
|
|
|
fprintf(out, "\n"
|
|
|
|
"#\n"
|
|
|
|
"# %s\n"
|
|
|
|
"#\n", str);
|
2019-05-17 19:42:22 +00:00
|
|
|
need_newline = false;
|
kconfig: fix missing choice values in auto.conf
Since commit 00c864f8903d ("kconfig: allow all config targets to write
auto.conf if missing"), Kconfig creates include/config/auto.conf in the
defconfig stage when it is missing.
Joonas Kylmälä reported incorrect auto.conf generation under some
circumstances.
To reproduce it, apply the following diff:
| --- a/arch/arm/configs/imx_v6_v7_defconfig
| +++ b/arch/arm/configs/imx_v6_v7_defconfig
| @@ -345,14 +345,7 @@ CONFIG_USB_CONFIGFS_F_MIDI=y
| CONFIG_USB_CONFIGFS_F_HID=y
| CONFIG_USB_CONFIGFS_F_UVC=y
| CONFIG_USB_CONFIGFS_F_PRINTER=y
| -CONFIG_USB_ZERO=m
| -CONFIG_USB_AUDIO=m
| -CONFIG_USB_ETH=m
| -CONFIG_USB_G_NCM=m
| -CONFIG_USB_GADGETFS=m
| -CONFIG_USB_FUNCTIONFS=m
| -CONFIG_USB_MASS_STORAGE=m
| -CONFIG_USB_G_SERIAL=m
| +CONFIG_USB_FUNCTIONFS=y
| CONFIG_MMC=y
| CONFIG_MMC_SDHCI=y
| CONFIG_MMC_SDHCI_PLTFM=y
And then, run:
$ make ARCH=arm mrproper imx_v6_v7_defconfig
You will see CONFIG_USB_FUNCTIONFS=y is correctly contained in the
.config, but not in the auto.conf.
Please note drivers/usb/gadget/legacy/Kconfig is included from a choice
block in drivers/usb/gadget/Kconfig. So USB_FUNCTIONFS is a choice value.
This is probably a similar situation described in commit beaaddb62540
("kconfig: tests: test defconfig when two choices interact").
When sym_calc_choice() is called, the choice symbol forgets the
SYMBOL_DEF_USER unless all of its choice values are explicitly set by
the user.
The choice symbol is given just one chance to recall it because
set_all_choice_values() is called if SYMBOL_NEED_SET_CHOICE_VALUES
is set.
When sym_calc_choice() is called again, the choice symbol forgets it
forever, since SYMBOL_NEED_SET_CHOICE_VALUES is a one-time aid.
Hence, we cannot call sym_clear_all_valid() again and again.
It is crazy to repeat set and unset of internal flags. However, we
cannot simply get rid of "sym->flags &= flags | ~SYMBOL_DEF_USER;"
Doing so would re-introduce the problem solved by commit 5d09598d488f
("kconfig: fix new choices being skipped upon config update").
To work around the issue, conf_write_autoconf() stopped calling
sym_clear_all_valid().
conf_write() must be changed accordingly. Currently, it clears
SYMBOL_WRITE after the symbol is written into the .config file. This
is needed to prevent it from writing the same symbol multiple times in
case the symbol is declared in two or more locations. I added the new
flag SYMBOL_WRITTEN, to track the symbols that have been written.
Anyway, this is a cheesy workaround in order to suppress the issue
as far as defconfig is concerned.
Handling of choices is totally broken. sym_clear_all_valid() is called
every time a user touches a symbol from the GUI interface. To reproduce
it, just add a new symbol drivers/usb/gadget/legacy/Kconfig, then touch
around unrelated symbols from menuconfig. USB_FUNCTIONFS will disappear
from the .config file.
I added the Fixes tag since it is more fatal than before. But, this
has been broken since long long time before, and still it is.
We should take a closer look to fix this correctly somehow.
Fixes: 00c864f8903d ("kconfig: allow all config targets to write auto.conf if missing")
Cc: linux-stable <stable@vger.kernel.org> # 4.19+
Reported-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
2019-07-12 06:07:09 +00:00
|
|
|
} else if (!(sym->flags & SYMBOL_CHOICE) &&
|
|
|
|
!(sym->flags & SYMBOL_WRITTEN)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
sym_calc_value(sym);
|
|
|
|
if (!(sym->flags & SYMBOL_WRITE))
|
|
|
|
goto next;
|
2019-05-17 19:42:22 +00:00
|
|
|
if (need_newline) {
|
|
|
|
fprintf(out, "\n");
|
|
|
|
need_newline = false;
|
|
|
|
}
|
kconfig: fix missing choice values in auto.conf
Since commit 00c864f8903d ("kconfig: allow all config targets to write
auto.conf if missing"), Kconfig creates include/config/auto.conf in the
defconfig stage when it is missing.
Joonas Kylmälä reported incorrect auto.conf generation under some
circumstances.
To reproduce it, apply the following diff:
| --- a/arch/arm/configs/imx_v6_v7_defconfig
| +++ b/arch/arm/configs/imx_v6_v7_defconfig
| @@ -345,14 +345,7 @@ CONFIG_USB_CONFIGFS_F_MIDI=y
| CONFIG_USB_CONFIGFS_F_HID=y
| CONFIG_USB_CONFIGFS_F_UVC=y
| CONFIG_USB_CONFIGFS_F_PRINTER=y
| -CONFIG_USB_ZERO=m
| -CONFIG_USB_AUDIO=m
| -CONFIG_USB_ETH=m
| -CONFIG_USB_G_NCM=m
| -CONFIG_USB_GADGETFS=m
| -CONFIG_USB_FUNCTIONFS=m
| -CONFIG_USB_MASS_STORAGE=m
| -CONFIG_USB_G_SERIAL=m
| +CONFIG_USB_FUNCTIONFS=y
| CONFIG_MMC=y
| CONFIG_MMC_SDHCI=y
| CONFIG_MMC_SDHCI_PLTFM=y
And then, run:
$ make ARCH=arm mrproper imx_v6_v7_defconfig
You will see CONFIG_USB_FUNCTIONFS=y is correctly contained in the
.config, but not in the auto.conf.
Please note drivers/usb/gadget/legacy/Kconfig is included from a choice
block in drivers/usb/gadget/Kconfig. So USB_FUNCTIONFS is a choice value.
This is probably a similar situation described in commit beaaddb62540
("kconfig: tests: test defconfig when two choices interact").
When sym_calc_choice() is called, the choice symbol forgets the
SYMBOL_DEF_USER unless all of its choice values are explicitly set by
the user.
The choice symbol is given just one chance to recall it because
set_all_choice_values() is called if SYMBOL_NEED_SET_CHOICE_VALUES
is set.
When sym_calc_choice() is called again, the choice symbol forgets it
forever, since SYMBOL_NEED_SET_CHOICE_VALUES is a one-time aid.
Hence, we cannot call sym_clear_all_valid() again and again.
It is crazy to repeat set and unset of internal flags. However, we
cannot simply get rid of "sym->flags &= flags | ~SYMBOL_DEF_USER;"
Doing so would re-introduce the problem solved by commit 5d09598d488f
("kconfig: fix new choices being skipped upon config update").
To work around the issue, conf_write_autoconf() stopped calling
sym_clear_all_valid().
conf_write() must be changed accordingly. Currently, it clears
SYMBOL_WRITE after the symbol is written into the .config file. This
is needed to prevent it from writing the same symbol multiple times in
case the symbol is declared in two or more locations. I added the new
flag SYMBOL_WRITTEN, to track the symbols that have been written.
Anyway, this is a cheesy workaround in order to suppress the issue
as far as defconfig is concerned.
Handling of choices is totally broken. sym_clear_all_valid() is called
every time a user touches a symbol from the GUI interface. To reproduce
it, just add a new symbol drivers/usb/gadget/legacy/Kconfig, then touch
around unrelated symbols from menuconfig. USB_FUNCTIONFS will disappear
from the .config file.
I added the Fixes tag since it is more fatal than before. But, this
has been broken since long long time before, and still it is.
We should take a closer look to fix this correctly somehow.
Fixes: 00c864f8903d ("kconfig: allow all config targets to write auto.conf if missing")
Cc: linux-stable <stable@vger.kernel.org> # 4.19+
Reported-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
2019-07-12 06:07:09 +00:00
|
|
|
sym->flags |= SYMBOL_WRITTEN;
|
2011-05-16 03:42:09 +00:00
|
|
|
conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2010-07-31 21:35:33 +00:00
|
|
|
next:
|
2005-04-16 22:20:36 +00:00
|
|
|
if (menu->list) {
|
|
|
|
menu = menu->list;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (menu->next)
|
|
|
|
menu = menu->next;
|
|
|
|
else while ((menu = menu->parent)) {
|
2019-05-17 19:42:22 +00:00
|
|
|
if (!menu->sym && menu_is_visible(menu) &&
|
|
|
|
menu != &rootmenu) {
|
|
|
|
str = menu_get_prompt(menu);
|
|
|
|
fprintf(out, "# end of %s\n", str);
|
|
|
|
need_newline = true;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
if (menu->next) {
|
|
|
|
menu = menu->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(out);
|
2006-06-09 05:12:51 +00:00
|
|
|
|
2019-08-03 10:02:12 +00:00
|
|
|
for_all_symbols(i, sym)
|
|
|
|
sym->flags &= ~SYMBOL_WRITTEN;
|
|
|
|
|
2006-06-09 05:12:51 +00:00
|
|
|
if (*tmpname) {
|
2019-05-10 06:12:05 +00:00
|
|
|
if (is_same(name, tmpname)) {
|
|
|
|
conf_message("No change to %s", name);
|
|
|
|
unlink(tmpname);
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_set_changed(false);
|
2019-05-10 06:12:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
kconfig: do not accept a directory for configuration output
Currently, conf_write() can be called with a directory name instead
of a file name. As far as I see, this can happen for menuconfig,
nconfig, gconfig.
If it is given with a directory path, conf_write() kindly appends
getenv("KCONFIG_CONFIG"), but this ends up with hacky dir/basename
handling, and screwed up in corner-cases like "what if KCONFIG_CONFIG
is an absolute path?" as discussed before:
https://patchwork.kernel.org/patch/9910037/
Since conf_write() is already messed up, I'd say "do not do it".
Please pass a file path all the time. If a directory path is specified
for the configuration output, conf_write() will simply error out.
Now that the tmp file is created in the same directory as the .config,
the previously reported "what if KCONFIG_CONFIG points to a different
file system?" has been solved.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nicolas Porcel <nicolasporcel06@gmail.com>
2019-05-10 06:12:04 +00:00
|
|
|
snprintf(oldname, sizeof(oldname), "%s.old", name);
|
|
|
|
rename(name, oldname);
|
|
|
|
if (rename(tmpname, name))
|
2006-06-09 05:12:51 +00:00
|
|
|
return 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
kconfig: do not accept a directory for configuration output
Currently, conf_write() can be called with a directory name instead
of a file name. As far as I see, this can happen for menuconfig,
nconfig, gconfig.
If it is given with a directory path, conf_write() kindly appends
getenv("KCONFIG_CONFIG"), but this ends up with hacky dir/basename
handling, and screwed up in corner-cases like "what if KCONFIG_CONFIG
is an absolute path?" as discussed before:
https://patchwork.kernel.org/patch/9910037/
Since conf_write() is already messed up, I'd say "do not do it".
Please pass a file path all the time. If a directory path is specified
for the configuration output, conf_write() will simply error out.
Now that the tmp file is created in the same directory as the .config,
the previously reported "what if KCONFIG_CONFIG points to a different
file system?" has been solved.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nicolas Porcel <nicolasporcel06@gmail.com>
2019-05-10 06:12:04 +00:00
|
|
|
conf_message("configuration written to %s", name);
|
2006-06-09 05:12:38 +00:00
|
|
|
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_set_changed(false);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-06-09 05:12:39 +00:00
|
|
|
|
2018-07-20 07:46:26 +00:00
|
|
|
/* write a dependency file as used by kbuild to track dependencies */
|
|
|
|
static int conf_write_dep(const char *name)
|
|
|
|
{
|
|
|
|
struct file *file;
|
|
|
|
FILE *out;
|
|
|
|
|
|
|
|
out = fopen("..config.tmp", "w");
|
|
|
|
if (!out)
|
|
|
|
return 1;
|
|
|
|
fprintf(out, "deps_config := \\\n");
|
|
|
|
for (file = file_list; file; file = file->next) {
|
|
|
|
if (file->next)
|
|
|
|
fprintf(out, "\t%s \\\n", file->name);
|
|
|
|
else
|
|
|
|
fprintf(out, "\t%s\n", file->name);
|
|
|
|
}
|
|
|
|
fprintf(out, "\n%s: \\\n"
|
|
|
|
"\t$(deps_config)\n\n", conf_get_autoconfig_name());
|
|
|
|
|
|
|
|
env_write_dep(out, conf_get_autoconfig_name());
|
|
|
|
|
|
|
|
fprintf(out, "\n$(deps_config): ;\n");
|
|
|
|
fclose(out);
|
2018-07-20 07:46:29 +00:00
|
|
|
|
|
|
|
if (make_parent_dir(name))
|
|
|
|
return 1;
|
2018-07-20 07:46:26 +00:00
|
|
|
rename("..config.tmp", name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-30 09:15:49 +00:00
|
|
|
static int conf_touch_deps(void)
|
2006-06-09 05:12:42 +00:00
|
|
|
{
|
2009-05-17 23:36:54 +00:00
|
|
|
const char *name;
|
2006-06-09 05:12:42 +00:00
|
|
|
struct symbol *sym;
|
2018-11-30 09:15:50 +00:00
|
|
|
int res, i;
|
|
|
|
|
|
|
|
strcpy(depfile_path, "include/config/");
|
|
|
|
depfile_prefix_len = strlen(depfile_path);
|
2006-06-09 05:12:42 +00:00
|
|
|
|
2009-05-17 23:36:54 +00:00
|
|
|
name = conf_get_autoconfig_name();
|
2006-06-09 05:12:42 +00:00
|
|
|
conf_read_simple(name, S_DEF_AUTO);
|
2016-01-14 18:13:49 +00:00
|
|
|
sym_calc_value(modules_sym);
|
2006-06-09 05:12:42 +00:00
|
|
|
|
|
|
|
for_all_symbols(i, sym) {
|
|
|
|
sym_calc_value(sym);
|
2018-07-03 12:43:31 +00:00
|
|
|
if ((sym->flags & SYMBOL_NO_WRITE) || !sym->name)
|
2006-06-09 05:12:42 +00:00
|
|
|
continue;
|
|
|
|
if (sym->flags & SYMBOL_WRITE) {
|
|
|
|
if (sym->flags & SYMBOL_DEF_AUTO) {
|
|
|
|
/*
|
|
|
|
* symbol has old and new value,
|
|
|
|
* so compare them...
|
|
|
|
*/
|
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
|
|
|
case S_TRISTATE:
|
|
|
|
if (sym_get_tristate_value(sym) ==
|
|
|
|
sym->def[S_DEF_AUTO].tri)
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
case S_STRING:
|
|
|
|
case S_HEX:
|
|
|
|
case S_INT:
|
|
|
|
if (!strcmp(sym_get_string_value(sym),
|
|
|
|
sym->def[S_DEF_AUTO].val))
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If there is no old value, only 'no' (unset)
|
|
|
|
* is allowed as new value.
|
|
|
|
*/
|
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
|
|
|
case S_TRISTATE:
|
|
|
|
if (sym_get_tristate_value(sym) == no)
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (!(sym->flags & SYMBOL_DEF_AUTO))
|
|
|
|
/* There is neither an old nor a new value. */
|
|
|
|
continue;
|
|
|
|
/* else
|
|
|
|
* There is an old value, but no new value ('no' (unset)
|
|
|
|
* isn't saved in auto.conf, so the old value is always
|
|
|
|
* different from 'no').
|
|
|
|
*/
|
|
|
|
|
2018-11-30 09:15:50 +00:00
|
|
|
res = conf_touch_dep(sym->name);
|
|
|
|
if (res)
|
|
|
|
return res;
|
2006-06-09 05:12:42 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 09:15:50 +00:00
|
|
|
return 0;
|
2006-06-09 05:12:42 +00:00
|
|
|
}
|
|
|
|
|
kconfig: allow all config targets to write auto.conf if missing
Currently, only syncconfig creates or updates include/config/auto.conf
and some other files. Other config targets create or update only the
.config file.
When you configure and build the kernel from a pristine source tree,
any config target is followed by syncconfig in the build stage since
include/config/auto.conf is missing.
We are moving compiler tests from Makefile to Kconfig. It means that
parsing Kconfig files will be more costly since Kconfig invokes the
compiler commands internally. Thus, we want to avoid invoking Kconfig
twice (one for *config to create the .config, and one for syncconfig
to synchronize the auto.conf). If auto.conf does not exist, we can
generate all configuration files in the first configuration stage,
which will save the syncconfig in the build stage.
Please note this should be done only when auto.conf is missing. If
*config blindly did this, time stamp files under include/config/ would
be unnecessarily touched, triggering unneeded rebuild of objects.
I assume a scenario like this:
1. You have a source tree that has already been built
with CONFIG_FOO disabled
2. Run "make menuconfig" to enable CONFIG_FOO
3. CONFIG_FOO turns out to be unnecessary.
Run "make menuconfig" again to disable CONFIG_FOO
4. Run "make"
In this case, include/config/foo.h should not be touched since there
is no change in CONFIG_FOO. The sync process should be delayed until
the user really attempts to build the kernel.
This commit has another motivation; I want to suppress the 'No such
file or directory' warning from the 'include' directive.
The top-level Makefile includes auto.conf with '-include' directive,
like this:
ifeq ($(dot-config),1)
-include include/config/auto.conf
endif
This looks strange because auto.conf is mandatory when dot-config is 1.
I guess only the reason of using '-include' is to suppress the warning
'include/config/auto.conf: No such file or directory' when building
from a clean tree. However, this has a side-effect; Make considers
the files included by '-include' are optional. Hence, Make continues
to build even if it fails to generate include/config/auto.conf. I will
change this in the next commit, but the warning message is annoying.
(At least, kbuild test robot reports it as a regression.)
With this commit, Kconfig will generate all configuration files together
with the .config and I guess it is a solution good enough to suppress
the warning.
Note:
GNU Make 4.2 or later does not display the warning from the 'include'
directive if include files are successfully generated. See GNU Make
commit 87a5f98d248f ("[SV 102] Don't show unnecessary include file
errors.") However, older GNU Make versions are still widely used.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-07-20 07:46:31 +00:00
|
|
|
int conf_write_autoconf(int overwrite)
|
2006-06-09 05:12:39 +00:00
|
|
|
{
|
|
|
|
struct symbol *sym;
|
2009-05-17 23:36:54 +00:00
|
|
|
const char *name;
|
kconfig: allow all config targets to write auto.conf if missing
Currently, only syncconfig creates or updates include/config/auto.conf
and some other files. Other config targets create or update only the
.config file.
When you configure and build the kernel from a pristine source tree,
any config target is followed by syncconfig in the build stage since
include/config/auto.conf is missing.
We are moving compiler tests from Makefile to Kconfig. It means that
parsing Kconfig files will be more costly since Kconfig invokes the
compiler commands internally. Thus, we want to avoid invoking Kconfig
twice (one for *config to create the .config, and one for syncconfig
to synchronize the auto.conf). If auto.conf does not exist, we can
generate all configuration files in the first configuration stage,
which will save the syncconfig in the build stage.
Please note this should be done only when auto.conf is missing. If
*config blindly did this, time stamp files under include/config/ would
be unnecessarily touched, triggering unneeded rebuild of objects.
I assume a scenario like this:
1. You have a source tree that has already been built
with CONFIG_FOO disabled
2. Run "make menuconfig" to enable CONFIG_FOO
3. CONFIG_FOO turns out to be unnecessary.
Run "make menuconfig" again to disable CONFIG_FOO
4. Run "make"
In this case, include/config/foo.h should not be touched since there
is no change in CONFIG_FOO. The sync process should be delayed until
the user really attempts to build the kernel.
This commit has another motivation; I want to suppress the 'No such
file or directory' warning from the 'include' directive.
The top-level Makefile includes auto.conf with '-include' directive,
like this:
ifeq ($(dot-config),1)
-include include/config/auto.conf
endif
This looks strange because auto.conf is mandatory when dot-config is 1.
I guess only the reason of using '-include' is to suppress the warning
'include/config/auto.conf: No such file or directory' when building
from a clean tree. However, this has a side-effect; Make considers
the files included by '-include' are optional. Hence, Make continues
to build even if it fails to generate include/config/auto.conf. I will
change this in the next commit, but the warning message is annoying.
(At least, kbuild test robot reports it as a regression.)
With this commit, Kconfig will generate all configuration files together
with the .config and I guess it is a solution good enough to suppress
the warning.
Note:
GNU Make 4.2 or later does not display the warning from the 'include'
directive if include files are successfully generated. See GNU Make
commit 87a5f98d248f ("[SV 102] Don't show unnecessary include file
errors.") However, older GNU Make versions are still widely used.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-07-20 07:46:31 +00:00
|
|
|
const char *autoconf_name = conf_get_autoconfig_name();
|
kbuild: create modules.builtin without Makefile.modbuiltin or tristate.conf
Commit bc081dd6e9f6 ("kbuild: generate modules.builtin") added
infrastructure to generate modules.builtin, the list of all
builtin modules.
Basically, it works like this:
- Kconfig generates include/config/tristate.conf, the list of
tristate CONFIG options with a value in a capital letter.
- scripts/Makefile.modbuiltin makes Kbuild descend into
directories to collect the information of builtin modules.
I am not a big fan of it because Kbuild ends up with traversing
the source tree twice.
I am not sure how perfectly it should work, but this approach cannot
avoid false positives; even if the relevant CONFIG option is tristate,
some Makefiles forces obj-m to obj-y.
Some examples are:
arch/powerpc/platforms/powermac/Makefile:
obj-$(CONFIG_NVRAM:m=y) += nvram.o
net/ipv6/Makefile:
obj-$(subst m,y,$(CONFIG_IPV6)) += inet6_hashtables.o
net/netlabel/Makefile:
obj-$(subst m,y,$(CONFIG_IPV6)) += netlabel_calipso.o
Nobody has complained about (or noticed) it, so it is probably fine to
have false positives in modules.builtin.
This commit simplifies the implementation. Let's exploit the fact
that every module has MODULE_LICENSE(). (modpost shows a warning if
MODULE_LICENSE is missing. If so, 0-day bot would already have blocked
such a module.)
I added MODULE_FILE to <linux/module.h>. When the code is being compiled
as builtin, it will be filled with the file path of the module, and
collected into modules.builtin.info. Then, scripts/link-vmlinux.sh
extracts the list of builtin modules out of it.
This new approach fixes the false-positives above, but adds another
type of false-positives; non-modular code may have MODULE_LICENSE()
by mistake. This is not a big deal, it is just the code is always
orphan. We can clean it up if we like. You can see cleanup examples by:
$ git log --grep='make.* explicitly non-modular'
To sum up, this commits deletes lots of code, but still produces almost
equivalent results. Please note it does not increase the vmlinux size at
all. As you can see in include/asm-generic/vmlinux.lds.h, the .modinfo
section is discarded in the link stage.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2019-12-19 08:33:29 +00:00
|
|
|
FILE *out, *out_h;
|
2010-07-31 21:35:33 +00:00
|
|
|
int i;
|
2006-06-09 05:12:39 +00:00
|
|
|
|
kconfig: allow all config targets to write auto.conf if missing
Currently, only syncconfig creates or updates include/config/auto.conf
and some other files. Other config targets create or update only the
.config file.
When you configure and build the kernel from a pristine source tree,
any config target is followed by syncconfig in the build stage since
include/config/auto.conf is missing.
We are moving compiler tests from Makefile to Kconfig. It means that
parsing Kconfig files will be more costly since Kconfig invokes the
compiler commands internally. Thus, we want to avoid invoking Kconfig
twice (one for *config to create the .config, and one for syncconfig
to synchronize the auto.conf). If auto.conf does not exist, we can
generate all configuration files in the first configuration stage,
which will save the syncconfig in the build stage.
Please note this should be done only when auto.conf is missing. If
*config blindly did this, time stamp files under include/config/ would
be unnecessarily touched, triggering unneeded rebuild of objects.
I assume a scenario like this:
1. You have a source tree that has already been built
with CONFIG_FOO disabled
2. Run "make menuconfig" to enable CONFIG_FOO
3. CONFIG_FOO turns out to be unnecessary.
Run "make menuconfig" again to disable CONFIG_FOO
4. Run "make"
In this case, include/config/foo.h should not be touched since there
is no change in CONFIG_FOO. The sync process should be delayed until
the user really attempts to build the kernel.
This commit has another motivation; I want to suppress the 'No such
file or directory' warning from the 'include' directive.
The top-level Makefile includes auto.conf with '-include' directive,
like this:
ifeq ($(dot-config),1)
-include include/config/auto.conf
endif
This looks strange because auto.conf is mandatory when dot-config is 1.
I guess only the reason of using '-include' is to suppress the warning
'include/config/auto.conf: No such file or directory' when building
from a clean tree. However, this has a side-effect; Make considers
the files included by '-include' are optional. Hence, Make continues
to build even if it fails to generate include/config/auto.conf. I will
change this in the next commit, but the warning message is annoying.
(At least, kbuild test robot reports it as a regression.)
With this commit, Kconfig will generate all configuration files together
with the .config and I guess it is a solution good enough to suppress
the warning.
Note:
GNU Make 4.2 or later does not display the warning from the 'include'
directive if include files are successfully generated. See GNU Make
commit 87a5f98d248f ("[SV 102] Don't show unnecessary include file
errors.") However, older GNU Make versions are still widely used.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-07-20 07:46:31 +00:00
|
|
|
if (!overwrite && is_present(autoconf_name))
|
|
|
|
return 0;
|
|
|
|
|
2018-07-20 07:46:26 +00:00
|
|
|
conf_write_dep("include/config/auto.conf.cmd");
|
2006-06-09 05:12:39 +00:00
|
|
|
|
2018-11-30 09:15:49 +00:00
|
|
|
if (conf_touch_deps())
|
2006-06-09 05:12:42 +00:00
|
|
|
return 1;
|
|
|
|
|
2006-06-09 05:12:39 +00:00
|
|
|
out = fopen(".tmpconfig", "w");
|
|
|
|
if (!out)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
out_h = fopen(".tmpconfig.h", "w");
|
|
|
|
if (!out_h) {
|
|
|
|
fclose(out);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-10-01 05:32:45 +00:00
|
|
|
conf_write_heading(out, &comment_style_pound);
|
|
|
|
conf_write_heading(out_h, &comment_style_c);
|
2006-06-09 05:12:39 +00:00
|
|
|
|
|
|
|
for_all_symbols(i, sym) {
|
|
|
|
sym_calc_value(sym);
|
2012-04-12 23:46:33 +00:00
|
|
|
if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
|
2006-06-09 05:12:39 +00:00
|
|
|
continue;
|
2010-07-31 21:35:33 +00:00
|
|
|
|
kbuild: create modules.builtin without Makefile.modbuiltin or tristate.conf
Commit bc081dd6e9f6 ("kbuild: generate modules.builtin") added
infrastructure to generate modules.builtin, the list of all
builtin modules.
Basically, it works like this:
- Kconfig generates include/config/tristate.conf, the list of
tristate CONFIG options with a value in a capital letter.
- scripts/Makefile.modbuiltin makes Kbuild descend into
directories to collect the information of builtin modules.
I am not a big fan of it because Kbuild ends up with traversing
the source tree twice.
I am not sure how perfectly it should work, but this approach cannot
avoid false positives; even if the relevant CONFIG option is tristate,
some Makefiles forces obj-m to obj-y.
Some examples are:
arch/powerpc/platforms/powermac/Makefile:
obj-$(CONFIG_NVRAM:m=y) += nvram.o
net/ipv6/Makefile:
obj-$(subst m,y,$(CONFIG_IPV6)) += inet6_hashtables.o
net/netlabel/Makefile:
obj-$(subst m,y,$(CONFIG_IPV6)) += netlabel_calipso.o
Nobody has complained about (or noticed) it, so it is probably fine to
have false positives in modules.builtin.
This commit simplifies the implementation. Let's exploit the fact
that every module has MODULE_LICENSE(). (modpost shows a warning if
MODULE_LICENSE is missing. If so, 0-day bot would already have blocked
such a module.)
I added MODULE_FILE to <linux/module.h>. When the code is being compiled
as builtin, it will be filled with the file path of the module, and
collected into modules.builtin.info. Then, scripts/link-vmlinux.sh
extracts the list of builtin modules out of it.
This new approach fixes the false-positives above, but adds another
type of false-positives; non-modular code may have MODULE_LICENSE()
by mistake. This is not a big deal, it is just the code is always
orphan. We can clean it up if we like. You can see cleanup examples by:
$ git log --grep='make.* explicitly non-modular'
To sum up, this commits deletes lots of code, but still produces almost
equivalent results. Please note it does not increase the vmlinux size at
all. As you can see in include/asm-generic/vmlinux.lds.h, the .modinfo
section is discarded in the link stage.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2019-12-19 08:33:29 +00:00
|
|
|
/* write symbols to auto.conf and autoconf.h */
|
2011-05-16 03:42:09 +00:00
|
|
|
conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
|
|
|
|
conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
|
2006-06-09 05:12:39 +00:00
|
|
|
}
|
|
|
|
fclose(out);
|
|
|
|
fclose(out_h);
|
|
|
|
|
|
|
|
name = getenv("KCONFIG_AUTOHEADER");
|
|
|
|
if (!name)
|
2009-10-17 22:49:24 +00:00
|
|
|
name = "include/generated/autoconf.h";
|
2018-07-20 07:46:29 +00:00
|
|
|
if (make_parent_dir(name))
|
|
|
|
return 1;
|
2006-06-09 05:12:39 +00:00
|
|
|
if (rename(".tmpconfig.h", name))
|
|
|
|
return 1;
|
2018-07-20 07:46:29 +00:00
|
|
|
|
kconfig: allow all config targets to write auto.conf if missing
Currently, only syncconfig creates or updates include/config/auto.conf
and some other files. Other config targets create or update only the
.config file.
When you configure and build the kernel from a pristine source tree,
any config target is followed by syncconfig in the build stage since
include/config/auto.conf is missing.
We are moving compiler tests from Makefile to Kconfig. It means that
parsing Kconfig files will be more costly since Kconfig invokes the
compiler commands internally. Thus, we want to avoid invoking Kconfig
twice (one for *config to create the .config, and one for syncconfig
to synchronize the auto.conf). If auto.conf does not exist, we can
generate all configuration files in the first configuration stage,
which will save the syncconfig in the build stage.
Please note this should be done only when auto.conf is missing. If
*config blindly did this, time stamp files under include/config/ would
be unnecessarily touched, triggering unneeded rebuild of objects.
I assume a scenario like this:
1. You have a source tree that has already been built
with CONFIG_FOO disabled
2. Run "make menuconfig" to enable CONFIG_FOO
3. CONFIG_FOO turns out to be unnecessary.
Run "make menuconfig" again to disable CONFIG_FOO
4. Run "make"
In this case, include/config/foo.h should not be touched since there
is no change in CONFIG_FOO. The sync process should be delayed until
the user really attempts to build the kernel.
This commit has another motivation; I want to suppress the 'No such
file or directory' warning from the 'include' directive.
The top-level Makefile includes auto.conf with '-include' directive,
like this:
ifeq ($(dot-config),1)
-include include/config/auto.conf
endif
This looks strange because auto.conf is mandatory when dot-config is 1.
I guess only the reason of using '-include' is to suppress the warning
'include/config/auto.conf: No such file or directory' when building
from a clean tree. However, this has a side-effect; Make considers
the files included by '-include' are optional. Hence, Make continues
to build even if it fails to generate include/config/auto.conf. I will
change this in the next commit, but the warning message is annoying.
(At least, kbuild test robot reports it as a regression.)
With this commit, Kconfig will generate all configuration files together
with the .config and I guess it is a solution good enough to suppress
the warning.
Note:
GNU Make 4.2 or later does not display the warning from the 'include'
directive if include files are successfully generated. See GNU Make
commit 87a5f98d248f ("[SV 102] Don't show unnecessary include file
errors.") However, older GNU Make versions are still widely used.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-07-20 07:46:31 +00:00
|
|
|
if (make_parent_dir(autoconf_name))
|
2018-07-20 07:46:29 +00:00
|
|
|
return 1;
|
2006-06-09 05:12:39 +00:00
|
|
|
/*
|
|
|
|
* This must be the last step, kbuild has a dependency on auto.conf
|
|
|
|
* and this marks the successful completion of the previous steps.
|
|
|
|
*/
|
kconfig: allow all config targets to write auto.conf if missing
Currently, only syncconfig creates or updates include/config/auto.conf
and some other files. Other config targets create or update only the
.config file.
When you configure and build the kernel from a pristine source tree,
any config target is followed by syncconfig in the build stage since
include/config/auto.conf is missing.
We are moving compiler tests from Makefile to Kconfig. It means that
parsing Kconfig files will be more costly since Kconfig invokes the
compiler commands internally. Thus, we want to avoid invoking Kconfig
twice (one for *config to create the .config, and one for syncconfig
to synchronize the auto.conf). If auto.conf does not exist, we can
generate all configuration files in the first configuration stage,
which will save the syncconfig in the build stage.
Please note this should be done only when auto.conf is missing. If
*config blindly did this, time stamp files under include/config/ would
be unnecessarily touched, triggering unneeded rebuild of objects.
I assume a scenario like this:
1. You have a source tree that has already been built
with CONFIG_FOO disabled
2. Run "make menuconfig" to enable CONFIG_FOO
3. CONFIG_FOO turns out to be unnecessary.
Run "make menuconfig" again to disable CONFIG_FOO
4. Run "make"
In this case, include/config/foo.h should not be touched since there
is no change in CONFIG_FOO. The sync process should be delayed until
the user really attempts to build the kernel.
This commit has another motivation; I want to suppress the 'No such
file or directory' warning from the 'include' directive.
The top-level Makefile includes auto.conf with '-include' directive,
like this:
ifeq ($(dot-config),1)
-include include/config/auto.conf
endif
This looks strange because auto.conf is mandatory when dot-config is 1.
I guess only the reason of using '-include' is to suppress the warning
'include/config/auto.conf: No such file or directory' when building
from a clean tree. However, this has a side-effect; Make considers
the files included by '-include' are optional. Hence, Make continues
to build even if it fails to generate include/config/auto.conf. I will
change this in the next commit, but the warning message is annoying.
(At least, kbuild test robot reports it as a regression.)
With this commit, Kconfig will generate all configuration files together
with the .config and I guess it is a solution good enough to suppress
the warning.
Note:
GNU Make 4.2 or later does not display the warning from the 'include'
directive if include files are successfully generated. See GNU Make
commit 87a5f98d248f ("[SV 102] Don't show unnecessary include file
errors.") However, older GNU Make versions are still widely used.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-07-20 07:46:31 +00:00
|
|
|
if (rename(".tmpconfig", autoconf_name))
|
2006-06-09 05:12:39 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-12-13 08:34:06 +00:00
|
|
|
|
2021-04-10 06:57:22 +00:00
|
|
|
static bool conf_changed;
|
2006-12-13 08:34:08 +00:00
|
|
|
static void (*conf_changed_callback)(void);
|
2006-12-13 08:34:07 +00:00
|
|
|
|
2021-04-10 06:57:22 +00:00
|
|
|
void conf_set_changed(bool val)
|
2006-12-13 08:34:07 +00:00
|
|
|
{
|
2021-04-10 06:57:22 +00:00
|
|
|
if (conf_changed_callback && conf_changed != val)
|
2006-12-13 08:34:08 +00:00
|
|
|
conf_changed_callback();
|
2006-12-13 08:34:07 +00:00
|
|
|
|
2021-04-10 06:57:22 +00:00
|
|
|
conf_changed = val;
|
2006-12-13 08:34:07 +00:00
|
|
|
}
|
|
|
|
|
2006-12-13 08:34:06 +00:00
|
|
|
bool conf_get_changed(void)
|
|
|
|
{
|
2021-04-10 06:57:22 +00:00
|
|
|
return conf_changed;
|
2006-12-13 08:34:06 +00:00
|
|
|
}
|
2006-12-13 08:34:08 +00:00
|
|
|
|
|
|
|
void conf_set_changed_callback(void (*fn)(void))
|
|
|
|
{
|
|
|
|
conf_changed_callback = fn;
|
|
|
|
}
|
2008-05-06 02:55:55 +00:00
|
|
|
|
2013-06-07 03:37:00 +00:00
|
|
|
void set_all_choice_values(struct symbol *csym)
|
2008-05-06 02:55:55 +00:00
|
|
|
{
|
|
|
|
struct property *prop;
|
2010-08-12 07:11:52 +00:00
|
|
|
struct symbol *sym;
|
2008-05-06 02:55:55 +00:00
|
|
|
struct expr *e;
|
2010-08-12 07:11:52 +00:00
|
|
|
|
|
|
|
prop = sym_get_choice_prop(csym);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set all non-assinged choice values to no
|
|
|
|
*/
|
|
|
|
expr_list_for_each_sym(prop->expr, e, sym) {
|
|
|
|
if (!sym_has_value(sym))
|
|
|
|
sym->def[S_DEF_USER].tri = no;
|
|
|
|
}
|
|
|
|
csym->flags |= SYMBOL_DEF_USER;
|
|
|
|
/* clear VALID to get value calculated */
|
2013-06-07 03:37:00 +00:00
|
|
|
csym->flags &= ~(SYMBOL_VALID | SYMBOL_NEED_SET_CHOICE_VALUES);
|
2010-08-12 07:11:52 +00:00
|
|
|
}
|