summaryrefslogtreecommitdiffstats
path: root/test/parser/test-grub2-source-recursion-infinite.c
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2019-11-14 15:06:26 +0800
committerJeremy Kerr <jk@ozlabs.org>2019-11-29 13:54:10 +0800
commit967cfa7e5c1bfb4d2cf78bb3de3dc6d36b78c440 (patch)
tree880bc62b0e2aeacb70105f923a19821fb1bd4291 /test/parser/test-grub2-source-recursion-infinite.c
parent9711179694bb0e52c5951dc7222f1f79fcba814d (diff)
downloadtalos-petitboot-967cfa7e5c1bfb4d2cf78bb3de3dc6d36b78c440.tar.gz
talos-petitboot-967cfa7e5c1bfb4d2cf78bb3de3dc6d36b78c440.zip
discover/grub2: implement 'source' command
This change add support for the grub2 'source' command, executing a referenced script in the current parse context. We impose a limit of 10 (concurrent) source commands, to prevent infinite recursion. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test/parser/test-grub2-source-recursion-infinite.c')
-rw-r--r--test/parser/test-grub2-source-recursion-infinite.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/parser/test-grub2-source-recursion-infinite.c b/test/parser/test-grub2-source-recursion-infinite.c
new file mode 100644
index 0000000..fbcc5a3
--- /dev/null
+++ b/test/parser/test-grub2-source-recursion-infinite.c
@@ -0,0 +1,43 @@
+
+/* check that have a maximum source recursion limit */
+
+#include "parser-test.h"
+
+#if 0 /* PARSER_EMBEDDED_CONFIG */
+
+name=a$name
+
+menuentry $name {
+ linux /a
+}
+
+source /grub/grub.cfg
+
+#endif
+
+void run_test(struct parser_test *test)
+{
+ struct discover_boot_option *opt;
+ struct discover_context *ctx;
+ struct discover_device *dev;
+
+ ctx = test->ctx;
+ dev = ctx->device;
+
+ test_read_conf_embedded(test, "/grub/grub.cfg");
+
+ test_run_parser(test, "grub2");
+
+ /* we error out after 10 levels, but we should still have
+ * parse results up to that point
+ */
+ check_boot_option_count(ctx, 11);
+
+ opt = get_boot_option(ctx, 0);
+ check_name(opt, "a");
+ check_resolved_local_resource(opt->boot_image, dev, "/a");
+
+ opt = get_boot_option(ctx,10);
+ check_name(opt, "aaaaaaaaaaa");
+ check_resolved_local_resource(opt->boot_image, dev, "/a");
+}
OpenPOWER on IntegriCloud