diff options
author | Thomas Lively <tlively@google.com> | 2022-12-14 12:13:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 18:13:54 +0000 |
commit | 974e63d07f92c3042211249f58e738a665ac173f (patch) | |
tree | 03ec226a745b843f2738f790d604b429b4ddab1c /scripts | |
parent | 0668d9328ad57100103d6b59f40de513659e1c6b (diff) | |
download | binaryen-974e63d07f92c3042211249f58e738a665ac173f.tar.gz binaryen-974e63d07f92c3042211249f58e738a665ac173f.tar.bz2 binaryen-974e63d07f92c3042211249f58e738a665ac173f.zip |
Fix OOB string_view read in generated parser code (#5349)
The `op` string_view was intentionally created to point into the `buf` buffer so
that reading past its end would still be safe, but some C++ standard library
implementations assert when reading past the end of a string_view. Change the
generated code to read out of `buf` instead to avoid those assertions.
Fixes #5322.
Fixes #5342.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen-s-parser.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index 349f93362..0874d3218 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -716,16 +716,14 @@ def instruction_parser(new_parser=False): printer = CodePrinter() - printer.print_line("char buf[{}] = {{}};".format(inst_length + 1)) - if new_parser: - printer.print_line("auto str = *keyword;") + printer.print_line("auto op = *keyword;") else: printer.print_line("using namespace std::string_view_literals;") - printer.print_line("auto str = s[0]->str().str;") + printer.print_line("auto op = s[0]->str().str;") - printer.print_line("memcpy(buf, str.data(), str.size());") - printer.print_line("std::string_view op = {buf, str.size()};") + printer.print_line("char buf[{}] = {{}};".format(inst_length + 1)) + printer.print_line("memcpy(buf, op.data(), op.size());") def print_leaf(expr, inst): if new_parser: @@ -744,7 +742,7 @@ def instruction_parser(new_parser=False): def emit(node, idx=0): assert node.children - printer.print_line("switch (op[{}]) {{".format(idx)) + printer.print_line("switch (buf[{}]) {{".format(idx)) with printer.indent(): if node.expr: printer.print_line("case '\\0':") |