2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
10 #include <sys/utsname.h>
12 #define LKC_DIRECT_LINK
15 struct symbol symbol_yes = {
18 .flags = SYMBOL_YES|SYMBOL_VALID,
22 .flags = SYMBOL_MOD|SYMBOL_VALID,
26 .flags = SYMBOL_NO|SYMBOL_VALID,
30 .flags = SYMBOL_VALID,
34 struct symbol *modules_sym;
37 void sym_add_default(struct symbol *sym, const char *def)
39 struct property *prop = prop_alloc(P_DEFAULT, sym);
41 prop->expr = expr_alloc_symbol(sym_lookup(def, 1));
49 static bool inited = false;
57 sym = sym_lookup("ARCH", 0);
59 sym->flags |= SYMBOL_AUTO;
62 sym_add_default(sym, p);
64 sym = sym_lookup("KERNELVERSION", 0);
66 sym->flags |= SYMBOL_AUTO;
67 p = getenv("KERNELVERSION");
69 sym_add_default(sym, p);
71 sym = sym_lookup("UNAME_RELEASE", 0);
73 sym->flags |= SYMBOL_AUTO;
74 sym_add_default(sym, uts.release);
77 enum symbol_type sym_get_type(struct symbol *sym)
79 enum symbol_type type = sym->type;
81 if (type == S_TRISTATE) {
82 if (sym_is_choice_value(sym) && sym->visible == yes)
84 else if (modules_val == no)
90 const char *sym_type_name(enum symbol_type type)
111 struct property *sym_get_choice_prop(struct symbol *sym)
113 struct property *prop;
115 for_all_choices(sym, prop)
120 struct property *sym_get_default_prop(struct symbol *sym)
122 struct property *prop;
124 for_all_defaults(sym, prop) {
125 prop->visible.tri = expr_calc_value(prop->visible.expr);
126 if (prop->visible.tri != no)
132 struct property *sym_get_range_prop(struct symbol *sym)
134 struct property *prop;
136 for_all_properties(sym, prop, P_RANGE) {
137 prop->visible.tri = expr_calc_value(prop->visible.expr);
138 if (prop->visible.tri != no)
144 static int sym_get_range_val(struct symbol *sym, int base)
157 return strtol(sym->curr.val, NULL, base);
160 static void sym_validate_range(struct symbol *sym)
162 struct property *prop;
176 prop = sym_get_range_prop(sym);
179 val = strtol(sym->curr.val, NULL, base);
180 val2 = sym_get_range_val(prop->expr->left.sym, base);
182 val2 = sym_get_range_val(prop->expr->right.sym, base);
186 if (sym->type == S_INT)
187 sprintf(str, "%d", val2);
189 sprintf(str, "0x%x", val2);
190 sym->curr.val = strdup(str);
193 static void sym_calc_visibility(struct symbol *sym)
195 struct property *prop;
198 /* any prompt visible? */
200 for_all_prompts(sym, prop) {
201 prop->visible.tri = expr_calc_value(prop->visible.expr);
202 tri = E_OR(tri, prop->visible.tri);
204 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no))
206 if (sym->visible != tri) {
208 sym_set_changed(sym);
210 if (sym_is_choice_value(sym))
213 if (sym->rev_dep.expr)
214 tri = expr_calc_value(sym->rev_dep.expr);
215 if (tri == mod && sym_get_type(sym) == S_BOOLEAN)
217 if (sym->rev_dep.tri != tri) {
218 sym->rev_dep.tri = tri;
219 sym_set_changed(sym);
223 static struct symbol *sym_calc_choice(struct symbol *sym)
225 struct symbol *def_sym;
226 struct property *prop;
229 /* is the user choice visible? */
230 def_sym = sym->user.val;
232 sym_calc_visibility(def_sym);
233 if (def_sym->visible != no)
237 /* any of the defaults visible? */
238 for_all_defaults(sym, prop) {
239 prop->visible.tri = expr_calc_value(prop->visible.expr);
240 if (prop->visible.tri == no)
242 def_sym = prop_get_symbol(prop);
243 sym_calc_visibility(def_sym);
244 if (def_sym->visible != no)
248 /* just get the first visible value */
249 prop = sym_get_choice_prop(sym);
250 for (e = prop->expr; e; e = e->left.expr) {
251 def_sym = e->right.sym;
252 sym_calc_visibility(def_sym);
253 if (def_sym->visible != no)
257 /* no choice? reset tristate value */
262 void sym_calc_value(struct symbol *sym)
264 struct symbol_value newval, oldval;
265 struct property *prop;
271 if (sym->flags & SYMBOL_VALID)
273 sym->flags |= SYMBOL_VALID;
281 newval = symbol_empty.curr;
285 newval = symbol_no.curr;
288 sym->curr.val = sym->name;
292 if (!sym_is_choice_value(sym))
293 sym->flags &= ~SYMBOL_WRITE;
295 sym_calc_visibility(sym);
297 /* set default if recursively called */
300 switch (sym_get_type(sym)) {
303 if (sym_is_choice_value(sym) && sym->visible == yes) {
304 prop = sym_get_choice_prop(sym);
305 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no;
306 } else if (E_OR(sym->visible, sym->rev_dep.tri) != no) {
307 sym->flags |= SYMBOL_WRITE;
308 if (sym_has_value(sym))
309 newval.tri = sym->user.tri;
310 else if (!sym_is_choice(sym)) {
311 prop = sym_get_default_prop(sym);
313 newval.tri = expr_calc_value(prop->expr);
315 newval.tri = E_OR(E_AND(newval.tri, sym->visible), sym->rev_dep.tri);
316 } else if (!sym_is_choice(sym)) {
317 prop = sym_get_default_prop(sym);
319 sym->flags |= SYMBOL_WRITE;
320 newval.tri = expr_calc_value(prop->expr);
323 if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN)
329 if (sym->visible != no) {
330 sym->flags |= SYMBOL_WRITE;
331 if (sym_has_value(sym)) {
332 newval.val = sym->user.val;
336 prop = sym_get_default_prop(sym);
338 struct symbol *ds = prop_get_symbol(prop);
340 sym->flags |= SYMBOL_WRITE;
342 newval.val = ds->curr.val;
351 if (sym_is_choice(sym) && newval.tri == yes)
352 sym->curr.val = sym_calc_choice(sym);
353 sym_validate_range(sym);
355 if (memcmp(&oldval, &sym->curr, sizeof(oldval)))
356 sym_set_changed(sym);
357 if (modules_sym == sym)
358 modules_val = modules_sym->curr.tri;
360 if (sym_is_choice(sym)) {
361 int flags = sym->flags & (SYMBOL_CHANGED | SYMBOL_WRITE);
362 prop = sym_get_choice_prop(sym);
363 for (e = prop->expr; e; e = e->left.expr) {
364 e->right.sym->flags |= flags;
365 if (flags & SYMBOL_CHANGED)
366 sym_set_changed(e->right.sym);
371 void sym_clear_all_valid(void)
376 for_all_symbols(i, sym)
377 sym->flags &= ~SYMBOL_VALID;
380 sym_calc_value(modules_sym);
383 void sym_set_changed(struct symbol *sym)
385 struct property *prop;
387 sym->flags |= SYMBOL_CHANGED;
388 for (prop = sym->prop; prop; prop = prop->next) {
390 prop->menu->flags |= MENU_CHANGED;
394 void sym_set_all_changed(void)
399 for_all_symbols(i, sym)
400 sym_set_changed(sym);
403 bool sym_tristate_within_range(struct symbol *sym, tristate val)
405 int type = sym_get_type(sym);
407 if (sym->visible == no)
410 if (type != S_BOOLEAN && type != S_TRISTATE)
413 if (type == S_BOOLEAN && val == mod)
415 if (sym->visible <= sym->rev_dep.tri)
417 if (sym_is_choice_value(sym) && sym->visible == yes)
419 return val >= sym->rev_dep.tri && val <= sym->visible;
422 bool sym_set_tristate_value(struct symbol *sym, tristate val)
424 tristate oldval = sym_get_tristate_value(sym);
426 if (oldval != val && !sym_tristate_within_range(sym, val))
429 if (sym->flags & SYMBOL_NEW) {
430 sym->flags &= ~SYMBOL_NEW;
431 sym_set_changed(sym);
434 * setting a choice value also resets the new flag of the choice
435 * symbol and all other choice values.
437 if (sym_is_choice_value(sym) && val == yes) {
438 struct symbol *cs = prop_get_symbol(sym_get_choice_prop(sym));
439 struct property *prop;
443 cs->flags &= ~SYMBOL_NEW;
444 prop = sym_get_choice_prop(cs);
445 for (e = prop->expr; e; e = e->left.expr) {
446 if (e->right.sym->visible != no)
447 e->right.sym->flags &= ~SYMBOL_NEW;
453 sym_clear_all_valid();
454 if (sym == modules_sym)
455 sym_set_all_changed();
461 tristate sym_toggle_tristate_value(struct symbol *sym)
463 tristate oldval, newval;
465 oldval = newval = sym_get_tristate_value(sym);
478 if (sym_set_tristate_value(sym, newval))
480 } while (oldval != newval);
484 bool sym_string_valid(struct symbol *sym, const char *str)
497 if (ch == '0' && *str != 0)
499 while ((ch = *str++)) {
505 if (str[0] == '0' && (str[1] == 'x' || str[1] == 'X'))
511 } while ((ch = *str++));
527 bool sym_string_within_range(struct symbol *sym, const char *str)
529 struct property *prop;
534 return sym_string_valid(sym, str);
536 if (!sym_string_valid(sym, str))
538 prop = sym_get_range_prop(sym);
541 val = strtol(str, NULL, 10);
542 return val >= sym_get_range_val(prop->expr->left.sym, 10) &&
543 val <= sym_get_range_val(prop->expr->right.sym, 10);
545 if (!sym_string_valid(sym, str))
547 prop = sym_get_range_prop(sym);
550 val = strtol(str, NULL, 16);
551 return val >= sym_get_range_val(prop->expr->left.sym, 16) &&
552 val <= sym_get_range_val(prop->expr->right.sym, 16);
557 return sym_tristate_within_range(sym, yes);
559 return sym_tristate_within_range(sym, mod);
561 return sym_tristate_within_range(sym, no);
569 bool sym_set_string_value(struct symbol *sym, const char *newval)
580 return sym_set_tristate_value(sym, yes);
582 return sym_set_tristate_value(sym, mod);
584 return sym_set_tristate_value(sym, no);
591 if (!sym_string_within_range(sym, newval))
594 if (sym->flags & SYMBOL_NEW) {
595 sym->flags &= ~SYMBOL_NEW;
596 sym_set_changed(sym);
599 oldval = sym->user.val;
600 size = strlen(newval) + 1;
601 if (sym->type == S_HEX && (newval[0] != '0' || (newval[1] != 'x' && newval[1] != 'X'))) {
603 sym->user.val = val = malloc(size);
606 } else if (!oldval || strcmp(oldval, newval))
607 sym->user.val = val = malloc(size);
612 free((void *)oldval);
613 sym_clear_all_valid();
618 const char *sym_get_string_value(struct symbol *sym)
625 val = sym_get_tristate_value(sym);
638 return (const char *)sym->curr.val;
641 bool sym_is_changable(struct symbol *sym)
643 return sym->visible > sym->rev_dep.tri;
646 struct symbol *sym_lookup(const char *name, int isconst)
648 struct symbol *symbol;
654 if (name[0] && !name[1]) {
656 case 'y': return &symbol_yes;
657 case 'm': return &symbol_mod;
658 case 'n': return &symbol_no;
661 for (ptr = name; *ptr; ptr++)
665 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) {
666 if (!strcmp(symbol->name, name)) {
667 if ((isconst && symbol->flags & SYMBOL_CONST) ||
668 (!isconst && !(symbol->flags & SYMBOL_CONST)))
672 new_name = strdup(name);
678 symbol = malloc(sizeof(*symbol));
679 memset(symbol, 0, sizeof(*symbol));
680 symbol->name = new_name;
681 symbol->type = S_UNKNOWN;
682 symbol->flags = SYMBOL_NEW;
684 symbol->flags |= SYMBOL_CONST;
686 symbol->next = symbol_hash[hash];
687 symbol_hash[hash] = symbol;
692 struct symbol *sym_find(const char *name)
694 struct symbol *symbol = NULL;
701 if (name[0] && !name[1]) {
703 case 'y': return &symbol_yes;
704 case 'm': return &symbol_mod;
705 case 'n': return &symbol_no;
708 for (ptr = name; *ptr; ptr++)
712 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) {
713 if (!strcmp(symbol->name, name) &&
714 !(symbol->flags & SYMBOL_CONST))
721 struct symbol **sym_re_search(const char *pattern)
723 struct symbol *sym, **sym_arr = NULL;
729 if (strlen(pattern) == 0)
731 if (regcomp(&re, pattern, REG_EXTENDED|REG_NOSUB|REG_ICASE))
734 for_all_symbols(i, sym) {
735 if (sym->flags & SYMBOL_CONST || !sym->name)
737 if (regexec(&re, sym->name, 0, NULL, 0))
739 if (cnt + 1 >= size) {
742 sym_arr = realloc(sym_arr, size * sizeof(struct symbol *));
748 sym_arr[cnt++] = sym;
758 struct symbol *sym_check_deps(struct symbol *sym);
760 static struct symbol *sym_check_expr_deps(struct expr *e)
769 sym = sym_check_expr_deps(e->left.expr);
772 return sym_check_expr_deps(e->right.expr);
774 return sym_check_expr_deps(e->left.expr);
777 sym = sym_check_deps(e->left.sym);
780 return sym_check_deps(e->right.sym);
782 return sym_check_deps(e->left.sym);
786 printf("Oops! How to check %d?\n", e->type);
790 struct symbol *sym_check_deps(struct symbol *sym)
793 struct property *prop;
795 if (sym->flags & SYMBOL_CHECK) {
796 printf("Warning! Found recursive dependency: %s", sym->name);
799 if (sym->flags & SYMBOL_CHECKED)
802 sym->flags |= (SYMBOL_CHECK | SYMBOL_CHECKED);
803 sym2 = sym_check_expr_deps(sym->rev_dep.expr);
807 for (prop = sym->prop; prop; prop = prop->next) {
808 if (prop->type == P_CHOICE || prop->type == P_SELECT)
810 sym2 = sym_check_expr_deps(prop->visible.expr);
813 if (prop->type != P_DEFAULT || sym_is_choice(sym))
815 sym2 = sym_check_expr_deps(prop->expr);
821 printf(" %s", sym->name);
827 sym->flags &= ~SYMBOL_CHECK;
831 struct property *prop_alloc(enum prop_type type, struct symbol *sym)
833 struct property *prop;
834 struct property **propp;
836 prop = malloc(sizeof(*prop));
837 memset(prop, 0, sizeof(*prop));
840 prop->file = current_file;
841 prop->lineno = zconf_lineno();
843 /* append property to the prop list of symbol */
845 for (propp = &sym->prop; *propp; propp = &(*propp)->next)
853 struct symbol *prop_get_symbol(struct property *prop)
855 if (prop->expr && (prop->expr->type == E_SYMBOL ||
856 prop->expr->type == E_CHOICE))
857 return prop->expr->left.sym;
861 const char *prop_get_type_name(enum prop_type type)