]> git.ozlabs.org Git - petitboot/blobdiff - discover/grub2/parser.y
discover/grub2: Allow empty statements
[petitboot] / discover / grub2 / parser.y
index 550c3748df70c0ec1a3636a3f2fc0e242e19e9ef..0540ff3c088b768f106d945d8f1e86ee7660d0e3 100644 (file)
@@ -39,6 +39,7 @@ static void yyerror(struct grub2_parser *, char const *s);
 %token TOKEN_IN                "in"
 %token TOKEN_MENUENTRY         "menuentry"
 %token TOKEN_SELECT            "select"
+%token TOKEN_SUBMENU           "submenu"
 %token TOKEN_THEN              "then"
 %token TOKEN_TIME              "time"
 %token TOKEN_UTIL              "until"
@@ -59,23 +60,23 @@ static void yyerror(struct grub2_parser *, char const *s);
 
 %%
 
-script: statements {
+script:        statements {
                parser->script->statements = $1;
        }
 
-statements: statement {
+statements: /* empty */ {
                $$ = create_statements(parser);
-               statement_append($$, $1);
        }
-       | statements statement {
+       | statements statement TOKEN_EOL {
                statement_append($1, $2);
                $$ = $1;
        }
-
-statement: TOKEN_EOL {
-               $$ = NULL;
+       | statements TOKEN_EOL {
+               $$ = $1;
        }
-       | words TOKEN_EOL {
+
+statement:
+       words {
                   $$ = create_statement_simple(parser, $1);
        }
        | '{' statements '}' {
@@ -84,7 +85,7 @@ statement: TOKEN_EOL {
        | "if" TOKEN_DELIM statement
                "then" TOKEN_EOL
                statements
-               "fi" TOKEN_EOL {
+               "fi" {
                $$ = create_statement_if(parser, $3, $6, NULL);
        }
        | "if" TOKEN_DELIM statement
@@ -92,14 +93,21 @@ statement: TOKEN_EOL {
                statements
                "else" TOKEN_EOL
                statements
-               "fi" TOKEN_EOL {
+               "fi" {
                $$ = create_statement_if(parser, $3, $6, $9);
        }
+       | "function" TOKEN_DELIM word TOKEN_DELIM '{' statements '}' {
+               $$ = create_statement_function(parser, $3, $6);
+       }
        | "menuentry" TOKEN_DELIM words TOKEN_DELIM
-               '{' statements '}'
-               TOKEN_EOL {
+               '{' statements '}' {
                $$ = create_statement_menuentry(parser, $3, $6);
        }
+       | "submenu" TOKEN_DELIM words TOKEN_DELIM
+               '{' statements '}' {
+               /* we just flatten everything */
+               $$ = create_statement_block(parser, $6);
+       }
 
 words: word {
                $$ = create_argv(parser);
@@ -181,6 +189,17 @@ struct grub2_statement *create_statement_block(struct grub2_parser *parser,
        return &stmt->st;
 }
 
+struct grub2_statement *create_statement_function(struct grub2_parser *parser,
+               struct grub2_word *name, struct grub2_statements *body)
+{
+       struct grub2_statement_function *stmt =
+               talloc(parser, struct grub2_statement_function);
+       stmt->st.exec = statement_function_execute;
+       stmt->name = name;
+       stmt->body = body;
+       return &stmt->st;
+}
+
 void statement_append(struct grub2_statements *stmts,
                struct grub2_statement *stmt)
 {