2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
19 static void conf_warning(const char *fmt, ...)
20 __attribute__ ((format (printf, 1, 2)));
22 static void conf_message(const char *fmt, ...)
23 __attribute__ ((format (printf, 1, 2)));
25 static const char *conf_filename;
26 static int conf_lineno, conf_warnings, conf_unsaved;
28 const char conf_defname[] = "arch/$ARCH/defconfig";
30 static void conf_warning(const char *fmt, ...)
34 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
35 vfprintf(stderr, fmt, ap);
36 fprintf(stderr, "\n");
41 static void conf_default_message_callback(const char *fmt, va_list ap)
48 static void (*conf_message_callback) (const char *fmt, va_list ap) =
49 conf_default_message_callback;
50 void conf_set_message_callback(void (*fn) (const char *fmt, va_list ap))
52 conf_message_callback = fn;
55 static void conf_message(const char *fmt, ...)
60 if (conf_message_callback)
61 conf_message_callback(fmt, ap);
64 const char *conf_get_configname(void)
66 char *name = getenv("KCONFIG_CONFIG");
68 return name ? name : ".config";
71 const char *conf_get_autoconfig_name(void)
73 char *name = getenv("KCONFIG_AUTOCONFIG");
75 return name ? name : "include/config/auto.conf";
78 static char *conf_expand_value(const char *in)
82 static char res_value[SYMBOL_MAXLENGTH];
83 char *dst, name[SYMBOL_MAXLENGTH];
87 while ((src = strchr(in, '$'))) {
88 strncat(res_value, in, src - in);
91 while (isalnum(*src) || *src == '_')
94 sym = sym_lookup(name, 0);
96 strcat(res_value, sym_get_string_value(sym));
99 strcat(res_value, in);
104 char *conf_get_default_confname(void)
107 static char fullname[PATH_MAX+1];
110 name = conf_expand_value(conf_defname);
111 env = getenv(SRCTREE);
113 sprintf(fullname, "%s/%s", env, name);
114 if (!stat(fullname, &buf))
120 static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
127 sym->def[def].tri = mod;
128 sym->flags |= def_flags;
134 sym->def[def].tri = yes;
135 sym->flags |= def_flags;
139 sym->def[def].tri = no;
140 sym->flags |= def_flags;
143 if (def != S_DEF_AUTO)
144 conf_warning("symbol value '%s' invalid for %s",
149 for (p2 = p; *p2 && !isspace(*p2); p2++)
151 sym->type = S_STRING;
158 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
163 memmove(p2, p2 + 1, strlen(p2));
166 if (def != S_DEF_AUTO)
167 conf_warning("invalid string found");
174 if (sym_string_valid(sym, p)) {
175 sym->def[def].val = strdup(p);
176 sym->flags |= def_flags;
178 if (def != S_DEF_AUTO)
179 conf_warning("symbol value '%s' invalid for %s",
190 #define LINE_GROWTH 16
191 static int add_byte(int c, char **lineptr, size_t slen, size_t *n)
194 size_t new_size = slen + 1;
196 new_size += LINE_GROWTH - 1;
198 nline = realloc(*lineptr, new_size);
206 (*lineptr)[slen] = c;
211 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream)
213 char *line = *lineptr;
217 int c = getc(stream);
221 if (add_byte(c, &line, slen, n) < 0)
226 if (add_byte('\0', &line, slen, n) < 0)
233 if (add_byte(c, &line, slen, n) < 0)
245 int conf_read_simple(const char *name, int def)
249 size_t line_asize = 0;
255 in = zconf_fopen(name);
257 struct property *prop;
259 name = conf_get_configname();
260 in = zconf_fopen(name);
263 sym_add_change_count(1);
264 if (!sym_defconfig_list) {
266 sym_calc_value(modules_sym);
270 for_all_defaults(sym_defconfig_list, prop) {
271 if (expr_calc_value(prop->visible.expr) == no ||
272 prop->expr->type != E_SYMBOL)
274 name = conf_expand_value(prop->expr->left.sym->name);
275 in = zconf_fopen(name);
277 conf_message(_("using defaults found in %s"),
287 conf_filename = name;
292 def_flags = SYMBOL_DEF << def;
293 for_all_symbols(i, sym) {
294 sym->flags |= SYMBOL_CHANGED;
295 sym->flags &= ~(def_flags|SYMBOL_VALID);
296 if (sym_is_choice(sym))
297 sym->flags |= def_flags;
302 if (sym->def[def].val)
303 free(sym->def[def].val);
306 sym->def[def].val = NULL;
307 sym->def[def].tri = no;
311 while (compat_getline(&line, &line_asize, in) != -1) {
314 if (line[0] == '#') {
315 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
317 p = strchr(line + 2 + strlen(CONFIG_), ' ');
321 if (strncmp(p, "is not set", 10))
323 if (def == S_DEF_USER) {
324 sym = sym_find(line + 2 + strlen(CONFIG_));
326 sym_add_change_count(1);
330 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
331 if (sym->type == S_UNKNOWN)
332 sym->type = S_BOOLEAN;
334 if (sym->flags & def_flags) {
335 conf_warning("override: reassigning to symbol %s", sym->name);
340 sym->def[def].tri = no;
341 sym->flags |= def_flags;
346 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
347 p = strchr(line + strlen(CONFIG_), '=');
351 p2 = strchr(p, '\n');
357 if (def == S_DEF_USER) {
358 sym = sym_find(line + strlen(CONFIG_));
360 sym_add_change_count(1);
364 sym = sym_lookup(line + strlen(CONFIG_), 0);
365 if (sym->type == S_UNKNOWN)
368 if (sym->flags & def_flags) {
369 conf_warning("override: reassigning to symbol %s", sym->name);
371 if (conf_set_sym_val(sym, def, def_flags, p))
374 if (line[0] != '\r' && line[0] != '\n')
375 conf_warning("unexpected data");
379 if (sym && sym_is_choice_value(sym)) {
380 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
381 switch (sym->def[def].tri) {
385 if (cs->def[def].tri == yes) {
386 conf_warning("%s creates inconsistent choice state", sym->name);
387 cs->flags &= ~def_flags;
391 if (cs->def[def].tri != no)
392 conf_warning("override: %s changes choice state", sym->name);
393 cs->def[def].val = sym;
396 cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
403 sym_calc_value(modules_sym);
407 int conf_read(const char *name)
412 sym_set_change_count(0);
414 if (conf_read_simple(name, S_DEF_USER))
417 for_all_symbols(i, sym) {
419 if (sym_is_choice(sym) || (sym->flags & SYMBOL_AUTO))
421 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
422 /* check that calculated value agrees with saved value */
426 if (sym->def[S_DEF_USER].tri != sym_get_tristate_value(sym))
428 if (!sym_is_choice(sym))
432 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
436 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
437 /* no previous value and not saved */
440 /* maybe print value in verbose mode... */
443 for_all_symbols(i, sym) {
444 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
445 /* Reset values of generates values, so they'll appear
446 * as new, if they should become visible, but that
447 * doesn't quite work if the Kconfig and the saved
448 * configuration disagree.
450 if (sym->visible == no && !conf_unsaved)
451 sym->flags &= ~SYMBOL_DEF_USER;
456 /* Reset a string value if it's out of range */
457 if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
459 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
468 sym_add_change_count(conf_warnings || conf_unsaved);
474 * Kconfig configuration printer
476 * This printer is used when generating the resulting configuration after
477 * kconfig invocation and `defconfig' files. Unset symbol might be omitted by
478 * passing a non-NULL argument to the printer.
482 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
489 bool skip_unset = (arg != NULL);
492 fprintf(fp, "# %s%s is not set\n",
501 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
505 kconfig_print_comment(FILE *fp, const char *value, void *arg)
507 const char *p = value;
511 l = strcspn(p, "\n");
515 xfwrite(p, l, 1, fp);
524 static struct conf_printer kconfig_printer_cb =
526 .print_symbol = kconfig_print_symbol,
527 .print_comment = kconfig_print_comment,
533 * This printer is used when generating the `include/generated/autoconf.h' file.
536 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
542 const char *suffix = "";
551 fprintf(fp, "#define %s%s%s 1\n",
552 CONFIG_, sym->name, suffix);
557 const char *prefix = "";
559 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
561 fprintf(fp, "#define %s%s %s%s\n",
562 CONFIG_, sym->name, prefix, value);
567 fprintf(fp, "#define %s%s %s\n",
568 CONFIG_, sym->name, value);
577 header_print_comment(FILE *fp, const char *value, void *arg)
579 const char *p = value;
584 l = strcspn(p, "\n");
588 xfwrite(p, l, 1, fp);
595 fprintf(fp, " */\n");
598 static struct conf_printer header_printer_cb =
600 .print_symbol = header_print_symbol,
601 .print_comment = header_print_comment,
607 * This printer is used when generating the `include/config/tristate.conf' file.
610 tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
613 if (sym->type == S_TRISTATE && *value != 'n')
614 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value));
617 static struct conf_printer tristate_printer_cb =
619 .print_symbol = tristate_print_symbol,
620 .print_comment = kconfig_print_comment,
623 static void conf_write_symbol(FILE *fp, struct symbol *sym,
624 struct conf_printer *printer, void *printer_arg)
633 str = sym_get_string_value(sym);
634 str = sym_escape_string_value(str);
635 printer->print_symbol(fp, sym, str, printer_arg);
639 str = sym_get_string_value(sym);
640 printer->print_symbol(fp, sym, str, printer_arg);
645 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg)
649 snprintf(buf, sizeof(buf),
651 "Automatically generated file; DO NOT EDIT.\n"
653 rootmenu.prompt->text);
655 printer->print_comment(fp, buf, printer_arg);
659 * Write out a minimal config.
660 * All values that has default values are skipped as this is redundant.
662 int conf_write_defconfig(const char *filename)
668 out = fopen(filename, "w");
672 sym_clear_all_valid();
674 /* Traverse all menus to find all relevant symbols */
675 menu = rootmenu.list;
681 if (!menu_is_visible(menu))
683 } else if (!sym_is_choice(sym)) {
685 if (!(sym->flags & SYMBOL_WRITE))
687 sym->flags &= ~SYMBOL_WRITE;
688 /* If we cannot change the symbol - skip */
689 if (!sym_is_changable(sym))
691 /* If symbol equals to default value - skip */
692 if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
696 * If symbol is a choice value and equals to the
697 * default for a choice - skip.
698 * But only if value is bool and equal to "y" and
699 * choice is not "optional".
700 * (If choice is "optional" then all values can be "n")
702 if (sym_is_choice_value(sym)) {
706 cs = prop_get_symbol(sym_get_choice_prop(sym));
707 ds = sym_choice_default(cs);
708 if (!sym_is_optional(cs) && sym == ds) {
709 if ((sym->type == S_BOOLEAN) &&
710 sym_get_tristate_value(sym) == yes)
714 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
717 if (menu->list != NULL) {
720 else if (menu->next != NULL) {
723 while ((menu = menu->parent)) {
724 if (menu->next != NULL) {
735 int conf_write(const char *name)
740 const char *basename;
742 char dirname[PATH_MAX+1], tmpname[PATH_MAX+1], newname[PATH_MAX+1];
746 if (name && name[0]) {
750 if (!stat(name, &st) && S_ISDIR(st.st_mode)) {
751 strcpy(dirname, name);
752 strcat(dirname, "/");
753 basename = conf_get_configname();
754 } else if ((slash = strrchr(name, '/'))) {
755 int size = slash - name + 1;
756 memcpy(dirname, name, size);
759 basename = slash + 1;
761 basename = conf_get_configname();
765 basename = conf_get_configname();
767 sprintf(newname, "%s%s", dirname, basename);
768 env = getenv("KCONFIG_OVERWRITECONFIG");
770 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
771 out = fopen(tmpname, "w");
774 out = fopen(newname, "w");
779 conf_write_heading(out, &kconfig_printer_cb, NULL);
781 if (!conf_get_changed())
782 sym_clear_all_valid();
784 menu = rootmenu.list;
788 if (!menu_is_visible(menu))
790 str = menu_get_prompt(menu);
795 } else if (!(sym->flags & SYMBOL_CHOICE)) {
797 if (!(sym->flags & SYMBOL_WRITE))
799 sym->flags &= ~SYMBOL_WRITE;
801 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
811 else while ((menu = menu->parent)) {
821 strcat(dirname, basename);
822 strcat(dirname, ".old");
823 rename(newname, dirname);
824 if (rename(tmpname, newname))
828 conf_message(_("configuration written to %s"), newname);
830 sym_set_change_count(0);
835 static int conf_split_config(void)
838 char path[PATH_MAX+1];
844 name = conf_get_autoconfig_name();
845 conf_read_simple(name, S_DEF_AUTO);
847 if (chdir("include/config"))
851 for_all_symbols(i, sym) {
853 if ((sym->flags & SYMBOL_AUTO) || !sym->name)
855 if (sym->flags & SYMBOL_WRITE) {
856 if (sym->flags & SYMBOL_DEF_AUTO) {
858 * symbol has old and new value,
864 if (sym_get_tristate_value(sym) ==
865 sym->def[S_DEF_AUTO].tri)
871 if (!strcmp(sym_get_string_value(sym),
872 sym->def[S_DEF_AUTO].val))
880 * If there is no old value, only 'no' (unset)
881 * is allowed as new value.
886 if (sym_get_tristate_value(sym) == no)
893 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
894 /* There is neither an old nor a new value. */
897 * There is an old value, but no new value ('no' (unset)
898 * isn't saved in auto.conf, so the old value is always
899 * different from 'no').
902 /* Replace all '_' and append ".h" */
907 *d++ = (c == '_') ? '/' : c;
911 /* Assume directory path already exists. */
912 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
914 if (errno != ENOENT) {
919 * Create directory components,
920 * unless they exist already.
923 while ((d = strchr(d, '/'))) {
925 if (stat(path, &sb) && mkdir(path, 0755)) {
932 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
947 int conf_write_autoconf(void)
951 FILE *out, *tristate, *out_h;
954 sym_clear_all_valid();
956 file_write_dep("include/config/auto.conf.cmd");
958 if (conf_split_config())
961 out = fopen(".tmpconfig", "w");
965 tristate = fopen(".tmpconfig_tristate", "w");
971 out_h = fopen(".tmpconfig.h", "w");
978 conf_write_heading(out, &kconfig_printer_cb, NULL);
980 conf_write_heading(tristate, &tristate_printer_cb, NULL);
982 conf_write_heading(out_h, &header_printer_cb, NULL);
984 for_all_symbols(i, sym) {
986 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
989 /* write symbol to auto.conf, tristate and header files */
990 conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
992 conf_write_symbol(tristate, sym, &tristate_printer_cb, (void *)1);
994 conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
1000 name = getenv("KCONFIG_AUTOHEADER");
1002 name = "include/generated/autoconf.h";
1003 if (rename(".tmpconfig.h", name))
1005 name = getenv("KCONFIG_TRISTATE");
1007 name = "include/config/tristate.conf";
1008 if (rename(".tmpconfig_tristate", name))
1010 name = conf_get_autoconfig_name();
1012 * This must be the last step, kbuild has a dependency on auto.conf
1013 * and this marks the successful completion of the previous steps.
1015 if (rename(".tmpconfig", name))
1021 static int sym_change_count;
1022 static void (*conf_changed_callback)(void);
1024 void sym_set_change_count(int count)
1026 int _sym_change_count = sym_change_count;
1027 sym_change_count = count;
1028 if (conf_changed_callback &&
1029 (bool)_sym_change_count != (bool)count)
1030 conf_changed_callback();
1033 void sym_add_change_count(int count)
1035 sym_set_change_count(count + sym_change_count);
1038 bool conf_get_changed(void)
1040 return sym_change_count;
1043 void conf_set_changed_callback(void (*fn)(void))
1045 conf_changed_callback = fn;
1048 static bool randomize_choice_values(struct symbol *csym)
1050 struct property *prop;
1056 * If choice is mod then we may have more items selected
1057 * and if no then no-one.
1058 * In both cases stop.
1060 if (csym->curr.tri != yes)
1063 prop = sym_get_choice_prop(csym);
1065 /* count entries in choice block */
1067 expr_list_for_each_sym(prop->expr, e, sym)
1071 * find a random value and set it to yes,
1072 * set the rest to no so we have only one set
1074 def = (rand() % cnt);
1077 expr_list_for_each_sym(prop->expr, e, sym) {
1079 sym->def[S_DEF_USER].tri = yes;
1080 csym->def[S_DEF_USER].val = sym;
1083 sym->def[S_DEF_USER].tri = no;
1085 sym->flags |= SYMBOL_DEF_USER;
1086 /* clear VALID to get value calculated */
1087 sym->flags &= ~SYMBOL_VALID;
1089 csym->flags |= SYMBOL_DEF_USER;
1090 /* clear VALID to get value calculated */
1091 csym->flags &= ~(SYMBOL_VALID);
1096 void set_all_choice_values(struct symbol *csym)
1098 struct property *prop;
1102 prop = sym_get_choice_prop(csym);
1105 * Set all non-assinged choice values to no
1107 expr_list_for_each_sym(prop->expr, e, sym) {
1108 if (!sym_has_value(sym))
1109 sym->def[S_DEF_USER].tri = no;
1111 csym->flags |= SYMBOL_DEF_USER;
1112 /* clear VALID to get value calculated */
1113 csym->flags &= ~(SYMBOL_VALID | SYMBOL_NEED_SET_CHOICE_VALUES);
1116 bool conf_set_all_new_symbols(enum conf_def_mode mode)
1118 struct symbol *sym, *csym;
1119 int i, cnt, pby, pty, ptm; /* pby: probability of boolean = y
1120 * pty: probability of tristate = y
1121 * ptm: probability of tristate = m
1124 pby = 50; pty = ptm = 33; /* can't go as the default in switch-case
1125 * below, otherwise gcc whines about
1126 * -Wmaybe-uninitialized */
1127 if (mode == def_random) {
1129 char *env = getenv("KCONFIG_PROBABILITY");
1131 while( env && *env ) {
1133 int tmp = strtol( env, &endp, 10 );
1134 if( tmp >= 0 && tmp <= 100 ) {
1138 perror( "KCONFIG_PROBABILITY" );
1141 env = (*endp == ':') ? endp+1 : endp;
1148 pby = p[0]; ptm = pby/2; pty = pby-ptm;
1151 pty = p[0]; ptm = p[1]; pby = pty + ptm;
1154 pby = p[0]; pty = p[1]; ptm = p[2];
1158 if( pty+ptm > 100 ) {
1160 perror( "KCONFIG_PROBABILITY" );
1164 bool has_changed = false;
1166 for_all_symbols(i, sym) {
1167 if (sym_has_value(sym) || (sym->flags & SYMBOL_VALID))
1169 switch (sym_get_type(sym)) {
1175 sym->def[S_DEF_USER].tri = yes;
1178 sym->def[S_DEF_USER].tri = mod;
1181 sym->def[S_DEF_USER].tri = no;
1184 sym->def[S_DEF_USER].tri = no;
1186 if (sym->type == S_TRISTATE) {
1188 sym->def[S_DEF_USER].tri = yes;
1189 else if (cnt < (pty+ptm))
1190 sym->def[S_DEF_USER].tri = mod;
1191 } else if (cnt < pby)
1192 sym->def[S_DEF_USER].tri = yes;
1197 if (!(sym_is_choice(sym) && mode == def_random))
1198 sym->flags |= SYMBOL_DEF_USER;
1206 sym_clear_all_valid();
1209 * We have different type of choice blocks.
1210 * If curr.tri equals to mod then we can select several
1211 * choice symbols in one block.
1212 * In this case we do nothing.
1213 * If curr.tri equals yes then only one symbol can be
1214 * selected in a choice block and we set it to yes,
1215 * and the rest to no.
1217 if (mode != def_random) {
1218 for_all_symbols(i, csym) {
1219 if ((sym_is_choice(csym) && !sym_has_value(csym)) ||
1220 sym_is_choice_value(csym))
1221 csym->flags |= SYMBOL_NEED_SET_CHOICE_VALUES;
1225 for_all_symbols(i, csym) {
1226 if (sym_has_value(csym) || !sym_is_choice(csym))
1229 sym_calc_value(csym);
1230 if (mode == def_random)
1231 has_changed = randomize_choice_values(csym);
1233 set_all_choice_values(csym);