summaryrefslogtreecommitdiffstats
path: root/discover/grub2/script.c
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2013-09-13 11:53:46 +0800
committerJeremy Kerr <jk@ozlabs.org>2013-09-24 13:14:59 +0800
commit352621fe8719c8488098719240252bc04c303963 (patch)
tree7c398b578c425434aabe3f12e2d8633058ed80f8 /discover/grub2/script.c
parent84a286992f5c2d100583686a84d533c3e1256562 (diff)
downloadtalos-petitboot-352621fe8719c8488098719240252bc04c303963.tar.gz
talos-petitboot-352621fe8719c8488098719240252bc04c303963.zip
discover/grub2: Add initial execution code
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'discover/grub2/script.c')
-rw-r--r--discover/grub2/script.c65
1 files changed, 63 insertions, 2 deletions
diff --git a/discover/grub2/script.c b/discover/grub2/script.c
index 067b0c9..b6d3221 100644
--- a/discover/grub2/script.c
+++ b/discover/grub2/script.c
@@ -7,6 +7,11 @@
#include "grub2.h"
+#define to_stmt_simple(stmt) \
+ container_of(stmt, struct grub2_statement_simple, st)
+#define to_stmt_if(stmt) \
+ container_of(stmt, struct grub2_statement_if, st)
+
struct env_entry {
const char *name;
const char *value;
@@ -39,12 +44,13 @@ static bool expand_word(struct grub2_script *script, struct grub2_word *word)
src = word->text;
n = regexec(&script->var_re, src, 1, &match, 0);
- if (n == 0)
+ printf("%s %s: %d\n", __func__, word->text, n);
+ if (n != 0)
return false;
val = env_lookup(script, src + match.rm_so,
match.rm_eo - match.rm_so);
- if (val)
+ if (!val)
val = "";
dest = talloc_strndup(script, src, match.rm_so);
@@ -74,6 +80,61 @@ static void process_expansions(struct grub2_script *script,
}
}
+int statements_execute(struct grub2_script *script,
+ struct grub2_statements *stmts)
+{
+ struct grub2_statement *stmt;
+ int rc = 0;
+
+ list_for_each_entry(&stmts->list, stmt, list) {
+ if (stmt->exec)
+ rc = stmt->exec(script, stmt);
+ printf("%s(%p)\n", __func__, stmt);
+ }
+ return rc;
+}
+
+int statement_simple_execute(struct grub2_script *script,
+ struct grub2_statement *statement)
+{
+ struct grub2_statement_simple *st = to_stmt_simple(statement);
+
+ if (!st->argv)
+ return 0;
+
+ process_expansions(script, st->argv);
+
+ return 0;
+}
+
+int statement_if_execute(struct grub2_script *script,
+ struct grub2_statement *statement)
+{
+ struct grub2_statement_if *st = to_stmt_if(statement);
+ struct grub2_statements *case_stmts;
+ int rc;
+
+ rc = st->condition->exec(script, st->condition);
+
+ if (rc == 0)
+ case_stmts = st->true_case;
+ else
+ case_stmts = st->false_case;
+
+ if (case_stmts)
+ statements_execute(script, case_stmts);
+ else
+ rc = 0;
+
+ return rc;
+}
+
+
+void script_execute(struct grub2_script *script)
+{
+ statements_execute(script, script->statements);
+}
+
static int script_destroy(void *p)
{
struct grub2_script *script = p;
OpenPOWER on IntegriCloud