PageRenderTime 25ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/scripts/kconfig/conf.c

https://bitbucket.org/danhamilt1/linux
C | 716 lines | 636 code | 53 blank | 27 comment | 150 complexity | 4aab50ccb14cb06b4761ef27ba6d2bce MD5 | raw file
  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, 10);
  483. if (*endp == '\0') {
  484. seed = tmp;
  485. }
  486. }
  487. srand(seed);
  488. break;
  489. }
  490. case oldaskconfig:
  491. case oldconfig:
  492. case allnoconfig:
  493. case allyesconfig:
  494. case allmodconfig:
  495. case alldefconfig:
  496. case listnewconfig:
  497. case olddefconfig:
  498. break;
  499. case '?':
  500. conf_usage(progname);
  501. exit(1);
  502. break;
  503. }
  504. }
  505. if (ac == optind) {
  506. printf(_("%s: Kconfig file missing\n"), av[0]);
  507. conf_usage(progname);
  508. exit(1);
  509. }
  510. name = av[optind];
  511. conf_parse(name);
  512. //zconfdump(stdout);
  513. if (sync_kconfig) {
  514. name = conf_get_configname();
  515. if (stat(name, &tmpstat)) {
  516. fprintf(stderr, _("***\n"
  517. "*** Configuration file \"%s\" not found!\n"
  518. "***\n"
  519. "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
  520. "*** \"make menuconfig\" or \"make xconfig\").\n"
  521. "***\n"), name);
  522. exit(1);
  523. }
  524. }
  525. switch (input_mode) {
  526. case defconfig:
  527. if (!defconfig_file)
  528. defconfig_file = conf_get_default_confname();
  529. if (conf_read(defconfig_file)) {
  530. printf(_("***\n"
  531. "*** Can't find default configuration \"%s\"!\n"
  532. "***\n"), defconfig_file);
  533. exit(1);
  534. }
  535. break;
  536. case savedefconfig:
  537. case silentoldconfig:
  538. case oldaskconfig:
  539. case oldconfig:
  540. case listnewconfig:
  541. case olddefconfig:
  542. conf_read(NULL);
  543. break;
  544. case allnoconfig:
  545. case allyesconfig:
  546. case allmodconfig:
  547. case alldefconfig:
  548. case randconfig:
  549. name = getenv("KCONFIG_ALLCONFIG");
  550. if (!name)
  551. break;
  552. if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) {
  553. if (conf_read_simple(name, S_DEF_USER)) {
  554. fprintf(stderr,
  555. _("*** Can't read seed configuration \"%s\"!\n"),
  556. name);
  557. exit(1);
  558. }
  559. break;
  560. }
  561. switch (input_mode) {
  562. case allnoconfig: name = "allno.config"; break;
  563. case allyesconfig: name = "allyes.config"; break;
  564. case allmodconfig: name = "allmod.config"; break;
  565. case alldefconfig: name = "alldef.config"; break;
  566. case randconfig: name = "allrandom.config"; break;
  567. default: break;
  568. }
  569. if (conf_read_simple(name, S_DEF_USER) &&
  570. conf_read_simple("all.config", S_DEF_USER)) {
  571. fprintf(stderr,
  572. _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"),
  573. name);
  574. exit(1);
  575. }
  576. break;
  577. default:
  578. break;
  579. }
  580. if (sync_kconfig) {
  581. if (conf_get_changed()) {
  582. name = getenv("KCONFIG_NOSILENTUPDATE");
  583. if (name && *name) {
  584. fprintf(stderr,
  585. _("\n*** The configuration requires explicit update.\n\n"));
  586. return 1;
  587. }
  588. }
  589. valid_stdin = tty_stdio;
  590. }
  591. switch (input_mode) {
  592. case allnoconfig:
  593. conf_set_all_new_symbols(def_no);
  594. break;
  595. case allyesconfig:
  596. conf_set_all_new_symbols(def_yes);
  597. break;
  598. case allmodconfig:
  599. conf_set_all_new_symbols(def_mod);
  600. break;
  601. case alldefconfig:
  602. conf_set_all_new_symbols(def_default);
  603. break;
  604. case randconfig:
  605. conf_set_all_new_symbols(def_random);
  606. break;
  607. case defconfig:
  608. conf_set_all_new_symbols(def_default);
  609. break;
  610. case savedefconfig:
  611. break;
  612. case oldaskconfig:
  613. rootEntry = &rootmenu;
  614. conf(&rootmenu);
  615. input_mode = silentoldconfig;
  616. /* fall through */
  617. case oldconfig:
  618. case listnewconfig:
  619. case olddefconfig:
  620. case silentoldconfig:
  621. /* Update until a loop caused no more changes */
  622. do {
  623. conf_cnt = 0;
  624. check_conf(&rootmenu);
  625. } while (conf_cnt &&
  626. (input_mode != listnewconfig &&
  627. input_mode != olddefconfig));
  628. break;
  629. }
  630. if (sync_kconfig) {
  631. /* silentoldconfig is used during the build so we shall update autoconf.
  632. * All other commands are only used to generate a config.
  633. */
  634. if (conf_get_changed() && conf_write(NULL)) {
  635. fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
  636. exit(1);
  637. }
  638. if (conf_write_autoconf()) {
  639. fprintf(stderr, _("\n*** Error during update of the configuration.\n\n"));
  640. return 1;
  641. }
  642. } else if (input_mode == savedefconfig) {
  643. if (conf_write_defconfig(defconfig_file)) {
  644. fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
  645. defconfig_file);
  646. return 1;
  647. }
  648. } else if (input_mode != listnewconfig) {
  649. if (conf_write(NULL)) {
  650. fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
  651. exit(1);
  652. }
  653. }
  654. return 0;
  655. }
  656. /*
  657. * Helper function to facilitate fgets() by Jean Sacren.
  658. */
  659. void xfgets(char *str, int size, FILE *in)
  660. {
  661. if (fgets(str, size, in) == NULL)
  662. fprintf(stderr, "\nError in reading or end of file.\n");
  663. }