3 * Released under the terms of the GNU GPL v2.0.
19 /* return true if 'path' exists, false otherwise */
20 static bool is_present(const char *path)
24 return !stat(path, &st);
27 /* return true if 'path' exists and it is a directory, false otherwise */
28 static bool is_dir(const char *path)
35 return S_ISDIR(st.st_mode);
39 * Create the parent directory of the given path.
41 * For example, if 'include/config/auto.conf' is given, create 'include/config'.
43 static int make_parent_dir(const char *path)
45 char tmp[PATH_MAX + 1];
48 strncpy(tmp, path, sizeof(tmp));
49 tmp[sizeof(tmp) - 1] = 0;
51 /* Remove the base name. Just return if nothing is left */
52 p = strrchr(tmp, '/');
57 /* Just in case it is an absolute path */
62 while ((p = strchr(p, '/'))) {
65 /* skip if the directory exists */
66 if (!is_dir(tmp) && mkdir(tmp, 0755))
78 void (*print_symbol)(FILE *, struct symbol *, const char *, void *);
79 void (*print_comment)(FILE *, const char *, void *);
82 static void conf_warning(const char *fmt, ...)
83 __attribute__ ((format (printf, 1, 2)));
85 static void conf_message(const char *fmt, ...)
86 __attribute__ ((format (printf, 1, 2)));
88 static const char *conf_filename;
89 static int conf_lineno, conf_warnings;
91 const char conf_defname[] = "arch/$(ARCH)/defconfig";
93 static void conf_warning(const char *fmt, ...)
97 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
98 vfprintf(stderr, fmt, ap);
99 fprintf(stderr, "\n");
104 static void conf_default_message_callback(const char *s)
111 static void (*conf_message_callback)(const char *s) =
112 conf_default_message_callback;
113 void conf_set_message_callback(void (*fn)(const char *s))
115 conf_message_callback = fn;
118 static void conf_message(const char *fmt, ...)
123 if (!conf_message_callback)
128 vsnprintf(buf, sizeof(buf), fmt, ap);
129 conf_message_callback(buf);
133 const char *conf_get_configname(void)
135 char *name = getenv("KCONFIG_CONFIG");
137 return name ? name : ".config";
140 const char *conf_get_autoconfig_name(void)
142 char *name = getenv("KCONFIG_AUTOCONFIG");
144 return name ? name : "include/config/auto.conf";
147 char *conf_get_default_confname(void)
149 static char fullname[PATH_MAX+1];
152 name = expand_string(conf_defname);
153 env = getenv(SRCTREE);
155 sprintf(fullname, "%s/%s", env, name);
156 if (is_present(fullname))
162 static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p)
169 sym->def[def].tri = mod;
170 sym->flags |= def_flags;
176 sym->def[def].tri = yes;
177 sym->flags |= def_flags;
181 sym->def[def].tri = no;
182 sym->flags |= def_flags;
185 if (def != S_DEF_AUTO)
186 conf_warning("symbol value '%s' invalid for %s",
191 for (p2 = p; *p2 && !isspace(*p2); p2++)
193 sym->type = S_STRING;
200 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
205 memmove(p2, p2 + 1, strlen(p2));
208 if (def != S_DEF_AUTO)
209 conf_warning("invalid string found");
216 if (sym_string_valid(sym, p)) {
217 sym->def[def].val = xstrdup(p);
218 sym->flags |= def_flags;
220 if (def != S_DEF_AUTO)
221 conf_warning("symbol value '%s' invalid for %s",
232 #define LINE_GROWTH 16
233 static int add_byte(int c, char **lineptr, size_t slen, size_t *n)
236 size_t new_size = slen + 1;
238 new_size += LINE_GROWTH - 1;
240 nline = xrealloc(*lineptr, new_size);
248 (*lineptr)[slen] = c;
253 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream)
255 char *line = *lineptr;
259 int c = getc(stream);
263 if (add_byte(c, &line, slen, n) < 0)
268 if (add_byte('\0', &line, slen, n) < 0)
275 if (add_byte(c, &line, slen, n) < 0)
287 int conf_read_simple(const char *name, int def)
291 size_t line_asize = 0;
297 in = zconf_fopen(name);
299 struct property *prop;
301 name = conf_get_configname();
302 in = zconf_fopen(name);
305 sym_add_change_count(1);
306 if (!sym_defconfig_list)
309 for_all_defaults(sym_defconfig_list, prop) {
310 if (expr_calc_value(prop->visible.expr) == no ||
311 prop->expr->type != E_SYMBOL)
313 sym_calc_value(prop->expr->left.sym);
314 name = sym_get_string_value(prop->expr->left.sym);
315 in = zconf_fopen(name);
317 conf_message("using defaults found in %s",
327 conf_filename = name;
331 def_flags = SYMBOL_DEF << def;
332 for_all_symbols(i, sym) {
333 sym->flags |= SYMBOL_CHANGED;
334 sym->flags &= ~(def_flags|SYMBOL_VALID);
335 if (sym_is_choice(sym))
336 sym->flags |= def_flags;
341 if (sym->def[def].val)
342 free(sym->def[def].val);
345 sym->def[def].val = NULL;
346 sym->def[def].tri = no;
350 while (compat_getline(&line, &line_asize, in) != -1) {
353 if (line[0] == '#') {
354 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
356 p = strchr(line + 2 + strlen(CONFIG_), ' ');
360 if (strncmp(p, "is not set", 10))
362 if (def == S_DEF_USER) {
363 sym = sym_find(line + 2 + strlen(CONFIG_));
365 sym_add_change_count(1);
369 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0);
370 if (sym->type == S_UNKNOWN)
371 sym->type = S_BOOLEAN;
373 if (sym->flags & def_flags) {
374 conf_warning("override: reassigning to symbol %s", sym->name);
379 sym->def[def].tri = no;
380 sym->flags |= def_flags;
385 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) {
386 p = strchr(line + strlen(CONFIG_), '=');
390 p2 = strchr(p, '\n');
396 if (def == S_DEF_USER) {
397 sym = sym_find(line + strlen(CONFIG_));
399 sym_add_change_count(1);
403 sym = sym_lookup(line + strlen(CONFIG_), 0);
404 if (sym->type == S_UNKNOWN)
407 if (sym->flags & def_flags) {
408 conf_warning("override: reassigning to symbol %s", sym->name);
410 if (conf_set_sym_val(sym, def, def_flags, p))
413 if (line[0] != '\r' && line[0] != '\n')
414 conf_warning("unexpected data: %.*s",
415 (int)strcspn(line, "\r\n"), line);
420 if (sym && sym_is_choice_value(sym)) {
421 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
422 switch (sym->def[def].tri) {
426 if (cs->def[def].tri == yes) {
427 conf_warning("%s creates inconsistent choice state", sym->name);
428 cs->flags &= ~def_flags;
432 if (cs->def[def].tri != no)
433 conf_warning("override: %s changes choice state", sym->name);
434 cs->def[def].val = sym;
437 cs->def[def].tri = EXPR_OR(cs->def[def].tri, sym->def[def].tri);
445 int conf_read(const char *name)
448 int conf_unsaved = 0;
451 sym_set_change_count(0);
453 if (conf_read_simple(name, S_DEF_USER)) {
454 sym_calc_value(modules_sym);
458 sym_calc_value(modules_sym);
460 for_all_symbols(i, sym) {
462 if (sym_is_choice(sym) || (sym->flags & SYMBOL_NO_WRITE))
464 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
465 /* check that calculated value agrees with saved value */
469 if (sym->def[S_DEF_USER].tri != sym_get_tristate_value(sym))
471 if (!sym_is_choice(sym))
475 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
479 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
480 /* no previous value and not saved */
483 /* maybe print value in verbose mode... */
486 for_all_symbols(i, sym) {
487 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
488 /* Reset values of generates values, so they'll appear
489 * as new, if they should become visible, but that
490 * doesn't quite work if the Kconfig and the saved
491 * configuration disagree.
493 if (sym->visible == no && !conf_unsaved)
494 sym->flags &= ~SYMBOL_DEF_USER;
499 /* Reset a string value if it's out of range */
500 if (sym_string_within_range(sym, sym->def[S_DEF_USER].val))
502 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
511 sym_add_change_count(conf_warnings || conf_unsaved);
517 * Kconfig configuration printer
519 * This printer is used when generating the resulting configuration after
520 * kconfig invocation and `defconfig' files. Unset symbol might be omitted by
521 * passing a non-NULL argument to the printer.
525 kconfig_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
532 bool skip_unset = (arg != NULL);
535 fprintf(fp, "# %s%s is not set\n",
544 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value);
548 kconfig_print_comment(FILE *fp, const char *value, void *arg)
550 const char *p = value;
554 l = strcspn(p, "\n");
558 xfwrite(p, l, 1, fp);
567 static struct conf_printer kconfig_printer_cb =
569 .print_symbol = kconfig_print_symbol,
570 .print_comment = kconfig_print_comment,
576 * This printer is used when generating the `include/generated/autoconf.h' file.
579 header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
585 const char *suffix = "";
594 fprintf(fp, "#define %s%s%s 1\n",
595 CONFIG_, sym->name, suffix);
600 const char *prefix = "";
602 if (value[0] != '0' || (value[1] != 'x' && value[1] != 'X'))
604 fprintf(fp, "#define %s%s %s%s\n",
605 CONFIG_, sym->name, prefix, value);
610 fprintf(fp, "#define %s%s %s\n",
611 CONFIG_, sym->name, value);
620 header_print_comment(FILE *fp, const char *value, void *arg)
622 const char *p = value;
627 l = strcspn(p, "\n");
631 xfwrite(p, l, 1, fp);
638 fprintf(fp, " */\n");
641 static struct conf_printer header_printer_cb =
643 .print_symbol = header_print_symbol,
644 .print_comment = header_print_comment,
650 * This printer is used when generating the `include/config/tristate.conf' file.
653 tristate_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg)
656 if (sym->type == S_TRISTATE && *value != 'n')
657 fprintf(fp, "%s%s=%c\n", CONFIG_, sym->name, (char)toupper(*value));
660 static struct conf_printer tristate_printer_cb =
662 .print_symbol = tristate_print_symbol,
663 .print_comment = kconfig_print_comment,
666 static void conf_write_symbol(FILE *fp, struct symbol *sym,
667 struct conf_printer *printer, void *printer_arg)
676 str = sym_get_string_value(sym);
677 str = sym_escape_string_value(str);
678 printer->print_symbol(fp, sym, str, printer_arg);
682 str = sym_get_string_value(sym);
683 printer->print_symbol(fp, sym, str, printer_arg);
688 conf_write_heading(FILE *fp, struct conf_printer *printer, void *printer_arg)
692 snprintf(buf, sizeof(buf),
694 "Automatically generated file; DO NOT EDIT.\n"
696 rootmenu.prompt->text);
698 printer->print_comment(fp, buf, printer_arg);
702 * Write out a minimal config.
703 * All values that has default values are skipped as this is redundant.
705 int conf_write_defconfig(const char *filename)
711 out = fopen(filename, "w");
715 sym_clear_all_valid();
717 /* Traverse all menus to find all relevant symbols */
718 menu = rootmenu.list;
724 if (!menu_is_visible(menu))
726 } else if (!sym_is_choice(sym)) {
728 if (!(sym->flags & SYMBOL_WRITE))
730 sym->flags &= ~SYMBOL_WRITE;
731 /* If we cannot change the symbol - skip */
732 if (!sym_is_changable(sym))
734 /* If symbol equals to default value - skip */
735 if (strcmp(sym_get_string_value(sym), sym_get_string_default(sym)) == 0)
739 * If symbol is a choice value and equals to the
740 * default for a choice - skip.
741 * But only if value is bool and equal to "y" and
742 * choice is not "optional".
743 * (If choice is "optional" then all values can be "n")
745 if (sym_is_choice_value(sym)) {
749 cs = prop_get_symbol(sym_get_choice_prop(sym));
750 ds = sym_choice_default(cs);
751 if (!sym_is_optional(cs) && sym == ds) {
752 if ((sym->type == S_BOOLEAN) &&
753 sym_get_tristate_value(sym) == yes)
757 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
760 if (menu->list != NULL) {
763 else if (menu->next != NULL) {
766 while ((menu = menu->parent)) {
767 if (menu->next != NULL) {
778 int conf_write(const char *name)
783 const char *basename;
785 char dirname[PATH_MAX+1], tmpname[PATH_MAX+22], newname[PATH_MAX+8];
789 if (name && name[0]) {
793 strcpy(dirname, name);
794 strcat(dirname, "/");
795 basename = conf_get_configname();
796 } else if ((slash = strrchr(name, '/'))) {
797 int size = slash - name + 1;
798 memcpy(dirname, name, size);
801 basename = slash + 1;
803 basename = conf_get_configname();
807 basename = conf_get_configname();
809 sprintf(newname, "%s%s", dirname, basename);
810 env = getenv("KCONFIG_OVERWRITECONFIG");
812 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
813 out = fopen(tmpname, "w");
816 out = fopen(newname, "w");
821 conf_write_heading(out, &kconfig_printer_cb, NULL);
823 if (!conf_get_changed())
824 sym_clear_all_valid();
826 menu = rootmenu.list;
830 if (!menu_is_visible(menu))
832 str = menu_get_prompt(menu);
837 } else if (!(sym->flags & SYMBOL_CHOICE)) {
839 if (!(sym->flags & SYMBOL_WRITE))
841 sym->flags &= ~SYMBOL_WRITE;
843 conf_write_symbol(out, sym, &kconfig_printer_cb, NULL);
853 else while ((menu = menu->parent)) {
863 strcat(dirname, basename);
864 strcat(dirname, ".old");
865 rename(newname, dirname);
866 if (rename(tmpname, newname))
870 conf_message("configuration written to %s", newname);
872 sym_set_change_count(0);
877 /* write a dependency file as used by kbuild to track dependencies */
878 static int conf_write_dep(const char *name)
885 out = fopen("..config.tmp", "w");
888 fprintf(out, "deps_config := \\\n");
889 for (file = file_list; file; file = file->next) {
891 fprintf(out, "\t%s \\\n", file->name);
893 fprintf(out, "\t%s\n", file->name);
895 fprintf(out, "\n%s: \\\n"
896 "\t$(deps_config)\n\n", conf_get_autoconfig_name());
898 env_write_dep(out, conf_get_autoconfig_name());
900 fprintf(out, "\n$(deps_config): ;\n");
903 if (make_parent_dir(name))
905 rename("..config.tmp", name);
909 static int conf_split_config(void)
912 char path[PATH_MAX+1];
917 name = conf_get_autoconfig_name();
918 conf_read_simple(name, S_DEF_AUTO);
919 sym_calc_value(modules_sym);
921 if (make_parent_dir("include/config/foo.h"))
923 if (chdir("include/config"))
927 for_all_symbols(i, sym) {
929 if ((sym->flags & SYMBOL_NO_WRITE) || !sym->name)
931 if (sym->flags & SYMBOL_WRITE) {
932 if (sym->flags & SYMBOL_DEF_AUTO) {
934 * symbol has old and new value,
940 if (sym_get_tristate_value(sym) ==
941 sym->def[S_DEF_AUTO].tri)
947 if (!strcmp(sym_get_string_value(sym),
948 sym->def[S_DEF_AUTO].val))
956 * If there is no old value, only 'no' (unset)
957 * is allowed as new value.
962 if (sym_get_tristate_value(sym) == no)
969 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
970 /* There is neither an old nor a new value. */
973 * There is an old value, but no new value ('no' (unset)
974 * isn't saved in auto.conf, so the old value is always
975 * different from 'no').
978 /* Replace all '_' and append ".h" */
983 *d++ = (c == '_') ? '/' : c;
987 /* Assume directory path already exists. */
988 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
990 if (errno != ENOENT) {
995 if (make_parent_dir(path)) {
1001 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1016 int conf_write_autoconf(int overwrite)
1020 const char *autoconf_name = conf_get_autoconfig_name();
1021 FILE *out, *tristate, *out_h;
1024 if (!overwrite && is_present(autoconf_name))
1027 sym_clear_all_valid();
1029 conf_write_dep("include/config/auto.conf.cmd");
1031 if (conf_split_config())
1034 out = fopen(".tmpconfig", "w");
1038 tristate = fopen(".tmpconfig_tristate", "w");
1044 out_h = fopen(".tmpconfig.h", "w");
1051 conf_write_heading(out, &kconfig_printer_cb, NULL);
1053 conf_write_heading(tristate, &tristate_printer_cb, NULL);
1055 conf_write_heading(out_h, &header_printer_cb, NULL);
1057 for_all_symbols(i, sym) {
1058 sym_calc_value(sym);
1059 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
1062 /* write symbol to auto.conf, tristate and header files */
1063 conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1);
1065 conf_write_symbol(tristate, sym, &tristate_printer_cb, (void *)1);
1067 conf_write_symbol(out_h, sym, &header_printer_cb, NULL);
1073 name = getenv("KCONFIG_AUTOHEADER");
1075 name = "include/generated/autoconf.h";
1076 if (make_parent_dir(name))
1078 if (rename(".tmpconfig.h", name))
1081 name = getenv("KCONFIG_TRISTATE");
1083 name = "include/config/tristate.conf";
1084 if (make_parent_dir(name))
1086 if (rename(".tmpconfig_tristate", name))
1089 if (make_parent_dir(autoconf_name))
1092 * This must be the last step, kbuild has a dependency on auto.conf
1093 * and this marks the successful completion of the previous steps.
1095 if (rename(".tmpconfig", autoconf_name))
1101 static int sym_change_count;
1102 static void (*conf_changed_callback)(void);
1104 void sym_set_change_count(int count)
1106 int _sym_change_count = sym_change_count;
1107 sym_change_count = count;
1108 if (conf_changed_callback &&
1109 (bool)_sym_change_count != (bool)count)
1110 conf_changed_callback();
1113 void sym_add_change_count(int count)
1115 sym_set_change_count(count + sym_change_count);
1118 bool conf_get_changed(void)
1120 return sym_change_count;
1123 void conf_set_changed_callback(void (*fn)(void))
1125 conf_changed_callback = fn;
1128 static bool randomize_choice_values(struct symbol *csym)
1130 struct property *prop;
1136 * If choice is mod then we may have more items selected
1137 * and if no then no-one.
1138 * In both cases stop.
1140 if (csym->curr.tri != yes)
1143 prop = sym_get_choice_prop(csym);
1145 /* count entries in choice block */
1147 expr_list_for_each_sym(prop->expr, e, sym)
1151 * find a random value and set it to yes,
1152 * set the rest to no so we have only one set
1154 def = (rand() % cnt);
1157 expr_list_for_each_sym(prop->expr, e, sym) {
1159 sym->def[S_DEF_USER].tri = yes;
1160 csym->def[S_DEF_USER].val = sym;
1163 sym->def[S_DEF_USER].tri = no;
1165 sym->flags |= SYMBOL_DEF_USER;
1166 /* clear VALID to get value calculated */
1167 sym->flags &= ~SYMBOL_VALID;
1169 csym->flags |= SYMBOL_DEF_USER;
1170 /* clear VALID to get value calculated */
1171 csym->flags &= ~(SYMBOL_VALID);
1176 void set_all_choice_values(struct symbol *csym)
1178 struct property *prop;
1182 prop = sym_get_choice_prop(csym);
1185 * Set all non-assinged choice values to no
1187 expr_list_for_each_sym(prop->expr, e, sym) {
1188 if (!sym_has_value(sym))
1189 sym->def[S_DEF_USER].tri = no;
1191 csym->flags |= SYMBOL_DEF_USER;
1192 /* clear VALID to get value calculated */
1193 csym->flags &= ~(SYMBOL_VALID | SYMBOL_NEED_SET_CHOICE_VALUES);
1196 bool conf_set_all_new_symbols(enum conf_def_mode mode)
1198 struct symbol *sym, *csym;
1199 int i, cnt, pby, pty, ptm; /* pby: probability of bool = y
1200 * pty: probability of tristate = y
1201 * ptm: probability of tristate = m
1204 pby = 50; pty = ptm = 33; /* can't go as the default in switch-case
1205 * below, otherwise gcc whines about
1206 * -Wmaybe-uninitialized */
1207 if (mode == def_random) {
1209 char *env = getenv("KCONFIG_PROBABILITY");
1211 while( env && *env ) {
1213 int tmp = strtol( env, &endp, 10 );
1214 if( tmp >= 0 && tmp <= 100 ) {
1218 perror( "KCONFIG_PROBABILITY" );
1221 env = (*endp == ':') ? endp+1 : endp;
1228 pby = p[0]; ptm = pby/2; pty = pby-ptm;
1231 pty = p[0]; ptm = p[1]; pby = pty + ptm;
1234 pby = p[0]; pty = p[1]; ptm = p[2];
1238 if( pty+ptm > 100 ) {
1240 perror( "KCONFIG_PROBABILITY" );
1244 bool has_changed = false;
1246 for_all_symbols(i, sym) {
1247 if (sym_has_value(sym) || (sym->flags & SYMBOL_VALID))
1249 switch (sym_get_type(sym)) {
1255 sym->def[S_DEF_USER].tri = yes;
1258 sym->def[S_DEF_USER].tri = mod;
1261 if (sym->flags & SYMBOL_ALLNOCONFIG_Y)
1262 sym->def[S_DEF_USER].tri = yes;
1264 sym->def[S_DEF_USER].tri = no;
1267 sym->def[S_DEF_USER].tri = no;
1269 if (sym->type == S_TRISTATE) {
1271 sym->def[S_DEF_USER].tri = yes;
1272 else if (cnt < (pty+ptm))
1273 sym->def[S_DEF_USER].tri = mod;
1274 } else if (cnt < pby)
1275 sym->def[S_DEF_USER].tri = yes;
1280 if (!(sym_is_choice(sym) && mode == def_random))
1281 sym->flags |= SYMBOL_DEF_USER;
1289 sym_clear_all_valid();
1292 * We have different type of choice blocks.
1293 * If curr.tri equals to mod then we can select several
1294 * choice symbols in one block.
1295 * In this case we do nothing.
1296 * If curr.tri equals yes then only one symbol can be
1297 * selected in a choice block and we set it to yes,
1298 * and the rest to no.
1300 if (mode != def_random) {
1301 for_all_symbols(i, csym) {
1302 if ((sym_is_choice(csym) && !sym_has_value(csym)) ||
1303 sym_is_choice_value(csym))
1304 csym->flags |= SYMBOL_NEED_SET_CHOICE_VALUES;
1308 for_all_symbols(i, csym) {
1309 if (sym_has_value(csym) || !sym_is_choice(csym))
1312 sym_calc_value(csym);
1313 if (mode == def_random)
1314 has_changed = randomize_choice_values(csym);
1316 set_all_choice_values(csym);