1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
10 #include <sys/utsname.h>
14 struct symbol symbol_yes
= {
17 .flags
= SYMBOL_CONST
|SYMBOL_VALID
,
21 .flags
= SYMBOL_CONST
|SYMBOL_VALID
,
25 .flags
= SYMBOL_CONST
|SYMBOL_VALID
,
29 .flags
= SYMBOL_VALID
,
32 struct symbol
*sym_defconfig_list
;
33 struct symbol
*modules_sym
;
36 enum symbol_type
sym_get_type(struct symbol
*sym
)
38 enum symbol_type type
= sym
->type
;
40 if (type
== S_TRISTATE
) {
41 if (sym_is_choice_value(sym
) && sym
->visible
== yes
)
43 else if (modules_val
== no
)
49 const char *sym_type_name(enum symbol_type type
)
68 struct property
*sym_get_choice_prop(struct symbol
*sym
)
70 struct property
*prop
;
72 for_all_choices(sym
, prop
)
77 static struct property
*sym_get_default_prop(struct symbol
*sym
)
79 struct property
*prop
;
81 for_all_defaults(sym
, prop
) {
82 prop
->visible
.tri
= expr_calc_value(prop
->visible
.expr
);
83 if (prop
->visible
.tri
!= no
)
89 struct property
*sym_get_range_prop(struct symbol
*sym
)
91 struct property
*prop
;
93 for_all_properties(sym
, prop
, P_RANGE
) {
94 prop
->visible
.tri
= expr_calc_value(prop
->visible
.expr
);
95 if (prop
->visible
.tri
!= no
)
101 static long long sym_get_range_val(struct symbol
*sym
, int base
)
114 return strtoll(sym
->curr
.val
, NULL
, base
);
117 static void sym_validate_range(struct symbol
*sym
)
119 struct property
*prop
;
134 prop
= sym_get_range_prop(sym
);
137 val
= strtoll(sym
->curr
.val
, NULL
, base
);
138 val2
= sym_get_range_val(prop
->expr
->left
.sym
, base
);
140 val2
= sym_get_range_val(prop
->expr
->right
.sym
, base
);
144 if (sym
->type
== S_INT
)
145 sprintf(str
, "%lld", val2
);
147 sprintf(str
, "0x%llx", val2
);
148 sym
->curr
.val
= xstrdup(str
);
151 static void sym_set_changed(struct symbol
*sym
)
153 struct property
*prop
;
155 sym
->flags
|= SYMBOL_CHANGED
;
156 for (prop
= sym
->prop
; prop
; prop
= prop
->next
) {
158 prop
->menu
->flags
|= MENU_CHANGED
;
162 static void sym_set_all_changed(void)
167 for_all_symbols(i
, sym
)
168 sym_set_changed(sym
);
171 static void sym_calc_visibility(struct symbol
*sym
)
173 struct property
*prop
;
174 struct symbol
*choice_sym
= NULL
;
177 /* any prompt visible? */
180 if (sym_is_choice_value(sym
))
181 choice_sym
= prop_get_symbol(sym_get_choice_prop(sym
));
183 for_all_prompts(sym
, prop
) {
184 prop
->visible
.tri
= expr_calc_value(prop
->visible
.expr
);
186 * Tristate choice_values with visibility 'mod' are
187 * not visible if the corresponding choice's value is
190 if (choice_sym
&& sym
->type
== S_TRISTATE
&&
191 prop
->visible
.tri
== mod
&& choice_sym
->curr
.tri
== yes
)
192 prop
->visible
.tri
= no
;
194 tri
= EXPR_OR(tri
, prop
->visible
.tri
);
196 if (tri
== mod
&& (sym
->type
!= S_TRISTATE
|| modules_val
== no
))
198 if (sym
->visible
!= tri
) {
200 sym_set_changed(sym
);
202 if (sym_is_choice_value(sym
))
204 /* defaulting to "yes" if no explicit "depends on" are given */
206 if (sym
->dir_dep
.expr
)
207 tri
= expr_calc_value(sym
->dir_dep
.expr
);
208 if (tri
== mod
&& sym_get_type(sym
) == S_BOOLEAN
)
210 if (sym
->dir_dep
.tri
!= tri
) {
211 sym
->dir_dep
.tri
= tri
;
212 sym_set_changed(sym
);
215 if (sym
->rev_dep
.expr
)
216 tri
= expr_calc_value(sym
->rev_dep
.expr
);
217 if (tri
== mod
&& sym_get_type(sym
) == S_BOOLEAN
)
219 if (sym
->rev_dep
.tri
!= tri
) {
220 sym
->rev_dep
.tri
= tri
;
221 sym_set_changed(sym
);
224 if (sym
->implied
.expr
)
225 tri
= expr_calc_value(sym
->implied
.expr
);
226 if (tri
== mod
&& sym_get_type(sym
) == S_BOOLEAN
)
228 if (sym
->implied
.tri
!= tri
) {
229 sym
->implied
.tri
= tri
;
230 sym_set_changed(sym
);
235 * Find the default symbol for a choice.
236 * First try the default values for the choice symbol
237 * Next locate the first visible choice value
238 * Return NULL if none was found
240 struct symbol
*sym_choice_default(struct symbol
*sym
)
242 struct symbol
*def_sym
;
243 struct property
*prop
;
246 /* any of the defaults visible? */
247 for_all_defaults(sym
, prop
) {
248 prop
->visible
.tri
= expr_calc_value(prop
->visible
.expr
);
249 if (prop
->visible
.tri
== no
)
251 def_sym
= prop_get_symbol(prop
);
252 if (def_sym
->visible
!= no
)
256 /* just get the first visible value */
257 prop
= sym_get_choice_prop(sym
);
258 expr_list_for_each_sym(prop
->expr
, e
, def_sym
)
259 if (def_sym
->visible
!= no
)
262 /* failed to locate any defaults */
266 static struct symbol
*sym_calc_choice(struct symbol
*sym
)
268 struct symbol
*def_sym
;
269 struct property
*prop
;
273 /* first calculate all choice values' visibilities */
275 prop
= sym_get_choice_prop(sym
);
276 expr_list_for_each_sym(prop
->expr
, e
, def_sym
) {
277 sym_calc_visibility(def_sym
);
278 if (def_sym
->visible
!= no
)
279 flags
&= def_sym
->flags
;
282 sym
->flags
&= flags
| ~SYMBOL_DEF_USER
;
284 /* is the user choice visible? */
285 def_sym
= sym
->def
[S_DEF_USER
].val
;
286 if (def_sym
&& def_sym
->visible
!= no
)
289 def_sym
= sym_choice_default(sym
);
292 /* no choice? reset tristate value */
298 static void sym_warn_unmet_dep(struct symbol
*sym
)
300 struct gstr gs
= str_new();
303 "\nWARNING: unmet direct dependencies detected for %s\n",
306 " Depends on [%c]: ",
307 sym
->dir_dep
.tri
== mod
? 'm' : 'n');
308 expr_gstr_print(sym
->dir_dep
.expr
, &gs
);
309 str_printf(&gs
, "\n");
311 expr_gstr_print_revdep(sym
->rev_dep
.expr
, &gs
, yes
,
312 " Selected by [y]:\n");
313 expr_gstr_print_revdep(sym
->rev_dep
.expr
, &gs
, mod
,
314 " Selected by [m]:\n");
316 fputs(str_get(&gs
), stderr
);
319 void sym_calc_value(struct symbol
*sym
)
321 struct symbol_value newval
, oldval
;
322 struct property
*prop
;
328 if (sym
->flags
& SYMBOL_VALID
)
331 if (sym_is_choice_value(sym
) &&
332 sym
->flags
& SYMBOL_NEED_SET_CHOICE_VALUES
) {
333 sym
->flags
&= ~SYMBOL_NEED_SET_CHOICE_VALUES
;
334 prop
= sym_get_choice_prop(sym
);
335 sym_calc_value(prop_get_symbol(prop
));
338 sym
->flags
|= SYMBOL_VALID
;
346 newval
= symbol_empty
.curr
;
350 newval
= symbol_no
.curr
;
353 sym
->curr
.val
= sym
->name
;
357 sym
->flags
&= ~SYMBOL_WRITE
;
359 sym_calc_visibility(sym
);
361 if (sym
->visible
!= no
)
362 sym
->flags
|= SYMBOL_WRITE
;
364 /* set default if recursively called */
367 switch (sym_get_type(sym
)) {
370 if (sym_is_choice_value(sym
) && sym
->visible
== yes
) {
371 prop
= sym_get_choice_prop(sym
);
372 newval
.tri
= (prop_get_symbol(prop
)->curr
.val
== sym
) ? yes
: no
;
374 if (sym
->visible
!= no
) {
375 /* if the symbol is visible use the user value
376 * if available, otherwise try the default value
378 if (sym_has_value(sym
)) {
379 newval
.tri
= EXPR_AND(sym
->def
[S_DEF_USER
].tri
,
384 if (sym
->rev_dep
.tri
!= no
)
385 sym
->flags
|= SYMBOL_WRITE
;
386 if (!sym_is_choice(sym
)) {
387 prop
= sym_get_default_prop(sym
);
389 newval
.tri
= EXPR_AND(expr_calc_value(prop
->expr
),
391 if (newval
.tri
!= no
)
392 sym
->flags
|= SYMBOL_WRITE
;
394 if (sym
->implied
.tri
!= no
) {
395 sym
->flags
|= SYMBOL_WRITE
;
396 newval
.tri
= EXPR_OR(newval
.tri
, sym
->implied
.tri
);
397 newval
.tri
= EXPR_AND(newval
.tri
,
402 if (sym
->dir_dep
.tri
< sym
->rev_dep
.tri
)
403 sym_warn_unmet_dep(sym
);
404 newval
.tri
= EXPR_OR(newval
.tri
, sym
->rev_dep
.tri
);
406 if (newval
.tri
== mod
&& sym_get_type(sym
) == S_BOOLEAN
)
412 if (sym
->visible
!= no
&& sym_has_value(sym
)) {
413 newval
.val
= sym
->def
[S_DEF_USER
].val
;
416 prop
= sym_get_default_prop(sym
);
418 struct symbol
*ds
= prop_get_symbol(prop
);
420 sym
->flags
|= SYMBOL_WRITE
;
422 newval
.val
= ds
->curr
.val
;
431 if (sym_is_choice(sym
) && newval
.tri
== yes
)
432 sym
->curr
.val
= sym_calc_choice(sym
);
433 sym_validate_range(sym
);
435 if (memcmp(&oldval
, &sym
->curr
, sizeof(oldval
))) {
436 sym_set_changed(sym
);
437 if (modules_sym
== sym
) {
438 sym_set_all_changed();
439 modules_val
= modules_sym
->curr
.tri
;
443 if (sym_is_choice(sym
)) {
444 struct symbol
*choice_sym
;
446 prop
= sym_get_choice_prop(sym
);
447 expr_list_for_each_sym(prop
->expr
, e
, choice_sym
) {
448 if ((sym
->flags
& SYMBOL_WRITE
) &&
449 choice_sym
->visible
!= no
)
450 choice_sym
->flags
|= SYMBOL_WRITE
;
451 if (sym
->flags
& SYMBOL_CHANGED
)
452 sym_set_changed(choice_sym
);
456 if (sym
->flags
& SYMBOL_NO_WRITE
)
457 sym
->flags
&= ~SYMBOL_WRITE
;
459 if (sym
->flags
& SYMBOL_NEED_SET_CHOICE_VALUES
)
460 set_all_choice_values(sym
);
463 void sym_clear_all_valid(void)
468 for_all_symbols(i
, sym
)
469 sym
->flags
&= ~SYMBOL_VALID
;
470 sym_add_change_count(1);
471 sym_calc_value(modules_sym
);
474 bool sym_tristate_within_range(struct symbol
*sym
, tristate val
)
476 int type
= sym_get_type(sym
);
478 if (sym
->visible
== no
)
481 if (type
!= S_BOOLEAN
&& type
!= S_TRISTATE
)
484 if (type
== S_BOOLEAN
&& val
== mod
)
486 if (sym
->visible
<= sym
->rev_dep
.tri
)
488 if (sym_is_choice_value(sym
) && sym
->visible
== yes
)
490 return val
>= sym
->rev_dep
.tri
&& val
<= sym
->visible
;
493 bool sym_set_tristate_value(struct symbol
*sym
, tristate val
)
495 tristate oldval
= sym_get_tristate_value(sym
);
497 if (oldval
!= val
&& !sym_tristate_within_range(sym
, val
))
500 if (!(sym
->flags
& SYMBOL_DEF_USER
)) {
501 sym
->flags
|= SYMBOL_DEF_USER
;
502 sym_set_changed(sym
);
505 * setting a choice value also resets the new flag of the choice
506 * symbol and all other choice values.
508 if (sym_is_choice_value(sym
) && val
== yes
) {
509 struct symbol
*cs
= prop_get_symbol(sym_get_choice_prop(sym
));
510 struct property
*prop
;
513 cs
->def
[S_DEF_USER
].val
= sym
;
514 cs
->flags
|= SYMBOL_DEF_USER
;
515 prop
= sym_get_choice_prop(cs
);
516 for (e
= prop
->expr
; e
; e
= e
->left
.expr
) {
517 if (e
->right
.sym
->visible
!= no
)
518 e
->right
.sym
->flags
|= SYMBOL_DEF_USER
;
522 sym
->def
[S_DEF_USER
].tri
= val
;
524 sym_clear_all_valid();
529 tristate
sym_toggle_tristate_value(struct symbol
*sym
)
531 tristate oldval
, newval
;
533 oldval
= newval
= sym_get_tristate_value(sym
);
546 if (sym_set_tristate_value(sym
, newval
))
548 } while (oldval
!= newval
);
552 bool sym_string_valid(struct symbol
*sym
, const char *str
)
565 if (ch
== '0' && *str
!= 0)
567 while ((ch
= *str
++)) {
573 if (str
[0] == '0' && (str
[1] == 'x' || str
[1] == 'X'))
579 } while ((ch
= *str
++));
595 bool sym_string_within_range(struct symbol
*sym
, const char *str
)
597 struct property
*prop
;
602 return sym_string_valid(sym
, str
);
604 if (!sym_string_valid(sym
, str
))
606 prop
= sym_get_range_prop(sym
);
609 val
= strtoll(str
, NULL
, 10);
610 return val
>= sym_get_range_val(prop
->expr
->left
.sym
, 10) &&
611 val
<= sym_get_range_val(prop
->expr
->right
.sym
, 10);
613 if (!sym_string_valid(sym
, str
))
615 prop
= sym_get_range_prop(sym
);
618 val
= strtoll(str
, NULL
, 16);
619 return val
>= sym_get_range_val(prop
->expr
->left
.sym
, 16) &&
620 val
<= sym_get_range_val(prop
->expr
->right
.sym
, 16);
625 return sym_tristate_within_range(sym
, yes
);
627 return sym_tristate_within_range(sym
, mod
);
629 return sym_tristate_within_range(sym
, no
);
637 bool sym_set_string_value(struct symbol
*sym
, const char *newval
)
648 return sym_set_tristate_value(sym
, yes
);
650 return sym_set_tristate_value(sym
, mod
);
652 return sym_set_tristate_value(sym
, no
);
659 if (!sym_string_within_range(sym
, newval
))
662 if (!(sym
->flags
& SYMBOL_DEF_USER
)) {
663 sym
->flags
|= SYMBOL_DEF_USER
;
664 sym_set_changed(sym
);
667 oldval
= sym
->def
[S_DEF_USER
].val
;
668 size
= strlen(newval
) + 1;
669 if (sym
->type
== S_HEX
&& (newval
[0] != '0' || (newval
[1] != 'x' && newval
[1] != 'X'))) {
671 sym
->def
[S_DEF_USER
].val
= val
= xmalloc(size
);
674 } else if (!oldval
|| strcmp(oldval
, newval
))
675 sym
->def
[S_DEF_USER
].val
= val
= xmalloc(size
);
680 free((void *)oldval
);
681 sym_clear_all_valid();
687 * Find the default value associated to a symbol.
688 * For tristate symbol handle the modules=n case
689 * in which case "m" becomes "y".
690 * If the symbol does not have any default then fallback
691 * to the fixed default values.
693 const char *sym_get_string_default(struct symbol
*sym
)
695 struct property
*prop
;
700 sym_calc_visibility(sym
);
701 sym_calc_value(modules_sym
);
702 val
= symbol_no
.curr
.tri
;
703 str
= symbol_empty
.curr
.val
;
705 /* If symbol has a default value look it up */
706 prop
= sym_get_default_prop(sym
);
711 /* The visibility may limit the value from yes => mod */
712 val
= EXPR_AND(expr_calc_value(prop
->expr
), prop
->visible
.tri
);
716 * The following fails to handle the situation
717 * where a default value is further limited by
720 ds
= prop_get_symbol(prop
);
723 str
= (const char *)ds
->curr
.val
;
728 /* Handle select statements */
729 val
= EXPR_OR(val
, sym
->rev_dep
.tri
);
731 /* transpose mod to yes if modules are not enabled */
733 if (!sym_is_choice_value(sym
) && modules_sym
->curr
.tri
== no
)
736 /* transpose mod to yes if type is bool */
737 if (sym
->type
== S_BOOLEAN
&& val
== mod
)
740 /* adjust the default value if this symbol is implied by another */
741 if (val
< sym
->implied
.tri
)
742 val
= sym
->implied
.tri
;
749 case mod
: return "m";
750 case yes
: return "y";
763 const char *sym_get_string_value(struct symbol
*sym
)
770 val
= sym_get_tristate_value(sym
);
775 sym_calc_value(modules_sym
);
776 return (modules_sym
->curr
.tri
== no
) ? "n" : "m";
784 return (const char *)sym
->curr
.val
;
787 bool sym_is_changeable(struct symbol
*sym
)
789 return sym
->visible
> sym
->rev_dep
.tri
;
792 static unsigned strhash(const char *s
)
795 unsigned hash
= 2166136261U;
797 hash
= (hash
^ *s
) * 0x01000193;
801 struct symbol
*sym_lookup(const char *name
, int flags
)
803 struct symbol
*symbol
;
808 if (name
[0] && !name
[1]) {
810 case 'y': return &symbol_yes
;
811 case 'm': return &symbol_mod
;
812 case 'n': return &symbol_no
;
815 hash
= strhash(name
) % SYMBOL_HASHSIZE
;
817 for (symbol
= symbol_hash
[hash
]; symbol
; symbol
= symbol
->next
) {
819 !strcmp(symbol
->name
, name
) &&
820 (flags
? symbol
->flags
& flags
821 : !(symbol
->flags
& (SYMBOL_CONST
|SYMBOL_CHOICE
))))
824 new_name
= xstrdup(name
);
830 symbol
= xmalloc(sizeof(*symbol
));
831 memset(symbol
, 0, sizeof(*symbol
));
832 symbol
->name
= new_name
;
833 symbol
->type
= S_UNKNOWN
;
834 symbol
->flags
|= flags
;
836 symbol
->next
= symbol_hash
[hash
];
837 symbol_hash
[hash
] = symbol
;
842 struct symbol
*sym_find(const char *name
)
844 struct symbol
*symbol
= NULL
;
850 if (name
[0] && !name
[1]) {
852 case 'y': return &symbol_yes
;
853 case 'm': return &symbol_mod
;
854 case 'n': return &symbol_no
;
857 hash
= strhash(name
) % SYMBOL_HASHSIZE
;
859 for (symbol
= symbol_hash
[hash
]; symbol
; symbol
= symbol
->next
) {
861 !strcmp(symbol
->name
, name
) &&
862 !(symbol
->flags
& SYMBOL_CONST
))
869 const char *sym_escape_string_value(const char *in
)
876 reslen
= strlen(in
) + strlen("\"\"") + 1;
880 l
= strcspn(p
, "\"\\");
890 res
= xmalloc(reslen
);
897 l
= strcspn(p
, "\"\\");
905 strncat(res
, p
++, 1);
917 /* Compare matched symbols as thus:
918 * - first, symbols that match exactly
919 * - then, alphabetical sort
921 static int sym_rel_comp(const void *sym1
, const void *sym2
)
923 const struct sym_match
*s1
= sym1
;
924 const struct sym_match
*s2
= sym2
;
928 * - if matched length on symbol s1 is the length of that symbol,
929 * then this symbol should come first;
930 * - if matched length on symbol s2 is the length of that symbol,
931 * then this symbol should come first.
932 * Note: since the search can be a regexp, both symbols may match
933 * exactly; if this is the case, we can't decide which comes first,
934 * and we fallback to sorting alphabetically.
936 exact1
= (s1
->eo
- s1
->so
) == strlen(s1
->sym
->name
);
937 exact2
= (s2
->eo
- s2
->so
) == strlen(s2
->sym
->name
);
938 if (exact1
&& !exact2
)
940 if (!exact1
&& exact2
)
943 /* As a fallback, sort symbols alphabetically */
944 return strcmp(s1
->sym
->name
, s2
->sym
->name
);
947 struct symbol
**sym_re_search(const char *pattern
)
949 struct symbol
*sym
, **sym_arr
= NULL
;
950 struct sym_match
*sym_match_arr
= NULL
;
957 if (strlen(pattern
) == 0)
959 if (regcomp(&re
, pattern
, REG_EXTENDED
|REG_ICASE
))
962 for_all_symbols(i
, sym
) {
963 if (sym
->flags
& SYMBOL_CONST
|| !sym
->name
)
965 if (regexec(&re
, sym
->name
, 1, match
, 0))
970 tmp
= realloc(sym_match_arr
, size
* sizeof(struct sym_match
));
972 goto sym_re_search_free
;
976 /* As regexec returned 0, we know we have a match, so
977 * we can use match[0].rm_[se]o without further checks
979 sym_match_arr
[cnt
].so
= match
[0].rm_so
;
980 sym_match_arr
[cnt
].eo
= match
[0].rm_eo
;
981 sym_match_arr
[cnt
++].sym
= sym
;
984 qsort(sym_match_arr
, cnt
, sizeof(struct sym_match
), sym_rel_comp
);
985 sym_arr
= malloc((cnt
+1) * sizeof(struct symbol
*));
987 goto sym_re_search_free
;
988 for (i
= 0; i
< cnt
; i
++)
989 sym_arr
[i
] = sym_match_arr
[i
].sym
;
993 /* sym_match_arr can be NULL if no match, but free(NULL) is OK */
1001 * When we check for recursive dependencies we use a stack to save
1002 * current state so we can print out relevant info to user.
1003 * The entries are located on the call stack so no need to free memory.
1004 * Note insert() remove() must always match to properly clear the stack.
1006 static struct dep_stack
{
1007 struct dep_stack
*prev
, *next
;
1009 struct property
*prop
;
1013 static void dep_stack_insert(struct dep_stack
*stack
, struct symbol
*sym
)
1015 memset(stack
, 0, sizeof(*stack
));
1017 check_top
->next
= stack
;
1018 stack
->prev
= check_top
;
1023 static void dep_stack_remove(void)
1025 check_top
= check_top
->prev
;
1027 check_top
->next
= NULL
;
1031 * Called when we have detected a recursive dependency.
1032 * check_top point to the top of the stact so we use
1033 * the ->prev pointer to locate the bottom of the stack.
1035 static void sym_check_print_recursive(struct symbol
*last_sym
)
1037 struct dep_stack
*stack
;
1038 struct symbol
*sym
, *next_sym
;
1039 struct menu
*menu
= NULL
;
1040 struct property
*prop
;
1041 struct dep_stack cv_stack
;
1043 if (sym_is_choice_value(last_sym
)) {
1044 dep_stack_insert(&cv_stack
, last_sym
);
1045 last_sym
= prop_get_symbol(sym_get_choice_prop(last_sym
));
1048 for (stack
= check_top
; stack
!= NULL
; stack
= stack
->prev
)
1049 if (stack
->sym
== last_sym
)
1052 fprintf(stderr
, "unexpected recursive dependency error\n");
1056 for (; stack
; stack
= stack
->next
) {
1058 next_sym
= stack
->next
? stack
->next
->sym
: last_sym
;
1061 prop
= stack
->sym
->prop
;
1063 /* for choice values find the menu entry (used below) */
1064 if (sym_is_choice(sym
) || sym_is_choice_value(sym
)) {
1065 for (prop
= sym
->prop
; prop
; prop
= prop
->next
) {
1071 if (stack
->sym
== last_sym
)
1072 fprintf(stderr
, "%s:%d:error: recursive dependency detected!\n",
1073 prop
->file
->name
, prop
->lineno
);
1075 if (sym_is_choice(sym
)) {
1076 fprintf(stderr
, "%s:%d:\tchoice %s contains symbol %s\n",
1077 menu
->file
->name
, menu
->lineno
,
1078 sym
->name
? sym
->name
: "<choice>",
1079 next_sym
->name
? next_sym
->name
: "<choice>");
1080 } else if (sym_is_choice_value(sym
)) {
1081 fprintf(stderr
, "%s:%d:\tsymbol %s is part of choice %s\n",
1082 menu
->file
->name
, menu
->lineno
,
1083 sym
->name
? sym
->name
: "<choice>",
1084 next_sym
->name
? next_sym
->name
: "<choice>");
1085 } else if (stack
->expr
== &sym
->dir_dep
.expr
) {
1086 fprintf(stderr
, "%s:%d:\tsymbol %s depends on %s\n",
1087 prop
->file
->name
, prop
->lineno
,
1088 sym
->name
? sym
->name
: "<choice>",
1089 next_sym
->name
? next_sym
->name
: "<choice>");
1090 } else if (stack
->expr
== &sym
->rev_dep
.expr
) {
1091 fprintf(stderr
, "%s:%d:\tsymbol %s is selected by %s\n",
1092 prop
->file
->name
, prop
->lineno
,
1093 sym
->name
? sym
->name
: "<choice>",
1094 next_sym
->name
? next_sym
->name
: "<choice>");
1095 } else if (stack
->expr
== &sym
->implied
.expr
) {
1096 fprintf(stderr
, "%s:%d:\tsymbol %s is implied by %s\n",
1097 prop
->file
->name
, prop
->lineno
,
1098 sym
->name
? sym
->name
: "<choice>",
1099 next_sym
->name
? next_sym
->name
: "<choice>");
1100 } else if (stack
->expr
) {
1101 fprintf(stderr
, "%s:%d:\tsymbol %s %s value contains %s\n",
1102 prop
->file
->name
, prop
->lineno
,
1103 sym
->name
? sym
->name
: "<choice>",
1104 prop_get_type_name(prop
->type
),
1105 next_sym
->name
? next_sym
->name
: "<choice>");
1107 fprintf(stderr
, "%s:%d:\tsymbol %s %s is visible depending on %s\n",
1108 prop
->file
->name
, prop
->lineno
,
1109 sym
->name
? sym
->name
: "<choice>",
1110 prop_get_type_name(prop
->type
),
1111 next_sym
->name
? next_sym
->name
: "<choice>");
1116 "For a resolution refer to Documentation/kbuild/kconfig-language.rst\n"
1117 "subsection \"Kconfig recursive dependency limitations\"\n"
1120 if (check_top
== &cv_stack
)
1124 static struct symbol
*sym_check_expr_deps(struct expr
*e
)
1133 sym
= sym_check_expr_deps(e
->left
.expr
);
1136 return sym_check_expr_deps(e
->right
.expr
);
1138 return sym_check_expr_deps(e
->left
.expr
);
1145 sym
= sym_check_deps(e
->left
.sym
);
1148 return sym_check_deps(e
->right
.sym
);
1150 return sym_check_deps(e
->left
.sym
);
1154 fprintf(stderr
, "Oops! How to check %d?\n", e
->type
);
1158 /* return NULL when dependencies are OK */
1159 static struct symbol
*sym_check_sym_deps(struct symbol
*sym
)
1161 struct symbol
*sym2
;
1162 struct property
*prop
;
1163 struct dep_stack stack
;
1165 dep_stack_insert(&stack
, sym
);
1167 stack
.expr
= &sym
->dir_dep
.expr
;
1168 sym2
= sym_check_expr_deps(sym
->dir_dep
.expr
);
1172 stack
.expr
= &sym
->rev_dep
.expr
;
1173 sym2
= sym_check_expr_deps(sym
->rev_dep
.expr
);
1177 stack
.expr
= &sym
->implied
.expr
;
1178 sym2
= sym_check_expr_deps(sym
->implied
.expr
);
1184 for (prop
= sym
->prop
; prop
; prop
= prop
->next
) {
1185 if (prop
->type
== P_CHOICE
|| prop
->type
== P_SELECT
||
1186 prop
->type
== P_IMPLY
)
1189 sym2
= sym_check_expr_deps(prop
->visible
.expr
);
1192 if (prop
->type
!= P_DEFAULT
|| sym_is_choice(sym
))
1194 stack
.expr
= &prop
->expr
;
1195 sym2
= sym_check_expr_deps(prop
->expr
);
1207 static struct symbol
*sym_check_choice_deps(struct symbol
*choice
)
1209 struct symbol
*sym
, *sym2
;
1210 struct property
*prop
;
1212 struct dep_stack stack
;
1214 dep_stack_insert(&stack
, choice
);
1216 prop
= sym_get_choice_prop(choice
);
1217 expr_list_for_each_sym(prop
->expr
, e
, sym
)
1218 sym
->flags
|= (SYMBOL_CHECK
| SYMBOL_CHECKED
);
1220 choice
->flags
|= (SYMBOL_CHECK
| SYMBOL_CHECKED
);
1221 sym2
= sym_check_sym_deps(choice
);
1222 choice
->flags
&= ~SYMBOL_CHECK
;
1226 expr_list_for_each_sym(prop
->expr
, e
, sym
) {
1227 sym2
= sym_check_sym_deps(sym
);
1232 expr_list_for_each_sym(prop
->expr
, e
, sym
)
1233 sym
->flags
&= ~SYMBOL_CHECK
;
1235 if (sym2
&& sym_is_choice_value(sym2
) &&
1236 prop_get_symbol(sym_get_choice_prop(sym2
)) == choice
)
1244 struct symbol
*sym_check_deps(struct symbol
*sym
)
1246 struct symbol
*sym2
;
1247 struct property
*prop
;
1249 if (sym
->flags
& SYMBOL_CHECK
) {
1250 sym_check_print_recursive(sym
);
1253 if (sym
->flags
& SYMBOL_CHECKED
)
1256 if (sym_is_choice_value(sym
)) {
1257 struct dep_stack stack
;
1259 /* for choice groups start the check with main choice symbol */
1260 dep_stack_insert(&stack
, sym
);
1261 prop
= sym_get_choice_prop(sym
);
1262 sym2
= sym_check_deps(prop_get_symbol(prop
));
1264 } else if (sym_is_choice(sym
)) {
1265 sym2
= sym_check_choice_deps(sym
);
1267 sym
->flags
|= (SYMBOL_CHECK
| SYMBOL_CHECKED
);
1268 sym2
= sym_check_sym_deps(sym
);
1269 sym
->flags
&= ~SYMBOL_CHECK
;
1275 struct symbol
*prop_get_symbol(struct property
*prop
)
1277 if (prop
->expr
&& (prop
->expr
->type
== E_SYMBOL
||
1278 prop
->expr
->type
== E_LIST
))
1279 return prop
->expr
->left
.sym
;
1283 const char *prop_get_type_name(enum prop_type type
)