conf.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  1. /*
  2. * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
  3. * Released under the terms of the GNU GPL v2.0.
  4. */
  5. #include <locale.h>
  6. #include <ctype.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <time.h>
  11. #include <unistd.h>
  12. #include <getopt.h>
  13. #include <sys/stat.h>
  14. #include <sys/time.h>
  15. #include <errno.h>
  16. #include "lkc.h"
  17. static void conf(struct menu *menu);
  18. static void check_conf(struct menu *menu);
  19. static void xfgets(char *str, int size, FILE *in);
  20. enum input_mode {
  21. oldaskconfig,
  22. silentoldconfig,
  23. oldconfig,
  24. allnoconfig,
  25. allyesconfig,
  26. allmodconfig,
  27. alldefconfig,
  28. randconfig,
  29. defconfig,
  30. savedefconfig,
  31. listnewconfig,
  32. olddefconfig,
  33. } input_mode = oldaskconfig;
  34. static int indent = 1;
  35. static int tty_stdio;
  36. static int valid_stdin = 1;
  37. static int sync_kconfig;
  38. static int conf_cnt;
  39. static char line[128];
  40. static struct menu *rootEntry;
  41. static void print_help(struct menu *menu)
  42. {
  43. struct gstr help = str_new();
  44. menu_get_ext_help(menu, &help);
  45. printf("\n%s\n", str_get(&help));
  46. str_free(&help);
  47. }
  48. static void strip(char *str)
  49. {
  50. char *p = str;
  51. int l;
  52. while ((isspace(*p)))
  53. p++;
  54. l = strlen(p);
  55. if (p != str)
  56. memmove(str, p, l + 1);
  57. if (!l)
  58. return;
  59. p = str + l - 1;
  60. while ((isspace(*p)))
  61. *p-- = 0;
  62. }
  63. static void check_stdin(void)
  64. {
  65. if (!valid_stdin) {
  66. printf(_("aborted!\n\n"));
  67. printf(_("Console input/output is redirected. "));
  68. printf(_("Run 'make oldconfig' to update configuration.\n\n"));
  69. exit(1);
  70. }
  71. }
  72. static int conf_askvalue(struct symbol *sym, const char *def)
  73. {
  74. enum symbol_type type = sym_get_type(sym);
  75. if (!sym_has_value(sym))
  76. printf(_("(NEW) "));
  77. line[0] = '\n';
  78. line[1] = 0;
  79. if (!sym_is_changable(sym)) {
  80. printf("%s\n", def);
  81. line[0] = '\n';
  82. line[1] = 0;
  83. return 0;
  84. }
  85. switch (input_mode) {
  86. case oldconfig:
  87. case silentoldconfig:
  88. if (sym_has_value(sym)) {
  89. printf("%s\n", def);
  90. return 0;
  91. }
  92. check_stdin();
  93. /* fall through */
  94. case oldaskconfig:
  95. fflush(stdout);
  96. xfgets(line, 128, stdin);
  97. if (!tty_stdio)
  98. printf("\n");
  99. return 1;
  100. default:
  101. break;
  102. }
  103. switch (type) {
  104. case S_INT:
  105. case S_HEX:
  106. case S_STRING:
  107. printf("%s\n", def);
  108. return 1;
  109. default:
  110. ;
  111. }
  112. printf("%s", line);
  113. return 1;
  114. }
  115. static int conf_string(struct menu *menu)
  116. {
  117. struct symbol *sym = menu->sym;
  118. const char *def;
  119. while (1) {
  120. printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
  121. printf("(%s) ", sym->name);
  122. def = sym_get_string_value(sym);
  123. if (sym_get_string_value(sym))
  124. printf("[%s] ", def);
  125. if (!conf_askvalue(sym, def))
  126. return 0;
  127. switch (line[0]) {
  128. case '\n':
  129. break;
  130. case '?':
  131. /* print help */
  132. if (line[1] == '\n') {
  133. print_help(menu);
  134. def = NULL;
  135. break;
  136. }
  137. /* fall through */
  138. default:
  139. line[strlen(line)-1] = 0;
  140. def = line;
  141. }
  142. if (def && sym_set_string_value(sym, def))
  143. return 0;
  144. }
  145. }
  146. static int conf_sym(struct menu *menu)
  147. {
  148. struct symbol *sym = menu->sym;
  149. tristate oldval, newval;
  150. while (1) {
  151. printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
  152. if (sym->name)
  153. printf("(%s) ", sym->name);
  154. putchar('[');
  155. oldval = sym_get_tristate_value(sym);
  156. switch (oldval) {
  157. case no:
  158. putchar('N');
  159. break;
  160. case mod:
  161. putchar('M');
  162. break;
  163. case yes:
  164. putchar('Y');
  165. break;
  166. }
  167. if (oldval != no && sym_tristate_within_range(sym, no))
  168. printf("/n");
  169. if (oldval != mod && sym_tristate_within_range(sym, mod))
  170. printf("/m");
  171. if (oldval != yes && sym_tristate_within_range(sym, yes))
  172. printf("/y");
  173. if (menu_has_help(menu))
  174. printf("/?");
  175. printf("] ");
  176. if (!conf_askvalue(sym, sym_get_string_value(sym)))
  177. return 0;
  178. strip(line);
  179. switch (line[0]) {
  180. case 'n':
  181. case 'N':
  182. newval = no;
  183. if (!line[1] || !strcmp(&line[1], "o"))
  184. break;
  185. continue;
  186. case 'm':
  187. case 'M':
  188. newval = mod;
  189. if (!line[1])
  190. break;
  191. continue;
  192. case 'y':
  193. case 'Y':
  194. newval = yes;
  195. if (!line[1] || !strcmp(&line[1], "es"))
  196. break;
  197. continue;
  198. case 0:
  199. newval = oldval;
  200. break;
  201. case '?':
  202. goto help;
  203. default:
  204. continue;
  205. }
  206. if (sym_set_tristate_value(sym, newval))
  207. return 0;
  208. help:
  209. print_help(menu);
  210. }
  211. }
  212. static int conf_choice(struct menu *menu)
  213. {
  214. struct symbol *sym, *def_sym;
  215. struct menu *child;
  216. bool is_new;
  217. sym = menu->sym;
  218. is_new = !sym_has_value(sym);
  219. if (sym_is_changable(sym)) {
  220. conf_sym(menu);
  221. sym_calc_value(sym);
  222. switch (sym_get_tristate_value(sym)) {
  223. case no:
  224. return 1;
  225. case mod:
  226. return 0;
  227. case yes:
  228. break;
  229. }
  230. } else {
  231. switch (sym_get_tristate_value(sym)) {
  232. case no:
  233. return 1;
  234. case mod:
  235. printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
  236. return 0;
  237. case yes:
  238. break;
  239. }
  240. }
  241. while (1) {
  242. int cnt, def;
  243. printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
  244. def_sym = sym_get_choice_value(sym);
  245. cnt = def = 0;
  246. line[0] = 0;
  247. for (child = menu->list; child; child = child->next) {
  248. if (!menu_is_visible(child))
  249. continue;
  250. if (!child->sym) {
  251. printf("%*c %s\n", indent, '*', _(menu_get_prompt(child)));
  252. continue;
  253. }
  254. cnt++;
  255. if (child->sym == def_sym) {
  256. def = cnt;
  257. printf("%*c", indent, '>');
  258. } else
  259. printf("%*c", indent, ' ');
  260. printf(" %d. %s", cnt, _(menu_get_prompt(child)));
  261. if (child->sym->name)
  262. printf(" (%s)", child->sym->name);
  263. if (!sym_has_value(child->sym))
  264. printf(_(" (NEW)"));
  265. printf("\n");
  266. }
  267. printf(_("%*schoice"), indent - 1, "");
  268. if (cnt == 1) {
  269. printf("[1]: 1\n");
  270. goto conf_childs;
  271. }
  272. printf("[1-%d", cnt);
  273. if (menu_has_help(menu))
  274. printf("?");
  275. printf("]: ");
  276. switch (input_mode) {
  277. case oldconfig:
  278. case silentoldconfig:
  279. if (!is_new) {
  280. cnt = def;
  281. printf("%d\n", cnt);
  282. break;
  283. }
  284. check_stdin();
  285. /* fall through */
  286. case oldaskconfig:
  287. fflush(stdout);
  288. xfgets(line, 128, stdin);
  289. strip(line);
  290. if (line[0] == '?') {
  291. print_help(menu);
  292. continue;
  293. }
  294. if (!line[0])
  295. cnt = def;
  296. else if (isdigit(line[0]))
  297. cnt = atoi(line);
  298. else
  299. continue;
  300. break;
  301. default:
  302. break;
  303. }
  304. conf_childs:
  305. for (child = menu->list; child; child = child->next) {
  306. if (!child->sym || !menu_is_visible(child))
  307. continue;
  308. if (!--cnt)
  309. break;
  310. }
  311. if (!child)
  312. continue;
  313. if (line[0] && line[strlen(line) - 1] == '?') {
  314. print_help(child);
  315. continue;
  316. }
  317. sym_set_choice_value(sym, child->sym);
  318. for (child = child->list; child; child = child->next) {
  319. indent += 2;
  320. conf(child);
  321. indent -= 2;
  322. }
  323. return 1;
  324. }
  325. }
  326. static void conf(struct menu *menu)
  327. {
  328. struct symbol *sym;
  329. struct property *prop;
  330. struct menu *child;
  331. if (!menu_is_visible(menu))
  332. return;
  333. sym = menu->sym;
  334. prop = menu->prompt;
  335. if (prop) {
  336. const char *prompt;
  337. switch (prop->type) {
  338. case P_MENU:
  339. if ((input_mode == silentoldconfig ||
  340. input_mode == listnewconfig ||
  341. input_mode == olddefconfig) &&
  342. rootEntry != menu) {
  343. check_conf(menu);
  344. return;
  345. }
  346. /* fall through */
  347. case P_COMMENT:
  348. prompt = menu_get_prompt(menu);
  349. if (prompt)
  350. printf("%*c\n%*c %s\n%*c\n",
  351. indent, '*',
  352. indent, '*', _(prompt),
  353. indent, '*');
  354. default:
  355. ;
  356. }
  357. }
  358. if (!sym)
  359. goto conf_childs;
  360. if (sym_is_choice(sym)) {
  361. conf_choice(menu);
  362. if (sym->curr.tri != mod)
  363. return;
  364. goto conf_childs;
  365. }
  366. switch (sym->type) {
  367. case S_INT:
  368. case S_HEX:
  369. case S_STRING:
  370. conf_string(menu);
  371. break;
  372. default:
  373. conf_sym(menu);
  374. break;
  375. }
  376. conf_childs:
  377. if (sym)
  378. indent += 2;
  379. for (child = menu->list; child; child = child->next)
  380. conf(child);
  381. if (sym)
  382. indent -= 2;
  383. }
  384. static void check_conf(struct menu *menu)
  385. {
  386. struct symbol *sym;
  387. struct menu *child;
  388. if (!menu_is_visible(menu))
  389. return;
  390. sym = menu->sym;
  391. if (sym && !sym_has_value(sym)) {
  392. if (sym_is_changable(sym) ||
  393. (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
  394. if (input_mode == listnewconfig) {
  395. if (sym->name && !sym_is_choice_value(sym)) {
  396. printf("%s%s\n", CONFIG_, sym->name);
  397. }
  398. } else if (input_mode != olddefconfig) {
  399. if (!conf_cnt++)
  400. printf(_("*\n* Restart config...\n*\n"));
  401. rootEntry = menu_get_parent_menu(menu);
  402. conf(rootEntry);
  403. }
  404. }
  405. }
  406. for (child = menu->list; child; child = child->next)
  407. check_conf(child);
  408. }
  409. static struct option long_opts[] = {
  410. {"oldaskconfig", no_argument, NULL, oldaskconfig},
  411. {"oldconfig", no_argument, NULL, oldconfig},
  412. {"silentoldconfig", no_argument, NULL, silentoldconfig},
  413. {"defconfig", optional_argument, NULL, defconfig},
  414. {"savedefconfig", required_argument, NULL, savedefconfig},
  415. {"allnoconfig", no_argument, NULL, allnoconfig},
  416. {"allyesconfig", no_argument, NULL, allyesconfig},
  417. {"allmodconfig", no_argument, NULL, allmodconfig},
  418. {"alldefconfig", no_argument, NULL, alldefconfig},
  419. {"randconfig", no_argument, NULL, randconfig},
  420. {"listnewconfig", no_argument, NULL, listnewconfig},
  421. {"olddefconfig", no_argument, NULL, olddefconfig},
  422. /*
  423. * oldnoconfig is an alias of olddefconfig, because people already
  424. * are dependent on its behavior(sets new symbols to their default
  425. * value but not 'n') with the counter-intuitive name.
  426. */
  427. {"oldnoconfig", no_argument, NULL, olddefconfig},
  428. {NULL, 0, NULL, 0}
  429. };
  430. static void conf_usage(const char *progname)
  431. {
  432. printf("Usage: %s [option] <kconfig-file>\n", progname);
  433. printf("[option] is _one_ of the following:\n");
  434. printf(" --listnewconfig List new options\n");
  435. printf(" --oldaskconfig Start a new configuration using a line-oriented program\n");
  436. printf(" --oldconfig Update a configuration using a provided .config as base\n");
  437. printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n");
  438. printf(" --olddefconfig Same as silentoldconfig but sets new symbols to their default value\n");
  439. printf(" --oldnoconfig An alias of olddefconfig\n");
  440. printf(" --defconfig <file> New config with default defined in <file>\n");
  441. printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n");
  442. printf(" --allnoconfig New config where all options are answered with no\n");
  443. printf(" --allyesconfig New config where all options are answered with yes\n");
  444. printf(" --allmodconfig New config where all options are answered with mod\n");
  445. printf(" --alldefconfig New config with all symbols set to default\n");
  446. printf(" --randconfig New config with random answer to all options\n");
  447. }
  448. int main(int ac, char **av)
  449. {
  450. const char *progname = av[0];
  451. int opt;
  452. const char *name, *defconfig_file = NULL /* gcc uninit */;
  453. struct stat tmpstat;
  454. setlocale(LC_ALL, "");
  455. bindtextdomain(PACKAGE, LOCALEDIR);
  456. textdomain(PACKAGE);
  457. tty_stdio = isatty(0) && isatty(1) && isatty(2);
  458. while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) {
  459. input_mode = (enum input_mode)opt;
  460. switch (opt) {
  461. case silentoldconfig:
  462. sync_kconfig = 1;
  463. break;
  464. case defconfig:
  465. case savedefconfig:
  466. defconfig_file = optarg;
  467. break;
  468. case randconfig:
  469. {
  470. struct timeval now;
  471. unsigned int seed;
  472. char *seed_env;
  473. /*
  474. * Use microseconds derived seed,
  475. * compensate for systems where it may be zero
  476. */
  477. gettimeofday(&now, NULL);
  478. seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1));
  479. seed_env = getenv("KCONFIG_SEED");
  480. if( seed_env && *seed_env ) {
  481. char *endp;
  482. int tmp = (int)strtol(seed_env, &endp, 0);
  483. if (*endp == '\0') {
  484. seed = tmp;
  485. }
  486. }
  487. fprintf( stderr, "KCONFIG_SEED=0x%X\n", seed );
  488. srand(seed);
  489. break;
  490. }
  491. case oldaskconfig:
  492. case oldconfig:
  493. case allnoconfig:
  494. case allyesconfig:
  495. case allmodconfig:
  496. case alldefconfig:
  497. case listnewconfig:
  498. case olddefconfig:
  499. break;
  500. case '?':
  501. conf_usage(progname);
  502. exit(1);
  503. break;
  504. }
  505. }
  506. if (ac == optind) {
  507. printf(_("%s: Kconfig file missing\n"), av[0]);
  508. conf_usage(progname);
  509. exit(1);
  510. }
  511. name = av[optind];
  512. conf_parse(name);
  513. //zconfdump(stdout);
  514. if (sync_kconfig) {
  515. name = conf_get_configname();
  516. if (stat(name, &tmpstat)) {
  517. fprintf(stderr, _("***\n"
  518. "*** Configuration file \"%s\" not found!\n"
  519. "***\n"
  520. "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
  521. "*** \"make menuconfig\" or \"make xconfig\").\n"
  522. "***\n"), name);
  523. exit(1);
  524. }
  525. }
  526. switch (input_mode) {
  527. case defconfig:
  528. if (!defconfig_file)
  529. defconfig_file = conf_get_default_confname();
  530. if (conf_read(defconfig_file)) {
  531. printf(_("***\n"
  532. "*** Can't find default configuration \"%s\"!\n"
  533. "***\n"), defconfig_file);
  534. exit(1);
  535. }
  536. break;
  537. case savedefconfig:
  538. case silentoldconfig:
  539. case oldaskconfig:
  540. case oldconfig:
  541. case listnewconfig:
  542. case olddefconfig:
  543. conf_read(NULL);
  544. break;
  545. case allnoconfig:
  546. case allyesconfig:
  547. case allmodconfig:
  548. case alldefconfig:
  549. case randconfig:
  550. name = getenv("KCONFIG_ALLCONFIG");
  551. if (!name)
  552. break;
  553. if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) {
  554. if (conf_read_simple(name, S_DEF_USER)) {
  555. fprintf(stderr,
  556. _("*** Can't read seed configuration \"%s\"!\n"),
  557. name);
  558. exit(1);
  559. }
  560. break;
  561. }
  562. switch (input_mode) {
  563. case allnoconfig: name = "allno.config"; break;
  564. case allyesconfig: name = "allyes.config"; break;
  565. case allmodconfig: name = "allmod.config"; break;
  566. case alldefconfig: name = "alldef.config"; break;
  567. case randconfig: name = "allrandom.config"; break;
  568. default: break;
  569. }
  570. if (conf_read_simple(name, S_DEF_USER) &&
  571. conf_read_simple("all.config", S_DEF_USER)) {
  572. fprintf(stderr,
  573. _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"),
  574. name);
  575. exit(1);
  576. }
  577. break;
  578. default:
  579. break;
  580. }
  581. if (sync_kconfig) {
  582. if (conf_get_changed()) {
  583. name = getenv("KCONFIG_NOSILENTUPDATE");
  584. if (name && *name) {
  585. fprintf(stderr,
  586. _("\n*** The configuration requires explicit update.\n\n"));
  587. return 1;
  588. }
  589. }
  590. valid_stdin = tty_stdio;
  591. }
  592. switch (input_mode) {
  593. case allnoconfig:
  594. conf_set_all_new_symbols(def_no);
  595. break;
  596. case allyesconfig:
  597. conf_set_all_new_symbols(def_yes);
  598. break;
  599. case allmodconfig:
  600. conf_set_all_new_symbols(def_mod);
  601. break;
  602. case alldefconfig:
  603. conf_set_all_new_symbols(def_default);
  604. break;
  605. case randconfig:
  606. /* Really nothing to do in this loop */
  607. while (conf_set_all_new_symbols(def_random)) ;
  608. break;
  609. case defconfig:
  610. conf_set_all_new_symbols(def_default);
  611. break;
  612. case savedefconfig:
  613. break;
  614. case oldaskconfig:
  615. rootEntry = &rootmenu;
  616. conf(&rootmenu);
  617. input_mode = silentoldconfig;
  618. /* fall through */
  619. case oldconfig:
  620. case listnewconfig:
  621. case olddefconfig:
  622. case silentoldconfig:
  623. /* Update until a loop caused no more changes */
  624. do {
  625. conf_cnt = 0;
  626. check_conf(&rootmenu);
  627. } while (conf_cnt &&
  628. (input_mode != listnewconfig &&
  629. input_mode != olddefconfig));
  630. break;
  631. }
  632. if (sync_kconfig) {
  633. /* silentoldconfig is used during the build so we shall update autoconf.
  634. * All other commands are only used to generate a config.
  635. */
  636. if (conf_get_changed() && conf_write(NULL)) {
  637. fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
  638. exit(1);
  639. }
  640. if (conf_write_autoconf()) {
  641. fprintf(stderr, _("\n*** Error during update of the configuration.\n\n"));
  642. return 1;
  643. }
  644. } else if (input_mode == savedefconfig) {
  645. if (conf_write_defconfig(defconfig_file)) {
  646. fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
  647. defconfig_file);
  648. return 1;
  649. }
  650. } else if (input_mode != listnewconfig) {
  651. if (conf_write(NULL)) {
  652. fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
  653. exit(1);
  654. }
  655. }
  656. return 0;
  657. }
  658. /*
  659. * Helper function to facilitate fgets() by Jean Sacren.
  660. */
  661. void xfgets(char *str, int size, FILE *in)
  662. {
  663. if (fgets(str, size, in) == NULL)
  664. fprintf(stderr, "\nError in reading or end of file.\n");
  665. }