xref: /linux/scripts/kconfig/symbol.c (revision b957df3b858d16ba3d4291233569bba09cfd08c7)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
4  */
5 
6 #include <sys/types.h>
7 #include <ctype.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <regex.h>
11 
12 #include "internal.h"
13 #include "lkc.h"
14 
15 struct symbol symbol_yes = {
16 	.name = "y",
17 	.curr = { "y", yes },
18 	.menus = LIST_HEAD_INIT(symbol_yes.menus),
19 	.flags = SYMBOL_CONST|SYMBOL_VALID,
20 };
21 
22 struct symbol symbol_mod = {
23 	.name = "m",
24 	.curr = { "m", mod },
25 	.menus = LIST_HEAD_INIT(symbol_mod.menus),
26 	.flags = SYMBOL_CONST|SYMBOL_VALID,
27 };
28 
29 struct symbol symbol_no = {
30 	.name = "n",
31 	.curr = { "n", no },
32 	.menus = LIST_HEAD_INIT(symbol_no.menus),
33 	.flags = SYMBOL_CONST|SYMBOL_VALID,
34 };
35 
36 struct symbol *modules_sym;
37 static tristate modules_val;
38 static int sym_warnings;
39 
40 enum symbol_type sym_get_type(struct symbol *sym)
41 {
42 	enum symbol_type type = sym->type;
43 
44 	if (type == S_TRISTATE) {
45 		if (sym_is_choice_value(sym) && sym->visible == yes)
46 			type = S_BOOLEAN;
47 		else if (modules_val == no)
48 			type = S_BOOLEAN;
49 	}
50 	return type;
51 }
52 
53 const char *sym_type_name(enum symbol_type type)
54 {
55 	switch (type) {
56 	case S_BOOLEAN:
57 		return "bool";
58 	case S_TRISTATE:
59 		return "tristate";
60 	case S_INT:
61 		return "integer";
62 	case S_HEX:
63 		return "hex";
64 	case S_STRING:
65 		return "string";
66 	case S_UNKNOWN:
67 		return "unknown";
68 	}
69 	return "???";
70 }
71 
72 struct property *sym_get_choice_prop(struct symbol *sym)
73 {
74 	struct property *prop;
75 
76 	for_all_choices(sym, prop)
77 		return prop;
78 	return NULL;
79 }
80 
81 static struct property *sym_get_default_prop(struct symbol *sym)
82 {
83 	struct property *prop;
84 
85 	for_all_defaults(sym, prop) {
86 		prop->visible.tri = expr_calc_value(prop->visible.expr);
87 		if (prop->visible.tri != no)
88 			return prop;
89 	}
90 	return NULL;
91 }
92 
93 struct property *sym_get_range_prop(struct symbol *sym)
94 {
95 	struct property *prop;
96 
97 	for_all_properties(sym, prop, P_RANGE) {
98 		prop->visible.tri = expr_calc_value(prop->visible.expr);
99 		if (prop->visible.tri != no)
100 			return prop;
101 	}
102 	return NULL;
103 }
104 
105 static long long sym_get_range_val(struct symbol *sym, int base)
106 {
107 	sym_calc_value(sym);
108 	switch (sym->type) {
109 	case S_INT:
110 		base = 10;
111 		break;
112 	case S_HEX:
113 		base = 16;
114 		break;
115 	default:
116 		break;
117 	}
118 	return strtoll(sym->curr.val, NULL, base);
119 }
120 
121 static void sym_validate_range(struct symbol *sym)
122 {
123 	struct property *prop;
124 	struct symbol *range_sym;
125 	int base;
126 	long long val, val2;
127 
128 	switch (sym->type) {
129 	case S_INT:
130 		base = 10;
131 		break;
132 	case S_HEX:
133 		base = 16;
134 		break;
135 	default:
136 		return;
137 	}
138 	prop = sym_get_range_prop(sym);
139 	if (!prop)
140 		return;
141 	val = strtoll(sym->curr.val, NULL, base);
142 	range_sym = prop->expr->left.sym;
143 	val2 = sym_get_range_val(range_sym, base);
144 	if (val >= val2) {
145 		range_sym = prop->expr->right.sym;
146 		val2 = sym_get_range_val(range_sym, base);
147 		if (val <= val2)
148 			return;
149 	}
150 	sym->curr.val = range_sym->curr.val;
151 }
152 
153 static void sym_set_changed(struct symbol *sym)
154 {
155 	struct property *prop;
156 
157 	sym->flags |= SYMBOL_CHANGED;
158 	for (prop = sym->prop; prop; prop = prop->next) {
159 		if (prop->menu)
160 			prop->menu->flags |= MENU_CHANGED;
161 	}
162 }
163 
164 static void sym_set_all_changed(void)
165 {
166 	struct symbol *sym;
167 
168 	for_all_symbols(sym)
169 		sym_set_changed(sym);
170 }
171 
172 static void sym_calc_visibility(struct symbol *sym)
173 {
174 	struct property *prop;
175 	struct symbol *choice_sym = NULL;
176 	tristate tri;
177 
178 	/* any prompt visible? */
179 	tri = no;
180 
181 	if (sym_is_choice_value(sym))
182 		choice_sym = prop_get_symbol(sym_get_choice_prop(sym));
183 
184 	for_all_prompts(sym, prop) {
185 		prop->visible.tri = expr_calc_value(prop->visible.expr);
186 		/*
187 		 * Tristate choice_values with visibility 'mod' are
188 		 * not visible if the corresponding choice's value is
189 		 * 'yes'.
190 		 */
191 		if (choice_sym && sym->type == S_TRISTATE &&
192 		    prop->visible.tri == mod && choice_sym->curr.tri == yes)
193 			prop->visible.tri = no;
194 
195 		tri = EXPR_OR(tri, prop->visible.tri);
196 	}
197 	if (tri == mod && (sym->type != S_TRISTATE || modules_val == no))
198 		tri = yes;
199 	if (sym->visible != tri) {
200 		sym->visible = tri;
201 		sym_set_changed(sym);
202 	}
203 	if (sym_is_choice_value(sym))
204 		return;
205 	/* defaulting to "yes" if no explicit "depends on" are given */
206 	tri = yes;
207 	if (sym->dir_dep.expr)
208 		tri = expr_calc_value(sym->dir_dep.expr);
209 	if (tri == mod && sym_get_type(sym) == S_BOOLEAN)
210 		tri = yes;
211 	if (sym->dir_dep.tri != tri) {
212 		sym->dir_dep.tri = tri;
213 		sym_set_changed(sym);
214 	}
215 	tri = no;
216 	if (sym->rev_dep.expr)
217 		tri = expr_calc_value(sym->rev_dep.expr);
218 	if (tri == mod && sym_get_type(sym) == S_BOOLEAN)
219 		tri = yes;
220 	if (sym->rev_dep.tri != tri) {
221 		sym->rev_dep.tri = tri;
222 		sym_set_changed(sym);
223 	}
224 	tri = no;
225 	if (sym->implied.expr)
226 		tri = expr_calc_value(sym->implied.expr);
227 	if (tri == mod && sym_get_type(sym) == S_BOOLEAN)
228 		tri = yes;
229 	if (sym->implied.tri != tri) {
230 		sym->implied.tri = tri;
231 		sym_set_changed(sym);
232 	}
233 }
234 
235 /*
236  * Find the default symbol for a choice.
237  * First try the default values for the choice symbol
238  * Next locate the first visible choice value
239  * Return NULL if none was found
240  */
241 struct symbol *sym_choice_default(struct symbol *sym)
242 {
243 	struct symbol *def_sym;
244 	struct property *prop;
245 	struct expr *e;
246 
247 	/* any of the defaults visible? */
248 	for_all_defaults(sym, prop) {
249 		prop->visible.tri = expr_calc_value(prop->visible.expr);
250 		if (prop->visible.tri == no)
251 			continue;
252 		def_sym = prop_get_symbol(prop);
253 		if (def_sym->visible != no)
254 			return def_sym;
255 	}
256 
257 	/* just get the first visible value */
258 	prop = sym_get_choice_prop(sym);
259 	expr_list_for_each_sym(prop->expr, e, def_sym)
260 		if (def_sym->visible != no)
261 			return def_sym;
262 
263 	/* failed to locate any defaults */
264 	return NULL;
265 }
266 
267 static struct symbol *sym_calc_choice(struct symbol *sym)
268 {
269 	struct symbol *def_sym;
270 	struct property *prop;
271 	struct expr *e;
272 	int flags;
273 
274 	/* first calculate all choice values' visibilities */
275 	flags = sym->flags;
276 	prop = sym_get_choice_prop(sym);
277 	expr_list_for_each_sym(prop->expr, e, def_sym) {
278 		sym_calc_visibility(def_sym);
279 		if (def_sym->visible != no)
280 			flags &= def_sym->flags;
281 	}
282 
283 	sym->flags &= flags | ~SYMBOL_DEF_USER;
284 
285 	/* is the user choice visible? */
286 	def_sym = sym->def[S_DEF_USER].val;
287 	if (def_sym && def_sym->visible != no)
288 		return def_sym;
289 
290 	def_sym = sym_choice_default(sym);
291 
292 	if (def_sym == NULL)
293 		/* no choice? reset tristate value */
294 		sym->curr.tri = no;
295 
296 	return def_sym;
297 }
298 
299 static void sym_warn_unmet_dep(struct symbol *sym)
300 {
301 	struct gstr gs = str_new();
302 
303 	str_printf(&gs,
304 		   "\nWARNING: unmet direct dependencies detected for %s\n",
305 		   sym->name);
306 	str_printf(&gs,
307 		   "  Depends on [%c]: ",
308 		   sym->dir_dep.tri == mod ? 'm' : 'n');
309 	expr_gstr_print(sym->dir_dep.expr, &gs);
310 	str_printf(&gs, "\n");
311 
312 	expr_gstr_print_revdep(sym->rev_dep.expr, &gs, yes,
313 			       "  Selected by [y]:\n");
314 	expr_gstr_print_revdep(sym->rev_dep.expr, &gs, mod,
315 			       "  Selected by [m]:\n");
316 
317 	fputs(str_get(&gs), stderr);
318 	sym_warnings++;
319 }
320 
321 bool sym_dep_errors(void)
322 {
323 	if (sym_warnings)
324 		return getenv("KCONFIG_WERROR");
325 	return false;
326 }
327 
328 void sym_calc_value(struct symbol *sym)
329 {
330 	struct symbol_value newval, oldval;
331 	struct property *prop;
332 	struct expr *e;
333 
334 	if (!sym)
335 		return;
336 
337 	if (sym->flags & SYMBOL_VALID)
338 		return;
339 
340 	if (sym_is_choice_value(sym) &&
341 	    sym->flags & SYMBOL_NEED_SET_CHOICE_VALUES) {
342 		sym->flags &= ~SYMBOL_NEED_SET_CHOICE_VALUES;
343 		prop = sym_get_choice_prop(sym);
344 		sym_calc_value(prop_get_symbol(prop));
345 	}
346 
347 	sym->flags |= SYMBOL_VALID;
348 
349 	oldval = sym->curr;
350 
351 	newval.tri = no;
352 
353 	switch (sym->type) {
354 	case S_INT:
355 		newval.val = "0";
356 		break;
357 	case S_HEX:
358 		newval.val = "0x0";
359 		break;
360 	case S_STRING:
361 		newval.val = "";
362 		break;
363 	case S_BOOLEAN:
364 	case S_TRISTATE:
365 		newval.val = "n";
366 		break;
367 	default:
368 		sym->curr.val = sym->name;
369 		sym->curr.tri = no;
370 		return;
371 	}
372 	sym->flags &= ~SYMBOL_WRITE;
373 
374 	sym_calc_visibility(sym);
375 
376 	if (sym->visible != no)
377 		sym->flags |= SYMBOL_WRITE;
378 
379 	/* set default if recursively called */
380 	sym->curr = newval;
381 
382 	switch (sym_get_type(sym)) {
383 	case S_BOOLEAN:
384 	case S_TRISTATE:
385 		if (sym_is_choice_value(sym) && sym->visible == yes) {
386 			prop = sym_get_choice_prop(sym);
387 			newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no;
388 		} else {
389 			if (sym->visible != no) {
390 				/* if the symbol is visible use the user value
391 				 * if available, otherwise try the default value
392 				 */
393 				if (sym_has_value(sym)) {
394 					newval.tri = EXPR_AND(sym->def[S_DEF_USER].tri,
395 							      sym->visible);
396 					goto calc_newval;
397 				}
398 			}
399 			if (sym->rev_dep.tri != no)
400 				sym->flags |= SYMBOL_WRITE;
401 			if (!sym_is_choice(sym)) {
402 				prop = sym_get_default_prop(sym);
403 				if (prop) {
404 					newval.tri = EXPR_AND(expr_calc_value(prop->expr),
405 							      prop->visible.tri);
406 					if (newval.tri != no)
407 						sym->flags |= SYMBOL_WRITE;
408 				}
409 				if (sym->implied.tri != no) {
410 					sym->flags |= SYMBOL_WRITE;
411 					newval.tri = EXPR_OR(newval.tri, sym->implied.tri);
412 					newval.tri = EXPR_AND(newval.tri,
413 							      sym->dir_dep.tri);
414 				}
415 			}
416 		calc_newval:
417 			if (sym->dir_dep.tri < sym->rev_dep.tri)
418 				sym_warn_unmet_dep(sym);
419 			newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri);
420 		}
421 		if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN)
422 			newval.tri = yes;
423 		break;
424 	case S_STRING:
425 	case S_HEX:
426 	case S_INT:
427 		if (sym->visible != no && sym_has_value(sym)) {
428 			newval.val = sym->def[S_DEF_USER].val;
429 			break;
430 		}
431 		prop = sym_get_default_prop(sym);
432 		if (prop) {
433 			struct symbol *ds = prop_get_symbol(prop);
434 			if (ds) {
435 				sym->flags |= SYMBOL_WRITE;
436 				sym_calc_value(ds);
437 				newval.val = ds->curr.val;
438 			}
439 		}
440 		break;
441 	default:
442 		;
443 	}
444 
445 	sym->curr = newval;
446 	if (sym_is_choice(sym) && newval.tri == yes)
447 		sym->curr.val = sym_calc_choice(sym);
448 	sym_validate_range(sym);
449 
450 	if (memcmp(&oldval, &sym->curr, sizeof(oldval))) {
451 		sym_set_changed(sym);
452 		if (modules_sym == sym) {
453 			sym_set_all_changed();
454 			modules_val = modules_sym->curr.tri;
455 		}
456 	}
457 
458 	if (sym_is_choice(sym)) {
459 		struct symbol *choice_sym;
460 
461 		prop = sym_get_choice_prop(sym);
462 		expr_list_for_each_sym(prop->expr, e, choice_sym) {
463 			if ((sym->flags & SYMBOL_WRITE) &&
464 			    choice_sym->visible != no)
465 				choice_sym->flags |= SYMBOL_WRITE;
466 			if (sym->flags & SYMBOL_CHANGED)
467 				sym_set_changed(choice_sym);
468 		}
469 
470 		sym->flags &= ~SYMBOL_WRITE;
471 	}
472 
473 	if (sym->flags & SYMBOL_NEED_SET_CHOICE_VALUES)
474 		set_all_choice_values(sym);
475 }
476 
477 void sym_clear_all_valid(void)
478 {
479 	struct symbol *sym;
480 
481 	for_all_symbols(sym)
482 		sym->flags &= ~SYMBOL_VALID;
483 	conf_set_changed(true);
484 	sym_calc_value(modules_sym);
485 }
486 
487 bool sym_tristate_within_range(struct symbol *sym, tristate val)
488 {
489 	int type = sym_get_type(sym);
490 
491 	if (sym->visible == no)
492 		return false;
493 
494 	if (type != S_BOOLEAN && type != S_TRISTATE)
495 		return false;
496 
497 	if (type == S_BOOLEAN && val == mod)
498 		return false;
499 	if (sym->visible <= sym->rev_dep.tri)
500 		return false;
501 	if (sym_is_choice_value(sym) && sym->visible == yes)
502 		return val == yes;
503 	return val >= sym->rev_dep.tri && val <= sym->visible;
504 }
505 
506 bool sym_set_tristate_value(struct symbol *sym, tristate val)
507 {
508 	tristate oldval = sym_get_tristate_value(sym);
509 
510 	if (oldval != val && !sym_tristate_within_range(sym, val))
511 		return false;
512 
513 	if (!(sym->flags & SYMBOL_DEF_USER)) {
514 		sym->flags |= SYMBOL_DEF_USER;
515 		sym_set_changed(sym);
516 	}
517 	/*
518 	 * setting a choice value also resets the new flag of the choice
519 	 * symbol and all other choice values.
520 	 */
521 	if (sym_is_choice_value(sym) && val == yes) {
522 		struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
523 		struct property *prop;
524 		struct expr *e;
525 
526 		cs->def[S_DEF_USER].val = sym;
527 		cs->flags |= SYMBOL_DEF_USER;
528 		prop = sym_get_choice_prop(cs);
529 		for (e = prop->expr; e; e = e->left.expr) {
530 			if (e->right.sym->visible != no)
531 				e->right.sym->flags |= SYMBOL_DEF_USER;
532 		}
533 	}
534 
535 	sym->def[S_DEF_USER].tri = val;
536 	if (oldval != val)
537 		sym_clear_all_valid();
538 
539 	return true;
540 }
541 
542 tristate sym_toggle_tristate_value(struct symbol *sym)
543 {
544 	tristate oldval, newval;
545 
546 	oldval = newval = sym_get_tristate_value(sym);
547 	do {
548 		switch (newval) {
549 		case no:
550 			newval = mod;
551 			break;
552 		case mod:
553 			newval = yes;
554 			break;
555 		case yes:
556 			newval = no;
557 			break;
558 		}
559 		if (sym_set_tristate_value(sym, newval))
560 			break;
561 	} while (oldval != newval);
562 	return newval;
563 }
564 
565 bool sym_string_valid(struct symbol *sym, const char *str)
566 {
567 	signed char ch;
568 
569 	switch (sym->type) {
570 	case S_STRING:
571 		return true;
572 	case S_INT:
573 		ch = *str++;
574 		if (ch == '-')
575 			ch = *str++;
576 		if (!isdigit(ch))
577 			return false;
578 		if (ch == '0' && *str != 0)
579 			return false;
580 		while ((ch = *str++)) {
581 			if (!isdigit(ch))
582 				return false;
583 		}
584 		return true;
585 	case S_HEX:
586 		if (str[0] == '0' && (str[1] == 'x' || str[1] == 'X'))
587 			str += 2;
588 		ch = *str++;
589 		do {
590 			if (!isxdigit(ch))
591 				return false;
592 		} while ((ch = *str++));
593 		return true;
594 	case S_BOOLEAN:
595 	case S_TRISTATE:
596 		switch (str[0]) {
597 		case 'y': case 'Y':
598 		case 'm': case 'M':
599 		case 'n': case 'N':
600 			return true;
601 		}
602 		return false;
603 	default:
604 		return false;
605 	}
606 }
607 
608 bool sym_string_within_range(struct symbol *sym, const char *str)
609 {
610 	struct property *prop;
611 	long long val;
612 
613 	switch (sym->type) {
614 	case S_STRING:
615 		return sym_string_valid(sym, str);
616 	case S_INT:
617 		if (!sym_string_valid(sym, str))
618 			return false;
619 		prop = sym_get_range_prop(sym);
620 		if (!prop)
621 			return true;
622 		val = strtoll(str, NULL, 10);
623 		return val >= sym_get_range_val(prop->expr->left.sym, 10) &&
624 		       val <= sym_get_range_val(prop->expr->right.sym, 10);
625 	case S_HEX:
626 		if (!sym_string_valid(sym, str))
627 			return false;
628 		prop = sym_get_range_prop(sym);
629 		if (!prop)
630 			return true;
631 		val = strtoll(str, NULL, 16);
632 		return val >= sym_get_range_val(prop->expr->left.sym, 16) &&
633 		       val <= sym_get_range_val(prop->expr->right.sym, 16);
634 	case S_BOOLEAN:
635 	case S_TRISTATE:
636 		switch (str[0]) {
637 		case 'y': case 'Y':
638 			return sym_tristate_within_range(sym, yes);
639 		case 'm': case 'M':
640 			return sym_tristate_within_range(sym, mod);
641 		case 'n': case 'N':
642 			return sym_tristate_within_range(sym, no);
643 		}
644 		return false;
645 	default:
646 		return false;
647 	}
648 }
649 
650 bool sym_set_string_value(struct symbol *sym, const char *newval)
651 {
652 	const char *oldval;
653 	char *val;
654 	int size;
655 
656 	switch (sym->type) {
657 	case S_BOOLEAN:
658 	case S_TRISTATE:
659 		switch (newval[0]) {
660 		case 'y': case 'Y':
661 			return sym_set_tristate_value(sym, yes);
662 		case 'm': case 'M':
663 			return sym_set_tristate_value(sym, mod);
664 		case 'n': case 'N':
665 			return sym_set_tristate_value(sym, no);
666 		}
667 		return false;
668 	default:
669 		;
670 	}
671 
672 	if (!sym_string_within_range(sym, newval))
673 		return false;
674 
675 	if (!(sym->flags & SYMBOL_DEF_USER)) {
676 		sym->flags |= SYMBOL_DEF_USER;
677 		sym_set_changed(sym);
678 	}
679 
680 	oldval = sym->def[S_DEF_USER].val;
681 	size = strlen(newval) + 1;
682 	if (sym->type == S_HEX && (newval[0] != '0' || (newval[1] != 'x' && newval[1] != 'X'))) {
683 		size += 2;
684 		sym->def[S_DEF_USER].val = val = xmalloc(size);
685 		*val++ = '0';
686 		*val++ = 'x';
687 	} else if (!oldval || strcmp(oldval, newval))
688 		sym->def[S_DEF_USER].val = val = xmalloc(size);
689 	else
690 		return true;
691 
692 	strcpy(val, newval);
693 	free((void *)oldval);
694 	sym_clear_all_valid();
695 
696 	return true;
697 }
698 
699 /*
700  * Find the default value associated to a symbol.
701  * For tristate symbol handle the modules=n case
702  * in which case "m" becomes "y".
703  * If the symbol does not have any default then fallback
704  * to the fixed default values.
705  */
706 const char *sym_get_string_default(struct symbol *sym)
707 {
708 	struct property *prop;
709 	struct symbol *ds;
710 	const char *str = "";
711 	tristate val;
712 
713 	sym_calc_visibility(sym);
714 	sym_calc_value(modules_sym);
715 	val = symbol_no.curr.tri;
716 
717 	/* If symbol has a default value look it up */
718 	prop = sym_get_default_prop(sym);
719 	if (prop != NULL) {
720 		switch (sym->type) {
721 		case S_BOOLEAN:
722 		case S_TRISTATE:
723 			/* The visibility may limit the value from yes => mod */
724 			val = EXPR_AND(expr_calc_value(prop->expr), prop->visible.tri);
725 			break;
726 		default:
727 			/*
728 			 * The following fails to handle the situation
729 			 * where a default value is further limited by
730 			 * the valid range.
731 			 */
732 			ds = prop_get_symbol(prop);
733 			if (ds != NULL) {
734 				sym_calc_value(ds);
735 				str = (const char *)ds->curr.val;
736 			}
737 		}
738 	}
739 
740 	/* Handle select statements */
741 	val = EXPR_OR(val, sym->rev_dep.tri);
742 
743 	/* transpose mod to yes if modules are not enabled */
744 	if (val == mod)
745 		if (!sym_is_choice_value(sym) && modules_sym->curr.tri == no)
746 			val = yes;
747 
748 	/* transpose mod to yes if type is bool */
749 	if (sym->type == S_BOOLEAN && val == mod)
750 		val = yes;
751 
752 	/* adjust the default value if this symbol is implied by another */
753 	if (val < sym->implied.tri)
754 		val = sym->implied.tri;
755 
756 	switch (sym->type) {
757 	case S_BOOLEAN:
758 	case S_TRISTATE:
759 		switch (val) {
760 		case no: return "n";
761 		case mod: return "m";
762 		case yes: return "y";
763 		}
764 	case S_INT:
765 		if (!str[0])
766 			str = "0";
767 		break;
768 	case S_HEX:
769 		if (!str[0])
770 			str = "0x0";
771 		break;
772 	default:
773 		break;
774 	}
775 	return str;
776 }
777 
778 const char *sym_get_string_value(struct symbol *sym)
779 {
780 	tristate val;
781 
782 	switch (sym->type) {
783 	case S_BOOLEAN:
784 	case S_TRISTATE:
785 		val = sym_get_tristate_value(sym);
786 		switch (val) {
787 		case no:
788 			return "n";
789 		case mod:
790 			sym_calc_value(modules_sym);
791 			return (modules_sym->curr.tri == no) ? "n" : "m";
792 		case yes:
793 			return "y";
794 		}
795 		break;
796 	default:
797 		;
798 	}
799 	return (const char *)sym->curr.val;
800 }
801 
802 bool sym_is_changeable(struct symbol *sym)
803 {
804 	return sym->visible > sym->rev_dep.tri;
805 }
806 
807 HASHTABLE_DEFINE(sym_hashtable, SYMBOL_HASHSIZE);
808 
809 struct symbol *sym_lookup(const char *name, int flags)
810 {
811 	struct symbol *symbol;
812 	char *new_name;
813 	int hash;
814 
815 	if (name) {
816 		if (name[0] && !name[1]) {
817 			switch (name[0]) {
818 			case 'y': return &symbol_yes;
819 			case 'm': return &symbol_mod;
820 			case 'n': return &symbol_no;
821 			}
822 		}
823 		hash = strhash(name);
824 
825 		hash_for_each_possible(sym_hashtable, symbol, node, hash) {
826 			if (symbol->name &&
827 			    !strcmp(symbol->name, name) &&
828 			    (flags ? symbol->flags & flags
829 				   : !(symbol->flags & SYMBOL_CONST)))
830 				return symbol;
831 		}
832 		new_name = xstrdup(name);
833 	} else {
834 		new_name = NULL;
835 		hash = 0;
836 	}
837 
838 	symbol = xmalloc(sizeof(*symbol));
839 	memset(symbol, 0, sizeof(*symbol));
840 	symbol->name = new_name;
841 	symbol->type = S_UNKNOWN;
842 	symbol->flags = flags;
843 	INIT_LIST_HEAD(&symbol->menus);
844 
845 	hash_add(sym_hashtable, &symbol->node, hash);
846 
847 	return symbol;
848 }
849 
850 struct symbol *sym_find(const char *name)
851 {
852 	struct symbol *symbol = NULL;
853 	int hash = 0;
854 
855 	if (!name)
856 		return NULL;
857 
858 	if (name[0] && !name[1]) {
859 		switch (name[0]) {
860 		case 'y': return &symbol_yes;
861 		case 'm': return &symbol_mod;
862 		case 'n': return &symbol_no;
863 		}
864 	}
865 	hash = strhash(name);
866 
867 	hash_for_each_possible(sym_hashtable, symbol, node, hash) {
868 		if (symbol->name &&
869 		    !strcmp(symbol->name, name) &&
870 		    !(symbol->flags & SYMBOL_CONST))
871 				break;
872 	}
873 
874 	return symbol;
875 }
876 
877 struct sym_match {
878 	struct symbol	*sym;
879 	off_t		so, eo;
880 };
881 
882 /* Compare matched symbols as thus:
883  * - first, symbols that match exactly
884  * - then, alphabetical sort
885  */
886 static int sym_rel_comp(const void *sym1, const void *sym2)
887 {
888 	const struct sym_match *s1 = sym1;
889 	const struct sym_match *s2 = sym2;
890 	int exact1, exact2;
891 
892 	/* Exact match:
893 	 * - if matched length on symbol s1 is the length of that symbol,
894 	 *   then this symbol should come first;
895 	 * - if matched length on symbol s2 is the length of that symbol,
896 	 *   then this symbol should come first.
897 	 * Note: since the search can be a regexp, both symbols may match
898 	 * exactly; if this is the case, we can't decide which comes first,
899 	 * and we fallback to sorting alphabetically.
900 	 */
901 	exact1 = (s1->eo - s1->so) == strlen(s1->sym->name);
902 	exact2 = (s2->eo - s2->so) == strlen(s2->sym->name);
903 	if (exact1 && !exact2)
904 		return -1;
905 	if (!exact1 && exact2)
906 		return 1;
907 
908 	/* As a fallback, sort symbols alphabetically */
909 	return strcmp(s1->sym->name, s2->sym->name);
910 }
911 
912 struct symbol **sym_re_search(const char *pattern)
913 {
914 	struct symbol *sym, **sym_arr = NULL;
915 	struct sym_match *sym_match_arr = NULL;
916 	int i, cnt, size;
917 	regex_t re;
918 	regmatch_t match[1];
919 
920 	cnt = size = 0;
921 	/* Skip if empty */
922 	if (strlen(pattern) == 0)
923 		return NULL;
924 	if (regcomp(&re, pattern, REG_EXTENDED|REG_ICASE))
925 		return NULL;
926 
927 	for_all_symbols(sym) {
928 		if (sym->flags & SYMBOL_CONST || !sym->name)
929 			continue;
930 		if (regexec(&re, sym->name, 1, match, 0))
931 			continue;
932 		if (cnt >= size) {
933 			void *tmp;
934 			size += 16;
935 			tmp = realloc(sym_match_arr, size * sizeof(struct sym_match));
936 			if (!tmp)
937 				goto sym_re_search_free;
938 			sym_match_arr = tmp;
939 		}
940 		sym_calc_value(sym);
941 		/* As regexec returned 0, we know we have a match, so
942 		 * we can use match[0].rm_[se]o without further checks
943 		 */
944 		sym_match_arr[cnt].so = match[0].rm_so;
945 		sym_match_arr[cnt].eo = match[0].rm_eo;
946 		sym_match_arr[cnt++].sym = sym;
947 	}
948 	if (sym_match_arr) {
949 		qsort(sym_match_arr, cnt, sizeof(struct sym_match), sym_rel_comp);
950 		sym_arr = malloc((cnt+1) * sizeof(struct symbol *));
951 		if (!sym_arr)
952 			goto sym_re_search_free;
953 		for (i = 0; i < cnt; i++)
954 			sym_arr[i] = sym_match_arr[i].sym;
955 		sym_arr[cnt] = NULL;
956 	}
957 sym_re_search_free:
958 	/* sym_match_arr can be NULL if no match, but free(NULL) is OK */
959 	free(sym_match_arr);
960 	regfree(&re);
961 
962 	return sym_arr;
963 }
964 
965 /*
966  * When we check for recursive dependencies we use a stack to save
967  * current state so we can print out relevant info to user.
968  * The entries are located on the call stack so no need to free memory.
969  * Note insert() remove() must always match to properly clear the stack.
970  */
971 static struct dep_stack {
972 	struct dep_stack *prev, *next;
973 	struct symbol *sym;
974 	struct property *prop;
975 	struct expr **expr;
976 } *check_top;
977 
978 static void dep_stack_insert(struct dep_stack *stack, struct symbol *sym)
979 {
980 	memset(stack, 0, sizeof(*stack));
981 	if (check_top)
982 		check_top->next = stack;
983 	stack->prev = check_top;
984 	stack->sym = sym;
985 	check_top = stack;
986 }
987 
988 static void dep_stack_remove(void)
989 {
990 	check_top = check_top->prev;
991 	if (check_top)
992 		check_top->next = NULL;
993 }
994 
995 /*
996  * Called when we have detected a recursive dependency.
997  * check_top point to the top of the stact so we use
998  * the ->prev pointer to locate the bottom of the stack.
999  */
1000 static void sym_check_print_recursive(struct symbol *last_sym)
1001 {
1002 	struct dep_stack *stack;
1003 	struct symbol *sym, *next_sym;
1004 	struct menu *menu = NULL;
1005 	struct property *prop;
1006 	struct dep_stack cv_stack;
1007 
1008 	if (sym_is_choice_value(last_sym)) {
1009 		dep_stack_insert(&cv_stack, last_sym);
1010 		last_sym = prop_get_symbol(sym_get_choice_prop(last_sym));
1011 	}
1012 
1013 	for (stack = check_top; stack != NULL; stack = stack->prev)
1014 		if (stack->sym == last_sym)
1015 			break;
1016 	if (!stack) {
1017 		fprintf(stderr, "unexpected recursive dependency error\n");
1018 		return;
1019 	}
1020 
1021 	for (; stack; stack = stack->next) {
1022 		sym = stack->sym;
1023 		next_sym = stack->next ? stack->next->sym : last_sym;
1024 		prop = stack->prop;
1025 		if (prop == NULL)
1026 			prop = stack->sym->prop;
1027 
1028 		/* for choice values find the menu entry (used below) */
1029 		if (sym_is_choice(sym) || sym_is_choice_value(sym)) {
1030 			for (prop = sym->prop; prop; prop = prop->next) {
1031 				menu = prop->menu;
1032 				if (prop->menu)
1033 					break;
1034 			}
1035 		}
1036 		if (stack->sym == last_sym)
1037 			fprintf(stderr, "%s:%d:error: recursive dependency detected!\n",
1038 				prop->filename, prop->lineno);
1039 
1040 		if (sym_is_choice(sym)) {
1041 			fprintf(stderr, "%s:%d:\tchoice %s contains symbol %s\n",
1042 				menu->filename, menu->lineno,
1043 				sym->name ? sym->name : "<choice>",
1044 				next_sym->name ? next_sym->name : "<choice>");
1045 		} else if (sym_is_choice_value(sym)) {
1046 			fprintf(stderr, "%s:%d:\tsymbol %s is part of choice %s\n",
1047 				menu->filename, menu->lineno,
1048 				sym->name ? sym->name : "<choice>",
1049 				next_sym->name ? next_sym->name : "<choice>");
1050 		} else if (stack->expr == &sym->dir_dep.expr) {
1051 			fprintf(stderr, "%s:%d:\tsymbol %s depends on %s\n",
1052 				prop->filename, prop->lineno,
1053 				sym->name ? sym->name : "<choice>",
1054 				next_sym->name ? next_sym->name : "<choice>");
1055 		} else if (stack->expr == &sym->rev_dep.expr) {
1056 			fprintf(stderr, "%s:%d:\tsymbol %s is selected by %s\n",
1057 				prop->filename, prop->lineno,
1058 				sym->name ? sym->name : "<choice>",
1059 				next_sym->name ? next_sym->name : "<choice>");
1060 		} else if (stack->expr == &sym->implied.expr) {
1061 			fprintf(stderr, "%s:%d:\tsymbol %s is implied by %s\n",
1062 				prop->filename, prop->lineno,
1063 				sym->name ? sym->name : "<choice>",
1064 				next_sym->name ? next_sym->name : "<choice>");
1065 		} else if (stack->expr) {
1066 			fprintf(stderr, "%s:%d:\tsymbol %s %s value contains %s\n",
1067 				prop->filename, prop->lineno,
1068 				sym->name ? sym->name : "<choice>",
1069 				prop_get_type_name(prop->type),
1070 				next_sym->name ? next_sym->name : "<choice>");
1071 		} else {
1072 			fprintf(stderr, "%s:%d:\tsymbol %s %s is visible depending on %s\n",
1073 				prop->filename, prop->lineno,
1074 				sym->name ? sym->name : "<choice>",
1075 				prop_get_type_name(prop->type),
1076 				next_sym->name ? next_sym->name : "<choice>");
1077 		}
1078 	}
1079 
1080 	fprintf(stderr,
1081 		"For a resolution refer to Documentation/kbuild/kconfig-language.rst\n"
1082 		"subsection \"Kconfig recursive dependency limitations\"\n"
1083 		"\n");
1084 
1085 	if (check_top == &cv_stack)
1086 		dep_stack_remove();
1087 }
1088 
1089 static struct symbol *sym_check_expr_deps(struct expr *e)
1090 {
1091 	struct symbol *sym;
1092 
1093 	if (!e)
1094 		return NULL;
1095 	switch (e->type) {
1096 	case E_OR:
1097 	case E_AND:
1098 		sym = sym_check_expr_deps(e->left.expr);
1099 		if (sym)
1100 			return sym;
1101 		return sym_check_expr_deps(e->right.expr);
1102 	case E_NOT:
1103 		return sym_check_expr_deps(e->left.expr);
1104 	case E_EQUAL:
1105 	case E_GEQ:
1106 	case E_GTH:
1107 	case E_LEQ:
1108 	case E_LTH:
1109 	case E_UNEQUAL:
1110 		sym = sym_check_deps(e->left.sym);
1111 		if (sym)
1112 			return sym;
1113 		return sym_check_deps(e->right.sym);
1114 	case E_SYMBOL:
1115 		return sym_check_deps(e->left.sym);
1116 	default:
1117 		break;
1118 	}
1119 	fprintf(stderr, "Oops! How to check %d?\n", e->type);
1120 	return NULL;
1121 }
1122 
1123 /* return NULL when dependencies are OK */
1124 static struct symbol *sym_check_sym_deps(struct symbol *sym)
1125 {
1126 	struct symbol *sym2;
1127 	struct property *prop;
1128 	struct dep_stack stack;
1129 
1130 	dep_stack_insert(&stack, sym);
1131 
1132 	stack.expr = &sym->dir_dep.expr;
1133 	sym2 = sym_check_expr_deps(sym->dir_dep.expr);
1134 	if (sym2)
1135 		goto out;
1136 
1137 	stack.expr = &sym->rev_dep.expr;
1138 	sym2 = sym_check_expr_deps(sym->rev_dep.expr);
1139 	if (sym2)
1140 		goto out;
1141 
1142 	stack.expr = &sym->implied.expr;
1143 	sym2 = sym_check_expr_deps(sym->implied.expr);
1144 	if (sym2)
1145 		goto out;
1146 
1147 	stack.expr = NULL;
1148 
1149 	for (prop = sym->prop; prop; prop = prop->next) {
1150 		if (prop->type == P_CHOICE || prop->type == P_SELECT ||
1151 		    prop->type == P_IMPLY)
1152 			continue;
1153 		stack.prop = prop;
1154 		sym2 = sym_check_expr_deps(prop->visible.expr);
1155 		if (sym2)
1156 			break;
1157 		if (prop->type != P_DEFAULT || sym_is_choice(sym))
1158 			continue;
1159 		stack.expr = &prop->expr;
1160 		sym2 = sym_check_expr_deps(prop->expr);
1161 		if (sym2)
1162 			break;
1163 		stack.expr = NULL;
1164 	}
1165 
1166 out:
1167 	dep_stack_remove();
1168 
1169 	return sym2;
1170 }
1171 
1172 static struct symbol *sym_check_choice_deps(struct symbol *choice)
1173 {
1174 	struct symbol *sym, *sym2;
1175 	struct property *prop;
1176 	struct expr *e;
1177 	struct dep_stack stack;
1178 
1179 	dep_stack_insert(&stack, choice);
1180 
1181 	prop = sym_get_choice_prop(choice);
1182 	expr_list_for_each_sym(prop->expr, e, sym)
1183 		sym->flags |= (SYMBOL_CHECK | SYMBOL_CHECKED);
1184 
1185 	choice->flags |= (SYMBOL_CHECK | SYMBOL_CHECKED);
1186 	sym2 = sym_check_sym_deps(choice);
1187 	choice->flags &= ~SYMBOL_CHECK;
1188 	if (sym2)
1189 		goto out;
1190 
1191 	expr_list_for_each_sym(prop->expr, e, sym) {
1192 		sym2 = sym_check_sym_deps(sym);
1193 		if (sym2)
1194 			break;
1195 	}
1196 out:
1197 	expr_list_for_each_sym(prop->expr, e, sym)
1198 		sym->flags &= ~SYMBOL_CHECK;
1199 
1200 	if (sym2 && sym_is_choice_value(sym2) &&
1201 	    prop_get_symbol(sym_get_choice_prop(sym2)) == choice)
1202 		sym2 = choice;
1203 
1204 	dep_stack_remove();
1205 
1206 	return sym2;
1207 }
1208 
1209 struct symbol *sym_check_deps(struct symbol *sym)
1210 {
1211 	struct symbol *sym2;
1212 	struct property *prop;
1213 
1214 	if (sym->flags & SYMBOL_CHECK) {
1215 		sym_check_print_recursive(sym);
1216 		return sym;
1217 	}
1218 	if (sym->flags & SYMBOL_CHECKED)
1219 		return NULL;
1220 
1221 	if (sym_is_choice_value(sym)) {
1222 		struct dep_stack stack;
1223 
1224 		/* for choice groups start the check with main choice symbol */
1225 		dep_stack_insert(&stack, sym);
1226 		prop = sym_get_choice_prop(sym);
1227 		sym2 = sym_check_deps(prop_get_symbol(prop));
1228 		dep_stack_remove();
1229 	} else if (sym_is_choice(sym)) {
1230 		sym2 = sym_check_choice_deps(sym);
1231 	} else {
1232 		sym->flags |= (SYMBOL_CHECK | SYMBOL_CHECKED);
1233 		sym2 = sym_check_sym_deps(sym);
1234 		sym->flags &= ~SYMBOL_CHECK;
1235 	}
1236 
1237 	return sym2;
1238 }
1239 
1240 struct symbol *prop_get_symbol(struct property *prop)
1241 {
1242 	if (prop->expr && (prop->expr->type == E_SYMBOL ||
1243 			   prop->expr->type == E_LIST))
1244 		return prop->expr->left.sym;
1245 	return NULL;
1246 }
1247 
1248 const char *prop_get_type_name(enum prop_type type)
1249 {
1250 	switch (type) {
1251 	case P_PROMPT:
1252 		return "prompt";
1253 	case P_COMMENT:
1254 		return "comment";
1255 	case P_MENU:
1256 		return "menu";
1257 	case P_DEFAULT:
1258 		return "default";
1259 	case P_CHOICE:
1260 		return "choice";
1261 	case P_SELECT:
1262 		return "select";
1263 	case P_IMPLY:
1264 		return "imply";
1265 	case P_RANGE:
1266 		return "range";
1267 	case P_SYMBOL:
1268 		return "symbol";
1269 	case P_UNKNOWN:
1270 		break;
1271 	}
1272 	return "unknown";
1273 }
1274