xconfig: Abort close if configuration cannot be saved
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / scripts / kconfig / confdata.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#include <sys/stat.h>
7#include <ctype.h>
94bedeca 8#include <errno.h>
2e3646e5 9#include <fcntl.h>
10a4b277 10#include <stdarg.h>
1da177e4
LT
11#include <stdio.h>
12#include <stdlib.h>
13#include <string.h>
14#include <time.h>
15#include <unistd.h>
16
1da177e4
LT
17#include "lkc.h"
18
c1a0f5e3
RZ
19static void conf_warning(const char *fmt, ...)
20 __attribute__ ((format (printf, 1, 2)));
21
42368c37
MM
22static void conf_message(const char *fmt, ...)
23 __attribute__ ((format (printf, 1, 2)));
24
c1a0f5e3
RZ
25static const char *conf_filename;
26static int conf_lineno, conf_warnings, conf_unsaved;
27
1da177e4
LT
28const char conf_defname[] = "arch/$ARCH/defconfig";
29
c1a0f5e3
RZ
30static void conf_warning(const char *fmt, ...)
31{
32 va_list ap;
33 va_start(ap, fmt);
34 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
35 vfprintf(stderr, fmt, ap);
36 fprintf(stderr, "\n");
37 va_end(ap);
38 conf_warnings++;
39}
40
42368c37
MM
41static void conf_default_message_callback(const char *fmt, va_list ap)
42{
43 printf("#\n# ");
44 vprintf(fmt, ap);
45 printf("\n#\n");
46}
47
48static void (*conf_message_callback) (const char *fmt, va_list ap) =
49 conf_default_message_callback;
50void conf_set_message_callback(void (*fn) (const char *fmt, va_list ap))
51{
52 conf_message_callback = fn;
53}
54
55static void conf_message(const char *fmt, ...)
56{
57 va_list ap;
58
59 va_start(ap, fmt);
60 if (conf_message_callback)
61 conf_message_callback(fmt, ap);
62}
63
14cdd3c4
RZ
64const char *conf_get_configname(void)
65{
66 char *name = getenv("KCONFIG_CONFIG");
67
68 return name ? name : ".config";
69}
70
12122f62
MH
71const char *conf_get_autoconfig_name(void)
72{
73 char *name = getenv("KCONFIG_AUTOCONFIG");
74
75 return name ? name : "include/config/auto.conf";
76}
77
48b9d03c 78static char *conf_expand_value(const char *in)
1da177e4
LT
79{
80 struct symbol *sym;
48b9d03c 81 const char *src;
1da177e4
LT
82 static char res_value[SYMBOL_MAXLENGTH];
83 char *dst, name[SYMBOL_MAXLENGTH];
84
85 res_value[0] = 0;
86 dst = name;
87 while ((src = strchr(in, '$'))) {
88 strncat(res_value, in, src - in);
89 src++;
90 dst = name;
91 while (isalnum(*src) || *src == '_')
92 *dst++ = *src++;
93 *dst = 0;
94 sym = sym_lookup(name, 0);
95 sym_calc_value(sym);
96 strcat(res_value, sym_get_string_value(sym));
97 in = src;
98 }
99 strcat(res_value, in);
100
101 return res_value;
102}
103
104char *conf_get_default_confname(void)
105{
106 struct stat buf;
107 static char fullname[PATH_MAX+1];
108 char *env, *name;
109
110 name = conf_expand_value(conf_defname);
111 env = getenv(SRCTREE);
112 if (env) {
113 sprintf(fullname, "%s/%s", env, name);
114 if (!stat(fullname, &buf))
115 return fullname;
116 }
117 return name;
118}
119
9c900a9c
SR
120static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
121{
122 char *p2;
123
124 switch (sym->type) {
125 case S_TRISTATE:
126 if (p[0] == 'm') {
127 sym->def[def].tri = mod;
128 sym->flags |= def_flags;
129 break;
130 }
d8fc3200 131 /* fall through */
9c900a9c
SR
132 case S_BOOLEAN:
133 if (p[0] == 'y') {
134 sym->def[def].tri = yes;
135 sym->flags |= def_flags;
136 break;
137 }
138 if (p[0] == 'n') {
139 sym->def[def].tri = no;
140 sym->flags |= def_flags;
141 break;
142 }
143 conf_warning("symbol value '%s' invalid for %s", p, sym->name);
75f1468b 144 return 1;
9c900a9c
SR
145 case S_OTHER:
146 if (*p != '"') {
147 for (p2 = p; *p2 && !isspace(*p2); p2++)
148 ;
149 sym->type = S_STRING;
150 goto done;
151 }
d8fc3200 152 /* fall through */
9c900a9c
SR
153 case S_STRING:
154 if (*p++ != '"')
155 break;
156 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
157 if (*p2 == '"') {
158 *p2 = 0;
159 break;
160 }
161 memmove(p2, p2 + 1, strlen(p2));
162 }
163 if (!p2) {
164 conf_warning("invalid string found");
165 return 1;
166 }
d8fc3200 167 /* fall through */
9c900a9c
SR
168 case S_INT:
169 case S_HEX:
170 done:
171 if (sym_string_valid(sym, p)) {
172 sym->def[def].val = strdup(p);
173 sym->flags |= def_flags;
174 } else {
175 conf_warning("symbol value '%s' invalid for %s", p, sym->name);
176 return 1;
177 }
178 break;
179 default:
180 ;
181 }
182 return 0;
183}
184
669bfad9 185int conf_read_simple(const char *name, int def)
1da177e4
LT
186{
187 FILE *in = NULL;
188 char line[1024];
189 char *p, *p2;
1da177e4 190 struct symbol *sym;
669bfad9 191 int i, def_flags;
1da177e4
LT
192
193 if (name) {
194 in = zconf_fopen(name);
195 } else {
face4374
RZ
196 struct property *prop;
197
14cdd3c4 198 name = conf_get_configname();
ddc97cac
RZ
199 in = zconf_fopen(name);
200 if (in)
201 goto load;
bfc10001 202 sym_add_change_count(1);
ac1ffde1
UM
203 if (!sym_defconfig_list) {
204 if (modules_sym)
205 sym_calc_value(modules_sym);
face4374 206 return 1;
ac1ffde1 207 }
face4374
RZ
208
209 for_all_defaults(sym_defconfig_list, prop) {
210 if (expr_calc_value(prop->visible.expr) == no ||
211 prop->expr->type != E_SYMBOL)
212 continue;
213 name = conf_expand_value(prop->expr->left.sym->name);
1da177e4
LT
214 in = zconf_fopen(name);
215 if (in) {
42368c37
MM
216 conf_message(_("using defaults found in %s"),
217 name);
ddc97cac 218 goto load;
1da177e4
LT
219 }
220 }
221 }
1da177e4
LT
222 if (!in)
223 return 1;
224
ddc97cac 225load:
c1a0f5e3
RZ
226 conf_filename = name;
227 conf_lineno = 0;
228 conf_warnings = 0;
229 conf_unsaved = 0;
230
669bfad9 231 def_flags = SYMBOL_DEF << def;
1da177e4 232 for_all_symbols(i, sym) {
669bfad9
RZ
233 sym->flags |= SYMBOL_CHANGED;
234 sym->flags &= ~(def_flags|SYMBOL_VALID);
c1a0f5e3 235 if (sym_is_choice(sym))
669bfad9 236 sym->flags |= def_flags;
1da177e4
LT
237 switch (sym->type) {
238 case S_INT:
239 case S_HEX:
240 case S_STRING:
669bfad9
RZ
241 if (sym->def[def].val)
242 free(sym->def[def].val);
d8fc3200 243 /* fall through */
1da177e4 244 default:
669bfad9
RZ
245 sym->def[def].val = NULL;
246 sym->def[def].tri = no;
1da177e4
LT
247 }
248 }
249
250 while (fgets(line, sizeof(line), in)) {
c1a0f5e3 251 conf_lineno++;
1da177e4 252 sym = NULL;
8baefd30 253 if (line[0] == '#') {
ffb5957b 254 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
1da177e4 255 continue;
ffb5957b 256 p = strchr(line + 2 + strlen(CONFIG_), ' ');
1da177e4
LT
257 if (!p)
258 continue;
259 *p++ = 0;
260 if (strncmp(p, "is not set", 10))
261 continue;
669bfad9 262 if (def == S_DEF_USER) {
ffb5957b 263 sym = sym_find(line + 2 + strlen(CONFIG_));
661b0680 264 if (!sym) {
265 sym_add_change_count(1);
8bea7548 266 goto setsym;
661b0680 267 }
669bfad9 268 } else {
ffb5957b 269 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
669bfad9
RZ
270 if (sym->type == S_UNKNOWN)
271 sym->type = S_BOOLEAN;
272 }
273 if (sym->flags & def_flags) {
d84876f9 274 conf_warning("override: reassigning to symbol %s", sym->name);
1da177e4
LT
275 }
276 switch (sym->type) {
277 case S_BOOLEAN:
278 case S_TRISTATE:
669bfad9
RZ
279 sym->def[def].tri = no;
280 sym->flags |= def_flags;
1da177e4
LT
281 break;
282 default:
283 ;
284 }
ffb5957b
AL
285 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
286 p = strchr(line + strlen(CONFIG_), '=');
1da177e4
LT
287 if (!p)
288 continue;
289 *p++ = 0;
290 p2 = strchr(p, '\n');
d3660a8c
MW
291 if (p2) {
292 *p2-- = 0;
293 if (*p2 == '\r')
294 *p2 = 0;
295 }
669bfad9 296 if (def == S_DEF_USER) {
ffb5957b 297 sym = sym_find(line + strlen(CONFIG_));
661b0680 298 if (!sym) {
299 sym_add_change_count(1);
8bea7548 300 goto setsym;
661b0680 301 }
669bfad9 302 } else {
ffb5957b 303 sym = sym_lookup(line + strlen(CONFIG_), 0);
669bfad9
RZ
304 if (sym->type == S_UNKNOWN)
305 sym->type = S_OTHER;
306 }
307 if (sym->flags & def_flags) {
d84876f9 308 conf_warning("override: reassigning to symbol %s", sym->name);
1da177e4 309 }
9c900a9c
SR
310 if (conf_set_sym_val(sym, def, def_flags, p))
311 continue;
8baefd30
AL
312 } else {
313 if (line[0] != '\r' && line[0] != '\n')
314 conf_warning("unexpected data");
1da177e4
LT
315 continue;
316 }
8bea7548 317setsym:
1da177e4
LT
318 if (sym && sym_is_choice_value(sym)) {
319 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
669bfad9 320 switch (sym->def[def].tri) {
1da177e4
LT
321 case no:
322 break;
323 case mod:
669bfad9 324 if (cs->def[def].tri == yes) {
c1a0f5e3 325 conf_warning("%s creates inconsistent choice state", sym->name);
669bfad9 326 cs->flags &= ~def_flags;
c1a0f5e3 327 }
1da177e4
LT
328 break;
329 case yes:
d84876f9
JE
330 if (cs->def[def].tri != no)
331 conf_warning("override: %s changes choice state", sym->name);
332 cs->def[def].val = sym;
1da177e4
LT
333 break;
334 }
d6ee3576 335 cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
1da177e4
LT
336 }
337 }
338 fclose(in);
339
340 if (modules_sym)
341 sym_calc_value(modules_sym);
90389160
RZ
342 return 0;
343}
344
345int conf_read(const char *name)
346{
7a962923 347 struct symbol *sym, *choice_sym;
90389160
RZ
348 struct property *prop;
349 struct expr *e;
669bfad9 350 int i, flags;
90389160 351
bfc10001 352 sym_set_change_count(0);
ddc97cac 353
669bfad9 354 if (conf_read_simple(name, S_DEF_USER))
90389160
RZ
355 return 1;
356
1da177e4
LT
357 for_all_symbols(i, sym) {
358 sym_calc_value(sym);
c1a0f5e3
RZ
359 if (sym_is_choice(sym) || (sym->flags & SYMBOL_AUTO))
360 goto sym_ok;
361 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
362 /* check that calculated value agrees with saved value */
363 switch (sym->type) {
364 case S_BOOLEAN:
365 case S_TRISTATE:
0c1822e6 366 if (sym->def[S_DEF_USER].tri != sym_get_tristate_value(sym))
c1a0f5e3
RZ
367 break;
368 if (!sym_is_choice(sym))
369 goto sym_ok;
d8fc3200 370 /* fall through */
c1a0f5e3 371 default:
0c1822e6 372 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
c1a0f5e3
RZ
373 goto sym_ok;
374 break;
375 }
376 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
377 /* no previous value and not saved */
378 goto sym_ok;
379 conf_unsaved++;
380 /* maybe print value in verbose mode... */
381 sym_ok:
d8982ba1
RZ
382 if (!sym_is_choice(sym))
383 continue;
384 /* The choice symbol only has a set value (and thus is not new)
385 * if all its visible childs have values.
386 */
387 prop = sym_get_choice_prop(sym);
388 flags = sym->flags;
7a962923
RZ
389 expr_list_for_each_sym(prop->expr, e, choice_sym)
390 if (choice_sym->visible != no)
391 flags &= choice_sym->flags;
d8982ba1
RZ
392 sym->flags &= flags | ~SYMBOL_DEF_USER;
393 }
394
395 for_all_symbols(i, sym) {
1da177e4 396 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
d8982ba1
RZ
397 /* Reset values of generates values, so they'll appear
398 * as new, if they should become visible, but that
399 * doesn't quite work if the Kconfig and the saved
400 * configuration disagree.
401 */
402 if (sym->visible == no && !conf_unsaved)
669bfad9 403 sym->flags &= ~SYMBOL_DEF_USER;
1da177e4
LT
404 switch (sym->type) {
405 case S_STRING:
406 case S_INT:
407 case S_HEX:
d8982ba1
RZ
408 /* Reset a string value if it's out of range */
409 if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
410 break;
411 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
412 conf_unsaved++;
413 break;
1da177e4
LT
414 default:
415 break;
416 }
417 }
1da177e4
LT
418 }
419
bfc10001 420 sym_add_change_count(conf_warnings || conf_unsaved);
1da177e4
LT
421
422 return 0;
423}
424
e54e692b
AL
425/*
426 * Kconfig configuration printer
427 *
428 * This printer is used when generating the resulting configuration after
429 * kconfig invocation and `defconfig' files. Unset symbol might be omitted by
430 * passing a non-NULL argument to the printer.
431 *
432 */
433static void
434kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
435{
436
437 switch (sym->type) {
438 case S_BOOLEAN:
439 case S_TRISTATE:
440 if (*value == 'n') {
441 bool skip_unset = (arg != NULL);
442
443 if (!skip_unset)
444 fprintf(fp, "# %s%s is not set\n",
445 CONFIG_, sym->name);
446 return;
447 }
448 break;
449 default:
450 break;
451 }
452
453 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
454}
455
456static void
457kconfig_print_comment(FILE *fp, const char *value, void *arg)
49192f26 458{
e54e692b
AL
459 const char *p = value;
460 size_t l;
461
462 for (;;) {
463 l = strcspn(p, "\n");
464 fprintf(fp, "#");
49192f26 465 if (l) {
e54e692b
AL
466 fprintf(fp, " ");
467 fwrite(p, l, 1, fp);
468 p += l;
49192f26 469 }
e54e692b
AL
470 fprintf(fp, "\n");
471 if (*p++ == '\0')
49192f26 472 break;
49192f26 473 }
49192f26
SR
474}
475
e54e692b 476static struct conf_printer kconfig_printer_cb =
49192f26 477{
e54e692b
AL
478 .print_symbol = kconfig_print_symbol,
479 .print_comment = kconfig_print_comment,
480};
481
482/*
483 * Header printer
484 *
485 * This printer is used when generating the `include/generated/autoconf.h' file.
486 */
487static void
488header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
489{
49192f26 490
0dce6310 491 switch (sym->type) {
49192f26 492 case S_BOOLEAN:
eb4cf5a6
AL
493 case S_TRISTATE: {
494 const char *suffix = "";
495
e54e692b
AL
496 switch (*value) {
497 case 'n':
498 return;
499 case 'm':
500 suffix = "_MODULE";
eb4cf5a6 501 /* fall through */
e54e692b
AL
502 default:
503 value = "1";
49192f26 504 }
eb4cf5a6
AL
505 fprintf(fp, "#define %s%s%s %s\n",
506 CONFIG_, sym->name, suffix, value);
507 break;
508 }
509 case S_HEX: {
510 const char *prefix = "";
511
512 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
513 prefix = "0x";
514 fprintf(fp, "#define %s%s %s%s\n",
515 CONFIG_, sym->name, prefix, value);
516 break;
517 }
518 case S_STRING:
519 case S_INT:
520 fprintf(fp, "#define %s%s %s\n",
521 CONFIG_, sym->name, value);
49192f26 522 break;
e54e692b 523 default:
49192f26 524 break;
e54e692b
AL
525 }
526
e54e692b
AL
527}
528
529static void
530header_print_comment(FILE *fp, const char *value, void *arg)
531{
532 const char *p = value;
533 size_t l;
534
535 fprintf(fp, "/*\n");
536 for (;;) {
537 l = strcspn(p, "\n");
538 fprintf(fp, " *");
539 if (l) {
540 fprintf(fp, " ");
541 fwrite(p, l, 1, fp);
542 p += l;
543 }
544 fprintf(fp, "\n");
545 if (*p++ == '\0')
546 break;
547 }
548 fprintf(fp, " */\n");
549}
550
551static struct conf_printer header_printer_cb =
552{
553 .print_symbol = header_print_symbol,
554 .print_comment = header_print_comment,
555};
556
557/*
558 * Function-style header printer
559 *
560 * This printer is used to generate the config_is_xxx() function-style macros
561 * in `include/generated/autoconf.h'
562 */
563static void
564header_function_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
565{
566 int val = 0;
567 char c;
568 char *tmp, *d;
569
570 switch (sym->type) {
571 case S_BOOLEAN:
572 case S_TRISTATE:
49192f26 573 break;
e54e692b
AL
574 default:
575 return;
576 }
577 if (*value == 'm')
578 val = 2;
579 else if (*value == 'y')
580 val = 1;
581
582 d = strdup(CONFIG_);
583 tmp = d;
584 while ((c = *d)) {
585 *d = tolower(c);
586 d++;
587 }
588
589 fprintf(fp, "#define %sis_", tmp);
590 free(tmp);
591
592 d = strdup(sym->name);
593 tmp = d;
594 while ((c = *d)) {
595 *d = tolower(c);
596 d++;
597 }
598 fprintf(fp, "%s%s() %d\n", tmp, (val > 1) ? "_module" : "",
599 val ? 1 : 0);
600 free(tmp);
601}
602
603static struct conf_printer header_function_printer_cb =
604{
605 .print_symbol = header_function_print_symbol,
606};
607
608
609/*
610 * Tristate printer
611 *
612 * This printer is used when generating the `include/config/tristate.conf' file.
613 */
614static void
615tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
616{
617
618 if (sym->type == S_TRISTATE && *value != 'n')
619 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value));
620}
621
622static struct conf_printer tristate_printer_cb =
623{
624 .print_symbol = tristate_print_symbol,
625 .print_comment = kconfig_print_comment,
626};
627
628static void conf_write_symbol(FILE *fp, struct symbol *sym,
629 struct conf_printer *printer, void *printer_arg)
630{
631 const char *str;
632
633 switch (sym->type) {
49192f26
SR
634 case S_OTHER:
635 case S_UNKNOWN:
636 break;
e54e692b
AL
637 case S_STRING:
638 str = sym_get_string_value(sym);
639 str = sym_escape_string_value(str);
640 printer->print_symbol(fp, sym, str, printer_arg);
641 free((void *)str);
642 break;
643 default:
644 str = sym_get_string_value(sym);
645 printer->print_symbol(fp, sym, str, printer_arg);
49192f26
SR
646 }
647}
648
e54e692b
AL
649static void
650conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg)
651{
652 char buf[256];
653
654 snprintf(buf, sizeof(buf),
655 "\n"
656 "Automatically generated file; DO NOT EDIT.\n"
657 "%s\n",
658 rootmenu.prompt->text);
659
660 printer->print_comment(fp, buf, printer_arg);
661}
662
7cf3d73b
SR
663/*
664 * Write out a minimal config.
665 * All values that has default values are skipped as this is redundant.
666 */
667int conf_write_defconfig(const char *filename)
668{
669 struct symbol *sym;
670 struct menu *menu;
671 FILE *out;
672
673 out = fopen(filename, "w");
674 if (!out)
675 return 1;
676
677 sym_clear_all_valid();
678
679 /* Traverse all menus to find all relevant symbols */
680 menu = rootmenu.list;
681
682 while (menu != NULL)
683 {
684 sym = menu->sym;
685 if (sym == NULL) {
686 if (!menu_is_visible(menu))
687 goto next_menu;
688 } else if (!sym_is_choice(sym)) {
689 sym_calc_value(sym);
690 if (!(sym->flags & SYMBOL_WRITE))
691 goto next_menu;
692 sym->flags &= ~SYMBOL_WRITE;
693 /* If we cannot change the symbol - skip */
694 if (!sym_is_changable(sym))
695 goto next_menu;
696 /* If symbol equals to default value - skip */
697 if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
698 goto next_menu;
699
700 /*
701 * If symbol is a choice value and equals to the
702 * default for a choice - skip.
84062dd3
SR
703 * But only if value is bool and equal to "y" and
704 * choice is not "optional".
705 * (If choice is "optional" then all values can be "n")
7cf3d73b
SR
706 */
707 if (sym_is_choice_value(sym)) {
708 struct symbol *cs;
709 struct symbol *ds;
710
711 cs = prop_get_symbol(sym_get_choice_prop(sym));
712 ds = sym_choice_default(cs);
84062dd3 713 if (!sym_is_optional(cs) && sym == ds) {
801690ca
SR
714 if ((sym->type == S_BOOLEAN) &&
715 sym_get_tristate_value(sym) == yes)
7cf3d73b
SR
716 goto next_menu;
717 }
718 }
e54e692b 719 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
7cf3d73b
SR
720 }
721next_menu:
722 if (menu->list != NULL) {
723 menu = menu->list;
724 }
725 else if (menu->next != NULL) {
726 menu = menu->next;
727 } else {
728 while ((menu = menu->parent)) {
729 if (menu->next != NULL) {
730 menu = menu->next;
731 break;
732 }
733 }
734 }
735 }
736 fclose(out);
737 return 0;
738}
739
1da177e4
LT
740int conf_write(const char *name)
741{
c955ccaf 742 FILE *out;
1da177e4
LT
743 struct symbol *sym;
744 struct menu *menu;
745 const char *basename;
1da177e4 746 const char *str;
1408b15b 747 char dirname[PATH_MAX+1], tmpname[PATH_MAX+1], newname[PATH_MAX+1];
1da177e4
LT
748 char *env;
749
750 dirname[0] = 0;
751 if (name && name[0]) {
752 struct stat st;
753 char *slash;
754
755 if (!stat(name, &st) && S_ISDIR(st.st_mode)) {
756 strcpy(dirname, name);
757 strcat(dirname, "/");
14cdd3c4 758 basename = conf_get_configname();
1da177e4
LT
759 } else if ((slash = strrchr(name, '/'))) {
760 int size = slash - name + 1;
761 memcpy(dirname, name, size);
762 dirname[size] = 0;
763 if (slash[1])
764 basename = slash + 1;
765 else
14cdd3c4 766 basename = conf_get_configname();
1da177e4
LT
767 } else
768 basename = name;
769 } else
14cdd3c4 770 basename = conf_get_configname();
1da177e4 771
14cdd3c4
RZ
772 sprintf(newname, "%s%s", dirname, basename);
773 env = getenv("KCONFIG_OVERWRITECONFIG");
774 if (!env || !*env) {
775 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
776 out = fopen(tmpname, "w");
777 } else {
778 *tmpname = 0;
779 out = fopen(newname, "w");
780 }
1da177e4
LT
781 if (!out)
782 return 1;
14cdd3c4 783
e54e692b 784 conf_write_heading(out, &kconfig_printer_cb, NULL);
1da177e4 785
b3214293 786 if (!conf_get_changed())
1da177e4
LT
787 sym_clear_all_valid();
788
789 menu = rootmenu.list;
790 while (menu) {
791 sym = menu->sym;
792 if (!sym) {
793 if (!menu_is_visible(menu))
794 goto next;
795 str = menu_get_prompt(menu);
796 fprintf(out, "\n"
797 "#\n"
798 "# %s\n"
799 "#\n", str);
1da177e4
LT
800 } else if (!(sym->flags & SYMBOL_CHOICE)) {
801 sym_calc_value(sym);
802 if (!(sym->flags & SYMBOL_WRITE))
803 goto next;
804 sym->flags &= ~SYMBOL_WRITE;
e54e692b
AL
805
806 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
1da177e4
LT
807 }
808
49192f26 809next:
1da177e4
LT
810 if (menu->list) {
811 menu = menu->list;
812 continue;
813 }
814 if (menu->next)
815 menu = menu->next;
816 else while ((menu = menu->parent)) {
817 if (menu->next) {
818 menu = menu->next;
819 break;
820 }
821 }
822 }
823 fclose(out);
14cdd3c4
RZ
824
825 if (*tmpname) {
9a3d0fe8 826 strcat(dirname, basename);
14cdd3c4
RZ
827 strcat(dirname, ".old");
828 rename(newname, dirname);
829 if (rename(tmpname, newname))
830 return 1;
1da177e4 831 }
1da177e4 832
42368c37 833 conf_message(_("configuration written to %s"), newname);
ddc97cac 834
bfc10001 835 sym_set_change_count(0);
1da177e4
LT
836
837 return 0;
838}
c955ccaf 839
4356f489 840static int conf_split_config(void)
2e3646e5 841{
12122f62 842 const char *name;
1408b15b 843 char path[PATH_MAX+1];
2e3646e5
RZ
844 char *s, *d, c;
845 struct symbol *sym;
846 struct stat sb;
847 int res, i, fd;
848
12122f62 849 name = conf_get_autoconfig_name();
2e3646e5
RZ
850 conf_read_simple(name, S_DEF_AUTO);
851
852 if (chdir("include/config"))
853 return 1;
854
855 res = 0;
856 for_all_symbols(i, sym) {
857 sym_calc_value(sym);
858 if ((sym->flags & SYMBOL_AUTO) || !sym->name)
859 continue;
860 if (sym->flags & SYMBOL_WRITE) {
861 if (sym->flags & SYMBOL_DEF_AUTO) {
862 /*
863 * symbol has old and new value,
864 * so compare them...
865 */
866 switch (sym->type) {
867 case S_BOOLEAN:
868 case S_TRISTATE:
869 if (sym_get_tristate_value(sym) ==
870 sym->def[S_DEF_AUTO].tri)
871 continue;
872 break;
873 case S_STRING:
874 case S_HEX:
875 case S_INT:
876 if (!strcmp(sym_get_string_value(sym),
877 sym->def[S_DEF_AUTO].val))
878 continue;
879 break;
880 default:
881 break;
882 }
883 } else {
884 /*
885 * If there is no old value, only 'no' (unset)
886 * is allowed as new value.
887 */
888 switch (sym->type) {
889 case S_BOOLEAN:
890 case S_TRISTATE:
891 if (sym_get_tristate_value(sym) == no)
892 continue;
893 break;
894 default:
895 break;
896 }
897 }
898 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
899 /* There is neither an old nor a new value. */
900 continue;
901 /* else
902 * There is an old value, but no new value ('no' (unset)
903 * isn't saved in auto.conf, so the old value is always
904 * different from 'no').
905 */
906
907 /* Replace all '_' and append ".h" */
908 s = sym->name;
909 d = path;
910 while ((c = *s++)) {
911 c = tolower(c);
912 *d++ = (c == '_') ? '/' : c;
913 }
914 strcpy(d, ".h");
915
916 /* Assume directory path already exists. */
917 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
918 if (fd == -1) {
919 if (errno != ENOENT) {
920 res = 1;
921 break;
922 }
923 /*
924 * Create directory components,
925 * unless they exist already.
926 */
927 d = path;
928 while ((d = strchr(d, '/'))) {
929 *d = 0;
930 if (stat(path, &sb) && mkdir(path, 0755)) {
931 res = 1;
932 goto out;
933 }
934 *d++ = '/';
935 }
936 /* Try it again. */
937 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
938 if (fd == -1) {
939 res = 1;
940 break;
941 }
942 }
943 close(fd);
944 }
945out:
946 if (chdir("../.."))
947 return 1;
948
949 return res;
950}
951
c955ccaf
RZ
952int conf_write_autoconf(void)
953{
954 struct symbol *sym;
12122f62 955 const char *name;
bc081dd6 956 FILE *out, *tristate, *out_h;
49192f26 957 int i;
c955ccaf 958
2e3646e5
RZ
959 sym_clear_all_valid();
960
c955ccaf
RZ
961 file_write_dep("include/config/auto.conf.cmd");
962
2e3646e5
RZ
963 if (conf_split_config())
964 return 1;
965
c955ccaf
RZ
966 out = fopen(".tmpconfig", "w");
967 if (!out)
968 return 1;
969
bc081dd6
MM
970 tristate = fopen(".tmpconfig_tristate", "w");
971 if (!tristate) {
972 fclose(out);
973 return 1;
974 }
975
c955ccaf
RZ
976 out_h = fopen(".tmpconfig.h", "w");
977 if (!out_h) {
978 fclose(out);
bc081dd6 979 fclose(tristate);
c955ccaf
RZ
980 return 1;
981 }
982
e54e692b
AL
983 conf_write_heading(out, &kconfig_printer_cb, NULL);
984
985 conf_write_heading(tristate, &tristate_printer_cb, NULL);
986
987 conf_write_heading(out_h, &header_printer_cb, NULL);
c955ccaf 988
c955ccaf
RZ
989 for_all_symbols(i, sym) {
990 sym_calc_value(sym);
991 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
992 continue;
49192f26 993
e54e692b
AL
994 /* write symbol to auto.conf, tristate and header files */
995 conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
49192f26 996
e54e692b
AL
997 conf_write_symbol(tristate, sym, &tristate_printer_cb, (void *)1);
998
999 conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
1000 conf_write_symbol(out_h, sym, &header_function_printer_cb, NULL);
c955ccaf
RZ
1001 }
1002 fclose(out);
bc081dd6 1003 fclose(tristate);
c955ccaf
RZ
1004 fclose(out_h);
1005
1006 name = getenv("KCONFIG_AUTOHEADER");
1007 if (!name)
264a2683 1008 name = "include/generated/autoconf.h";
c955ccaf
RZ
1009 if (rename(".tmpconfig.h", name))
1010 return 1;
bc081dd6
MM
1011 name = getenv("KCONFIG_TRISTATE");
1012 if (!name)
1013 name = "include/config/tristate.conf";
1014 if (rename(".tmpconfig_tristate", name))
1015 return 1;
12122f62 1016 name = conf_get_autoconfig_name();
c955ccaf
RZ
1017 /*
1018 * This must be the last step, kbuild has a dependency on auto.conf
1019 * and this marks the successful completion of the previous steps.
1020 */
1021 if (rename(".tmpconfig", name))
1022 return 1;
1023
1024 return 0;
1025}
b3214293 1026
bfc10001 1027static int sym_change_count;
3b354c55 1028static void (*conf_changed_callback)(void);
bfc10001
KW
1029
1030void sym_set_change_count(int count)
1031{
3b354c55 1032 int _sym_change_count = sym_change_count;
bfc10001 1033 sym_change_count = count;
3b354c55
KW
1034 if (conf_changed_callback &&
1035 (bool)_sym_change_count != (bool)count)
1036 conf_changed_callback();
bfc10001
KW
1037}
1038
1039void sym_add_change_count(int count)
1040{
3b354c55 1041 sym_set_change_count(count + sym_change_count);
bfc10001
KW
1042}
1043
b3214293
KW
1044bool conf_get_changed(void)
1045{
1046 return sym_change_count;
1047}
3b354c55
KW
1048
1049void conf_set_changed_callback(void (*fn)(void))
1050{
1051 conf_changed_callback = fn;
1052}
dc7862e5 1053
a64b44ea
SR
1054static void randomize_choice_values(struct symbol *csym)
1055{
1056 struct property *prop;
1057 struct symbol *sym;
1058 struct expr *e;
1059 int cnt, def;
dc7862e5 1060
a64b44ea 1061 /*
579fb8e7 1062 * If choice is mod then we may have more items selected
a64b44ea
SR
1063 * and if no then no-one.
1064 * In both cases stop.
1065 */
1066 if (csym->curr.tri != yes)
1067 return;
1068
1069 prop = sym_get_choice_prop(csym);
1070
1071 /* count entries in choice block */
1072 cnt = 0;
1073 expr_list_for_each_sym(prop->expr, e, sym)
1074 cnt++;
1075
1076 /*
1077 * find a random value and set it to yes,
1078 * set the rest to no so we have only one set
1079 */
1080 def = (rand() % cnt);
1081
1082 cnt = 0;
1083 expr_list_for_each_sym(prop->expr, e, sym) {
1084 if (def == cnt++) {
1085 sym->def[S_DEF_USER].tri = yes;
1086 csym->def[S_DEF_USER].val = sym;
1087 }
1088 else {
1089 sym->def[S_DEF_USER].tri = no;
1090 }
1091 }
1092 csym->flags |= SYMBOL_DEF_USER;
1093 /* clear VALID to get value calculated */
1094 csym->flags &= ~(SYMBOL_VALID);
1095}
1096
1097static void set_all_choice_values(struct symbol *csym)
dc7862e5 1098{
dc7862e5 1099 struct property *prop;
a64b44ea 1100 struct symbol *sym;
dc7862e5 1101 struct expr *e;
a64b44ea
SR
1102
1103 prop = sym_get_choice_prop(csym);
1104
1105 /*
1106 * Set all non-assinged choice values to no
1107 */
1108 expr_list_for_each_sym(prop->expr, e, sym) {
1109 if (!sym_has_value(sym))
1110 sym->def[S_DEF_USER].tri = no;
1111 }
1112 csym->flags |= SYMBOL_DEF_USER;
1113 /* clear VALID to get value calculated */
1114 csym->flags &= ~(SYMBOL_VALID);
1115}
1116
1117void conf_set_all_new_symbols(enum conf_def_mode mode)
1118{
1119 struct symbol *sym, *csym;
1120 int i, cnt;
dc7862e5
RZ
1121
1122 for_all_symbols(i, sym) {
1123 if (sym_has_value(sym))
1124 continue;
1125 switch (sym_get_type(sym)) {
1126 case S_BOOLEAN:
1127 case S_TRISTATE:
1128 switch (mode) {
1129 case def_yes:
1130 sym->def[S_DEF_USER].tri = yes;
1131 break;
1132 case def_mod:
1133 sym->def[S_DEF_USER].tri = mod;
1134 break;
1135 case def_no:
1136 sym->def[S_DEF_USER].tri = no;
1137 break;
1138 case def_random:
1244b41d
PK
1139 cnt = sym_get_type(sym) == S_TRISTATE ? 3 : 2;
1140 sym->def[S_DEF_USER].tri = (tristate)(rand() % cnt);
dc7862e5
RZ
1141 break;
1142 default:
1143 continue;
1144 }
184832c9 1145 if (!(sym_is_choice(sym) && mode == def_random))
dc7862e5
RZ
1146 sym->flags |= SYMBOL_DEF_USER;
1147 break;
1148 default:
1149 break;
1150 }
1151
1152 }
1153
ce97e13e 1154 sym_clear_all_valid();
dc7862e5 1155
184832c9
SR
1156 /*
1157 * We have different type of choice blocks.
579fb8e7 1158 * If curr.tri equals to mod then we can select several
184832c9
SR
1159 * choice symbols in one block.
1160 * In this case we do nothing.
579fb8e7 1161 * If curr.tri equals yes then only one symbol can be
184832c9
SR
1162 * selected in a choice block and we set it to yes,
1163 * and the rest to no.
1164 */
dc7862e5
RZ
1165 for_all_symbols(i, csym) {
1166 if (sym_has_value(csym) || !sym_is_choice(csym))
1167 continue;
1168
1169 sym_calc_value(csym);
a64b44ea
SR
1170 if (mode == def_random)
1171 randomize_choice_values(csym);
1172 else
1173 set_all_choice_values(csym);
dc7862e5
RZ
1174 }
1175}