blob: 2568dbe16ed64a328ea219c16b2af407992adaa3 [file] [log] [blame]
Masahiro Yamada0c874102018-12-18 21:13:35 +09001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
Masahiro Yamada67424f62019-05-10 15:12:05 +09006#include <sys/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <sys/stat.h>
Boris Kolpackov78cb0902020-11-23 11:38:18 +02008#include <sys/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <ctype.h>
Arnaud Lacombe94bedec2010-08-17 01:40:20 -040010#include <errno.h>
Roman Zippel2e3646e2006-06-08 22:12:42 -070011#include <fcntl.h>
Masahiro Yamada558e78e2018-12-21 17:33:04 +090012#include <limits.h>
Arnaud Lacombe10a4b272011-06-01 16:00:46 -040013#include <stdarg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
17#include <time.h>
18#include <unistd.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "lkc.h"
21
Masahiro Yamada06081822018-07-20 16:46:27 +090022/* return true if 'path' exists, false otherwise */
23static bool is_present(const char *path)
24{
25 struct stat st;
26
27 return !stat(path, &st);
28}
29
30/* return true if 'path' exists and it is a directory, false otherwise */
31static bool is_dir(const char *path)
32{
33 struct stat st;
34
35 if (stat(path, &st))
36 return 0;
37
38 return S_ISDIR(st.st_mode);
39}
40
Masahiro Yamada67424f62019-05-10 15:12:05 +090041/* return true if the given two files are the same, false otherwise */
42static bool is_same(const char *file1, const char *file2)
43{
44 int fd1, fd2;
45 struct stat st1, st2;
46 void *map1, *map2;
47 bool ret = false;
48
49 fd1 = open(file1, O_RDONLY);
50 if (fd1 < 0)
51 return ret;
52
53 fd2 = open(file2, O_RDONLY);
54 if (fd2 < 0)
55 goto close1;
56
57 ret = fstat(fd1, &st1);
58 if (ret)
59 goto close2;
60 ret = fstat(fd2, &st2);
61 if (ret)
62 goto close2;
63
64 if (st1.st_size != st2.st_size)
65 goto close2;
66
67 map1 = mmap(NULL, st1.st_size, PROT_READ, MAP_PRIVATE, fd1, 0);
68 if (map1 == MAP_FAILED)
69 goto close2;
70
71 map2 = mmap(NULL, st2.st_size, PROT_READ, MAP_PRIVATE, fd2, 0);
72 if (map2 == MAP_FAILED)
73 goto close2;
74
75 if (bcmp(map1, map2, st1.st_size))
76 goto close2;
77
78 ret = true;
79close2:
80 close(fd2);
81close1:
82 close(fd1);
83
84 return ret;
85}
86
Masahiro Yamada06081822018-07-20 16:46:27 +090087/*
88 * Create the parent directory of the given path.
89 *
90 * For example, if 'include/config/auto.conf' is given, create 'include/config'.
91 */
92static int make_parent_dir(const char *path)
93{
94 char tmp[PATH_MAX + 1];
95 char *p;
96
97 strncpy(tmp, path, sizeof(tmp));
98 tmp[sizeof(tmp) - 1] = 0;
99
100 /* Remove the base name. Just return if nothing is left */
101 p = strrchr(tmp, '/');
102 if (!p)
103 return 0;
104 *(p + 1) = 0;
105
106 /* Just in case it is an absolute path */
107 p = tmp;
108 while (*p == '/')
109 p++;
110
111 while ((p = strchr(p, '/'))) {
112 *p = 0;
113
114 /* skip if the directory exists */
115 if (!is_dir(tmp) && mkdir(tmp, 0755))
116 return -1;
117
118 *p = '/';
119 while (*p == '/')
120 p++;
121 }
122
123 return 0;
124}
125
Masahiro Yamada1508fec2018-11-30 18:15:50 +0900126static char depfile_path[PATH_MAX];
127static size_t depfile_prefix_len;
128
129/* touch depfile for symbol 'name' */
130static int conf_touch_dep(const char *name)
131{
132 int fd, ret;
133 const char *s;
134 char *d, c;
135
136 /* check overflow: prefix + name + ".h" + '\0' must fit in buffer. */
137 if (depfile_prefix_len + strlen(name) + 3 > sizeof(depfile_path))
138 return -1;
139
140 d = depfile_path + depfile_prefix_len;
141 s = name;
142
143 while ((c = *s++))
144 *d++ = (c == '_') ? '/' : tolower(c);
145 strcpy(d, ".h");
146
147 /* Assume directory path already exists. */
148 fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
149 if (fd == -1) {
150 if (errno != ENOENT)
151 return -1;
152
153 ret = make_parent_dir(depfile_path);
154 if (ret)
155 return ret;
156
157 /* Try it again. */
158 fd = open(depfile_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
159 if (fd == -1)
160 return -1;
161 }
162 close(fd);
163
164 return 0;
165}
166
Michal Marekad8d40c2015-02-24 16:37:13 +0100167struct conf_printer {
168 void (*print_symbol)(FILE *, struct symbol *, const char *, void *);
169 void (*print_comment)(FILE *, const char *, void *);
170};
171
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800172static void conf_warning(const char *fmt, ...)
173 __attribute__ ((format (printf, 1, 2)));
174
Michal Marek42368c32010-08-17 10:21:19 +0200175static void conf_message(const char *fmt, ...)
176 __attribute__ ((format (printf, 1, 2)));
177
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800178static const char *conf_filename;
Masahiro Yamada84dd95d2018-01-11 22:39:41 +0900179static int conf_lineno, conf_warnings;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800180
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800181static void conf_warning(const char *fmt, ...)
182{
183 va_list ap;
184 va_start(ap, fmt);
185 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
186 vfprintf(stderr, fmt, ap);
187 fprintf(stderr, "\n");
188 va_end(ap);
189 conf_warnings++;
190}
191
Masahiro Yamada5accd7f2018-07-05 11:46:12 +0900192static void conf_default_message_callback(const char *s)
Michal Marek42368c32010-08-17 10:21:19 +0200193{
194 printf("#\n# ");
Masahiro Yamada5accd7f2018-07-05 11:46:12 +0900195 printf("%s", s);
Michal Marek42368c32010-08-17 10:21:19 +0200196 printf("\n#\n");
197}
198
Masahiro Yamada5accd7f2018-07-05 11:46:12 +0900199static void (*conf_message_callback)(const char *s) =
Michal Marek42368c32010-08-17 10:21:19 +0200200 conf_default_message_callback;
Masahiro Yamada5accd7f2018-07-05 11:46:12 +0900201void conf_set_message_callback(void (*fn)(const char *s))
Michal Marek42368c32010-08-17 10:21:19 +0200202{
203 conf_message_callback = fn;
204}
205
206static void conf_message(const char *fmt, ...)
207{
208 va_list ap;
Masahiro Yamada5accd7f2018-07-05 11:46:12 +0900209 char buf[4096];
210
211 if (!conf_message_callback)
212 return;
Michal Marek42368c32010-08-17 10:21:19 +0200213
214 va_start(ap, fmt);
Masahiro Yamada5accd7f2018-07-05 11:46:12 +0900215
216 vsnprintf(buf, sizeof(buf), fmt, ap);
217 conf_message_callback(buf);
Colin Ian Kingb6a2ab22015-01-12 13:18:26 +0000218 va_end(ap);
Michal Marek42368c32010-08-17 10:21:19 +0200219}
220
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700221const char *conf_get_configname(void)
222{
223 char *name = getenv("KCONFIG_CONFIG");
224
225 return name ? name : ".config";
226}
227
Masahiro Yamada9b9f5942019-05-13 01:00:53 +0900228static const char *conf_get_autoconfig_name(void)
Markus Heidelberg12122f62009-05-18 01:36:54 +0200229{
230 char *name = getenv("KCONFIG_AUTOCONFIG");
231
232 return name ? name : "include/config/auto.conf";
233}
234
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100235static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
236{
237 char *p2;
238
239 switch (sym->type) {
240 case S_TRISTATE:
241 if (p[0] == 'm') {
242 sym->def[def].tri = mod;
243 sym->flags |= def_flags;
244 break;
245 }
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400246 /* fall through */
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100247 case S_BOOLEAN:
248 if (p[0] == 'y') {
249 sym->def[def].tri = yes;
250 sym->flags |= def_flags;
251 break;
252 }
253 if (p[0] == 'n') {
254 sym->def[def].tri = no;
255 sym->flags |= def_flags;
256 break;
257 }
Yann E. MORIN04b19b772013-08-06 18:45:07 +0200258 if (def != S_DEF_AUTO)
259 conf_warning("symbol value '%s' invalid for %s",
260 p, sym->name);
Arnaud Lacombe75f14682011-05-31 12:31:57 -0400261 return 1;
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100262 case S_STRING:
263 if (*p++ != '"')
264 break;
265 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
266 if (*p2 == '"') {
267 *p2 = 0;
268 break;
269 }
270 memmove(p2, p2 + 1, strlen(p2));
271 }
272 if (!p2) {
Yann E. MORIN04b19b772013-08-06 18:45:07 +0200273 if (def != S_DEF_AUTO)
274 conf_warning("invalid string found");
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100275 return 1;
276 }
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400277 /* fall through */
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100278 case S_INT:
279 case S_HEX:
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100280 if (sym_string_valid(sym, p)) {
Masahiro Yamadacd81fc82018-02-17 03:38:31 +0900281 sym->def[def].val = xstrdup(p);
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100282 sym->flags |= def_flags;
283 } else {
Yann E. MORIN04b19b772013-08-06 18:45:07 +0200284 if (def != S_DEF_AUTO)
285 conf_warning("symbol value '%s' invalid for %s",
286 p, sym->name);
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100287 return 1;
288 }
289 break;
290 default:
291 ;
292 }
293 return 0;
294}
295
Cody Schafer1a7a8c62012-07-13 11:27:12 -0700296#define LINE_GROWTH 16
297static int add_byte(int c, char **lineptr, size_t slen, size_t *n)
298{
299 char *nline;
300 size_t new_size = slen + 1;
301 if (new_size > *n) {
302 new_size += LINE_GROWTH - 1;
303 new_size *= 2;
Masahiro Yamadad717f242018-02-09 01:19:07 +0900304 nline = xrealloc(*lineptr, new_size);
Cody Schafer1a7a8c62012-07-13 11:27:12 -0700305 if (!nline)
306 return -1;
307
308 *lineptr = nline;
309 *n = new_size;
310 }
311
312 (*lineptr)[slen] = c;
313
314 return 0;
315}
316
317static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream)
318{
319 char *line = *lineptr;
320 size_t slen = 0;
321
322 for (;;) {
323 int c = getc(stream);
324
325 switch (c) {
326 case '\n':
327 if (add_byte(c, &line, slen, n) < 0)
328 goto e_out;
329 slen++;
330 /* fall through */
331 case EOF:
332 if (add_byte('\0', &line, slen, n) < 0)
333 goto e_out;
334 *lineptr = line;
335 if (slen == 0)
336 return -1;
337 return slen;
338 default:
339 if (add_byte(c, &line, slen, n) < 0)
340 goto e_out;
341 slen++;
342 }
343 }
344
345e_out:
346 line[slen-1] = '\0';
347 *lineptr = line;
348 return -1;
349}
350
Roman Zippel669bfad92006-06-08 22:12:42 -0700351int conf_read_simple(const char *name, int def)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 FILE *in = NULL;
Cody Schafer1a7a8c62012-07-13 11:27:12 -0700354 char *line = NULL;
355 size_t line_asize = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 char *p, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct symbol *sym;
Roman Zippel669bfad92006-06-08 22:12:42 -0700358 int i, def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (name) {
361 in = zconf_fopen(name);
362 } else {
Roman Zippelface4372006-06-08 22:12:45 -0700363 struct property *prop;
364
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700365 name = conf_get_configname();
Roman Zippelddc97ca2006-06-08 22:12:38 -0700366 in = zconf_fopen(name);
367 if (in)
368 goto load;
Karsten Wiesebfc10002006-12-13 00:34:07 -0800369 sym_add_change_count(1);
Al Viro6b87b702016-01-14 18:13:49 +0000370 if (!sym_defconfig_list)
Roman Zippelface4372006-06-08 22:12:45 -0700371 return 1;
372
373 for_all_defaults(sym_defconfig_list, prop) {
374 if (expr_calc_value(prop->visible.expr) == no ||
375 prop->expr->type != E_SYMBOL)
376 continue;
Masahiro Yamada104daea2018-05-28 18:21:40 +0900377 sym_calc_value(prop->expr->left.sym);
378 name = sym_get_string_value(prop->expr->left.sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 in = zconf_fopen(name);
380 if (in) {
Sam Ravnborg694c49a2018-05-22 21:36:12 +0200381 conf_message("using defaults found in %s",
Michal Marek42368c32010-08-17 10:21:19 +0200382 name);
Roman Zippelddc97ca2006-06-08 22:12:38 -0700383 goto load;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385 }
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!in)
388 return 1;
389
Roman Zippelddc97ca2006-06-08 22:12:38 -0700390load:
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800391 conf_filename = name;
392 conf_lineno = 0;
393 conf_warnings = 0;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800394
Roman Zippel669bfad92006-06-08 22:12:42 -0700395 def_flags = SYMBOL_DEF << def;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 for_all_symbols(i, sym) {
Roman Zippel669bfad92006-06-08 22:12:42 -0700397 sym->flags |= SYMBOL_CHANGED;
398 sym->flags &= ~(def_flags|SYMBOL_VALID);
Yann E. MORIN490f1612013-06-25 23:37:44 +0200399 if (sym_is_choice(sym))
400 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 switch (sym->type) {
402 case S_INT:
403 case S_HEX:
404 case S_STRING:
Roman Zippel669bfad92006-06-08 22:12:42 -0700405 if (sym->def[def].val)
406 free(sym->def[def].val);
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400407 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 default:
Roman Zippel669bfad92006-06-08 22:12:42 -0700409 sym->def[def].val = NULL;
410 sym->def[def].tri = no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 }
413
Cody Schafer1a7a8c62012-07-13 11:27:12 -0700414 while (compat_getline(&line, &line_asize, in) != -1) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800415 conf_lineno++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 sym = NULL;
Arnaud Lacombe8baefd32010-08-24 00:14:47 -0400417 if (line[0] == '#') {
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400418 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 continue;
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400420 p = strchr(line + 2 + strlen(CONFIG_), ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (!p)
422 continue;
423 *p++ = 0;
424 if (strncmp(p, "is not set", 10))
425 continue;
Roman Zippel669bfad92006-06-08 22:12:42 -0700426 if (def == S_DEF_USER) {
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400427 sym = sym_find(line + 2 + strlen(CONFIG_));
zippel@linux-m68k.org661b0682008-09-29 05:27:11 +0200428 if (!sym) {
429 sym_add_change_count(1);
Masahiro Yamada75889e92018-11-30 18:15:48 +0900430 continue;
zippel@linux-m68k.org661b0682008-09-29 05:27:11 +0200431 }
Roman Zippel669bfad92006-06-08 22:12:42 -0700432 } else {
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400433 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
Roman Zippel669bfad92006-06-08 22:12:42 -0700434 if (sym->type == S_UNKNOWN)
435 sym->type = S_BOOLEAN;
436 }
437 if (sym->flags & def_flags) {
Jan Engelhardtd84876f2008-01-03 23:33:44 +0100438 conf_warning("override: reassigning to symbol %s", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440 switch (sym->type) {
441 case S_BOOLEAN:
442 case S_TRISTATE:
Roman Zippel669bfad92006-06-08 22:12:42 -0700443 sym->def[def].tri = no;
444 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446 default:
447 ;
448 }
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400449 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
450 p = strchr(line + strlen(CONFIG_), '=');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (!p)
452 continue;
453 *p++ = 0;
454 p2 = strchr(p, '\n');
Matthew Wilcoxd3660a82006-07-13 12:54:07 -0600455 if (p2) {
456 *p2-- = 0;
457 if (*p2 == '\r')
458 *p2 = 0;
459 }
Masahiro Yamada2aabbed2018-11-30 18:15:51 +0900460
461 sym = sym_find(line + strlen(CONFIG_));
462 if (!sym) {
463 if (def == S_DEF_AUTO)
464 /*
465 * Reading from include/config/auto.conf
466 * If CONFIG_FOO previously existed in
467 * auto.conf but it is missing now,
468 * include/config/foo.h must be touched.
469 */
470 conf_touch_dep(line + strlen(CONFIG_));
471 else
zippel@linux-m68k.org661b0682008-09-29 05:27:11 +0200472 sym_add_change_count(1);
Masahiro Yamada2aabbed2018-11-30 18:15:51 +0900473 continue;
Roman Zippel669bfad92006-06-08 22:12:42 -0700474 }
Masahiro Yamada2aabbed2018-11-30 18:15:51 +0900475
Roman Zippel669bfad92006-06-08 22:12:42 -0700476 if (sym->flags & def_flags) {
Jan Engelhardtd84876f2008-01-03 23:33:44 +0100477 conf_warning("override: reassigning to symbol %s", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Sam Ravnborg9c900a92007-11-10 20:01:56 +0100479 if (conf_set_sym_val(sym, def, def_flags, p))
480 continue;
Arnaud Lacombe8baefd32010-08-24 00:14:47 -0400481 } else {
482 if (line[0] != '\r' && line[0] != '\n')
Paul Bollea4663912016-03-16 21:27:27 +0100483 conf_warning("unexpected data: %.*s",
484 (int)strcspn(line, "\r\n"), line);
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 continue;
487 }
Masahiro Yamada75889e92018-11-30 18:15:48 +0900488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (sym && sym_is_choice_value(sym)) {
490 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
Roman Zippel669bfad92006-06-08 22:12:42 -0700491 switch (sym->def[def].tri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 case no:
493 break;
494 case mod:
Roman Zippel669bfad92006-06-08 22:12:42 -0700495 if (cs->def[def].tri == yes) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800496 conf_warning("%s creates inconsistent choice state", sym->name);
Yann E. MORIN490f1612013-06-25 23:37:44 +0200497 cs->flags &= ~def_flags;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
500 case yes:
Jan Engelhardtd84876f2008-01-03 23:33:44 +0100501 if (cs->def[def].tri != no)
502 conf_warning("override: %s changes choice state", sym->name);
503 cs->def[def].val = sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505 }
Sam Ravnborgd6ee3572008-01-07 21:09:55 +0100506 cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 }
Cody Schafer1a7a8c62012-07-13 11:27:12 -0700509 free(line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 fclose(in);
Roman Zippel90389162005-11-08 21:34:49 -0800511 return 0;
512}
513
514int conf_read(const char *name)
515{
Arnaud Lacombe5d095982012-01-23 17:29:05 -0500516 struct symbol *sym;
Masahiro Yamada84dd95d2018-01-11 22:39:41 +0900517 int conf_unsaved = 0;
Arnaud Lacombe5d095982012-01-23 17:29:05 -0500518 int i;
Roman Zippel90389162005-11-08 21:34:49 -0800519
Karsten Wiesebfc10002006-12-13 00:34:07 -0800520 sym_set_change_count(0);
Roman Zippelddc97ca2006-06-08 22:12:38 -0700521
Al Viro6b87b702016-01-14 18:13:49 +0000522 if (conf_read_simple(name, S_DEF_USER)) {
523 sym_calc_value(modules_sym);
Roman Zippel90389162005-11-08 21:34:49 -0800524 return 1;
Al Viro6b87b702016-01-14 18:13:49 +0000525 }
526
527 sym_calc_value(modules_sym);
Roman Zippel90389162005-11-08 21:34:49 -0800528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 for_all_symbols(i, sym) {
530 sym_calc_value(sym);
Dirk Gouders693359f2018-07-03 14:43:31 +0200531 if (sym_is_choice(sym) || (sym->flags & SYMBOL_NO_WRITE))
Arnaud Lacombe5d095982012-01-23 17:29:05 -0500532 continue;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800533 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
534 /* check that calculated value agrees with saved value */
535 switch (sym->type) {
536 case S_BOOLEAN:
537 case S_TRISTATE:
Masahiro Yamadae3cd5132019-07-11 16:33:17 +0900538 if (sym->def[S_DEF_USER].tri == sym_get_tristate_value(sym))
Arnaud Lacombe5d095982012-01-23 17:29:05 -0500539 continue;
Masahiro Yamadae3cd5132019-07-11 16:33:17 +0900540 break;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800541 default:
Roman Zippel0c1822e2006-06-08 22:12:41 -0700542 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
Arnaud Lacombe5d095982012-01-23 17:29:05 -0500543 continue;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800544 break;
545 }
546 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
547 /* no previous value and not saved */
Arnaud Lacombe5d095982012-01-23 17:29:05 -0500548 continue;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800549 conf_unsaved++;
550 /* maybe print value in verbose mode... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
Roman Zippeld8982ba2007-07-09 11:43:58 -0700553 for_all_symbols(i, sym) {
554 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
555 /* Reset values of generates values, so they'll appear
556 * as new, if they should become visible, but that
557 * doesn't quite work if the Kconfig and the saved
558 * configuration disagree.
559 */
560 if (sym->visible == no && !conf_unsaved)
561 sym->flags &= ~SYMBOL_DEF_USER;
562 switch (sym->type) {
563 case S_STRING:
564 case S_INT:
565 case S_HEX:
566 /* Reset a string value if it's out of range */
567 if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
568 break;
569 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
570 conf_unsaved++;
571 break;
572 default:
573 break;
574 }
575 }
576 }
577
Karsten Wiesebfc10002006-12-13 00:34:07 -0800578 sym_add_change_count(conf_warnings || conf_unsaved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 return 0;
581}
582
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400583/*
584 * Kconfig configuration printer
585 *
586 * This printer is used when generating the resulting configuration after
587 * kconfig invocation and `defconfig' files. Unset symbol might be omitted by
588 * passing a non-NULL argument to the printer.
589 *
590 */
591static void
592kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
Sam Ravnborg49192f22010-07-31 23:35:33 +0200593{
Sam Ravnborg49192f22010-07-31 23:35:33 +0200594
Arnaud Lacombe0dce6312010-12-05 01:33:16 -0500595 switch (sym->type) {
Sam Ravnborg49192f22010-07-31 23:35:33 +0200596 case S_BOOLEAN:
597 case S_TRISTATE:
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400598 if (*value == 'n') {
599 bool skip_unset = (arg != NULL);
600
601 if (!skip_unset)
602 fprintf(fp, "# %s%s is not set\n",
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400603 CONFIG_, sym->name);
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400604 return;
Sam Ravnborg49192f22010-07-31 23:35:33 +0200605 }
606 break;
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400607 default:
Sam Ravnborg49192f22010-07-31 23:35:33 +0200608 break;
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400609 }
610
611 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
612}
613
614static void
615kconfig_print_comment(FILE *fp, const char *value, void *arg)
616{
617 const char *p = value;
618 size_t l;
619
620 for (;;) {
621 l = strcspn(p, "\n");
622 fprintf(fp, "#");
623 if (l) {
624 fprintf(fp, " ");
Peter Foley70cc01e2011-10-22 10:48:49 -0400625 xfwrite(p, l, 1, fp);
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400626 p += l;
627 }
628 fprintf(fp, "\n");
629 if (*p++ == '\0')
630 break;
631 }
632}
633
634static struct conf_printer kconfig_printer_cb =
635{
636 .print_symbol = kconfig_print_symbol,
637 .print_comment = kconfig_print_comment,
638};
639
640/*
641 * Header printer
642 *
643 * This printer is used when generating the `include/generated/autoconf.h' file.
644 */
645static void
646header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
647{
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400648
649 switch (sym->type) {
650 case S_BOOLEAN:
Arnaud Lacombeeb4cf5a2011-07-14 15:31:07 -0400651 case S_TRISTATE: {
652 const char *suffix = "";
653
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400654 switch (*value) {
655 case 'n':
Michal Marek2a11c8e2011-07-20 17:38:57 +0200656 break;
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400657 case 'm':
658 suffix = "_MODULE";
Arnaud Lacombeeb4cf5a2011-07-14 15:31:07 -0400659 /* fall through */
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400660 default:
Michal Marek2a11c8e2011-07-20 17:38:57 +0200661 fprintf(fp, "#define %s%s%s 1\n",
662 CONFIG_, sym->name, suffix);
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400663 }
Arnaud Lacombeeb4cf5a2011-07-14 15:31:07 -0400664 break;
665 }
666 case S_HEX: {
667 const char *prefix = "";
668
669 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
670 prefix = "0x";
671 fprintf(fp, "#define %s%s %s%s\n",
672 CONFIG_, sym->name, prefix, value);
673 break;
674 }
675 case S_STRING:
676 case S_INT:
677 fprintf(fp, "#define %s%s %s\n",
678 CONFIG_, sym->name, value);
Sam Ravnborg49192f22010-07-31 23:35:33 +0200679 break;
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400680 default:
681 break;
682 }
683
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400684}
685
686static void
687header_print_comment(FILE *fp, const char *value, void *arg)
688{
689 const char *p = value;
690 size_t l;
691
692 fprintf(fp, "/*\n");
693 for (;;) {
694 l = strcspn(p, "\n");
695 fprintf(fp, " *");
696 if (l) {
697 fprintf(fp, " ");
Peter Foley70cc01e2011-10-22 10:48:49 -0400698 xfwrite(p, l, 1, fp);
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400699 p += l;
700 }
701 fprintf(fp, "\n");
702 if (*p++ == '\0')
703 break;
704 }
705 fprintf(fp, " */\n");
706}
707
708static struct conf_printer header_printer_cb =
709{
710 .print_symbol = header_print_symbol,
711 .print_comment = header_print_comment,
712};
713
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400714static void conf_write_symbol(FILE *fp, struct symbol *sym,
715 struct conf_printer *printer, void *printer_arg)
716{
717 const char *str;
718
719 switch (sym->type) {
Sam Ravnborg49192f22010-07-31 23:35:33 +0200720 case S_UNKNOWN:
721 break;
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400722 case S_STRING:
723 str = sym_get_string_value(sym);
724 str = sym_escape_string_value(str);
725 printer->print_symbol(fp, sym, str, printer_arg);
726 free((void *)str);
727 break;
728 default:
729 str = sym_get_string_value(sym);
730 printer->print_symbol(fp, sym, str, printer_arg);
Sam Ravnborg49192f22010-07-31 23:35:33 +0200731 }
732}
733
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400734static void
735conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg)
736{
737 char buf[256];
738
739 snprintf(buf, sizeof(buf),
740 "\n"
741 "Automatically generated file; DO NOT EDIT.\n"
742 "%s\n",
743 rootmenu.prompt->text);
744
745 printer->print_comment(fp, buf, printer_arg);
746}
747
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200748/*
749 * Write out a minimal config.
750 * All values that has default values are skipped as this is redundant.
751 */
752int conf_write_defconfig(const char *filename)
753{
754 struct symbol *sym;
755 struct menu *menu;
756 FILE *out;
757
758 out = fopen(filename, "w");
759 if (!out)
760 return 1;
761
762 sym_clear_all_valid();
763
764 /* Traverse all menus to find all relevant symbols */
765 menu = rootmenu.list;
766
767 while (menu != NULL)
768 {
769 sym = menu->sym;
770 if (sym == NULL) {
771 if (!menu_is_visible(menu))
772 goto next_menu;
773 } else if (!sym_is_choice(sym)) {
774 sym_calc_value(sym);
775 if (!(sym->flags & SYMBOL_WRITE))
776 goto next_menu;
777 sym->flags &= ~SYMBOL_WRITE;
778 /* If we cannot change the symbol - skip */
Marco Ammonbaa23ec2019-07-04 12:50:41 +0200779 if (!sym_is_changeable(sym))
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200780 goto next_menu;
781 /* If symbol equals to default value - skip */
782 if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
783 goto next_menu;
784
785 /*
786 * If symbol is a choice value and equals to the
787 * default for a choice - skip.
Sam Ravnborg84062dd2010-08-14 23:22:16 +0200788 * But only if value is bool and equal to "y" and
789 * choice is not "optional".
790 * (If choice is "optional" then all values can be "n")
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200791 */
792 if (sym_is_choice_value(sym)) {
793 struct symbol *cs;
794 struct symbol *ds;
795
796 cs = prop_get_symbol(sym_get_choice_prop(sym));
797 ds = sym_choice_default(cs);
Sam Ravnborg84062dd2010-08-14 23:22:16 +0200798 if (!sym_is_optional(cs) && sym == ds) {
Sam Ravnborg801690c2010-08-12 09:11:51 +0200799 if ((sym->type == S_BOOLEAN) &&
800 sym_get_tristate_value(sym) == yes)
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200801 goto next_menu;
802 }
803 }
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400804 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200805 }
806next_menu:
807 if (menu->list != NULL) {
808 menu = menu->list;
809 }
810 else if (menu->next != NULL) {
811 menu = menu->next;
812 } else {
813 while ((menu = menu->parent)) {
814 if (menu->next != NULL) {
815 menu = menu->next;
816 break;
817 }
818 }
819 }
820 }
821 fclose(out);
822 return 0;
823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825int conf_write(const char *name)
826{
Roman Zippelc955cca2006-06-08 22:12:39 -0700827 FILE *out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 struct symbol *sym;
829 struct menu *menu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 const char *str;
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900831 char tmpname[PATH_MAX + 1], oldname[PATH_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 char *env;
M. Vefa Bicakci0c5b6c282019-08-03 06:02:12 -0400833 int i;
Alexander Popovaff11cd2019-05-17 22:42:22 +0300834 bool need_newline = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900836 if (!name)
837 name = conf_get_configname();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900839 if (!*name) {
840 fprintf(stderr, "config name is empty\n");
841 return -1;
842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900844 if (is_dir(name)) {
845 fprintf(stderr, "%s: Is a directory\n", name);
846 return -1;
847 }
848
Masahiro Yamada580c5b32019-05-11 01:56:01 +0900849 if (make_parent_dir(name))
850 return -1;
851
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700852 env = getenv("KCONFIG_OVERWRITECONFIG");
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900853 if (env && *env) {
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700854 *tmpname = 0;
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900855 out = fopen(name, "w");
856 } else {
857 snprintf(tmpname, sizeof(tmpname), "%s.%d.tmp",
858 name, (int)getpid());
859 out = fopen(tmpname, "w");
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (!out)
862 return 1;
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700863
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400864 conf_write_heading(out, &kconfig_printer_cb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Karsten Wieseb3214292006-12-13 00:34:06 -0800866 if (!conf_get_changed())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 sym_clear_all_valid();
868
869 menu = rootmenu.list;
870 while (menu) {
871 sym = menu->sym;
872 if (!sym) {
873 if (!menu_is_visible(menu))
874 goto next;
875 str = menu_get_prompt(menu);
876 fprintf(out, "\n"
877 "#\n"
878 "# %s\n"
879 "#\n", str);
Alexander Popovaff11cd2019-05-17 22:42:22 +0300880 need_newline = false;
Masahiro Yamada8e2442a2019-07-12 15:07:09 +0900881 } else if (!(sym->flags & SYMBOL_CHOICE) &&
882 !(sym->flags & SYMBOL_WRITTEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 sym_calc_value(sym);
884 if (!(sym->flags & SYMBOL_WRITE))
885 goto next;
Alexander Popovaff11cd2019-05-17 22:42:22 +0300886 if (need_newline) {
887 fprintf(out, "\n");
888 need_newline = false;
889 }
Masahiro Yamada8e2442a2019-07-12 15:07:09 +0900890 sym->flags |= SYMBOL_WRITTEN;
Arnaud Lacombee54e6922011-05-15 23:42:09 -0400891 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
Sam Ravnborg49192f22010-07-31 23:35:33 +0200894next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (menu->list) {
896 menu = menu->list;
897 continue;
898 }
899 if (menu->next)
900 menu = menu->next;
901 else while ((menu = menu->parent)) {
Alexander Popovaff11cd2019-05-17 22:42:22 +0300902 if (!menu->sym && menu_is_visible(menu) &&
903 menu != &rootmenu) {
904 str = menu_get_prompt(menu);
905 fprintf(out, "# end of %s\n", str);
906 need_newline = true;
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (menu->next) {
909 menu = menu->next;
910 break;
911 }
912 }
913 }
914 fclose(out);
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700915
M. Vefa Bicakci0c5b6c282019-08-03 06:02:12 -0400916 for_all_symbols(i, sym)
917 sym->flags &= ~SYMBOL_WRITTEN;
918
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700919 if (*tmpname) {
Masahiro Yamada67424f62019-05-10 15:12:05 +0900920 if (is_same(name, tmpname)) {
921 conf_message("No change to %s", name);
922 unlink(tmpname);
923 sym_set_change_count(0);
924 return 0;
925 }
926
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900927 snprintf(oldname, sizeof(oldname), "%s.old", name);
928 rename(name, oldname);
929 if (rename(tmpname, name))
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700930 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Masahiro Yamadaceb7f322019-05-10 15:12:04 +0900933 conf_message("configuration written to %s", name);
Roman Zippelddc97ca2006-06-08 22:12:38 -0700934
Karsten Wiesebfc10002006-12-13 00:34:07 -0800935 sym_set_change_count(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 return 0;
938}
Roman Zippelc955cca2006-06-08 22:12:39 -0700939
Masahiro Yamadaa2ff4042018-07-20 16:46:26 +0900940/* write a dependency file as used by kbuild to track dependencies */
941static int conf_write_dep(const char *name)
942{
943 struct file *file;
944 FILE *out;
945
Masahiro Yamadaa2ff4042018-07-20 16:46:26 +0900946 out = fopen("..config.tmp", "w");
947 if (!out)
948 return 1;
949 fprintf(out, "deps_config := \\\n");
950 for (file = file_list; file; file = file->next) {
951 if (file->next)
952 fprintf(out, "\t%s \\\n", file->name);
953 else
954 fprintf(out, "\t%s\n", file->name);
955 }
956 fprintf(out, "\n%s: \\\n"
957 "\t$(deps_config)\n\n", conf_get_autoconfig_name());
958
959 env_write_dep(out, conf_get_autoconfig_name());
960
961 fprintf(out, "\n$(deps_config): ;\n");
962 fclose(out);
Masahiro Yamada79123b12018-07-20 16:46:29 +0900963
964 if (make_parent_dir(name))
965 return 1;
Masahiro Yamadaa2ff4042018-07-20 16:46:26 +0900966 rename("..config.tmp", name);
967 return 0;
968}
969
Masahiro Yamada0849d212018-11-30 18:15:49 +0900970static int conf_touch_deps(void)
Roman Zippel2e3646e2006-06-08 22:12:42 -0700971{
Markus Heidelberg12122f62009-05-18 01:36:54 +0200972 const char *name;
Roman Zippel2e3646e2006-06-08 22:12:42 -0700973 struct symbol *sym;
Masahiro Yamada1508fec2018-11-30 18:15:50 +0900974 int res, i;
975
976 strcpy(depfile_path, "include/config/");
977 depfile_prefix_len = strlen(depfile_path);
Roman Zippel2e3646e2006-06-08 22:12:42 -0700978
Markus Heidelberg12122f62009-05-18 01:36:54 +0200979 name = conf_get_autoconfig_name();
Roman Zippel2e3646e2006-06-08 22:12:42 -0700980 conf_read_simple(name, S_DEF_AUTO);
Al Viro6b87b702016-01-14 18:13:49 +0000981 sym_calc_value(modules_sym);
Roman Zippel2e3646e2006-06-08 22:12:42 -0700982
Roman Zippel2e3646e2006-06-08 22:12:42 -0700983 for_all_symbols(i, sym) {
984 sym_calc_value(sym);
Dirk Gouders693359f2018-07-03 14:43:31 +0200985 if ((sym->flags & SYMBOL_NO_WRITE) || !sym->name)
Roman Zippel2e3646e2006-06-08 22:12:42 -0700986 continue;
987 if (sym->flags & SYMBOL_WRITE) {
988 if (sym->flags & SYMBOL_DEF_AUTO) {
989 /*
990 * symbol has old and new value,
991 * so compare them...
992 */
993 switch (sym->type) {
994 case S_BOOLEAN:
995 case S_TRISTATE:
996 if (sym_get_tristate_value(sym) ==
997 sym->def[S_DEF_AUTO].tri)
998 continue;
999 break;
1000 case S_STRING:
1001 case S_HEX:
1002 case S_INT:
1003 if (!strcmp(sym_get_string_value(sym),
1004 sym->def[S_DEF_AUTO].val))
1005 continue;
1006 break;
1007 default:
1008 break;
1009 }
1010 } else {
1011 /*
1012 * If there is no old value, only 'no' (unset)
1013 * is allowed as new value.
1014 */
1015 switch (sym->type) {
1016 case S_BOOLEAN:
1017 case S_TRISTATE:
1018 if (sym_get_tristate_value(sym) == no)
1019 continue;
1020 break;
1021 default:
1022 break;
1023 }
1024 }
1025 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
1026 /* There is neither an old nor a new value. */
1027 continue;
1028 /* else
1029 * There is an old value, but no new value ('no' (unset)
1030 * isn't saved in auto.conf, so the old value is always
1031 * different from 'no').
1032 */
1033
Masahiro Yamada1508fec2018-11-30 18:15:50 +09001034 res = conf_touch_dep(sym->name);
1035 if (res)
1036 return res;
Roman Zippel2e3646e2006-06-08 22:12:42 -07001037 }
Roman Zippel2e3646e2006-06-08 22:12:42 -07001038
Masahiro Yamada1508fec2018-11-30 18:15:50 +09001039 return 0;
Roman Zippel2e3646e2006-06-08 22:12:42 -07001040}
1041
Masahiro Yamada00c864f2018-07-20 16:46:31 +09001042int conf_write_autoconf(int overwrite)
Roman Zippelc955cca2006-06-08 22:12:39 -07001043{
1044 struct symbol *sym;
Markus Heidelberg12122f62009-05-18 01:36:54 +02001045 const char *name;
Masahiro Yamada00c864f2018-07-20 16:46:31 +09001046 const char *autoconf_name = conf_get_autoconfig_name();
Masahiro Yamada8b41fc42019-12-19 17:33:29 +09001047 FILE *out, *out_h;
Sam Ravnborg49192f22010-07-31 23:35:33 +02001048 int i;
Roman Zippelc955cca2006-06-08 22:12:39 -07001049
Masahiro Yamada00c864f2018-07-20 16:46:31 +09001050 if (!overwrite && is_present(autoconf_name))
1051 return 0;
1052
Masahiro Yamadaa2ff4042018-07-20 16:46:26 +09001053 conf_write_dep("include/config/auto.conf.cmd");
Roman Zippelc955cca2006-06-08 22:12:39 -07001054
Masahiro Yamada0849d212018-11-30 18:15:49 +09001055 if (conf_touch_deps())
Roman Zippel2e3646e2006-06-08 22:12:42 -07001056 return 1;
1057
Roman Zippelc955cca2006-06-08 22:12:39 -07001058 out = fopen(".tmpconfig", "w");
1059 if (!out)
1060 return 1;
1061
1062 out_h = fopen(".tmpconfig.h", "w");
1063 if (!out_h) {
1064 fclose(out);
1065 return 1;
1066 }
1067
Arnaud Lacombee54e6922011-05-15 23:42:09 -04001068 conf_write_heading(out, &kconfig_printer_cb, NULL);
Arnaud Lacombee54e6922011-05-15 23:42:09 -04001069 conf_write_heading(out_h, &header_printer_cb, NULL);
Roman Zippelc955cca2006-06-08 22:12:39 -07001070
Roman Zippelc955cca2006-06-08 22:12:39 -07001071 for_all_symbols(i, sym) {
Arnaud Lacombe953742c2011-08-16 01:20:20 -04001072 sym_calc_value(sym);
Paul Gortmakera9596132012-04-12 19:46:33 -04001073 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
Arnaud Lacombe953742c2011-08-16 01:20:20 -04001074 continue;
1075
Masahiro Yamada8b41fc42019-12-19 17:33:29 +09001076 /* write symbols to auto.conf and autoconf.h */
Arnaud Lacombee54e6922011-05-15 23:42:09 -04001077 conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
Arnaud Lacombee54e6922011-05-15 23:42:09 -04001078 conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
Roman Zippelc955cca2006-06-08 22:12:39 -07001079 }
1080 fclose(out);
1081 fclose(out_h);
1082
1083 name = getenv("KCONFIG_AUTOHEADER");
1084 if (!name)
Sam Ravnborg264a2682009-10-18 00:49:24 +02001085 name = "include/generated/autoconf.h";
Masahiro Yamada79123b12018-07-20 16:46:29 +09001086 if (make_parent_dir(name))
1087 return 1;
Roman Zippelc955cca2006-06-08 22:12:39 -07001088 if (rename(".tmpconfig.h", name))
1089 return 1;
Masahiro Yamada79123b12018-07-20 16:46:29 +09001090
Masahiro Yamada00c864f2018-07-20 16:46:31 +09001091 if (make_parent_dir(autoconf_name))
Masahiro Yamada79123b12018-07-20 16:46:29 +09001092 return 1;
Roman Zippelc955cca2006-06-08 22:12:39 -07001093 /*
1094 * This must be the last step, kbuild has a dependency on auto.conf
1095 * and this marks the successful completion of the previous steps.
1096 */
Masahiro Yamada00c864f2018-07-20 16:46:31 +09001097 if (rename(".tmpconfig", autoconf_name))
Roman Zippelc955cca2006-06-08 22:12:39 -07001098 return 1;
1099
1100 return 0;
1101}
Karsten Wieseb3214292006-12-13 00:34:06 -08001102
Karsten Wiesebfc10002006-12-13 00:34:07 -08001103static int sym_change_count;
Karsten Wiese3b354c52006-12-13 00:34:08 -08001104static void (*conf_changed_callback)(void);
Karsten Wiesebfc10002006-12-13 00:34:07 -08001105
1106void sym_set_change_count(int count)
1107{
Karsten Wiese3b354c52006-12-13 00:34:08 -08001108 int _sym_change_count = sym_change_count;
Karsten Wiesebfc10002006-12-13 00:34:07 -08001109 sym_change_count = count;
Karsten Wiese3b354c52006-12-13 00:34:08 -08001110 if (conf_changed_callback &&
1111 (bool)_sym_change_count != (bool)count)
1112 conf_changed_callback();
Karsten Wiesebfc10002006-12-13 00:34:07 -08001113}
1114
1115void sym_add_change_count(int count)
1116{
Karsten Wiese3b354c52006-12-13 00:34:08 -08001117 sym_set_change_count(count + sym_change_count);
Karsten Wiesebfc10002006-12-13 00:34:07 -08001118}
1119
Karsten Wieseb3214292006-12-13 00:34:06 -08001120bool conf_get_changed(void)
1121{
1122 return sym_change_count;
1123}
Karsten Wiese3b354c52006-12-13 00:34:08 -08001124
1125void conf_set_changed_callback(void (*fn)(void))
1126{
1127 conf_changed_callback = fn;
1128}
Roman Zippeldc7862e2008-05-06 04:55:55 +02001129
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001130static bool randomize_choice_values(struct symbol *csym)
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001131{
1132 struct property *prop;
1133 struct symbol *sym;
1134 struct expr *e;
1135 int cnt, def;
1136
1137 /*
Arnaud Lacombe579fb8e2010-12-05 01:41:16 -05001138 * If choice is mod then we may have more items selected
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001139 * and if no then no-one.
1140 * In both cases stop.
1141 */
1142 if (csym->curr.tri != yes)
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001143 return false;
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001144
1145 prop = sym_get_choice_prop(csym);
1146
1147 /* count entries in choice block */
1148 cnt = 0;
1149 expr_list_for_each_sym(prop->expr, e, sym)
1150 cnt++;
1151
1152 /*
1153 * find a random value and set it to yes,
1154 * set the rest to no so we have only one set
1155 */
1156 def = (rand() % cnt);
1157
1158 cnt = 0;
1159 expr_list_for_each_sym(prop->expr, e, sym) {
1160 if (def == cnt++) {
1161 sym->def[S_DEF_USER].tri = yes;
1162 csym->def[S_DEF_USER].val = sym;
1163 }
1164 else {
1165 sym->def[S_DEF_USER].tri = no;
1166 }
Yann E. MORINe6abf122013-04-28 17:33:15 +02001167 sym->flags |= SYMBOL_DEF_USER;
1168 /* clear VALID to get value calculated */
1169 sym->flags &= ~SYMBOL_VALID;
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001170 }
1171 csym->flags |= SYMBOL_DEF_USER;
1172 /* clear VALID to get value calculated */
1173 csym->flags &= ~(SYMBOL_VALID);
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001174
1175 return true;
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001176}
1177
Arve Hjønnevågfbe98bb92013-06-06 20:37:00 -07001178void set_all_choice_values(struct symbol *csym)
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001179{
1180 struct property *prop;
1181 struct symbol *sym;
1182 struct expr *e;
1183
1184 prop = sym_get_choice_prop(csym);
1185
1186 /*
1187 * Set all non-assinged choice values to no
1188 */
1189 expr_list_for_each_sym(prop->expr, e, sym) {
1190 if (!sym_has_value(sym))
1191 sym->def[S_DEF_USER].tri = no;
1192 }
1193 csym->flags |= SYMBOL_DEF_USER;
1194 /* clear VALID to get value calculated */
Arve Hjønnevågfbe98bb92013-06-06 20:37:00 -07001195 csym->flags &= ~(SYMBOL_VALID | SYMBOL_NEED_SET_CHOICE_VALUES);
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001196}
Roman Zippeldc7862e2008-05-06 04:55:55 +02001197
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001198bool conf_set_all_new_symbols(enum conf_def_mode mode)
Roman Zippeldc7862e2008-05-06 04:55:55 +02001199{
1200 struct symbol *sym, *csym;
Masahiro Yamadab92d8042017-12-16 00:38:02 +09001201 int i, cnt, pby, pty, ptm; /* pby: probability of bool = y
Yann E. MORINe43956e2013-04-13 17:18:36 +02001202 * pty: probability of tristate = y
1203 * ptm: probability of tristate = m
1204 */
1205
1206 pby = 50; pty = ptm = 33; /* can't go as the default in switch-case
1207 * below, otherwise gcc whines about
1208 * -Wmaybe-uninitialized */
1209 if (mode == def_random) {
1210 int n, p[3];
1211 char *env = getenv("KCONFIG_PROBABILITY");
1212 n = 0;
1213 while( env && *env ) {
1214 char *endp;
1215 int tmp = strtol( env, &endp, 10 );
1216 if( tmp >= 0 && tmp <= 100 ) {
1217 p[n++] = tmp;
1218 } else {
1219 errno = ERANGE;
1220 perror( "KCONFIG_PROBABILITY" );
1221 exit( 1 );
1222 }
1223 env = (*endp == ':') ? endp+1 : endp;
1224 if( n >=3 ) {
1225 break;
1226 }
1227 }
1228 switch( n ) {
1229 case 1:
1230 pby = p[0]; ptm = pby/2; pty = pby-ptm;
1231 break;
1232 case 2:
1233 pty = p[0]; ptm = p[1]; pby = pty + ptm;
1234 break;
1235 case 3:
1236 pby = p[0]; pty = p[1]; ptm = p[2];
1237 break;
1238 }
1239
1240 if( pty+ptm > 100 ) {
1241 errno = ERANGE;
1242 perror( "KCONFIG_PROBABILITY" );
1243 exit( 1 );
1244 }
1245 }
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001246 bool has_changed = false;
Roman Zippeldc7862e2008-05-06 04:55:55 +02001247
1248 for_all_symbols(i, sym) {
Yann E. MORINcfa98f22013-04-24 22:00:04 +02001249 if (sym_has_value(sym) || (sym->flags & SYMBOL_VALID))
Roman Zippeldc7862e2008-05-06 04:55:55 +02001250 continue;
1251 switch (sym_get_type(sym)) {
1252 case S_BOOLEAN:
1253 case S_TRISTATE:
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001254 has_changed = true;
Roman Zippeldc7862e2008-05-06 04:55:55 +02001255 switch (mode) {
1256 case def_yes:
1257 sym->def[S_DEF_USER].tri = yes;
1258 break;
1259 case def_mod:
1260 sym->def[S_DEF_USER].tri = mod;
1261 break;
1262 case def_no:
Josh Triplett5d2acfc2014-04-07 15:39:09 -07001263 if (sym->flags & SYMBOL_ALLNOCONFIG_Y)
1264 sym->def[S_DEF_USER].tri = yes;
1265 else
1266 sym->def[S_DEF_USER].tri = no;
Roman Zippeldc7862e2008-05-06 04:55:55 +02001267 break;
1268 case def_random:
Yann E. MORINe43956e2013-04-13 17:18:36 +02001269 sym->def[S_DEF_USER].tri = no;
1270 cnt = rand() % 100;
1271 if (sym->type == S_TRISTATE) {
1272 if (cnt < pty)
1273 sym->def[S_DEF_USER].tri = yes;
1274 else if (cnt < (pty+ptm))
1275 sym->def[S_DEF_USER].tri = mod;
1276 } else if (cnt < pby)
1277 sym->def[S_DEF_USER].tri = yes;
Roman Zippeldc7862e2008-05-06 04:55:55 +02001278 break;
1279 default:
1280 continue;
1281 }
Sam Ravnborg184832c2009-03-15 11:05:12 +01001282 if (!(sym_is_choice(sym) && mode == def_random))
Roman Zippeldc7862e2008-05-06 04:55:55 +02001283 sym->flags |= SYMBOL_DEF_USER;
1284 break;
1285 default:
1286 break;
1287 }
1288
1289 }
1290
Al Viroce97e132008-10-26 05:12:34 +00001291 sym_clear_all_valid();
Roman Zippeldc7862e2008-05-06 04:55:55 +02001292
Sam Ravnborg184832c2009-03-15 11:05:12 +01001293 /*
1294 * We have different type of choice blocks.
Arnaud Lacombe579fb8e2010-12-05 01:41:16 -05001295 * If curr.tri equals to mod then we can select several
Sam Ravnborg184832c2009-03-15 11:05:12 +01001296 * choice symbols in one block.
1297 * In this case we do nothing.
Arnaud Lacombe579fb8e2010-12-05 01:41:16 -05001298 * If curr.tri equals yes then only one symbol can be
Sam Ravnborg184832c2009-03-15 11:05:12 +01001299 * selected in a choice block and we set it to yes,
1300 * and the rest to no.
1301 */
Arve Hjønnevågfbe98bb92013-06-06 20:37:00 -07001302 if (mode != def_random) {
1303 for_all_symbols(i, csym) {
1304 if ((sym_is_choice(csym) && !sym_has_value(csym)) ||
1305 sym_is_choice_value(csym))
1306 csym->flags |= SYMBOL_NEED_SET_CHOICE_VALUES;
1307 }
1308 }
1309
Roman Zippeldc7862e2008-05-06 04:55:55 +02001310 for_all_symbols(i, csym) {
1311 if (sym_has_value(csym) || !sym_is_choice(csym))
1312 continue;
1313
1314 sym_calc_value(csym);
Sam Ravnborga64b44e2010-08-12 09:11:52 +02001315 if (mode == def_random)
Masahiro Yamadac8fb7d72020-02-01 14:03:11 +09001316 has_changed |= randomize_choice_values(csym);
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001317 else {
1318 set_all_choice_values(csym);
1319 has_changed = true;
1320 }
Roman Zippeldc7862e2008-05-06 04:55:55 +02001321 }
Yann E. MORIN3b9a19e2013-04-28 22:36:38 +02001322
1323 return has_changed;
Roman Zippeldc7862e2008-05-06 04:55:55 +02001324}
Tetsuo Handa89b90602019-12-17 18:42:06 +09001325
1326void conf_rewrite_mod_or_yes(enum conf_def_mode mode)
1327{
1328 struct symbol *sym;
1329 int i;
1330 tristate old_val = (mode == def_y2m) ? yes : mod;
1331 tristate new_val = (mode == def_y2m) ? mod : yes;
1332
1333 for_all_symbols(i, sym) {
1334 if (sym_get_type(sym) == S_TRISTATE &&
Tetsuo Handa089b7d82020-02-04 13:08:44 +09001335 sym->def[S_DEF_USER].tri == old_val)
Tetsuo Handa89b90602019-12-17 18:42:06 +09001336 sym->def[S_DEF_USER].tri = new_val;
Tetsuo Handa89b90602019-12-17 18:42:06 +09001337 }
Tetsuo Handa089b7d82020-02-04 13:08:44 +09001338 sym_clear_all_valid();
Tetsuo Handa89b90602019-12-17 18:42:06 +09001339}