blob: 4bbbb5b09c8d7b01a74000e4bea5b58cc5690aa7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Roman Zippel2e3646e2006-06-08 22:12:42 -07008#include <fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <stdio.h>
10#include <stdlib.h>
11#include <string.h>
12#include <time.h>
13#include <unistd.h>
14
15#define LKC_DIRECT_LINK
16#include "lkc.h"
17
Roman Zippelc1a0f5e2005-11-08 21:34:54 -080018static void conf_warning(const char *fmt, ...)
19 __attribute__ ((format (printf, 1, 2)));
20
21static const char *conf_filename;
22static int conf_lineno, conf_warnings, conf_unsaved;
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024const char conf_defname[] = "arch/$ARCH/defconfig";
25
Roman Zippelc1a0f5e2005-11-08 21:34:54 -080026static void conf_warning(const char *fmt, ...)
27{
28 va_list ap;
29 va_start(ap, fmt);
30 fprintf(stderr, "%s:%d:warning: ", conf_filename, conf_lineno);
31 vfprintf(stderr, fmt, ap);
32 fprintf(stderr, "\n");
33 va_end(ap);
34 conf_warnings++;
35}
36
Roman Zippel14cdd3c2006-06-08 22:12:51 -070037const char *conf_get_configname(void)
38{
39 char *name = getenv("KCONFIG_CONFIG");
40
41 return name ? name : ".config";
42}
43
J.A. Magallon48b9d032005-06-25 14:59:22 -070044static char *conf_expand_value(const char *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 struct symbol *sym;
J.A. Magallon48b9d032005-06-25 14:59:22 -070047 const char *src;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 static char res_value[SYMBOL_MAXLENGTH];
49 char *dst, name[SYMBOL_MAXLENGTH];
50
51 res_value[0] = 0;
52 dst = name;
53 while ((src = strchr(in, '$'))) {
54 strncat(res_value, in, src - in);
55 src++;
56 dst = name;
57 while (isalnum(*src) || *src == '_')
58 *dst++ = *src++;
59 *dst = 0;
60 sym = sym_lookup(name, 0);
61 sym_calc_value(sym);
62 strcat(res_value, sym_get_string_value(sym));
63 in = src;
64 }
65 strcat(res_value, in);
66
67 return res_value;
68}
69
70char *conf_get_default_confname(void)
71{
72 struct stat buf;
73 static char fullname[PATH_MAX+1];
74 char *env, *name;
75
76 name = conf_expand_value(conf_defname);
77 env = getenv(SRCTREE);
78 if (env) {
79 sprintf(fullname, "%s/%s", env, name);
80 if (!stat(fullname, &buf))
81 return fullname;
82 }
83 return name;
84}
85
Roman Zippel669bfad2006-06-08 22:12:42 -070086int conf_read_simple(const char *name, int def)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 FILE *in = NULL;
89 char line[1024];
90 char *p, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct symbol *sym;
Roman Zippel669bfad2006-06-08 22:12:42 -070092 int i, def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 if (name) {
95 in = zconf_fopen(name);
96 } else {
Roman Zippelface4372006-06-08 22:12:45 -070097 struct property *prop;
98
Roman Zippel14cdd3c2006-06-08 22:12:51 -070099 name = conf_get_configname();
Roman Zippelddc97ca2006-06-08 22:12:38 -0700100 in = zconf_fopen(name);
101 if (in)
102 goto load;
Karsten Wiesebfc10002006-12-13 00:34:07 -0800103 sym_add_change_count(1);
Roman Zippelface4372006-06-08 22:12:45 -0700104 if (!sym_defconfig_list)
105 return 1;
106
107 for_all_defaults(sym_defconfig_list, prop) {
108 if (expr_calc_value(prop->visible.expr) == no ||
109 prop->expr->type != E_SYMBOL)
110 continue;
111 name = conf_expand_value(prop->expr->left.sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 in = zconf_fopen(name);
113 if (in) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700114 printf(_("#\n"
Roman Zippelddc97ca2006-06-08 22:12:38 -0700115 "# using defaults found in %s\n"
116 "#\n"), name);
117 goto load;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119 }
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (!in)
122 return 1;
123
Roman Zippelddc97ca2006-06-08 22:12:38 -0700124load:
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800125 conf_filename = name;
126 conf_lineno = 0;
127 conf_warnings = 0;
128 conf_unsaved = 0;
129
Roman Zippel669bfad2006-06-08 22:12:42 -0700130 def_flags = SYMBOL_DEF << def;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 for_all_symbols(i, sym) {
Roman Zippel669bfad2006-06-08 22:12:42 -0700132 sym->flags |= SYMBOL_CHANGED;
133 sym->flags &= ~(def_flags|SYMBOL_VALID);
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800134 if (sym_is_choice(sym))
Roman Zippel669bfad2006-06-08 22:12:42 -0700135 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 switch (sym->type) {
137 case S_INT:
138 case S_HEX:
139 case S_STRING:
Roman Zippel669bfad2006-06-08 22:12:42 -0700140 if (sym->def[def].val)
141 free(sym->def[def].val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 default:
Roman Zippel669bfad2006-06-08 22:12:42 -0700143 sym->def[def].val = NULL;
144 sym->def[def].tri = no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146 }
147
148 while (fgets(line, sizeof(line), in)) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800149 conf_lineno++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 sym = NULL;
151 switch (line[0]) {
152 case '#':
153 if (memcmp(line + 2, "CONFIG_", 7))
154 continue;
155 p = strchr(line + 9, ' ');
156 if (!p)
157 continue;
158 *p++ = 0;
159 if (strncmp(p, "is not set", 10))
160 continue;
Roman Zippel669bfad2006-06-08 22:12:42 -0700161 if (def == S_DEF_USER) {
162 sym = sym_find(line + 9);
163 if (!sym) {
164 conf_warning("trying to assign nonexistent symbol %s", line + 9);
165 break;
166 }
167 } else {
168 sym = sym_lookup(line + 9, 0);
169 if (sym->type == S_UNKNOWN)
170 sym->type = S_BOOLEAN;
171 }
172 if (sym->flags & def_flags) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800173 conf_warning("trying to reassign symbol %s", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
175 }
176 switch (sym->type) {
177 case S_BOOLEAN:
178 case S_TRISTATE:
Roman Zippel669bfad2006-06-08 22:12:42 -0700179 sym->def[def].tri = no;
180 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 default:
183 ;
184 }
185 break;
186 case 'C':
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800187 if (memcmp(line, "CONFIG_", 7)) {
188 conf_warning("unexpected data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 continue;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 p = strchr(line + 7, '=');
192 if (!p)
193 continue;
194 *p++ = 0;
195 p2 = strchr(p, '\n');
Matthew Wilcoxd3660a82006-07-13 12:54:07 -0600196 if (p2) {
197 *p2-- = 0;
198 if (*p2 == '\r')
199 *p2 = 0;
200 }
Roman Zippel669bfad2006-06-08 22:12:42 -0700201 if (def == S_DEF_USER) {
202 sym = sym_find(line + 7);
203 if (!sym) {
204 conf_warning("trying to assign nonexistent symbol %s", line + 7);
205 break;
206 }
207 } else {
208 sym = sym_lookup(line + 7, 0);
209 if (sym->type == S_UNKNOWN)
210 sym->type = S_OTHER;
211 }
212 if (sym->flags & def_flags) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800213 conf_warning("trying to reassign symbol %s", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215 }
216 switch (sym->type) {
217 case S_TRISTATE:
218 if (p[0] == 'm') {
Roman Zippel669bfad2006-06-08 22:12:42 -0700219 sym->def[def].tri = mod;
220 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 break;
222 }
223 case S_BOOLEAN:
224 if (p[0] == 'y') {
Roman Zippel669bfad2006-06-08 22:12:42 -0700225 sym->def[def].tri = yes;
226 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
228 }
229 if (p[0] == 'n') {
Roman Zippel669bfad2006-06-08 22:12:42 -0700230 sym->def[def].tri = no;
231 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
233 }
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800234 conf_warning("symbol value '%s' invalid for %s", p, sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
Roman Zippel669bfad2006-06-08 22:12:42 -0700236 case S_OTHER:
237 if (*p != '"') {
238 for (p2 = p; *p2 && !isspace(*p2); p2++)
239 ;
240 sym->type = S_STRING;
241 goto done;
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 case S_STRING:
244 if (*p++ != '"')
245 break;
246 for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) {
247 if (*p2 == '"') {
248 *p2 = 0;
249 break;
250 }
251 memmove(p2, p2 + 1, strlen(p2));
252 }
253 if (!p2) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800254 conf_warning("invalid string found");
255 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257 case S_INT:
258 case S_HEX:
Roman Zippel669bfad2006-06-08 22:12:42 -0700259 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (sym_string_valid(sym, p)) {
Roman Zippel669bfad2006-06-08 22:12:42 -0700261 sym->def[def].val = strdup(p);
262 sym->flags |= def_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 } else {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800264 conf_warning("symbol value '%s' invalid for %s", p, sym->name);
265 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267 break;
268 default:
269 ;
270 }
271 break;
Matthew Wilcoxd3660a82006-07-13 12:54:07 -0600272 case '\r':
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 case '\n':
274 break;
275 default:
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800276 conf_warning("unexpected data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 continue;
278 }
279 if (sym && sym_is_choice_value(sym)) {
280 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
Roman Zippel669bfad2006-06-08 22:12:42 -0700281 switch (sym->def[def].tri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 case no:
283 break;
284 case mod:
Roman Zippel669bfad2006-06-08 22:12:42 -0700285 if (cs->def[def].tri == yes) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800286 conf_warning("%s creates inconsistent choice state", sym->name);
Roman Zippel669bfad2006-06-08 22:12:42 -0700287 cs->flags &= ~def_flags;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
290 case yes:
Roman Zippel669bfad2006-06-08 22:12:42 -0700291 if (cs->def[def].tri != no) {
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800292 conf_warning("%s creates inconsistent choice state", sym->name);
Roman Zippel669bfad2006-06-08 22:12:42 -0700293 cs->flags &= ~def_flags;
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800294 } else
Roman Zippel669bfad2006-06-08 22:12:42 -0700295 cs->def[def].val = sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 break;
297 }
Roman Zippel669bfad2006-06-08 22:12:42 -0700298 cs->def[def].tri = E_OR(cs->def[def].tri, sym->def[def].tri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300 }
301 fclose(in);
302
303 if (modules_sym)
304 sym_calc_value(modules_sym);
Roman Zippel90389162005-11-08 21:34:49 -0800305 return 0;
306}
307
308int conf_read(const char *name)
309{
310 struct symbol *sym;
311 struct property *prop;
312 struct expr *e;
Roman Zippel669bfad2006-06-08 22:12:42 -0700313 int i, flags;
Roman Zippel90389162005-11-08 21:34:49 -0800314
Karsten Wiesebfc10002006-12-13 00:34:07 -0800315 sym_set_change_count(0);
Roman Zippelddc97ca2006-06-08 22:12:38 -0700316
Roman Zippel669bfad2006-06-08 22:12:42 -0700317 if (conf_read_simple(name, S_DEF_USER))
Roman Zippel90389162005-11-08 21:34:49 -0800318 return 1;
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 for_all_symbols(i, sym) {
321 sym_calc_value(sym);
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800322 if (sym_is_choice(sym) || (sym->flags & SYMBOL_AUTO))
323 goto sym_ok;
324 if (sym_has_value(sym) && (sym->flags & SYMBOL_WRITE)) {
325 /* check that calculated value agrees with saved value */
326 switch (sym->type) {
327 case S_BOOLEAN:
328 case S_TRISTATE:
Roman Zippel0c1822e2006-06-08 22:12:41 -0700329 if (sym->def[S_DEF_USER].tri != sym_get_tristate_value(sym))
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800330 break;
331 if (!sym_is_choice(sym))
332 goto sym_ok;
333 default:
Roman Zippel0c1822e2006-06-08 22:12:41 -0700334 if (!strcmp(sym->curr.val, sym->def[S_DEF_USER].val))
Roman Zippelc1a0f5e2005-11-08 21:34:54 -0800335 goto sym_ok;
336 break;
337 }
338 } else if (!sym_has_value(sym) && !(sym->flags & SYMBOL_WRITE))
339 /* no previous value and not saved */
340 goto sym_ok;
341 conf_unsaved++;
342 /* maybe print value in verbose mode... */
343 sym_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
345 if (sym->visible == no)
Roman Zippel669bfad2006-06-08 22:12:42 -0700346 sym->flags &= ~SYMBOL_DEF_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 switch (sym->type) {
348 case S_STRING:
349 case S_INT:
350 case S_HEX:
Roman Zippel669bfad2006-06-08 22:12:42 -0700351 if (!sym_string_within_range(sym, sym->def[S_DEF_USER].val))
352 sym->flags &= ~(SYMBOL_VALID|SYMBOL_DEF_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 default:
354 break;
355 }
356 }
357 if (!sym_is_choice(sym))
358 continue;
359 prop = sym_get_choice_prop(sym);
Roman Zippel669bfad2006-06-08 22:12:42 -0700360 flags = sym->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 for (e = prop->expr; e; e = e->left.expr)
362 if (e->right.sym->visible != no)
Roman Zippel669bfad2006-06-08 22:12:42 -0700363 flags &= e->right.sym->flags;
Roman Zippel002d27b2006-07-13 13:22:38 +0200364 sym->flags &= flags | ~SYMBOL_DEF_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
Karsten Wiesebfc10002006-12-13 00:34:07 -0800367 sym_add_change_count(conf_warnings || conf_unsaved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 return 0;
370}
371
372int conf_write(const char *name)
373{
Roman Zippelc955cca2006-06-08 22:12:39 -0700374 FILE *out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct symbol *sym;
376 struct menu *menu;
377 const char *basename;
378 char dirname[128], tmpname[128], newname[128];
379 int type, l;
380 const char *str;
381 time_t now;
382 int use_timestamp = 1;
383 char *env;
384
385 dirname[0] = 0;
386 if (name && name[0]) {
387 struct stat st;
388 char *slash;
389
390 if (!stat(name, &st) && S_ISDIR(st.st_mode)) {
391 strcpy(dirname, name);
392 strcat(dirname, "/");
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700393 basename = conf_get_configname();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 } else if ((slash = strrchr(name, '/'))) {
395 int size = slash - name + 1;
396 memcpy(dirname, name, size);
397 dirname[size] = 0;
398 if (slash[1])
399 basename = slash + 1;
400 else
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700401 basename = conf_get_configname();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 } else
403 basename = name;
404 } else
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700405 basename = conf_get_configname();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700407 sprintf(newname, "%s%s", dirname, basename);
408 env = getenv("KCONFIG_OVERWRITECONFIG");
409 if (!env || !*env) {
410 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
411 out = fopen(tmpname, "w");
412 } else {
413 *tmpname = 0;
414 out = fopen(newname, "w");
415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (!out)
417 return 1;
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700418
Sam Ravnborg2244cbd2006-01-16 12:12:12 +0100419 sym = sym_lookup("KERNELVERSION", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 sym_calc_value(sym);
421 time(&now);
422 env = getenv("KCONFIG_NOTIMESTAMP");
423 if (env && *env)
424 use_timestamp = 0;
425
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700426 fprintf(out, _("#\n"
427 "# Automatically generated make config: don't edit\n"
428 "# Linux kernel version: %s\n"
429 "%s%s"
430 "#\n"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 sym_get_string_value(sym),
432 use_timestamp ? "# " : "",
433 use_timestamp ? ctime(&now) : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Karsten Wieseb3214292006-12-13 00:34:06 -0800435 if (!conf_get_changed())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 sym_clear_all_valid();
437
438 menu = rootmenu.list;
439 while (menu) {
440 sym = menu->sym;
441 if (!sym) {
442 if (!menu_is_visible(menu))
443 goto next;
444 str = menu_get_prompt(menu);
445 fprintf(out, "\n"
446 "#\n"
447 "# %s\n"
448 "#\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 } else if (!(sym->flags & SYMBOL_CHOICE)) {
450 sym_calc_value(sym);
451 if (!(sym->flags & SYMBOL_WRITE))
452 goto next;
453 sym->flags &= ~SYMBOL_WRITE;
454 type = sym->type;
455 if (type == S_TRISTATE) {
456 sym_calc_value(modules_sym);
457 if (modules_sym->curr.tri == no)
458 type = S_BOOLEAN;
459 }
460 switch (type) {
461 case S_BOOLEAN:
462 case S_TRISTATE:
463 switch (sym_get_tristate_value(sym)) {
464 case no:
465 fprintf(out, "# CONFIG_%s is not set\n", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 case mod:
468 fprintf(out, "CONFIG_%s=m\n", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case yes:
471 fprintf(out, "CONFIG_%s=y\n", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 }
474 break;
475 case S_STRING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 str = sym_get_string_value(sym);
477 fprintf(out, "CONFIG_%s=\"", sym->name);
Roman Zippelc955cca2006-06-08 22:12:39 -0700478 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 l = strcspn(str, "\"\\");
480 if (l) {
481 fwrite(str, l, 1, out);
Roman Zippelc955cca2006-06-08 22:12:39 -0700482 str += l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
Roman Zippelc955cca2006-06-08 22:12:39 -0700484 if (!*str)
485 break;
486 fprintf(out, "\\%c", *str++);
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 fputs("\"\n", out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490 case S_HEX:
491 str = sym_get_string_value(sym);
492 if (str[0] != '0' || (str[1] != 'x' && str[1] != 'X')) {
493 fprintf(out, "CONFIG_%s=%s\n", sym->name, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 break;
495 }
496 case S_INT:
497 str = sym_get_string_value(sym);
498 fprintf(out, "CONFIG_%s=%s\n", sym->name, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
500 }
501 }
502
503 next:
504 if (menu->list) {
505 menu = menu->list;
506 continue;
507 }
508 if (menu->next)
509 menu = menu->next;
510 else while ((menu = menu->parent)) {
511 if (menu->next) {
512 menu = menu->next;
513 break;
514 }
515 }
516 }
517 fclose(out);
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700518
519 if (*tmpname) {
Sam Ravnborg9a3d0fe2006-10-01 11:48:53 +0200520 strcat(dirname, basename);
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700521 strcat(dirname, ".old");
522 rename(newname, dirname);
523 if (rename(tmpname, newname))
524 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Roman Zippelddc97ca2006-06-08 22:12:38 -0700527 printf(_("#\n"
528 "# configuration written to %s\n"
Roman Zippel14cdd3c2006-06-08 22:12:51 -0700529 "#\n"), newname);
Roman Zippelddc97ca2006-06-08 22:12:38 -0700530
Karsten Wiesebfc10002006-12-13 00:34:07 -0800531 sym_set_change_count(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 return 0;
534}
Roman Zippelc955cca2006-06-08 22:12:39 -0700535
Roman Zippel2e3646e2006-06-08 22:12:42 -0700536int conf_split_config(void)
537{
538 char *name, path[128];
539 char *s, *d, c;
540 struct symbol *sym;
541 struct stat sb;
542 int res, i, fd;
543
544 name = getenv("KCONFIG_AUTOCONFIG");
545 if (!name)
546 name = "include/config/auto.conf";
547 conf_read_simple(name, S_DEF_AUTO);
548
549 if (chdir("include/config"))
550 return 1;
551
552 res = 0;
553 for_all_symbols(i, sym) {
554 sym_calc_value(sym);
555 if ((sym->flags & SYMBOL_AUTO) || !sym->name)
556 continue;
557 if (sym->flags & SYMBOL_WRITE) {
558 if (sym->flags & SYMBOL_DEF_AUTO) {
559 /*
560 * symbol has old and new value,
561 * so compare them...
562 */
563 switch (sym->type) {
564 case S_BOOLEAN:
565 case S_TRISTATE:
566 if (sym_get_tristate_value(sym) ==
567 sym->def[S_DEF_AUTO].tri)
568 continue;
569 break;
570 case S_STRING:
571 case S_HEX:
572 case S_INT:
573 if (!strcmp(sym_get_string_value(sym),
574 sym->def[S_DEF_AUTO].val))
575 continue;
576 break;
577 default:
578 break;
579 }
580 } else {
581 /*
582 * If there is no old value, only 'no' (unset)
583 * is allowed as new value.
584 */
585 switch (sym->type) {
586 case S_BOOLEAN:
587 case S_TRISTATE:
588 if (sym_get_tristate_value(sym) == no)
589 continue;
590 break;
591 default:
592 break;
593 }
594 }
595 } else if (!(sym->flags & SYMBOL_DEF_AUTO))
596 /* There is neither an old nor a new value. */
597 continue;
598 /* else
599 * There is an old value, but no new value ('no' (unset)
600 * isn't saved in auto.conf, so the old value is always
601 * different from 'no').
602 */
603
604 /* Replace all '_' and append ".h" */
605 s = sym->name;
606 d = path;
607 while ((c = *s++)) {
608 c = tolower(c);
609 *d++ = (c == '_') ? '/' : c;
610 }
611 strcpy(d, ".h");
612
613 /* Assume directory path already exists. */
614 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
615 if (fd == -1) {
616 if (errno != ENOENT) {
617 res = 1;
618 break;
619 }
620 /*
621 * Create directory components,
622 * unless they exist already.
623 */
624 d = path;
625 while ((d = strchr(d, '/'))) {
626 *d = 0;
627 if (stat(path, &sb) && mkdir(path, 0755)) {
628 res = 1;
629 goto out;
630 }
631 *d++ = '/';
632 }
633 /* Try it again. */
634 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
635 if (fd == -1) {
636 res = 1;
637 break;
638 }
639 }
640 close(fd);
641 }
642out:
643 if (chdir("../.."))
644 return 1;
645
646 return res;
647}
648
Roman Zippelc955cca2006-06-08 22:12:39 -0700649int conf_write_autoconf(void)
650{
651 struct symbol *sym;
652 const char *str;
653 char *name;
654 FILE *out, *out_h;
655 time_t now;
656 int i, l;
657
Roman Zippel2e3646e2006-06-08 22:12:42 -0700658 sym_clear_all_valid();
659
Roman Zippelc955cca2006-06-08 22:12:39 -0700660 file_write_dep("include/config/auto.conf.cmd");
661
Roman Zippel2e3646e2006-06-08 22:12:42 -0700662 if (conf_split_config())
663 return 1;
664
Roman Zippelc955cca2006-06-08 22:12:39 -0700665 out = fopen(".tmpconfig", "w");
666 if (!out)
667 return 1;
668
669 out_h = fopen(".tmpconfig.h", "w");
670 if (!out_h) {
671 fclose(out);
672 return 1;
673 }
674
675 sym = sym_lookup("KERNELVERSION", 0);
676 sym_calc_value(sym);
677 time(&now);
678 fprintf(out, "#\n"
679 "# Automatically generated make config: don't edit\n"
680 "# Linux kernel version: %s\n"
681 "# %s"
682 "#\n",
683 sym_get_string_value(sym), ctime(&now));
684 fprintf(out_h, "/*\n"
685 " * Automatically generated C config: don't edit\n"
686 " * Linux kernel version: %s\n"
687 " * %s"
688 " */\n"
689 "#define AUTOCONF_INCLUDED\n",
690 sym_get_string_value(sym), ctime(&now));
691
Roman Zippelc955cca2006-06-08 22:12:39 -0700692 for_all_symbols(i, sym) {
693 sym_calc_value(sym);
694 if (!(sym->flags & SYMBOL_WRITE) || !sym->name)
695 continue;
696 switch (sym->type) {
697 case S_BOOLEAN:
698 case S_TRISTATE:
699 switch (sym_get_tristate_value(sym)) {
700 case no:
701 break;
702 case mod:
703 fprintf(out, "CONFIG_%s=m\n", sym->name);
704 fprintf(out_h, "#define CONFIG_%s_MODULE 1\n", sym->name);
705 break;
706 case yes:
707 fprintf(out, "CONFIG_%s=y\n", sym->name);
708 fprintf(out_h, "#define CONFIG_%s 1\n", sym->name);
709 break;
710 }
711 break;
712 case S_STRING:
713 str = sym_get_string_value(sym);
714 fprintf(out, "CONFIG_%s=\"", sym->name);
715 fprintf(out_h, "#define CONFIG_%s \"", sym->name);
716 while (1) {
717 l = strcspn(str, "\"\\");
718 if (l) {
719 fwrite(str, l, 1, out);
720 fwrite(str, l, 1, out_h);
721 str += l;
722 }
723 if (!*str)
724 break;
725 fprintf(out, "\\%c", *str);
726 fprintf(out_h, "\\%c", *str);
727 str++;
728 }
729 fputs("\"\n", out);
730 fputs("\"\n", out_h);
731 break;
732 case S_HEX:
733 str = sym_get_string_value(sym);
734 if (str[0] != '0' || (str[1] != 'x' && str[1] != 'X')) {
735 fprintf(out, "CONFIG_%s=%s\n", sym->name, str);
736 fprintf(out_h, "#define CONFIG_%s 0x%s\n", sym->name, str);
737 break;
738 }
739 case S_INT:
740 str = sym_get_string_value(sym);
741 fprintf(out, "CONFIG_%s=%s\n", sym->name, str);
742 fprintf(out_h, "#define CONFIG_%s %s\n", sym->name, str);
743 break;
744 default:
745 break;
746 }
747 }
748 fclose(out);
749 fclose(out_h);
750
751 name = getenv("KCONFIG_AUTOHEADER");
752 if (!name)
753 name = "include/linux/autoconf.h";
754 if (rename(".tmpconfig.h", name))
755 return 1;
756 name = getenv("KCONFIG_AUTOCONFIG");
757 if (!name)
758 name = "include/config/auto.conf";
759 /*
760 * This must be the last step, kbuild has a dependency on auto.conf
761 * and this marks the successful completion of the previous steps.
762 */
763 if (rename(".tmpconfig", name))
764 return 1;
765
766 return 0;
767}
Karsten Wieseb3214292006-12-13 00:34:06 -0800768
Karsten Wiesebfc10002006-12-13 00:34:07 -0800769static int sym_change_count;
770
771void sym_set_change_count(int count)
772{
773 sym_change_count = count;
774}
775
776void sym_add_change_count(int count)
777{
778 sym_change_count += count;
779}
780
Karsten Wieseb3214292006-12-13 00:34:06 -0800781bool conf_get_changed(void)
782{
783 return sym_change_count;
784}