2018-12-18 15:13:35 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
|
|
|
|
*/
|
2018-12-18 15:13:35 +03:00
|
|
|
%{
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2005-11-09 08:34:51 +03:00
|
|
|
#include "lkc.h"
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt)
|
|
|
|
|
|
|
|
#define PRINTD 0x0001
|
|
|
|
#define DEBUG_PARSE 0x0002
|
|
|
|
|
|
|
|
int cdebug = PRINTD;
|
|
|
|
|
2018-01-11 18:50:50 +03:00
|
|
|
static void yyerror(const char *err);
|
2005-04-17 02:20:36 +04:00
|
|
|
static void zconfprint(const char *err, ...);
|
2005-11-09 08:34:53 +03:00
|
|
|
static void zconf_error(const char *err, ...);
|
2018-12-11 14:01:06 +03:00
|
|
|
static bool zconf_endtoken(const char *tokenname,
|
|
|
|
const char *expected_tokenname);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-01-13 19:02:44 +03:00
|
|
|
struct symbol *symbol_hash[SYMBOL_HASHSIZE];
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
static struct menu *current_menu, *current_entry;
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union
|
|
|
|
{
|
|
|
|
char *string;
|
|
|
|
struct symbol *symbol;
|
|
|
|
struct expr *expr;
|
|
|
|
struct menu *menu;
|
2018-12-11 14:00:59 +03:00
|
|
|
enum symbol_type type;
|
2018-05-28 12:21:50 +03:00
|
|
|
enum variable_flavor flavor;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
%token <string> T_HELPTEXT
|
|
|
|
%token <string> T_WORD
|
|
|
|
%token <string> T_WORD_QUOTE
|
2018-12-11 14:01:00 +03:00
|
|
|
%token T_ALLNOCONFIG_Y
|
2018-12-11 14:00:59 +03:00
|
|
|
%token T_BOOL
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_CHOICE
|
2005-04-17 02:20:36 +04:00
|
|
|
%token T_CLOSE_PAREN
|
2018-12-11 14:01:01 +03:00
|
|
|
%token T_COLON_EQUAL
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_COMMENT
|
|
|
|
%token T_CONFIG
|
2018-12-11 14:00:59 +03:00
|
|
|
%token T_DEFAULT
|
2018-12-11 14:01:00 +03:00
|
|
|
%token T_DEFCONFIG_LIST
|
2018-12-11 14:00:59 +03:00
|
|
|
%token T_DEF_BOOL
|
|
|
|
%token T_DEF_TRISTATE
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_DEPENDS
|
|
|
|
%token T_ENDCHOICE
|
|
|
|
%token T_ENDIF
|
|
|
|
%token T_ENDMENU
|
|
|
|
%token T_HELP
|
2018-12-11 14:00:59 +03:00
|
|
|
%token T_HEX
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_IF
|
|
|
|
%token T_IMPLY
|
2018-12-11 14:00:59 +03:00
|
|
|
%token T_INT
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_MAINMENU
|
|
|
|
%token T_MENU
|
|
|
|
%token T_MENUCONFIG
|
2018-12-11 14:01:00 +03:00
|
|
|
%token T_MODULES
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_ON
|
2005-04-17 02:20:36 +04:00
|
|
|
%token T_OPEN_PAREN
|
2018-12-11 14:01:00 +03:00
|
|
|
%token T_OPTION
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_OPTIONAL
|
2018-12-11 14:01:01 +03:00
|
|
|
%token T_PLUS_EQUAL
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_PROMPT
|
|
|
|
%token T_RANGE
|
|
|
|
%token T_SELECT
|
|
|
|
%token T_SOURCE
|
2018-12-11 14:00:59 +03:00
|
|
|
%token T_STRING
|
|
|
|
%token T_TRISTATE
|
2018-12-11 14:01:07 +03:00
|
|
|
%token T_VISIBLE
|
2005-11-09 08:34:52 +03: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 12:21:49 +03:00
|
|
|
%token <string> T_ASSIGN_VAL
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
%left T_OR
|
|
|
|
%left T_AND
|
|
|
|
%left T_EQUAL T_UNEQUAL
|
2015-06-15 15:00:21 +03:00
|
|
|
%left T_LESS T_LESS_EQUAL T_GREATER T_GREATER_EQUAL
|
2005-04-17 02:20:36 +04:00
|
|
|
%nonassoc T_NOT
|
|
|
|
|
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-08 20:11:18 +03:00
|
|
|
%type <symbol> nonconst_symbol
|
2005-04-17 02:20:36 +04:00
|
|
|
%type <symbol> symbol
|
2018-12-11 14:00:59 +03:00
|
|
|
%type <type> type logic_type default
|
2005-04-17 02:20:36 +04:00
|
|
|
%type <expr> expr
|
|
|
|
%type <expr> if_expr
|
2018-12-11 14:01:06 +03:00
|
|
|
%type <string> end
|
2005-11-09 08:34:53 +03:00
|
|
|
%type <menu> if_entry menu_entry choice_entry
|
2018-12-11 14:01:00 +03:00
|
|
|
%type <string> word_opt assign_val
|
2018-12-11 14:01:01 +03:00
|
|
|
%type <flavor> assign_op
|
2005-11-09 08:34:53 +03: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 02:20:36 +04:00
|
|
|
|
|
|
|
%%
|
2018-12-11 14:00:49 +03:00
|
|
|
input: mainmenu_stmt stmt_list | stmt_list;
|
2017-10-08 20:11:21 +03:00
|
|
|
|
|
|
|
/* mainmenu entry */
|
|
|
|
|
2019-12-17 07:14:19 +03:00
|
|
|
mainmenu_stmt: T_MAINMENU T_WORD_QUOTE T_EOL
|
2017-10-08 20:11:21 +03:00
|
|
|
{
|
|
|
|
menu_add_prompt(P_MENU, $2, NULL);
|
|
|
|
};
|
|
|
|
|
2005-11-09 08:34:53 +03:00
|
|
|
stmt_list:
|
|
|
|
/* empty */
|
kconfig: allow only 'config', 'comment', and 'if' inside 'choice'
The code block surrounded by 'if' ... 'endif' is reduced into if_stmt,
which is accepted in the 'choice' context. Therefore, you can write any
statements within a choice block by wrapping 'if y' ... 'end'.
For example, you can create a menu inside a choice, like follows:
---------------->8----------------
choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if y
menu "strange menu"
config C
bool "C"
endmenu
endif
endchoice
---------------->8----------------
I want to change such a weird structure into a syntax error.
In fact, the USB gadget Kconfig had used nested 'choice' for no good
reason until commit df8df5e4bc37 ("usb: get rid of 'choice' for
legacy gadget drivers") killed it.
I think the 'source' inside 'choice' is on the fence. It is at least
gramatically sensible as long as the included file contains only
bool/tristate configs. However, it makes the code unreadable, and people
tend to forget the fact that the file is included from the choice
block. Commit 10e5e6c24963 ("usb: gadget: move choice ... endchoice to
legacy/Kconfig") got rid of the only usecase.
Going forward, you can only use 'config', 'comment', and 'if' inside
'choice'. This also recursively applies to 'if' blocks inside 'choice'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-24 08:49:29 +03:00
|
|
|
| stmt_list assignment_stmt
|
2005-11-09 08:34:53 +03:00
|
|
|
| stmt_list choice_stmt
|
kconfig: allow only 'config', 'comment', and 'if' inside 'choice'
The code block surrounded by 'if' ... 'endif' is reduced into if_stmt,
which is accepted in the 'choice' context. Therefore, you can write any
statements within a choice block by wrapping 'if y' ... 'end'.
For example, you can create a menu inside a choice, like follows:
---------------->8----------------
choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if y
menu "strange menu"
config C
bool "C"
endmenu
endif
endchoice
---------------->8----------------
I want to change such a weird structure into a syntax error.
In fact, the USB gadget Kconfig had used nested 'choice' for no good
reason until commit df8df5e4bc37 ("usb: get rid of 'choice' for
legacy gadget drivers") killed it.
I think the 'source' inside 'choice' is on the fence. It is at least
gramatically sensible as long as the included file contains only
bool/tristate configs. However, it makes the code unreadable, and people
tend to forget the fact that the file is included from the choice
block. Commit 10e5e6c24963 ("usb: gadget: move choice ... endchoice to
legacy/Kconfig") got rid of the only usecase.
Going forward, you can only use 'config', 'comment', and 'if' inside
'choice'. This also recursively applies to 'if' blocks inside 'choice'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-24 08:49:29 +03:00
|
|
|
| stmt_list comment_stmt
|
|
|
|
| stmt_list config_stmt
|
|
|
|
| stmt_list if_stmt
|
2005-11-09 08:34:53 +03:00
|
|
|
| stmt_list menu_stmt
|
kconfig: allow only 'config', 'comment', and 'if' inside 'choice'
The code block surrounded by 'if' ... 'endif' is reduced into if_stmt,
which is accepted in the 'choice' context. Therefore, you can write any
statements within a choice block by wrapping 'if y' ... 'end'.
For example, you can create a menu inside a choice, like follows:
---------------->8----------------
choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if y
menu "strange menu"
config C
bool "C"
endmenu
endif
endchoice
---------------->8----------------
I want to change such a weird structure into a syntax error.
In fact, the USB gadget Kconfig had used nested 'choice' for no good
reason until commit df8df5e4bc37 ("usb: get rid of 'choice' for
legacy gadget drivers") killed it.
I think the 'source' inside 'choice' is on the fence. It is at least
gramatically sensible as long as the included file contains only
bool/tristate configs. However, it makes the code unreadable, and people
tend to forget the fact that the file is included from the choice
block. Commit 10e5e6c24963 ("usb: gadget: move choice ... endchoice to
legacy/Kconfig") got rid of the only usecase.
Going forward, you can only use 'config', 'comment', and 'if' inside
'choice'. This also recursively applies to 'if' blocks inside 'choice'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-24 08:49:29 +03:00
|
|
|
| stmt_list menuconfig_stmt
|
|
|
|
| stmt_list source_stmt
|
2005-11-09 08:34:53 +03:00
|
|
|
| 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 02:20:36 +04:00
|
|
|
;
|
|
|
|
|
kconfig: allow only 'config', 'comment', and 'if' inside 'choice'
The code block surrounded by 'if' ... 'endif' is reduced into if_stmt,
which is accepted in the 'choice' context. Therefore, you can write any
statements within a choice block by wrapping 'if y' ... 'end'.
For example, you can create a menu inside a choice, like follows:
---------------->8----------------
choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if y
menu "strange menu"
config C
bool "C"
endmenu
endif
endchoice
---------------->8----------------
I want to change such a weird structure into a syntax error.
In fact, the USB gadget Kconfig had used nested 'choice' for no good
reason until commit df8df5e4bc37 ("usb: get rid of 'choice' for
legacy gadget drivers") killed it.
I think the 'source' inside 'choice' is on the fence. It is at least
gramatically sensible as long as the included file contains only
bool/tristate configs. However, it makes the code unreadable, and people
tend to forget the fact that the file is included from the choice
block. Commit 10e5e6c24963 ("usb: gadget: move choice ... endchoice to
legacy/Kconfig") got rid of the only usecase.
Going forward, you can only use 'config', 'comment', and 'if' inside
'choice'. This also recursively applies to 'if' blocks inside 'choice'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-24 08:49:29 +03:00
|
|
|
stmt_list_in_choice:
|
|
|
|
/* empty */
|
|
|
|
| stmt_list_in_choice comment_stmt
|
|
|
|
| stmt_list_in_choice config_stmt
|
|
|
|
| stmt_list_in_choice if_stmt_in_choice
|
|
|
|
| stmt_list_in_choice error T_EOL { zconf_error("invalid statement"); }
|
2005-11-09 08:34:53 +03:00
|
|
|
;
|
|
|
|
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03:00
|
|
|
config_entry_start: T_CONFIG nonconst_symbol T_EOL
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03: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 02:20:36 +04: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-08 20:11:18 +03:00
|
|
|
menuconfig_entry_start: T_MENUCONFIG nonconst_symbol T_EOL
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03: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 02:20:36 +04: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 14:00:59 +03:00
|
|
|
config_option: type prompt_stmt_opt T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2018-12-11 14:00:59 +03:00
|
|
|
menu_set_type($1);
|
2005-11-09 08:34:52 +03:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
|
|
|
|
zconf_curname(), zconf_lineno(),
|
2018-12-11 14:00:59 +03:00
|
|
|
$1);
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2019-12-17 07:14:19 +03:00
|
|
|
config_option: T_PROMPT T_WORD_QUOTE if_expr T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
menu_add_prompt(P_PROMPT, $2, $3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:59 +03:00
|
|
|
config_option: default expr if_expr T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
menu_add_expr(P_DEFAULT, $2, $3);
|
2018-12-11 14:00:59 +03:00
|
|
|
if ($1 != S_UNKNOWN)
|
|
|
|
menu_set_type($1);
|
2005-11-09 08:34:52 +03:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:default(%u)\n",
|
|
|
|
zconf_curname(), zconf_lineno(),
|
2018-12-11 14:00:59 +03:00
|
|
|
$1);
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03:00
|
|
|
config_option: T_SELECT nonconst_symbol if_expr T_EOL
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03:00
|
|
|
menu_add_symbol(P_SELECT, $2, $3);
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03:00
|
|
|
config_option: T_IMPLY nonconst_symbol if_expr T_EOL
|
2016-11-11 08:10:05 +03: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-08 20:11:18 +03:00
|
|
|
menu_add_symbol(P_IMPLY, $2, $3);
|
2016-11-11 08:10:05 +03:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:imply\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2005-04-17 02:20:36 +04: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 14:01:00 +03:00
|
|
|
config_option: T_OPTION T_MODULES T_EOL
|
|
|
|
{
|
|
|
|
menu_add_option_modules();
|
|
|
|
};
|
2006-06-09 09:12:44 +04:00
|
|
|
|
2018-12-11 14:01:00 +03:00
|
|
|
config_option: T_OPTION T_DEFCONFIG_LIST T_EOL
|
2006-06-09 09:12:44 +04:00
|
|
|
{
|
2018-12-11 14:01:00 +03:00
|
|
|
menu_add_option_defconfig_list();
|
2006-06-09 09:12:44 +04:00
|
|
|
};
|
|
|
|
|
2018-12-11 14:01:00 +03:00
|
|
|
config_option: T_OPTION T_ALLNOCONFIG_Y T_EOL
|
|
|
|
{
|
|
|
|
menu_add_option_allnoconfig_y();
|
|
|
|
};
|
2006-06-09 09:12:44 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* choice entry */
|
|
|
|
|
2008-02-29 07:11:50 +03:00
|
|
|
choice: T_CHOICE word_opt T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2008-02-29 07:11:50 +03:00
|
|
|
struct symbol *sym = sym_lookup($2, SYMBOL_CHOICE);
|
2018-07-03 15:43:31 +03:00
|
|
|
sym->flags |= SYMBOL_NO_WRITE;
|
2005-04-17 02:20:36 +04:00
|
|
|
menu_add_entry(sym);
|
|
|
|
menu_add_expr(P_CHOICE, NULL, NULL);
|
2018-02-20 14:40:29 +03:00
|
|
|
free($2);
|
2005-04-17 02:20:36 +04:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:choice\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
|
|
|
choice_entry: choice choice_option_list
|
|
|
|
{
|
2005-11-09 08:34:53 +03:00
|
|
|
$$ = menu_add_menu();
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
choice_end: end
|
|
|
|
{
|
2018-12-11 14:01:06 +03:00
|
|
|
if (zconf_endtoken($1, "choice")) {
|
2005-04-17 02:20:36 +04:00
|
|
|
menu_end_menu();
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endchoice\n", zconf_curname(), zconf_lineno());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
kconfig: allow only 'config', 'comment', and 'if' inside 'choice'
The code block surrounded by 'if' ... 'endif' is reduced into if_stmt,
which is accepted in the 'choice' context. Therefore, you can write any
statements within a choice block by wrapping 'if y' ... 'end'.
For example, you can create a menu inside a choice, like follows:
---------------->8----------------
choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if y
menu "strange menu"
config C
bool "C"
endmenu
endif
endchoice
---------------->8----------------
I want to change such a weird structure into a syntax error.
In fact, the USB gadget Kconfig had used nested 'choice' for no good
reason until commit df8df5e4bc37 ("usb: get rid of 'choice' for
legacy gadget drivers") killed it.
I think the 'source' inside 'choice' is on the fence. It is at least
gramatically sensible as long as the included file contains only
bool/tristate configs. However, it makes the code unreadable, and people
tend to forget the fact that the file is included from the choice
block. Commit 10e5e6c24963 ("usb: gadget: move choice ... endchoice to
legacy/Kconfig") got rid of the only usecase.
Going forward, you can only use 'config', 'comment', and 'if' inside
'choice'. This also recursively applies to 'if' blocks inside 'choice'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-24 08:49:29 +03:00
|
|
|
choice_stmt: choice_entry stmt_list_in_choice choice_end
|
2005-11-09 08:34:53 +03:00
|
|
|
;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
choice_option_list:
|
|
|
|
/* empty */
|
|
|
|
| choice_option_list choice_option
|
|
|
|
| choice_option_list depends
|
|
|
|
| choice_option_list help
|
|
|
|
;
|
|
|
|
|
2019-12-17 07:14:19 +03:00
|
|
|
choice_option: T_PROMPT T_WORD_QUOTE if_expr T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
menu_add_prompt(P_PROMPT, $2, $3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:59 +03:00
|
|
|
choice_option: logic_type prompt_stmt_opt T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2018-12-11 14:00:59 +03:00
|
|
|
menu_set_type($1);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
|
|
|
|
zconf_curname(), zconf_lineno(), $1);
|
2005-04-17 02:20:36 +04: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-08 20:11:18 +03:00
|
|
|
choice_option: T_DEFAULT nonconst_symbol if_expr T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2018-12-11 14:00:59 +03:00
|
|
|
menu_add_symbol(P_DEFAULT, $2, $3);
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:default\n",
|
|
|
|
zconf_curname(), zconf_lineno());
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:59 +03: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 02:20:36 +04:00
|
|
|
/* if entry */
|
|
|
|
|
2018-06-21 16:30:54 +03:00
|
|
|
if_entry: T_IF expr T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:if\n", zconf_curname(), zconf_lineno());
|
|
|
|
menu_add_entry(NULL);
|
|
|
|
menu_add_dep($2);
|
2005-11-09 08:34:53 +03:00
|
|
|
$$ = menu_add_menu();
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
if_end: end
|
|
|
|
{
|
2018-12-11 14:01:06 +03:00
|
|
|
if (zconf_endtoken($1, "if")) {
|
2005-04-17 02:20:36 +04:00
|
|
|
menu_end_menu();
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endif\n", zconf_curname(), zconf_lineno());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:54 +03:00
|
|
|
if_stmt: if_entry stmt_list if_end
|
2005-04-17 02:20:36 +04:00
|
|
|
;
|
|
|
|
|
kconfig: allow only 'config', 'comment', and 'if' inside 'choice'
The code block surrounded by 'if' ... 'endif' is reduced into if_stmt,
which is accepted in the 'choice' context. Therefore, you can write any
statements within a choice block by wrapping 'if y' ... 'end'.
For example, you can create a menu inside a choice, like follows:
---------------->8----------------
choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if y
menu "strange menu"
config C
bool "C"
endmenu
endif
endchoice
---------------->8----------------
I want to change such a weird structure into a syntax error.
In fact, the USB gadget Kconfig had used nested 'choice' for no good
reason until commit df8df5e4bc37 ("usb: get rid of 'choice' for
legacy gadget drivers") killed it.
I think the 'source' inside 'choice' is on the fence. It is at least
gramatically sensible as long as the included file contains only
bool/tristate configs. However, it makes the code unreadable, and people
tend to forget the fact that the file is included from the choice
block. Commit 10e5e6c24963 ("usb: gadget: move choice ... endchoice to
legacy/Kconfig") got rid of the only usecase.
Going forward, you can only use 'config', 'comment', and 'if' inside
'choice'. This also recursively applies to 'if' blocks inside 'choice'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-24 08:49:29 +03:00
|
|
|
if_stmt_in_choice: if_entry stmt_list_in_choice if_end
|
|
|
|
;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* menu entry */
|
|
|
|
|
2019-12-17 07:14:19 +03:00
|
|
|
menu: T_MENU T_WORD_QUOTE T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
menu_add_entry(NULL);
|
2005-07-28 19:56:25 +04:00
|
|
|
menu_add_prompt(P_MENU, $2, NULL);
|
2005-04-17 02:20:36 +04:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:56 +03:00
|
|
|
menu_entry: menu menu_option_list
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2005-11-09 08:34:53 +03:00
|
|
|
$$ = menu_add_menu();
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
menu_end: end
|
|
|
|
{
|
2018-12-11 14:01:06 +03:00
|
|
|
if (zconf_endtoken($1, "menu")) {
|
2005-04-17 02:20:36 +04:00
|
|
|
menu_end_menu();
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:endmenu\n", zconf_curname(), zconf_lineno());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:55 +03:00
|
|
|
menu_stmt: menu_entry stmt_list menu_end
|
2005-04-17 02:20:36 +04:00
|
|
|
;
|
|
|
|
|
2018-12-11 14:00:56 +03:00
|
|
|
menu_option_list:
|
|
|
|
/* empty */
|
|
|
|
| menu_option_list visible
|
|
|
|
| menu_option_list depends
|
|
|
|
;
|
|
|
|
|
2019-12-17 07:14:19 +03:00
|
|
|
source_stmt: T_SOURCE T_WORD_QUOTE T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
printd(DEBUG_PARSE, "%s:%d:source %s\n", zconf_curname(), zconf_lineno(), $2);
|
2005-11-09 08:34:53 +03:00
|
|
|
zconf_nextfile($2);
|
2017-10-08 20:11:19 +03:00
|
|
|
free($2);
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* comment entry */
|
|
|
|
|
2019-12-17 07:14:19 +03:00
|
|
|
comment: T_COMMENT T_WORD_QUOTE T_EOL
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
menu_add_entry(NULL);
|
2005-07-28 19:56:25 +04:00
|
|
|
menu_add_prompt(P_COMMENT, $2, NULL);
|
2005-04-17 02:20:36 +04:00
|
|
|
printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno());
|
|
|
|
};
|
|
|
|
|
2018-12-11 14:00:57 +03:00
|
|
|
comment_stmt: comment comment_option_list
|
|
|
|
;
|
|
|
|
|
|
|
|
comment_option_list:
|
|
|
|
/* empty */
|
|
|
|
| comment_option_list depends
|
2017-10-09 01:14:48 +03:00
|
|
|
;
|
2005-04-17 02:20:36 +04: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 09:47:47 +03: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 12:34:30 +03: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 02:00:36 +04:00
|
|
|
current_entry->help = $2;
|
2005-04-17 02:20:36 +04: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 00:30:23 +03:00
|
|
|
/* visibility option */
|
2018-12-11 14:00:46 +03:00
|
|
|
visible: T_VISIBLE if_expr T_EOL
|
2010-11-07 00:30:23 +03:00
|
|
|
{
|
|
|
|
menu_add_visibility($2);
|
|
|
|
};
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* prompt statement */
|
|
|
|
|
|
|
|
prompt_stmt_opt:
|
|
|
|
/* empty */
|
2019-12-17 07:14:19 +03:00
|
|
|
| T_WORD_QUOTE if_expr
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2005-07-28 19:56:25 +04:00
|
|
|
menu_add_prompt(P_PROMPT, $1, $2);
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2018-12-11 14:01:06 +03:00
|
|
|
end: T_ENDMENU T_EOL { $$ = "menu"; }
|
|
|
|
| T_ENDCHOICE T_EOL { $$ = "choice"; }
|
|
|
|
| T_ENDIF T_EOL { $$ = "if"; }
|
2005-04-17 02:20:36 +04:00
|
|
|
;
|
|
|
|
|
|
|
|
if_expr: /* empty */ { $$ = NULL; }
|
|
|
|
| T_IF expr { $$ = $2; }
|
|
|
|
;
|
|
|
|
|
|
|
|
expr: symbol { $$ = expr_alloc_symbol($1); }
|
2015-06-15 15:00:21 +03: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 02:20:36 +04: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-08 20:11:18 +03: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 07:11:50 +03:00
|
|
|
| T_WORD_QUOTE { $$ = sym_lookup($1, SYMBOL_CONST); free($1); }
|
2005-04-17 02:20:36 +04:00
|
|
|
;
|
|
|
|
|
2008-02-29 07:11:50 +03: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 12:21:49 +03:00
|
|
|
/* assignment statement */
|
|
|
|
|
2018-12-11 14:01:02 +03:00
|
|
|
assignment_stmt: T_WORD assign_op assign_val T_EOL { variable_add($1, $3, $2); free($1); free($3); }
|
2018-12-11 14:01:01 +03: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 12:21:49 +03:00
|
|
|
|
|
|
|
assign_val:
|
|
|
|
/* empty */ { $$ = xstrdup(""); };
|
|
|
|
| T_ASSIGN_VAL
|
|
|
|
;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
%%
|
|
|
|
|
|
|
|
void conf_parse(const char *name)
|
|
|
|
{
|
|
|
|
struct symbol *sym;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
zconf_initscan(name);
|
|
|
|
|
2009-11-25 13:28:43 +03:00
|
|
|
_menu_init();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-11-09 08:34:53 +03:00
|
|
|
if (getenv("ZCONF_DEBUG"))
|
2018-01-11 18:50:50 +03: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 12:21:49 +03:00
|
|
|
|
|
|
|
/* Variables are expanded in the parse phase. We can free them here. */
|
|
|
|
variable_all_del();
|
|
|
|
|
2018-01-11 18:50:50 +03:00
|
|
|
if (yynerrs)
|
2005-04-17 02:20:36 +04:00
|
|
|
exit(1);
|
2013-09-03 19:07:18 +04:00
|
|
|
if (!modules_sym)
|
|
|
|
modules_sym = sym_find( "n" );
|
2010-09-10 05:17:26 +04:00
|
|
|
|
2018-05-28 12:21:42 +03:00
|
|
|
if (!menu_has_prompt(&rootmenu)) {
|
|
|
|
current_entry = &rootmenu;
|
2018-05-28 12:21:44 +03:00
|
|
|
menu_add_prompt(P_MENU, "Main menu", NULL);
|
2018-05-28 12:21:42 +03:00
|
|
|
}
|
2010-09-10 05:17:26 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
menu_finalize(&rootmenu);
|
|
|
|
for_all_symbols(i, sym) {
|
2007-05-06 11:20:10 +04:00
|
|
|
if (sym_check_deps(sym))
|
2018-01-11 18:50:50 +03:00
|
|
|
yynerrs++;
|
2014-06-10 14:08:13 +04:00
|
|
|
}
|
2018-01-11 18:50:50 +03:00
|
|
|
if (yynerrs)
|
2007-05-06 11:20:10 +04:00
|
|
|
exit(1);
|
2006-12-13 11:34:07 +03:00
|
|
|
sym_set_change_count(1);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2018-12-11 14:01:06 +03:00
|
|
|
static bool zconf_endtoken(const char *tokenname,
|
|
|
|
const char *expected_tokenname)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2018-12-11 14:01:06 +03:00
|
|
|
if (strcmp(tokenname, expected_tokenname)) {
|
2005-11-09 08:34:53 +03:00
|
|
|
zconf_error("unexpected '%s' within %s block",
|
2018-12-11 14:01:06 +03:00
|
|
|
tokenname, expected_tokenname);
|
2018-01-11 18:50:50 +03:00
|
|
|
yynerrs++;
|
2005-04-17 02:20:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (current_menu->file != current_file) {
|
2005-11-09 08:34:53 +03:00
|
|
|
zconf_error("'%s' in different file than '%s'",
|
2018-12-11 14:01:06 +03:00
|
|
|
tokenname, expected_tokenname);
|
2005-11-09 08:34:53 +03:00
|
|
|
fprintf(stderr, "%s:%d: location of the '%s'\n",
|
|
|
|
current_menu->file->name, current_menu->lineno,
|
2018-12-11 14:01:06 +03:00
|
|
|
expected_tokenname);
|
2018-01-11 18:50:50 +03:00
|
|
|
yynerrs++;
|
2005-04-17 02:20:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zconfprint(const char *err, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
2005-11-09 08:34:53 +03: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 18:50:50 +03:00
|
|
|
yynerrs++;
|
2005-11-09 08:34:53 +03:00
|
|
|
fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
|
2005-04-17 02:20:36 +04:00
|
|
|
va_start(ap, err);
|
|
|
|
vfprintf(stderr, err, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
2018-01-11 18:50:50 +03:00
|
|
|
static void yyerror(const char *err)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s:%d: %s\n", zconf_curname(), zconf_lineno() + 1, err);
|
|
|
|
}
|
|
|
|
|
2009-10-15 23:13:36 +04:00
|
|
|
static void print_quoted_string(FILE *out, const char *str)
|
2005-04-17 02:20:36 +04: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-15 23:13:36 +04:00
|
|
|
static void print_symbol(FILE *out, struct menu *menu)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct symbol *sym = menu->sym;
|
|
|
|
struct property *prop;
|
|
|
|
|
|
|
|
if (sym_is_choice(sym))
|
2010-04-14 07:44:20 +04:00
|
|
|
fprintf(out, "\nchoice\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
else
|
2010-04-14 07:44:20 +04:00
|
|
|
fprintf(out, "\nconfig %s\n", sym->name);
|
2005-04-17 02:20:36 +04:00
|
|
|
switch (sym->type) {
|
|
|
|
case S_BOOLEAN:
|
2017-12-15 18:38:02 +03:00
|
|
|
fputs(" bool\n", out);
|
2005-04-17 02:20:36 +04: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 07:44:20 +04:00
|
|
|
case P_SELECT:
|
|
|
|
fputs( " select ", out);
|
|
|
|
expr_fprint(prop->expr, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
2016-11-11 08:10:05 +03:00
|
|
|
case P_IMPLY:
|
|
|
|
fputs( " imply ", out);
|
|
|
|
expr_fprint(prop->expr, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
break;
|
2010-04-14 07:44:20 +04: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-22 22:27:38 +03:00
|
|
|
case P_SYMBOL:
|
|
|
|
fputs( " symbol ", out);
|
2019-12-17 07:14:22 +03:00
|
|
|
fprintf(out, "%s\n", prop->menu->sym->name);
|
2018-06-22 22:27:38 +03:00
|
|
|
break;
|
2005-04-17 02:20:36 +04:00
|
|
|
default:
|
|
|
|
fprintf(out, " unknown prop %d!\n", prop->type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-07-21 02:00:36 +04: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 02:20:36 +04: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "menu.c"
|