blob: 60936c76865bfb07e6fb1f2767bc1514e69a6169 [file] [log] [blame]
Masahiro Yamada0c874102018-12-18 21:13:35 +09001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
Masahiro Yamada0c874102018-12-18 21:13:35 +09005%{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7#include <ctype.h>
8#include <stdarg.h>
9#include <stdio.h>
10#include <stdlib.h>
11#include <string.h>
12#include <stdbool.h>
13
Roman Zippel7a884882005-11-08 21:34:51 -080014#include "lkc.h"
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt)
17
18#define PRINTD 0x0001
19#define DEBUG_PARSE 0x0002
20
21int cdebug = PRINTD;
22
Masahiro Yamada765f4cd2018-01-12 00:50:50 +090023static void yyerror(const char *err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static void zconfprint(const char *err, ...);
Roman Zippela02f0572005-11-08 21:34:53 -080025static void zconf_error(const char *err, ...);
Masahiro Yamadacaaebb32018-12-11 20:01:06 +090026static bool zconf_endtoken(const char *tokenname,
27 const char *expected_tokenname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Andi Kleene66f25d2010-01-13 17:02:44 +010029struct symbol *symbol_hash[SYMBOL_HASHSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static struct menu *current_menu, *current_entry;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033%}
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35%union
36{
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 char *string;
38 struct symbol *symbol;
39 struct expr *expr;
40 struct menu *menu;
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090041 enum symbol_type type;
Masahiro Yamada1175c022018-05-28 18:21:50 +090042 enum variable_flavor flavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045%token <string> T_HELPTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -070046%token <string> T_WORD
47%token <string> T_WORD_QUOTE
Masahiro Yamadace2164a2018-12-11 20:01:00 +090048%token T_ALLNOCONFIG_Y
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090049%token T_BOOL
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090050%token T_CHOICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070051%token T_CLOSE_PAREN
Masahiro Yamadac3d22872018-12-11 20:01:01 +090052%token T_COLON_EQUAL
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090053%token T_COMMENT
54%token T_CONFIG
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090055%token T_DEFAULT
Masahiro Yamadace2164a2018-12-11 20:01:00 +090056%token T_DEFCONFIG_LIST
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090057%token T_DEF_BOOL
58%token T_DEF_TRISTATE
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090059%token T_DEPENDS
60%token T_ENDCHOICE
61%token T_ENDIF
62%token T_ENDMENU
63%token T_HELP
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090064%token T_HEX
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090065%token T_IF
66%token T_IMPLY
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090067%token T_INT
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090068%token T_MAINMENU
69%token T_MENU
70%token T_MENUCONFIG
Masahiro Yamadace2164a2018-12-11 20:01:00 +090071%token T_MODULES
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090072%token T_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -070073%token T_OPEN_PAREN
Masahiro Yamadace2164a2018-12-11 20:01:00 +090074%token T_OPTION
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090075%token T_OPTIONAL
Masahiro Yamadac3d22872018-12-11 20:01:01 +090076%token T_PLUS_EQUAL
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090077%token T_PROMPT
78%token T_RANGE
79%token T_SELECT
80%token T_SOURCE
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090081%token T_STRING
82%token T_TRISTATE
Masahiro Yamadab3d1d9d2018-12-11 20:01:07 +090083%token T_VISIBLE
Roman Zippel3370f9f2005-11-08 21:34:52 -080084%token T_EOL
Masahiro Yamada9ced3bd2018-05-28 18:21:49 +090085%token <string> T_ASSIGN_VAL
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87%left T_OR
88%left T_AND
89%left T_EQUAL T_UNEQUAL
Jan Beulich31847b62015-06-15 13:00:21 +010090%left T_LESS T_LESS_EQUAL T_GREATER T_GREATER_EQUAL
Linus Torvalds1da177e2005-04-16 15:20:36 -070091%nonassoc T_NOT
92
93%type <string> prompt
Ulf Magnusson26e47a32017-10-08 19:11:18 +020094%type <symbol> nonconst_symbol
Linus Torvalds1da177e2005-04-16 15:20:36 -070095%type <symbol> symbol
Masahiro Yamada3c8f3172018-12-11 20:00:59 +090096%type <type> type logic_type default
Linus Torvalds1da177e2005-04-16 15:20:36 -070097%type <expr> expr
98%type <expr> if_expr
Masahiro Yamadacaaebb32018-12-11 20:01:06 +090099%type <string> end
Roman Zippela02f0572005-11-08 21:34:53 -0800100%type <menu> if_entry menu_entry choice_entry
Masahiro Yamadace2164a2018-12-11 20:01:00 +0900101%type <string> word_opt assign_val
Masahiro Yamadac3d22872018-12-11 20:01:01 +0900102%type <flavor> assign_op
Roman Zippela02f0572005-11-08 21:34:53 -0800103
104%destructor {
105 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
106 $$->file->name, $$->lineno);
107 if (current_menu == $$)
108 menu_end_menu();
109} if_entry menu_entry choice_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111%%
Masahiro Yamadacc66bca2018-12-11 20:00:49 +0900112input: mainmenu_stmt stmt_list | stmt_list;
Ulf Magnusson0724a7c2017-10-08 19:11:21 +0200113
114/* mainmenu entry */
115
Masahiro Yamada56869d42018-08-09 15:47:06 +0900116mainmenu_stmt: T_MAINMENU prompt T_EOL
Ulf Magnusson0724a7c2017-10-08 19:11:21 +0200117{
118 menu_add_prompt(P_MENU, $2, NULL);
119};
120
Roman Zippela02f0572005-11-08 21:34:53 -0800121stmt_list:
122 /* empty */
123 | stmt_list common_stmt
124 | stmt_list choice_stmt
125 | stmt_list menu_stmt
Roman Zippela02f0572005-11-08 21:34:53 -0800126 | stmt_list T_WORD error T_EOL { zconf_error("unknown statement \"%s\"", $2); }
Roman Zippela02f0572005-11-08 21:34:53 -0800127 | stmt_list error T_EOL { zconf_error("invalid statement"); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128;
129
Roman Zippela02f0572005-11-08 21:34:53 -0800130common_stmt:
Masahiro Yamadacc66bca2018-12-11 20:00:49 +0900131 if_stmt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 | comment_stmt
133 | config_stmt
134 | menuconfig_stmt
135 | source_stmt
Masahiro Yamada9ced3bd2018-05-28 18:21:49 +0900136 | assignment_stmt
Roman Zippela02f0572005-11-08 21:34:53 -0800137;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/* config/menuconfig entry */
140
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200141config_entry_start: T_CONFIG nonconst_symbol T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200143 $2->flags |= SYMBOL_OPTIONAL;
144 menu_add_entry($2);
145 printd(DEBUG_PARSE, "%s:%d:config %s\n", zconf_curname(), zconf_lineno(), $2->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148config_stmt: config_entry_start config_option_list
149{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 printd(DEBUG_PARSE, "%s:%d:endconfig\n", zconf_curname(), zconf_lineno());
151};
152
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200153menuconfig_entry_start: T_MENUCONFIG nonconst_symbol T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200155 $2->flags |= SYMBOL_OPTIONAL;
156 menu_add_entry($2);
157 printd(DEBUG_PARSE, "%s:%d:menuconfig %s\n", zconf_curname(), zconf_lineno(), $2->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158};
159
160menuconfig_stmt: menuconfig_entry_start config_option_list
161{
162 if (current_entry->prompt)
163 current_entry->prompt->type = P_MENU;
164 else
165 zconfprint("warning: menuconfig statement without prompt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 printd(DEBUG_PARSE, "%s:%d:endconfig\n", zconf_curname(), zconf_lineno());
167};
168
169config_option_list:
170 /* empty */
171 | config_option_list config_option
172 | config_option_list depends
173 | config_option_list help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174;
175
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900176config_option: type prompt_stmt_opt T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900178 menu_set_type($1);
Roman Zippel3370f9f2005-11-08 21:34:52 -0800179 printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
180 zconf_curname(), zconf_lineno(),
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900181 $1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
184config_option: T_PROMPT prompt if_expr T_EOL
185{
186 menu_add_prompt(P_PROMPT, $2, $3);
187 printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
188};
189
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900190config_option: default expr if_expr T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 menu_add_expr(P_DEFAULT, $2, $3);
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900193 if ($1 != S_UNKNOWN)
194 menu_set_type($1);
Roman Zippel3370f9f2005-11-08 21:34:52 -0800195 printd(DEBUG_PARSE, "%s:%d:default(%u)\n",
196 zconf_curname(), zconf_lineno(),
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900197 $1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200200config_option: T_SELECT nonconst_symbol if_expr T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200202 menu_add_symbol(P_SELECT, $2, $3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 printd(DEBUG_PARSE, "%s:%d:select\n", zconf_curname(), zconf_lineno());
204};
205
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200206config_option: T_IMPLY nonconst_symbol if_expr T_EOL
Nicolas Pitre237e3ad2016-11-11 00:10:05 -0500207{
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200208 menu_add_symbol(P_IMPLY, $2, $3);
Nicolas Pitre237e3ad2016-11-11 00:10:05 -0500209 printd(DEBUG_PARSE, "%s:%d:imply\n", zconf_curname(), zconf_lineno());
210};
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212config_option: T_RANGE symbol symbol if_expr T_EOL
213{
214 menu_add_expr(P_RANGE, expr_alloc_comp(E_RANGE,$2, $3), $4);
215 printd(DEBUG_PARSE, "%s:%d:range\n", zconf_curname(), zconf_lineno());
216};
217
Masahiro Yamadace2164a2018-12-11 20:01:00 +0900218config_option: T_OPTION T_MODULES T_EOL
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700219{
Masahiro Yamadace2164a2018-12-11 20:01:00 +0900220 menu_add_option_modules();
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700221};
222
Masahiro Yamadace2164a2018-12-11 20:01:00 +0900223config_option: T_OPTION T_DEFCONFIG_LIST T_EOL
224{
225 menu_add_option_defconfig_list();
226};
227
228config_option: T_OPTION T_ALLNOCONFIG_Y T_EOL
229{
230 menu_add_option_allnoconfig_y();
231};
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/* choice entry */
234
Roman Zippel5a1aa8a2008-02-29 05:11:50 +0100235choice: T_CHOICE word_opt T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Roman Zippel5a1aa8a2008-02-29 05:11:50 +0100237 struct symbol *sym = sym_lookup($2, SYMBOL_CHOICE);
Dirk Gouders693359f2018-07-03 14:43:31 +0200238 sym->flags |= SYMBOL_NO_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 menu_add_entry(sym);
240 menu_add_expr(P_CHOICE, NULL, NULL);
Masahiro Yamadabf0bbdc2018-02-20 20:40:29 +0900241 free($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 printd(DEBUG_PARSE, "%s:%d:choice\n", zconf_curname(), zconf_lineno());
243};
244
245choice_entry: choice choice_option_list
246{
Roman Zippela02f0572005-11-08 21:34:53 -0800247 $$ = menu_add_menu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
250choice_end: end
251{
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900252 if (zconf_endtoken($1, "choice")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 menu_end_menu();
254 printd(DEBUG_PARSE, "%s:%d:endchoice\n", zconf_curname(), zconf_lineno());
255 }
256};
257
Roman Zippela02f0572005-11-08 21:34:53 -0800258choice_stmt: choice_entry choice_block choice_end
259;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261choice_option_list:
262 /* empty */
263 | choice_option_list choice_option
264 | choice_option_list depends
265 | choice_option_list help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266;
267
268choice_option: T_PROMPT prompt if_expr T_EOL
269{
270 menu_add_prompt(P_PROMPT, $2, $3);
271 printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno());
272};
273
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900274choice_option: logic_type prompt_stmt_opt T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900276 menu_set_type($1);
277 printd(DEBUG_PARSE, "%s:%d:type(%u)\n",
278 zconf_curname(), zconf_lineno(), $1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279};
280
281choice_option: T_OPTIONAL T_EOL
282{
283 current_entry->sym->flags |= SYMBOL_OPTIONAL;
284 printd(DEBUG_PARSE, "%s:%d:optional\n", zconf_curname(), zconf_lineno());
285};
286
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200287choice_option: T_DEFAULT nonconst_symbol if_expr T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900289 menu_add_symbol(P_DEFAULT, $2, $3);
290 printd(DEBUG_PARSE, "%s:%d:default\n",
291 zconf_curname(), zconf_lineno());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292};
293
Masahiro Yamada3c8f3172018-12-11 20:00:59 +0900294type:
295 logic_type
296 | T_INT { $$ = S_INT; }
297 | T_HEX { $$ = S_HEX; }
298 | T_STRING { $$ = S_STRING; }
299
300logic_type:
301 T_BOOL { $$ = S_BOOLEAN; }
302 | T_TRISTATE { $$ = S_TRISTATE; }
303
304default:
305 T_DEFAULT { $$ = S_UNKNOWN; }
306 | T_DEF_BOOL { $$ = S_BOOLEAN; }
307 | T_DEF_TRISTATE { $$ = S_TRISTATE; }
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309choice_block:
310 /* empty */
Roman Zippela02f0572005-11-08 21:34:53 -0800311 | choice_block common_stmt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312;
313
314/* if entry */
315
Dirk Goudersb2d00d72018-06-21 15:30:54 +0200316if_entry: T_IF expr T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 printd(DEBUG_PARSE, "%s:%d:if\n", zconf_curname(), zconf_lineno());
319 menu_add_entry(NULL);
320 menu_add_dep($2);
Roman Zippela02f0572005-11-08 21:34:53 -0800321 $$ = menu_add_menu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322};
323
324if_end: end
325{
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900326 if (zconf_endtoken($1, "if")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 menu_end_menu();
328 printd(DEBUG_PARSE, "%s:%d:endif\n", zconf_curname(), zconf_lineno());
329 }
330};
331
Masahiro Yamada48917962018-12-11 20:00:54 +0900332if_stmt: if_entry stmt_list if_end
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333;
334
335/* menu entry */
336
337menu: T_MENU prompt T_EOL
338{
339 menu_add_entry(NULL);
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200340 menu_add_prompt(P_MENU, $2, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno());
342};
343
Masahiro Yamada1f31be92018-12-11 20:00:56 +0900344menu_entry: menu menu_option_list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Roman Zippela02f0572005-11-08 21:34:53 -0800346 $$ = menu_add_menu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
349menu_end: end
350{
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900351 if (zconf_endtoken($1, "menu")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 menu_end_menu();
353 printd(DEBUG_PARSE, "%s:%d:endmenu\n", zconf_curname(), zconf_lineno());
354 }
355};
356
Masahiro Yamada94d4e1b2018-12-11 20:00:55 +0900357menu_stmt: menu_entry stmt_list menu_end
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358;
359
Masahiro Yamada1f31be92018-12-11 20:00:56 +0900360menu_option_list:
361 /* empty */
362 | menu_option_list visible
363 | menu_option_list depends
364;
365
Roman Zippela02f0572005-11-08 21:34:53 -0800366source_stmt: T_SOURCE prompt T_EOL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 printd(DEBUG_PARSE, "%s:%d:source %s\n", zconf_curname(), zconf_lineno(), $2);
Roman Zippela02f0572005-11-08 21:34:53 -0800369 zconf_nextfile($2);
Ulf Magnusson24161a62017-10-08 19:11:19 +0200370 free($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
373/* comment entry */
374
375comment: T_COMMENT prompt T_EOL
376{
377 menu_add_entry(NULL);
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200378 menu_add_prompt(P_COMMENT, $2, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno());
380};
381
Masahiro Yamada4b5ec812018-12-11 20:00:57 +0900382comment_stmt: comment comment_option_list
383;
384
385comment_option_list:
386 /* empty */
387 | comment_option_list depends
Ulf Magnussondf60f4b2017-10-09 00:14:48 +0200388;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390/* help option */
391
392help_start: T_HELP T_EOL
393{
394 printd(DEBUG_PARSE, "%s:%d:help\n", zconf_curname(), zconf_lineno());
395 zconf_starthelp();
396};
397
398help: help_start T_HELPTEXT
399{
Ulf Magnusson6479f322018-01-12 07:47:47 +0100400 if (current_entry->help) {
401 free(current_entry->help);
402 zconfprint("warning: '%s' defined with more than one help text -- only the last one will be used",
403 current_entry->sym->name ?: "<choice>");
404 }
Ulf Magnusson1b9eda22018-01-31 10:34:30 +0100405
406 /* Is the help text empty or all whitespace? */
407 if ($2[strspn($2, " \f\n\r\t\v")] == '\0')
408 zconfprint("warning: '%s' defined with blank help text",
409 current_entry->sym->name ?: "<choice>");
410
Sam Ravnborg03d29122007-07-21 00:00:36 +0200411 current_entry->help = $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412};
413
414/* depends option */
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416depends: T_DEPENDS T_ON expr T_EOL
417{
418 menu_add_dep($3);
419 printd(DEBUG_PARSE, "%s:%d:depends on\n", zconf_curname(), zconf_lineno());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
Arnaud Lacombe86e187f2010-11-06 18:30:23 -0300422/* visibility option */
Masahiro Yamada413cd192018-12-11 20:00:46 +0900423visible: T_VISIBLE if_expr T_EOL
Arnaud Lacombe86e187f2010-11-06 18:30:23 -0300424{
425 menu_add_visibility($2);
426};
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/* prompt statement */
429
430prompt_stmt_opt:
431 /* empty */
432 | prompt if_expr
433{
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200434 menu_add_prompt(P_PROMPT, $1, $2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};
436
437prompt: T_WORD
438 | T_WORD_QUOTE
439;
440
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900441end: T_ENDMENU T_EOL { $$ = "menu"; }
442 | T_ENDCHOICE T_EOL { $$ = "choice"; }
443 | T_ENDIF T_EOL { $$ = "if"; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444;
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446if_expr: /* empty */ { $$ = NULL; }
447 | T_IF expr { $$ = $2; }
448;
449
450expr: symbol { $$ = expr_alloc_symbol($1); }
Jan Beulich31847b62015-06-15 13:00:21 +0100451 | symbol T_LESS symbol { $$ = expr_alloc_comp(E_LTH, $1, $3); }
452 | symbol T_LESS_EQUAL symbol { $$ = expr_alloc_comp(E_LEQ, $1, $3); }
453 | symbol T_GREATER symbol { $$ = expr_alloc_comp(E_GTH, $1, $3); }
454 | symbol T_GREATER_EQUAL symbol { $$ = expr_alloc_comp(E_GEQ, $1, $3); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 | symbol T_EQUAL symbol { $$ = expr_alloc_comp(E_EQUAL, $1, $3); }
456 | symbol T_UNEQUAL symbol { $$ = expr_alloc_comp(E_UNEQUAL, $1, $3); }
457 | T_OPEN_PAREN expr T_CLOSE_PAREN { $$ = $2; }
458 | T_NOT expr { $$ = expr_alloc_one(E_NOT, $2); }
459 | expr T_OR expr { $$ = expr_alloc_two(E_OR, $1, $3); }
460 | expr T_AND expr { $$ = expr_alloc_two(E_AND, $1, $3); }
461;
462
Ulf Magnusson26e47a32017-10-08 19:11:18 +0200463/* For symbol definitions, selects, etc., where quotes are not accepted */
464nonconst_symbol: T_WORD { $$ = sym_lookup($1, 0); free($1); };
465
466symbol: nonconst_symbol
Roman Zippel5a1aa8a2008-02-29 05:11:50 +0100467 | T_WORD_QUOTE { $$ = sym_lookup($1, SYMBOL_CONST); free($1); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468;
469
Roman Zippel5a1aa8a2008-02-29 05:11:50 +0100470word_opt: /* empty */ { $$ = NULL; }
471 | T_WORD
472
Masahiro Yamada9ced3bd2018-05-28 18:21:49 +0900473/* assignment statement */
474
Masahiro Yamada171a5152018-12-11 20:01:02 +0900475assignment_stmt: T_WORD assign_op assign_val T_EOL { variable_add($1, $3, $2); free($1); free($3); }
Masahiro Yamadac3d22872018-12-11 20:01:01 +0900476
477assign_op:
478 T_EQUAL { $$ = VAR_RECURSIVE; }
479 | T_COLON_EQUAL { $$ = VAR_SIMPLE; }
480 | T_PLUS_EQUAL { $$ = VAR_APPEND; }
481;
Masahiro Yamada9ced3bd2018-05-28 18:21:49 +0900482
483assign_val:
484 /* empty */ { $$ = xstrdup(""); };
485 | T_ASSIGN_VAL
486;
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488%%
489
490void conf_parse(const char *name)
491{
492 struct symbol *sym;
493 int i;
494
495 zconf_initscan(name);
496
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200497 _menu_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Roman Zippela02f0572005-11-08 21:34:53 -0800499 if (getenv("ZCONF_DEBUG"))
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900500 yydebug = 1;
501 yyparse();
Masahiro Yamada9ced3bd2018-05-28 18:21:49 +0900502
503 /* Variables are expanded in the parse phase. We can free them here. */
504 variable_all_del();
505
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900506 if (yynerrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 exit(1);
Yann E. MORIN6902dcc2013-09-03 17:07:18 +0200508 if (!modules_sym)
509 modules_sym = sym_find( "n" );
Arnaud Lacombef6ce00b2010-09-09 21:17:26 -0400510
Masahiro Yamada96d8e482018-05-28 18:21:42 +0900511 if (!menu_has_prompt(&rootmenu)) {
512 current_entry = &rootmenu;
Masahiro Yamada137c0112018-05-28 18:21:44 +0900513 menu_add_prompt(P_MENU, "Main menu", NULL);
Masahiro Yamada96d8e482018-05-28 18:21:42 +0900514 }
Arnaud Lacombef6ce00b2010-09-09 21:17:26 -0400515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 menu_finalize(&rootmenu);
517 for_all_symbols(i, sym) {
Sam Ravnborg5447d342007-05-06 09:20:10 +0200518 if (sym_check_deps(sym))
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900519 yynerrs++;
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900520 }
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900521 if (yynerrs)
Sam Ravnborg5447d342007-05-06 09:20:10 +0200522 exit(1);
Karsten Wiesebfc10002006-12-13 00:34:07 -0800523 sym_set_change_count(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900526static bool zconf_endtoken(const char *tokenname,
527 const char *expected_tokenname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900529 if (strcmp(tokenname, expected_tokenname)) {
Roman Zippela02f0572005-11-08 21:34:53 -0800530 zconf_error("unexpected '%s' within %s block",
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900531 tokenname, expected_tokenname);
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900532 yynerrs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return false;
534 }
535 if (current_menu->file != current_file) {
Roman Zippela02f0572005-11-08 21:34:53 -0800536 zconf_error("'%s' in different file than '%s'",
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900537 tokenname, expected_tokenname);
Roman Zippela02f0572005-11-08 21:34:53 -0800538 fprintf(stderr, "%s:%d: location of the '%s'\n",
539 current_menu->file->name, current_menu->lineno,
Masahiro Yamadacaaebb32018-12-11 20:01:06 +0900540 expected_tokenname);
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900541 yynerrs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return false;
543 }
544 return true;
545}
546
547static void zconfprint(const char *err, ...)
548{
549 va_list ap;
550
Roman Zippela02f0572005-11-08 21:34:53 -0800551 fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
552 va_start(ap, err);
553 vfprintf(stderr, err, ap);
554 va_end(ap);
555 fprintf(stderr, "\n");
556}
557
558static void zconf_error(const char *err, ...)
559{
560 va_list ap;
561
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900562 yynerrs++;
Roman Zippela02f0572005-11-08 21:34:53 -0800563 fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 va_start(ap, err);
565 vfprintf(stderr, err, ap);
566 va_end(ap);
567 fprintf(stderr, "\n");
568}
569
Masahiro Yamada765f4cd2018-01-12 00:50:50 +0900570static void yyerror(const char *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 fprintf(stderr, "%s:%d: %s\n", zconf_curname(), zconf_lineno() + 1, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Josh Triplett65166572009-10-15 12:13:36 -0700575static void print_quoted_string(FILE *out, const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 const char *p;
578 int len;
579
580 putc('"', out);
581 while ((p = strchr(str, '"'))) {
582 len = p - str;
583 if (len)
584 fprintf(out, "%.*s", len, str);
585 fputs("\\\"", out);
586 str = p + 1;
587 }
588 fputs(str, out);
589 putc('"', out);
590}
591
Josh Triplett65166572009-10-15 12:13:36 -0700592static void print_symbol(FILE *out, struct menu *menu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 struct symbol *sym = menu->sym;
595 struct property *prop;
596
597 if (sym_is_choice(sym))
Li Zefanc6ccc302010-04-14 11:44:20 +0800598 fprintf(out, "\nchoice\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 else
Li Zefanc6ccc302010-04-14 11:44:20 +0800600 fprintf(out, "\nconfig %s\n", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 switch (sym->type) {
602 case S_BOOLEAN:
Masahiro Yamadab92d8042017-12-16 00:38:02 +0900603 fputs(" bool\n", out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 break;
605 case S_TRISTATE:
606 fputs(" tristate\n", out);
607 break;
608 case S_STRING:
609 fputs(" string\n", out);
610 break;
611 case S_INT:
612 fputs(" integer\n", out);
613 break;
614 case S_HEX:
615 fputs(" hex\n", out);
616 break;
617 default:
618 fputs(" ???\n", out);
619 break;
620 }
621 for (prop = sym->prop; prop; prop = prop->next) {
622 if (prop->menu != menu)
623 continue;
624 switch (prop->type) {
625 case P_PROMPT:
626 fputs(" prompt ", out);
627 print_quoted_string(out, prop->text);
628 if (!expr_is_yes(prop->visible.expr)) {
629 fputs(" if ", out);
630 expr_fprint(prop->visible.expr, out);
631 }
632 fputc('\n', out);
633 break;
634 case P_DEFAULT:
635 fputs( " default ", out);
636 expr_fprint(prop->expr, out);
637 if (!expr_is_yes(prop->visible.expr)) {
638 fputs(" if ", out);
639 expr_fprint(prop->visible.expr, out);
640 }
641 fputc('\n', out);
642 break;
643 case P_CHOICE:
644 fputs(" #choice value\n", out);
645 break;
Li Zefanc6ccc302010-04-14 11:44:20 +0800646 case P_SELECT:
647 fputs( " select ", out);
648 expr_fprint(prop->expr, out);
649 fputc('\n', out);
650 break;
Nicolas Pitre237e3ad2016-11-11 00:10:05 -0500651 case P_IMPLY:
652 fputs( " imply ", out);
653 expr_fprint(prop->expr, out);
654 fputc('\n', out);
655 break;
Li Zefanc6ccc302010-04-14 11:44:20 +0800656 case P_RANGE:
657 fputs( " range ", out);
658 expr_fprint(prop->expr, out);
659 fputc('\n', out);
660 break;
661 case P_MENU:
662 fputs( " menu ", out);
663 print_quoted_string(out, prop->text);
664 fputc('\n', out);
665 break;
Dirk Goudersecd53ac2018-06-22 21:27:38 +0200666 case P_SYMBOL:
667 fputs( " symbol ", out);
668 fprintf(out, "%s\n", prop->sym->name);
669 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 default:
671 fprintf(out, " unknown prop %d!\n", prop->type);
672 break;
673 }
674 }
Sam Ravnborg03d29122007-07-21 00:00:36 +0200675 if (menu->help) {
676 int len = strlen(menu->help);
677 while (menu->help[--len] == '\n')
678 menu->help[len] = 0;
679 fprintf(out, " help\n%s\n", menu->help);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
683void zconfdump(FILE *out)
684{
685 struct property *prop;
686 struct symbol *sym;
687 struct menu *menu;
688
689 menu = rootmenu.list;
690 while (menu) {
691 if ((sym = menu->sym))
692 print_symbol(out, menu);
693 else if ((prop = menu->prompt)) {
694 switch (prop->type) {
695 case P_COMMENT:
696 fputs("\ncomment ", out);
697 print_quoted_string(out, prop->text);
698 fputs("\n", out);
699 break;
700 case P_MENU:
701 fputs("\nmenu ", out);
702 print_quoted_string(out, prop->text);
703 fputs("\n", out);
704 break;
705 default:
706 ;
707 }
708 if (!expr_is_yes(prop->visible.expr)) {
709 fputs(" depends ", out);
710 expr_fprint(prop->visible.expr, out);
711 fputc('\n', out);
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714
715 if (menu->list)
716 menu = menu->list;
717 else if (menu->next)
718 menu = menu->next;
719 else while ((menu = menu->parent)) {
720 if (menu->prompt && menu->prompt->type == P_MENU)
721 fputs("\nendmenu\n", out);
722 if (menu->next) {
723 menu = menu->next;
724 break;
725 }
726 }
727 }
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#include "util.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731#include "menu.c"