conf.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  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. oldnoconfig,
  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 == oldnoconfig) &&
  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 != oldnoconfig) {
  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. {"oldnoconfig", no_argument, NULL, oldnoconfig},
  422. {NULL, 0, NULL, 0}
  423. };
  424. static void conf_usage(const char *progname)
  425. {
  426. printf("Usage: %s [option] <kconfig-file>\n", progname);
  427. printf("[option] is _one_ of the following:\n");
  428. printf(" --listnewconfig List new options\n");
  429. printf(" --oldaskconfig Start a new configuration using a line-oriented program\n");
  430. printf(" --oldconfig Update a configuration using a provided .config as base\n");
  431. printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n");
  432. printf(" --oldnoconfig Same as silentoldconfig but set new symbols to no\n");
  433. printf(" --defconfig <file> New config with default defined in <file>\n");
  434. printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n");
  435. printf(" --allnoconfig New config where all options are answered with no\n");
  436. printf(" --allyesconfig New config where all options are answered with yes\n");
  437. printf(" --allmodconfig New config where all options are answered with mod\n");
  438. printf(" --alldefconfig New config with all symbols set to default\n");
  439. printf(" --randconfig New config with random answer to all options\n");
  440. }
  441. int main(int ac, char **av)
  442. {
  443. const char *progname = av[0];
  444. int opt;
  445. const char *name, *defconfig_file = NULL /* gcc uninit */;
  446. struct stat tmpstat;
  447. setlocale(LC_ALL, "");
  448. bindtextdomain(PACKAGE, LOCALEDIR);
  449. textdomain(PACKAGE);
  450. tty_stdio = isatty(0) && isatty(1) && isatty(2);
  451. while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) {
  452. input_mode = (enum input_mode)opt;
  453. switch (opt) {
  454. case silentoldconfig:
  455. sync_kconfig = 1;
  456. break;
  457. case defconfig:
  458. case savedefconfig:
  459. defconfig_file = optarg;
  460. break;
  461. case randconfig:
  462. {
  463. struct timeval now;
  464. unsigned int seed;
  465. char *seed_env;
  466. /*
  467. * Use microseconds derived seed,
  468. * compensate for systems where it may be zero
  469. */
  470. gettimeofday(&now, NULL);
  471. seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1));
  472. seed_env = getenv("KCONFIG_SEED");
  473. if( seed_env && *seed_env ) {
  474. char *endp;
  475. int tmp = (int)strtol(seed_env, &endp, 0);
  476. if (*endp == '\0') {
  477. seed = tmp;
  478. }
  479. }
  480. fprintf( stderr, "KCONFIG_SEED=0x%X\n", seed );
  481. srand(seed);
  482. break;
  483. }
  484. case oldaskconfig:
  485. case oldconfig:
  486. case allnoconfig:
  487. case allyesconfig:
  488. case allmodconfig:
  489. case alldefconfig:
  490. case listnewconfig:
  491. case oldnoconfig:
  492. break;
  493. case '?':
  494. conf_usage(progname);
  495. exit(1);
  496. break;
  497. }
  498. }
  499. if (ac == optind) {
  500. printf(_("%s: Kconfig file missing\n"), av[0]);
  501. conf_usage(progname);
  502. exit(1);
  503. }
  504. name = av[optind];
  505. conf_parse(name);
  506. //zconfdump(stdout);
  507. if (sync_kconfig) {
  508. name = conf_get_configname();
  509. if (stat(name, &tmpstat)) {
  510. fprintf(stderr, _("***\n"
  511. "*** Configuration file \"%s\" not found!\n"
  512. "***\n"
  513. "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
  514. "*** \"make menuconfig\" or \"make xconfig\").\n"
  515. "***\n"), name);
  516. exit(1);
  517. }
  518. }
  519. switch (input_mode) {
  520. case defconfig:
  521. if (!defconfig_file)
  522. defconfig_file = conf_get_default_confname();
  523. if (conf_read(defconfig_file)) {
  524. printf(_("***\n"
  525. "*** Can't find default configuration \"%s\"!\n"
  526. "***\n"), defconfig_file);
  527. exit(1);
  528. }
  529. break;
  530. case savedefconfig:
  531. case silentoldconfig:
  532. case oldaskconfig:
  533. case oldconfig:
  534. case listnewconfig:
  535. case oldnoconfig:
  536. conf_read(NULL);
  537. break;
  538. case allnoconfig:
  539. case allyesconfig:
  540. case allmodconfig:
  541. case alldefconfig:
  542. case randconfig:
  543. name = getenv("KCONFIG_ALLCONFIG");
  544. if (!name)
  545. break;
  546. if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) {
  547. if (conf_read_simple(name, S_DEF_USER, true)) {
  548. fprintf(stderr,
  549. _("*** Can't read seed configuration \"%s\"!\n"),
  550. name);
  551. exit(1);
  552. }
  553. break;
  554. }
  555. switch (input_mode) {
  556. case allnoconfig: name = "allno.config"; break;
  557. case allyesconfig: name = "allyes.config"; break;
  558. case allmodconfig: name = "allmod.config"; break;
  559. case alldefconfig: name = "alldef.config"; break;
  560. case randconfig: name = "allrandom.config"; break;
  561. default: break;
  562. }
  563. if (conf_read_simple(name, S_DEF_USER, true) &&
  564. conf_read_simple("all.config", S_DEF_USER, true)) {
  565. fprintf(stderr,
  566. _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"),
  567. name);
  568. exit(1);
  569. }
  570. break;
  571. default:
  572. break;
  573. }
  574. if (sync_kconfig) {
  575. if (conf_get_changed()) {
  576. name = getenv("KCONFIG_NOSILENTUPDATE");
  577. if (name && *name) {
  578. fprintf(stderr,
  579. _("\n*** The configuration requires explicit update.\n\n"));
  580. return 1;
  581. }
  582. }
  583. valid_stdin = tty_stdio;
  584. }
  585. switch (input_mode) {
  586. case allnoconfig:
  587. conf_set_all_new_symbols(def_no);
  588. break;
  589. case allyesconfig:
  590. conf_set_all_new_symbols(def_yes);
  591. break;
  592. case allmodconfig:
  593. conf_set_all_new_symbols(def_mod);
  594. break;
  595. case alldefconfig:
  596. conf_set_all_new_symbols(def_default);
  597. break;
  598. case randconfig:
  599. /* Really nothing to do in this loop */
  600. while (conf_set_all_new_symbols(def_random)) ;
  601. break;
  602. case defconfig:
  603. conf_set_all_new_symbols(def_default);
  604. break;
  605. case savedefconfig:
  606. break;
  607. case oldaskconfig:
  608. rootEntry = &rootmenu;
  609. conf(&rootmenu);
  610. input_mode = silentoldconfig;
  611. /* fall through */
  612. case oldconfig:
  613. case listnewconfig:
  614. case oldnoconfig:
  615. case silentoldconfig:
  616. /* Update until a loop caused no more changes */
  617. do {
  618. conf_cnt = 0;
  619. check_conf(&rootmenu);
  620. } while (conf_cnt &&
  621. (input_mode != listnewconfig &&
  622. input_mode != oldnoconfig));
  623. break;
  624. }
  625. if (sync_kconfig) {
  626. /* silentoldconfig is used during the build so we shall update autoconf.
  627. * All other commands are only used to generate a config.
  628. */
  629. if (conf_get_changed() && conf_write(NULL)) {
  630. fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
  631. exit(1);
  632. }
  633. if (conf_write_autoconf()) {
  634. fprintf(stderr, _("\n*** Error during update of the configuration.\n\n"));
  635. return 1;
  636. }
  637. } else if (input_mode == savedefconfig) {
  638. if (conf_write_defconfig(defconfig_file)) {
  639. fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
  640. defconfig_file);
  641. return 1;
  642. }
  643. } else if (input_mode != listnewconfig) {
  644. if (conf_write(NULL)) {
  645. fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
  646. exit(1);
  647. }
  648. }
  649. return 0;
  650. }
  651. /*
  652. * Helper function to facilitate fgets() by Jean Sacren.
  653. */
  654. void xfgets(char *str, int size, FILE *in)
  655. {
  656. if (fgets(str, size, in) == NULL)
  657. fprintf(stderr, "\nError in reading or end of file.\n");
  658. }