2005-04-17 06:20:36 +08:00
|
|
|
%{
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
|
|
|
|
* Released under the terms of the GNU GPL v2.0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2005-11-09 13:34:51 +08:00
|
|
|
#include "lkc.h"
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt)
|
|
|
|
|
|
|
|
#define PRINTD 0x0001
|
|
|
|
#define DEBUG_PARSE 0x0002
|
|
|
|
|
|
|
|
int cdebug = PRINTD;
|
|
|
|
|
2018-01-11 23:50:50 +08:00
|
|
|
int yylex(void);
|
|
|
|
static void yyerror(const char *err);
|
2005-04-17 06:20:36 +08:00
|
|
|
static void zconfprint(const char *err, ...);
|
2005-11-09 13:34:53 +08:00
|
|
|
static void zconf_error(const char *err, ...);
|
2011-05-05 09:14:44 +08:00
|
|
|
static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-01-14 00:02:44 +08:00
|
|
|
struct symbol *symbol_hash[SYMBOL_HASHSIZE];
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
static struct menu *current_menu, *current_entry;
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union
|
|
|
|
{
|
|
|
|
char *string;
|
2005-11-09 13:34:53 +08:00
|
|
|
struct file *file;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct symbol *symbol;
|
|
|
|
struct expr *expr;
|
|
|
|
struct menu *menu;
|
2011-05-05 09:14:44 +08:00
|
|
|
const struct kconf_id *id;
|
2018-12-11 19:00:59 +08:00
|
|
|
enum symbol_type type;
|
2018-05-28 17:21:50 +08:00
|
|
|
enum variable_flavor flavor;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2005-11-09 13:34:52 +08:00
|
|
|
%token <id>T_MAINMENU
|
|
|
|
%token <id>T_MENU
|
|
|
|
%token <id>T_ENDMENU
|
|
|
|
%token <id>T_SOURCE
|
|
|
|
%token <id>T_CHOICE
|
|
|
|
%token <id>T_ENDCHOICE
|
|
|
|
%token <id>T_COMMENT
|
|
|
|
%token <id>T_CONFIG
|
|
|
|
%token <id>T_MENUCONFIG
|
|
|
|
%token <id>T_HELP
|
2005-04-17 06:20:36 +08:00
|
|
|
%token <string> T_HELPTEXT
|
2005-11-09 13:34:52 +08:00
|
|
|
%token <id>T_IF
|
|
|
|
%token <id>T_ENDIF
|
|
|
|
%token <id>T_DEPENDS
|
|
|
|
%token <id>T_OPTIONAL
|
|
|
|
%token <id>T_PROMPT
|
|
|
|
%token <id>T_SELECT
|
2016-11-11 13:10:05 +08:00
|
|
|
%token <id>T_IMPLY
|
2005-11-09 13:34:52 +08:00
|
|
|
%token <id>T_RANGE
|
2010-11-07 05:30:23 +08:00
|
|
|
%token <id>T_VISIBLE
|
2005-11-09 13:34:52 +08:00
|
|
|
%token <id>T_ON
|
2005-04-17 06:20:36 +08:00
|
|
|
%token <string> T_WORD
|
|
|
|
%token <string> T_WORD_QUOTE
|
2018-12-11 19:01:00 +08:00
|
|
|
%token T_ALLNOCONFIG_Y
|
2018-12-11 19:00:59 +08:00
|
|
|
%token T_BOOL
|
2005-04-17 06:20:36 +08:00
|
|
|
%token T_CLOSE_PAREN
|
2018-12-11 19:01:01 +08:00
|
|
|
%token T_COLON_EQUAL
|
2018-12-11 19:00:59 +08:00
|
|
|
%token T_DEFAULT
|
2018-12-11 19:01:00 +08:00
|
|
|
%token T_DEFCONFIG_LIST
|
2018-12-11 19:00:59 +08:00
|
|
|
%token T_DEF_BOOL
|
|
|
|
%token T_DEF_TRISTATE
|
|
|
|
%token T_HEX
|
|
|
|
%token T_INT
|
2018-12-11 19:01:00 +08:00
|
|
|
%token T_MODULES
|
2005-04-17 06:20:36 +08:00
|
|
|
%token T_OPEN_PAREN
|
2018-12-11 19:01:00 +08:00
|
|
|
%token T_OPTION
|
2018-12-11 19:01:01 +08:00
|
|
|
%token T_PLUS_EQUAL
|
2018-12-11 19:00:59 +08:00
|
|
|
%token T_STRING
|
|
|
|
%token T_TRISTATE
|
2005-11-09 13:34:52 +08:00
|
|
|
%token T_EOL
|
kconfig: support user-defined function and recursively expanded variable
Now, we got a basic ability to test compiler capability in Kconfig.
config CC_HAS_STACKPROTECTOR
def_bool $(shell,($(CC) -Werror -fstack-protector -E -x c /dev/null -o /dev/null 2>/dev/null) && echo y || echo n)
This works, but it is ugly to repeat this long boilerplate.
We want to describe like this:
config CC_HAS_STACKPROTECTOR
bool
default $(cc-option,-fstack-protector)
It is straight-forward to add a new function, but I do not like to
hard-code specialized functions like that. Hence, here is another
feature, user-defined function. This works as a textual shorthand
with parameterization.
A user-defined function is defined by using the = operator, and can
be referenced in the same way as built-in functions. A user-defined
function in Make is referenced like $(call my-func,arg1,arg2), but I
omitted the 'call' to make the syntax shorter.
The definition of a user-defined function contains $(1), $(2), etc.
in its body to reference the parameters. It is grammatically valid
to pass more or fewer arguments when calling it. We already exploit
this feature in our makefiles; scripts/Kbuild.include defines cc-option
which takes two arguments at most, but most of the callers pass only
one argument.
By the way, a variable is supported as a subset of this feature since
a variable is "a user-defined function with zero argument". In this
context, I mean "variable" as recursively expanded variable. I will
add a different flavored variable in the next commit.
The code above can be written as follows:
[Example Code]
success = $(shell,($(1)) >/dev/null 2>&1 && echo y || echo n)
cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null)
config CC_HAS_STACKPROTECTOR
def_bool $(cc-option,-fstack-protector)
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_CC_HAS_STACKPROTECTOR=y
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-05-28 17:21:49 +08:00
|
|
|
%token <string> T_ASSIGN_VAL
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
%left T_OR
|
|
|
|
%left T_AND
|
|
|
|
%left T_EQUAL T_UNEQUAL
|
2015-06-15 20:00:21 +08:00
|
|
|
%left T_LESS T_LESS_EQUAL T_GREATER T_GREATER_EQUAL
|
2005-04-17 06:20:36 +08:00
|
|
|
%nonassoc T_NOT
|
|
|
|
|
|
|
|
%type <string> prompt
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
%type <symbol> nonconst_symbol
|
2005-04-17 06:20:36 +08:00
|
|
|
%type <symbol> symbol
|
2018-12-11 19:00:59 +08:00
|
|
|
%type <type> type logic_type default
|
2005-04-17 06:20:36 +08:00
|
|
|
%type <expr> expr
|
|
|
|
%type <expr> if_expr
|
2005-11-09 13:34:53 +08:00
|
|
|
%type <id> end
|
|
|
|
%type <menu> if_entry menu_entry choice_entry
|
2018-12-11 19:01:00 +08:00
|
|
|
%type <string> word_opt assign_val
|
2018-12-11 19:01:01 +08:00
|
|
|
%type <flavor> assign_op
|
2005-11-09 13:34:53 +08:00
|
|
|
|
|
|
|
%destructor {
|
|
|
|
fprintf(stderr, "%s:%d: missing end statement for this entry\n",
|
|
|
|
$$->file->name, $$->lineno);
|
|
|
|
if (current_menu == $$)
|
|
|
|
menu_end_menu();
|
|
|
|
} if_entry menu_entry choice_entry
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-10-16 02:03:20 +08:00
|
|
|
%{
|
2017-10-05 11:06:48 +08:00
|
|
|
/* Include kconf_id.c here so it can see the token constants. */
|
2017-08-20 01:17:02 +08:00
|
|
|
#include "kconf_id.c"
|
2009-10-16 02:03:20 +08:00
|
|
|
%}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
%%
|
2018-12-11 19:00:49 +08:00
|
|
|
input: mainmenu_stmt stmt_list | stmt_list;
|
2017-10-09 01:11:21 +08:00
|
|
|
|
|
|
|
/* mainmenu entry */
|
|
|
|
|
2018-08-09 14:47:06 +08:00
|
|
|
mainmenu_stmt: T_MAINMENU prompt T_EOL
|
2017-10-09 01:11:21 +08:00
|
|
|
{
|
|
|
|
menu_add_prompt(P_MENU, $2, NULL);
|
|
|
|
};
|
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
stmt_list:
|
|
|
|
/* empty */
|
|
|
|
| stmt_list common_stmt
|
|
|
|
| stmt_list choice_stmt
|
|
|
|
| stmt_list menu_stmt
|
|
|
|
| stmt_list T_WORD error T_EOL { zconf_error("unknown statement \"%s\"", $2); }
|
|
|
|
| stmt_list error T_EOL { zconf_error("invalid statement"); }
|
2005-04-17 06:20:36 +08:00
|
|
|
;
|
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
common_stmt:
|
2018-12-11 19:00:49 +08:00
|
|
|
if_stmt
|
2005-04-17 06:20:36 +08:00
|
|
|
| comment_stmt
|
|
|
|
| config_stmt
|
|
|
|
| menuconfig_stmt
|
|
|
|
| source_stmt
|
kconfig: support user-defined function and recursively expanded variable
Now, we got a basic ability to test compiler capability in Kconfig.
config CC_HAS_STACKPROTECTOR
def_bool $(shell,($(CC) -Werror -fstack-protector -E -x c /dev/null -o /dev/null 2>/dev/null) && echo y || echo n)
This works, but it is ugly to repeat this long boilerplate.
We want to describe like this:
config CC_HAS_STACKPROTECTOR
bool
default $(cc-option,-fstack-protector)
It is straight-forward to add a new function, but I do not like to
hard-code specialized functions like that. Hence, here is another
feature, user-defined function. This works as a textual shorthand
with parameterization.
A user-defined function is defined by using the = operator, and can
be referenced in the same way as built-in functions. A user-defined
function in Make is referenced like $(call my-func,arg1,arg2), but I
omitted the 'call' to make the syntax shorter.
The definition of a user-defined function contains $(1), $(2), etc.
in its body to reference the parameters. It is grammatically valid
to pass more or fewer arguments when calling it. We already exploit
this feature in our makefiles; scripts/Kbuild.include defines cc-option
which takes two arguments at most, but most of the callers pass only
one argument.
By the way, a variable is supported as a subset of this feature since
a variable is "a user-defined function with zero argument". In this
context, I mean "variable" as recursively expanded variable. I will
add a different flavored variable in the next commit.
The code above can be written as follows:
[Example Code]
success = $(shell,($(1)) >/dev/null 2>&1 && echo y || echo n)
cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null)
config CC_HAS_STACKPROTECTOR
def_bool $(cc-option,-fstack-protector)
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_CC_HAS_STACKPROTECTOR=y
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-05-28 17:21:49 +08:00
|
|
|
| assignment_stmt
|
2005-11-09 13:34:53 +08:00
|
|
|
;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* config/menuconfig entry */
|
|
|
|
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
config_entry_start: T_CONFIG nonconst_symbol T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
$2->flags |= SYMBOL_OPTIONAL;
|
|
|
|
menu_add_entry($2);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:config %s\n", zconf_curname(), zconf_lineno(), $2->name);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
config_stmt: config_entry_start config_option_list
|
|
|
|
{
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endconfig\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
menuconfig_entry_start: T_MENUCONFIG nonconst_symbol T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
$2->flags |= SYMBOL_OPTIONAL;
|
|
|
|
menu_add_entry($2);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:menuconfig %s\n", zconf_curname(), zconf_lineno(), $2->name);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
menuconfig_stmt: menuconfig_entry_start config_option_list
|
|
|
|
{
|
|
|
|
if (current_entry->prompt)
|
|
|
|
current_entry->prompt->type = P_MENU;
|
|
|
|
else
|
|
|
|
zconfprint("warning: menuconfig statement without prompt");
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endconfig\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
|
|
|
config_option_list:
|
|
|
|
/* empty */
|
|
|
|
| config_option_list config_option
|
|
|
|
| config_option_list depends
|
|
|
|
| config_option_list help
|
|
|
|
;
|
|
|
|
|
2018-12-11 19:00:59 +08:00
|
|
|
config_option: type prompt_stmt_opt T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2018-12-11 19:00:59 +08:00
|
|
|
menu_set_type($1);
|
2005-11-09 13:34:52 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
|
|
|
|
zconf_curname(), zconf_lineno(),
|
2018-12-11 19:00:59 +08:00
|
|
|
$1);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
config_option: T_PROMPT prompt if_expr T_EOL
|
|
|
|
{
|
|
|
|
menu_add_prompt(P_PROMPT, $2, $3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:59 +08:00
|
|
|
config_option: default expr if_expr T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
menu_add_expr(P_DEFAULT, $2, $3);
|
2018-12-11 19:00:59 +08:00
|
|
|
if ($1 != S_UNKNOWN)
|
|
|
|
menu_set_type($1);
|
2005-11-09 13:34:52 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:default(%u)\n",
|
|
|
|
zconf_curname(), zconf_lineno(),
|
2018-12-11 19:00:59 +08:00
|
|
|
$1);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
config_option: T_SELECT nonconst_symbol if_expr T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
menu_add_symbol(P_SELECT, $2, $3);
|
2005-04-17 06:20:36 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:select\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
config_option: T_IMPLY nonconst_symbol if_expr T_EOL
|
2016-11-11 13:10:05 +08:00
|
|
|
{
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
menu_add_symbol(P_IMPLY, $2, $3);
|
2016-11-11 13:10:05 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:imply\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
config_option: T_RANGE symbol symbol if_expr T_EOL
|
|
|
|
{
|
|
|
|
menu_add_expr(P_RANGE, expr_alloc_comp(E_RANGE,$2, $3), $4);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:range\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:01:00 +08:00
|
|
|
config_option: T_OPTION T_MODULES T_EOL
|
|
|
|
{
|
|
|
|
menu_add_option_modules();
|
|
|
|
};
|
2006-06-09 13:12:44 +08:00
|
|
|
|
2018-12-11 19:01:00 +08:00
|
|
|
config_option: T_OPTION T_DEFCONFIG_LIST T_EOL
|
2006-06-09 13:12:44 +08:00
|
|
|
{
|
2018-12-11 19:01:00 +08:00
|
|
|
menu_add_option_defconfig_list();
|
2006-06-09 13:12:44 +08:00
|
|
|
};
|
|
|
|
|
2018-12-11 19:01:00 +08:00
|
|
|
config_option: T_OPTION T_ALLNOCONFIG_Y T_EOL
|
|
|
|
{
|
|
|
|
menu_add_option_allnoconfig_y();
|
|
|
|
};
|
2006-06-09 13:12:44 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* choice entry */
|
|
|
|
|
2008-02-29 12:11:50 +08:00
|
|
|
choice: T_CHOICE word_opt T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-02-29 12:11:50 +08:00
|
|
|
struct symbol *sym = sym_lookup($2, SYMBOL_CHOICE);
|
2018-07-03 20:43:31 +08:00
|
|
|
sym->flags |= SYMBOL_NO_WRITE;
|
2005-04-17 06:20:36 +08:00
|
|
|
menu_add_entry(sym);
|
|
|
|
menu_add_expr(P_CHOICE, NULL, NULL);
|
2018-02-20 19:40:29 +08:00
|
|
|
free($2);
|
2005-04-17 06:20:36 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:choice\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
|
|
|
choice_entry: choice choice_option_list
|
|
|
|
{
|
2005-11-09 13:34:53 +08:00
|
|
|
$$ = menu_add_menu();
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
choice_end: end
|
|
|
|
{
|
|
|
|
if (zconf_endtoken($1, T_CHOICE, T_ENDCHOICE)) {
|
|
|
|
menu_end_menu();
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endchoice\n", zconf_curname(), zconf_lineno());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
choice_stmt: choice_entry choice_block choice_end
|
|
|
|
;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
choice_option_list:
|
|
|
|
/* empty */
|
|
|
|
| choice_option_list choice_option
|
|
|
|
| choice_option_list depends
|
|
|
|
| choice_option_list help
|
|
|
|
;
|
|
|
|
|
|
|
|
choice_option: T_PROMPT prompt if_expr T_EOL
|
|
|
|
{
|
|
|
|
menu_add_prompt(P_PROMPT, $2, $3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:59 +08:00
|
|
|
choice_option: logic_type prompt_stmt_opt T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2018-12-11 19:00:59 +08:00
|
|
|
menu_set_type($1);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
|
|
|
|
zconf_curname(), zconf_lineno(), $1);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
choice_option: T_OPTIONAL T_EOL
|
|
|
|
{
|
|
|
|
current_entry->sym->flags |= SYMBOL_OPTIONAL;
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:optional\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
choice_option: T_DEFAULT nonconst_symbol if_expr T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2018-12-11 19:00:59 +08:00
|
|
|
menu_add_symbol(P_DEFAULT, $2, $3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:default\n",
|
|
|
|
zconf_curname(), zconf_lineno());
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:59 +08:00
|
|
|
type:
|
|
|
|
logic_type
|
|
|
|
| T_INT { $$ = S_INT; }
|
|
|
|
| T_HEX { $$ = S_HEX; }
|
|
|
|
| T_STRING { $$ = S_STRING; }
|
|
|
|
|
|
|
|
logic_type:
|
|
|
|
T_BOOL { $$ = S_BOOLEAN; }
|
|
|
|
| T_TRISTATE { $$ = S_TRISTATE; }
|
|
|
|
|
|
|
|
default:
|
|
|
|
T_DEFAULT { $$ = S_UNKNOWN; }
|
|
|
|
| T_DEF_BOOL { $$ = S_BOOLEAN; }
|
|
|
|
| T_DEF_TRISTATE { $$ = S_TRISTATE; }
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
choice_block:
|
|
|
|
/* empty */
|
2005-11-09 13:34:53 +08:00
|
|
|
| choice_block common_stmt
|
2005-04-17 06:20:36 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
/* if entry */
|
|
|
|
|
2018-06-21 21:30:54 +08:00
|
|
|
if_entry: T_IF expr T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:if\n", zconf_curname(), zconf_lineno());
|
|
|
|
menu_add_entry(NULL);
|
|
|
|
menu_add_dep($2);
|
2005-11-09 13:34:53 +08:00
|
|
|
$$ = menu_add_menu();
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
if_end: end
|
|
|
|
{
|
|
|
|
if (zconf_endtoken($1, T_IF, T_ENDIF)) {
|
|
|
|
menu_end_menu();
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endif\n", zconf_curname(), zconf_lineno());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:54 +08:00
|
|
|
if_stmt: if_entry stmt_list if_end
|
2005-04-17 06:20:36 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
/* menu entry */
|
|
|
|
|
|
|
|
menu: T_MENU prompt T_EOL
|
|
|
|
{
|
|
|
|
menu_add_entry(NULL);
|
2005-07-28 23:56:25 +08:00
|
|
|
menu_add_prompt(P_MENU, $2, NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:56 +08:00
|
|
|
menu_entry: menu menu_option_list
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-11-09 13:34:53 +08:00
|
|
|
$$ = menu_add_menu();
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
menu_end: end
|
|
|
|
{
|
|
|
|
if (zconf_endtoken($1, T_MENU, T_ENDMENU)) {
|
|
|
|
menu_end_menu();
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endmenu\n", zconf_curname(), zconf_lineno());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:55 +08:00
|
|
|
menu_stmt: menu_entry stmt_list menu_end
|
2005-04-17 06:20:36 +08:00
|
|
|
;
|
|
|
|
|
2018-12-11 19:00:56 +08:00
|
|
|
menu_option_list:
|
|
|
|
/* empty */
|
|
|
|
| menu_option_list visible
|
|
|
|
| menu_option_list depends
|
|
|
|
;
|
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
source_stmt: T_SOURCE prompt T_EOL
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:source %s\n", zconf_curname(), zconf_lineno(), $2);
|
2005-11-09 13:34:53 +08:00
|
|
|
zconf_nextfile($2);
|
2017-10-09 01:11:19 +08:00
|
|
|
free($2);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* comment entry */
|
|
|
|
|
|
|
|
comment: T_COMMENT prompt T_EOL
|
|
|
|
{
|
|
|
|
menu_add_entry(NULL);
|
2005-07-28 23:56:25 +08:00
|
|
|
menu_add_prompt(P_COMMENT, $2, NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 19:00:57 +08:00
|
|
|
comment_stmt: comment comment_option_list
|
|
|
|
;
|
|
|
|
|
|
|
|
comment_option_list:
|
|
|
|
/* empty */
|
|
|
|
| comment_option_list depends
|
2017-10-09 06:14:48 +08:00
|
|
|
;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* help option */
|
|
|
|
|
|
|
|
help_start: T_HELP T_EOL
|
|
|
|
{
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:help\n", zconf_curname(), zconf_lineno());
|
|
|
|
zconf_starthelp();
|
|
|
|
};
|
|
|
|
|
|
|
|
help: help_start T_HELPTEXT
|
|
|
|
{
|
2018-01-12 14:47:47 +08:00
|
|
|
if (current_entry->help) {
|
|
|
|
free(current_entry->help);
|
|
|
|
zconfprint("warning: '%s' defined with more than one help text -- only the last one will be used",
|
|
|
|
current_entry->sym->name ?: "<choice>");
|
|
|
|
}
|
2018-01-31 17:34:30 +08:00
|
|
|
|
|
|
|
/* Is the help text empty or all whitespace? */
|
|
|
|
if ($2[strspn($2, " \f\n\r\t\v")] == '\0')
|
|
|
|
zconfprint("warning: '%s' defined with blank help text",
|
|
|
|
current_entry->sym->name ?: "<choice>");
|
|
|
|
|
2007-07-21 06:00:36 +08:00
|
|
|
current_entry->help = $2;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* depends option */
|
|
|
|
|
|
|
|
depends: T_DEPENDS T_ON expr T_EOL
|
|
|
|
{
|
|
|
|
menu_add_dep($3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:depends on\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2010-11-07 05:30:23 +08:00
|
|
|
/* visibility option */
|
2018-12-11 19:00:46 +08:00
|
|
|
visible: T_VISIBLE if_expr T_EOL
|
2010-11-07 05:30:23 +08:00
|
|
|
{
|
|
|
|
menu_add_visibility($2);
|
|
|
|
};
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* prompt statement */
|
|
|
|
|
|
|
|
prompt_stmt_opt:
|
|
|
|
/* empty */
|
|
|
|
| prompt if_expr
|
|
|
|
{
|
2005-07-28 23:56:25 +08:00
|
|
|
menu_add_prompt(P_PROMPT, $1, $2);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
prompt: T_WORD
|
|
|
|
| T_WORD_QUOTE
|
|
|
|
;
|
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
end: T_ENDMENU T_EOL { $$ = $1; }
|
|
|
|
| T_ENDCHOICE T_EOL { $$ = $1; }
|
|
|
|
| T_ENDIF T_EOL { $$ = $1; }
|
2005-04-17 06:20:36 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
if_expr: /* empty */ { $$ = NULL; }
|
|
|
|
| T_IF expr { $$ = $2; }
|
|
|
|
;
|
|
|
|
|
|
|
|
expr: symbol { $$ = expr_alloc_symbol($1); }
|
2015-06-15 20:00:21 +08:00
|
|
|
| symbol T_LESS symbol { $$ = expr_alloc_comp(E_LTH, $1, $3); }
|
|
|
|
| symbol T_LESS_EQUAL symbol { $$ = expr_alloc_comp(E_LEQ, $1, $3); }
|
|
|
|
| symbol T_GREATER symbol { $$ = expr_alloc_comp(E_GTH, $1, $3); }
|
|
|
|
| symbol T_GREATER_EQUAL symbol { $$ = expr_alloc_comp(E_GEQ, $1, $3); }
|
2005-04-17 06:20:36 +08:00
|
|
|
| symbol T_EQUAL symbol { $$ = expr_alloc_comp(E_EQUAL, $1, $3); }
|
|
|
|
| symbol T_UNEQUAL symbol { $$ = expr_alloc_comp(E_UNEQUAL, $1, $3); }
|
|
|
|
| T_OPEN_PAREN expr T_CLOSE_PAREN { $$ = $2; }
|
|
|
|
| T_NOT expr { $$ = expr_alloc_one(E_NOT, $2); }
|
|
|
|
| expr T_OR expr { $$ = expr_alloc_two(E_OR, $1, $3); }
|
|
|
|
| expr T_AND expr { $$ = expr_alloc_two(E_AND, $1, $3); }
|
|
|
|
;
|
|
|
|
|
kconfig: Don't leak symbol names during parsing
Prior to this fix, zconf.y did not free symbol names from zconf.l in
these contexts:
- After T_CONFIG ('config LEAKED')
- After T_MENUCONFIG ('menuconfig LEAKED')
- After T_SELECT ('select LEAKED')
- After T_IMPLY ('imply LEAKED')
- After T_DEFAULT in a choice ('default LEAKED')
All of these come in the form of T_WORD tokens, which always have their
associated string allocated on the heap in zconf.l and need to be freed.
Fix by introducing a new nonterminal 'nonconst_symbol' which takes a
T_WORD, fetches the symbol, and then frees the T_WORD string. The
already existing 'symbol' nonterminal works the same way but also
accepts T_WORD_QUOTE, corresponding to a constant symbol. T_WORD_QUOTE
should not be accepted in any of the contexts above, so the 'symbol'
nonterminal can't be reused here.
Fetching the symbol in 'nonconst_symbol' also removes a bunch of
sym_lookup() calls from actions.
Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:
LEAK SUMMARY:
definitely lost: 711,571 bytes in 37,756 blocks
...
Summary after the fix:
LEAK SUMMARY:
definitely lost: 387,504 bytes in 15,545 blocks
...
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-10-09 01:11:18 +08:00
|
|
|
/* For symbol definitions, selects, etc., where quotes are not accepted */
|
|
|
|
nonconst_symbol: T_WORD { $$ = sym_lookup($1, 0); free($1); };
|
|
|
|
|
|
|
|
symbol: nonconst_symbol
|
2008-02-29 12:11:50 +08:00
|
|
|
| T_WORD_QUOTE { $$ = sym_lookup($1, SYMBOL_CONST); free($1); }
|
2005-04-17 06:20:36 +08:00
|
|
|
;
|
|
|
|
|
2008-02-29 12:11:50 +08:00
|
|
|
word_opt: /* empty */ { $$ = NULL; }
|
|
|
|
| T_WORD
|
|
|
|
|
kconfig: support user-defined function and recursively expanded variable
Now, we got a basic ability to test compiler capability in Kconfig.
config CC_HAS_STACKPROTECTOR
def_bool $(shell,($(CC) -Werror -fstack-protector -E -x c /dev/null -o /dev/null 2>/dev/null) && echo y || echo n)
This works, but it is ugly to repeat this long boilerplate.
We want to describe like this:
config CC_HAS_STACKPROTECTOR
bool
default $(cc-option,-fstack-protector)
It is straight-forward to add a new function, but I do not like to
hard-code specialized functions like that. Hence, here is another
feature, user-defined function. This works as a textual shorthand
with parameterization.
A user-defined function is defined by using the = operator, and can
be referenced in the same way as built-in functions. A user-defined
function in Make is referenced like $(call my-func,arg1,arg2), but I
omitted the 'call' to make the syntax shorter.
The definition of a user-defined function contains $(1), $(2), etc.
in its body to reference the parameters. It is grammatically valid
to pass more or fewer arguments when calling it. We already exploit
this feature in our makefiles; scripts/Kbuild.include defines cc-option
which takes two arguments at most, but most of the callers pass only
one argument.
By the way, a variable is supported as a subset of this feature since
a variable is "a user-defined function with zero argument". In this
context, I mean "variable" as recursively expanded variable. I will
add a different flavored variable in the next commit.
The code above can be written as follows:
[Example Code]
success = $(shell,($(1)) >/dev/null 2>&1 && echo y || echo n)
cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null)
config CC_HAS_STACKPROTECTOR
def_bool $(cc-option,-fstack-protector)
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_CC_HAS_STACKPROTECTOR=y
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-05-28 17:21:49 +08:00
|
|
|
/* assignment statement */
|
|
|
|
|
2018-12-11 19:01:02 +08:00
|
|
|
assignment_stmt: T_WORD assign_op assign_val T_EOL { variable_add($1, $3, $2); free($1); free($3); }
|
2018-12-11 19:01:01 +08:00
|
|
|
|
|
|
|
assign_op:
|
|
|
|
T_EQUAL { $$ = VAR_RECURSIVE; }
|
|
|
|
| T_COLON_EQUAL { $$ = VAR_SIMPLE; }
|
|
|
|
| T_PLUS_EQUAL { $$ = VAR_APPEND; }
|
|
|
|
;
|
kconfig: support user-defined function and recursively expanded variable
Now, we got a basic ability to test compiler capability in Kconfig.
config CC_HAS_STACKPROTECTOR
def_bool $(shell,($(CC) -Werror -fstack-protector -E -x c /dev/null -o /dev/null 2>/dev/null) && echo y || echo n)
This works, but it is ugly to repeat this long boilerplate.
We want to describe like this:
config CC_HAS_STACKPROTECTOR
bool
default $(cc-option,-fstack-protector)
It is straight-forward to add a new function, but I do not like to
hard-code specialized functions like that. Hence, here is another
feature, user-defined function. This works as a textual shorthand
with parameterization.
A user-defined function is defined by using the = operator, and can
be referenced in the same way as built-in functions. A user-defined
function in Make is referenced like $(call my-func,arg1,arg2), but I
omitted the 'call' to make the syntax shorter.
The definition of a user-defined function contains $(1), $(2), etc.
in its body to reference the parameters. It is grammatically valid
to pass more or fewer arguments when calling it. We already exploit
this feature in our makefiles; scripts/Kbuild.include defines cc-option
which takes two arguments at most, but most of the callers pass only
one argument.
By the way, a variable is supported as a subset of this feature since
a variable is "a user-defined function with zero argument". In this
context, I mean "variable" as recursively expanded variable. I will
add a different flavored variable in the next commit.
The code above can be written as follows:
[Example Code]
success = $(shell,($(1)) >/dev/null 2>&1 && echo y || echo n)
cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null)
config CC_HAS_STACKPROTECTOR
def_bool $(cc-option,-fstack-protector)
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_CC_HAS_STACKPROTECTOR=y
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-05-28 17:21:49 +08:00
|
|
|
|
|
|
|
assign_val:
|
|
|
|
/* empty */ { $$ = xstrdup(""); };
|
|
|
|
| T_ASSIGN_VAL
|
|
|
|
;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
%%
|
|
|
|
|
|
|
|
void conf_parse(const char *name)
|
|
|
|
{
|
|
|
|
struct symbol *sym;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
zconf_initscan(name);
|
|
|
|
|
2009-11-25 18:28:43 +08:00
|
|
|
_menu_init();
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
if (getenv("ZCONF_DEBUG"))
|
2018-01-11 23:50:50 +08:00
|
|
|
yydebug = 1;
|
|
|
|
yyparse();
|
kconfig: support user-defined function and recursively expanded variable
Now, we got a basic ability to test compiler capability in Kconfig.
config CC_HAS_STACKPROTECTOR
def_bool $(shell,($(CC) -Werror -fstack-protector -E -x c /dev/null -o /dev/null 2>/dev/null) && echo y || echo n)
This works, but it is ugly to repeat this long boilerplate.
We want to describe like this:
config CC_HAS_STACKPROTECTOR
bool
default $(cc-option,-fstack-protector)
It is straight-forward to add a new function, but I do not like to
hard-code specialized functions like that. Hence, here is another
feature, user-defined function. This works as a textual shorthand
with parameterization.
A user-defined function is defined by using the = operator, and can
be referenced in the same way as built-in functions. A user-defined
function in Make is referenced like $(call my-func,arg1,arg2), but I
omitted the 'call' to make the syntax shorter.
The definition of a user-defined function contains $(1), $(2), etc.
in its body to reference the parameters. It is grammatically valid
to pass more or fewer arguments when calling it. We already exploit
this feature in our makefiles; scripts/Kbuild.include defines cc-option
which takes two arguments at most, but most of the callers pass only
one argument.
By the way, a variable is supported as a subset of this feature since
a variable is "a user-defined function with zero argument". In this
context, I mean "variable" as recursively expanded variable. I will
add a different flavored variable in the next commit.
The code above can be written as follows:
[Example Code]
success = $(shell,($(1)) >/dev/null 2>&1 && echo y || echo n)
cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null)
config CC_HAS_STACKPROTECTOR
def_bool $(cc-option,-fstack-protector)
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_CC_HAS_STACKPROTECTOR=y
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-05-28 17:21:49 +08:00
|
|
|
|
|
|
|
/* Variables are expanded in the parse phase. We can free them here. */
|
|
|
|
variable_all_del();
|
|
|
|
|
2018-01-11 23:50:50 +08:00
|
|
|
if (yynerrs)
|
2005-04-17 06:20:36 +08:00
|
|
|
exit(1);
|
2013-09-03 23:07:18 +08:00
|
|
|
if (!modules_sym)
|
|
|
|
modules_sym = sym_find( "n" );
|
2010-09-10 09:17:26 +08:00
|
|
|
|
2018-05-28 17:21:42 +08:00
|
|
|
if (!menu_has_prompt(&rootmenu)) {
|
|
|
|
current_entry = &rootmenu;
|
2018-05-28 17:21:44 +08:00
|
|
|
menu_add_prompt(P_MENU, "Main menu", NULL);
|
2018-05-28 17:21:42 +08:00
|
|
|
}
|
2010-09-10 09:17:26 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
menu_finalize(&rootmenu);
|
|
|
|
for_all_symbols(i, sym) {
|
2007-05-06 15:20:10 +08:00
|
|
|
if (sym_check_deps(sym))
|
2018-01-11 23:50:50 +08:00
|
|
|
yynerrs++;
|
2014-06-10 18:08:13 +08:00
|
|
|
}
|
2018-01-11 23:50:50 +08:00
|
|
|
if (yynerrs)
|
2007-05-06 15:20:10 +08:00
|
|
|
exit(1);
|
2006-12-13 16:34:07 +08:00
|
|
|
sym_set_change_count(1);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2009-10-16 03:13:36 +08:00
|
|
|
static const char *zconf_tokenname(int token)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
switch (token) {
|
|
|
|
case T_MENU: return "menu";
|
|
|
|
case T_ENDMENU: return "endmenu";
|
|
|
|
case T_CHOICE: return "choice";
|
|
|
|
case T_ENDCHOICE: return "endchoice";
|
|
|
|
case T_IF: return "if";
|
|
|
|
case T_ENDIF: return "endif";
|
2005-11-09 13:34:53 +08:00
|
|
|
case T_DEPENDS: return "depends";
|
2010-11-07 05:30:23 +08:00
|
|
|
case T_VISIBLE: return "visible";
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
return "<token>";
|
|
|
|
}
|
|
|
|
|
2011-05-05 09:14:44 +08:00
|
|
|
static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-11-09 13:34:53 +08:00
|
|
|
if (id->token != endtoken) {
|
|
|
|
zconf_error("unexpected '%s' within %s block",
|
2017-08-20 01:17:02 +08:00
|
|
|
id->name, zconf_tokenname(starttoken));
|
2018-01-11 23:50:50 +08:00
|
|
|
yynerrs++;
|
2005-04-17 06:20:36 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (current_menu->file != current_file) {
|
2005-11-09 13:34:53 +08:00
|
|
|
zconf_error("'%s' in different file than '%s'",
|
2017-08-20 01:17:02 +08:00
|
|
|
id->name, zconf_tokenname(starttoken));
|
2005-11-09 13:34:53 +08:00
|
|
|
fprintf(stderr, "%s:%d: location of the '%s'\n",
|
|
|
|
current_menu->file->name, current_menu->lineno,
|
|
|
|
zconf_tokenname(starttoken));
|
2018-01-11 23:50:50 +08:00
|
|
|
yynerrs++;
|
2005-04-17 06:20:36 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zconfprint(const char *err, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
2005-11-09 13:34:53 +08:00
|
|
|
fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
|
|
|
|
va_start(ap, err);
|
|
|
|
vfprintf(stderr, err, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zconf_error(const char *err, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
2018-01-11 23:50:50 +08:00
|
|
|
yynerrs++;
|
2005-11-09 13:34:53 +08:00
|
|
|
fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
|
2005-04-17 06:20:36 +08:00
|
|
|
va_start(ap, err);
|
|
|
|
vfprintf(stderr, err, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
2018-01-11 23:50:50 +08:00
|
|
|
static void yyerror(const char *err)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s:%d: %s\n", zconf_curname(), zconf_lineno() + 1, err);
|
|
|
|
}
|
|
|
|
|
2009-10-16 03:13:36 +08:00
|
|
|
static void print_quoted_string(FILE *out, const char *str)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
putc('"', out);
|
|
|
|
while ((p = strchr(str, '"'))) {
|
|
|
|
len = p - str;
|
|
|
|
if (len)
|
|
|
|
fprintf(out, "%.*s", len, str);
|
|
|
|
fputs("\\\"", out);
|
|
|
|
str = p + 1;
|
|
|
|
}
|
|
|
|
fputs(str, out);
|
|
|
|
putc('"', out);
|
|
|
|
}
|
|
|
|
|
2009-10-16 03:13:36 +08:00
|
|
|
static void print_symbol(FILE *out, struct menu *menu)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct symbol *sym = menu->sym;
|
|
|
|
struct property *prop;
|
|
|
|
|
|
|
|
if (sym_is_choice(sym))
|
2010-04-14 11:44:20 +08:00
|
|
|
fprintf(out, "\nchoice\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
else
|
2010-04-14 11:44:20 +08:00
|
|
|
fprintf(out, "\nconfig %s\n", sym->name);
|
2005-04-17 06:20:36 +08:00
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
2017-12-15 23:38:02 +08:00
|
|
|
fputs(" bool\n", out);
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
case S_TRISTATE:
|
|
|
|
fputs(" tristate\n", out);
|
|
|
|
break;
|
|
|
|
case S_STRING:
|
|
|
|
fputs(" string\n", out);
|
|
|
|
break;
|
|
|
|
case S_INT:
|
|
|
|
fputs(" integer\n", out);
|
|
|
|
break;
|
|
|
|
case S_HEX:
|
|
|
|
fputs(" hex\n", out);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fputs(" ???\n", out);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (prop = sym->prop; prop; prop = prop->next) {
|
|
|
|
if (prop->menu != menu)
|
|
|
|
continue;
|
|
|
|
switch (prop->type) {
|
|
|
|
case P_PROMPT:
|
|
|
|
fputs(" prompt ", out);
|
|
|
|
print_quoted_string(out, prop->text);
|
|
|
|
if (!expr_is_yes(prop->visible.expr)) {
|
|
|
|
fputs(" if ", out);
|
|
|
|
expr_fprint(prop->visible.expr, out);
|
|
|
|
}
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
|
|
|
case P_DEFAULT:
|
|
|
|
fputs( " default ", out);
|
|
|
|
expr_fprint(prop->expr, out);
|
|
|
|
if (!expr_is_yes(prop->visible.expr)) {
|
|
|
|
fputs(" if ", out);
|
|
|
|
expr_fprint(prop->visible.expr, out);
|
|
|
|
}
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
|
|
|
case P_CHOICE:
|
|
|
|
fputs(" #choice value\n", out);
|
|
|
|
break;
|
2010-04-14 11:44:20 +08:00
|
|
|
case P_SELECT:
|
|
|
|
fputs( " select ", out);
|
|
|
|
expr_fprint(prop->expr, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
2016-11-11 13:10:05 +08:00
|
|
|
case P_IMPLY:
|
|
|
|
fputs( " imply ", out);
|
|
|
|
expr_fprint(prop->expr, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
2010-04-14 11:44:20 +08:00
|
|
|
case P_RANGE:
|
|
|
|
fputs( " range ", out);
|
|
|
|
expr_fprint(prop->expr, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
|
|
|
case P_MENU:
|
|
|
|
fputs( " menu ", out);
|
|
|
|
print_quoted_string(out, prop->text);
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
2018-06-23 03:27:38 +08:00
|
|
|
case P_SYMBOL:
|
|
|
|
fputs( " symbol ", out);
|
|
|
|
fprintf(out, "%s\n", prop->sym->name);
|
|
|
|
break;
|
2005-04-17 06:20:36 +08:00
|
|
|
default:
|
|
|
|
fprintf(out, " unknown prop %d!\n", prop->type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-07-21 06:00:36 +08:00
|
|
|
if (menu->help) {
|
|
|
|
int len = strlen(menu->help);
|
|
|
|
while (menu->help[--len] == '\n')
|
|
|
|
menu->help[len] = 0;
|
|
|
|
fprintf(out, " help\n%s\n", menu->help);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void zconfdump(FILE *out)
|
|
|
|
{
|
|
|
|
struct property *prop;
|
|
|
|
struct symbol *sym;
|
|
|
|
struct menu *menu;
|
|
|
|
|
|
|
|
menu = rootmenu.list;
|
|
|
|
while (menu) {
|
|
|
|
if ((sym = menu->sym))
|
|
|
|
print_symbol(out, menu);
|
|
|
|
else if ((prop = menu->prompt)) {
|
|
|
|
switch (prop->type) {
|
|
|
|
case P_COMMENT:
|
|
|
|
fputs("\ncomment ", out);
|
|
|
|
print_quoted_string(out, prop->text);
|
|
|
|
fputs("\n", out);
|
|
|
|
break;
|
|
|
|
case P_MENU:
|
|
|
|
fputs("\nmenu ", out);
|
|
|
|
print_quoted_string(out, prop->text);
|
|
|
|
fputs("\n", out);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
if (!expr_is_yes(prop->visible.expr)) {
|
|
|
|
fputs(" depends ", out);
|
|
|
|
expr_fprint(prop->visible.expr, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (menu->list)
|
|
|
|
menu = menu->list;
|
|
|
|
else if (menu->next)
|
|
|
|
menu = menu->next;
|
|
|
|
else while ((menu = menu->parent)) {
|
|
|
|
if (menu->prompt && menu->prompt->type == P_MENU)
|
|
|
|
fputs("\nendmenu\n", out);
|
|
|
|
if (menu->next) {
|
|
|
|
menu = menu->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-23 14:08:52 +08:00
|
|
|
#include "zconf.lex.c"
|
2005-04-17 06:20:36 +08:00
|
|
|
#include "util.c"
|
|
|
|
#include "confdata.c"
|
|
|
|
#include "expr.c"
|
|
|
|
#include "symbol.c"
|
|
|
|
#include "menu.c"
|
kconfig: reference environment variables directly and remove 'option env='
To get access to environment variables, Kconfig needs to define a
symbol using "option env=" syntax. It is tedious to add a symbol entry
for each environment variable given that we need to define much more
such as 'CC', 'AS', 'srctree' etc. to evaluate the compiler capability
in Kconfig.
Adding '$' for symbol references is grammatically inconsistent.
Looking at the code, the symbols prefixed with 'S' are expanded by:
- conf_expand_value()
This is used to expand 'arch/$ARCH/defconfig' and 'defconfig_list'
- sym_expand_string_value()
This is used to expand strings in 'source' and 'mainmenu'
All of them are fixed values independent of user configuration. So,
they can be changed into the direct expansion instead of symbols.
This change makes the code much cleaner. The bounce symbols 'SRCARCH',
'ARCH', 'SUBARCH', 'KERNELVERSION' are gone.
sym_init() hard-coding 'UNAME_RELEASE' is also gone. 'UNAME_RELEASE'
should be replaced with an environment variable.
ARCH_DEFCONFIG is a normal symbol, so it should be simply referenced
without '$' prefix.
The new syntax is addicted by Make. The variable reference needs
parentheses, like $(FOO), but you can omit them for single-letter
variables, like $F. Yet, in Makefiles, people tend to use the
parenthetical form for consistency / clarification.
At this moment, only the environment variable is supported, but I will
extend the concept of 'variable' later on.
The variables are expanded in the lexer so we can simplify the token
handling on the parser side.
For example, the following code works.
[Example code]
config MY_TOOLCHAIN_LIST
string
default "My tools: CC=$(CC), AS=$(AS), CPP=$(CPP)"
[Result]
$ make -s alldefconfig && tail -n 1 .config
CONFIG_MY_TOOLCHAIN_LIST="My tools: CC=gcc, AS=as, CPP=gcc -E"
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
2018-05-28 17:21:40 +08:00
|
|
|
#include "preprocess.c"
|