summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego Frias <96022404+dzfrias@users.noreply.github.com>2023-08-18 14:06:12 -0700
committerGitHub <noreply@github.com>2023-08-18 21:06:12 +0000
commit7eb5868cf0c37c2fe800fa92017fc063bc8fb991 (patch)
tree5e99c027f15eec1658643a95b8da03800c98efc0 /src
parent3d1d29f6581d634221d2e0d5603a4de3d8f77d69 (diff)
downloadwabt-7eb5868cf0c37c2fe800fa92017fc063bc8fb991.tar.gz
wabt-7eb5868cf0c37c2fe800fa92017fc063bc8fb991.tar.bz2
wabt-7eb5868cf0c37c2fe800fa92017fc063bc8fb991.zip
wasm-strip: add `-R/--remove-section` option (#2282)
Diffstat (limited to 'src')
-rw-r--r--src/tools/wasm-strip.cc18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/tools/wasm-strip.cc b/src/tools/wasm-strip.cc
index 48a83fe5..9b5479cf 100644
--- a/src/tools/wasm-strip.cc
+++ b/src/tools/wasm-strip.cc
@@ -28,6 +28,7 @@ using namespace wabt;
static std::string s_filename;
static std::string s_outfile;
static std::set<std::string_view> v_sections_to_keep{};
+static std::set<std::string_view> v_sections_to_remove{};
static const char s_description[] =
R"( Remove sections of a WebAssembly binary file.
@@ -52,15 +53,22 @@ static void ParseOptions(int argc, char** argv) {
[](const char* value) {
v_sections_to_keep.insert(std::string_view{value});
});
+ parser.AddOption('R', "remove-section", "SECTION NAME",
+ "Section to specifically remove, including all the rest",
+ [](const char* value) {
+ v_sections_to_remove.insert(std::string_view{value});
+ });
parser.Parse(argc, argv);
}
class BinaryReaderStrip : public BinaryReaderNop {
public:
explicit BinaryReaderStrip(std::set<std::string_view> sections_to_keep,
+ std::set<std::string_view> sections_to_remove,
Errors* errors)
: errors_(errors),
sections_to_keep_(sections_to_keep),
+ sections_to_remove_(sections_to_remove),
section_start_(0) {
stream_.WriteU32(WABT_BINARY_MAGIC, "WASM_BINARY_MAGIC");
stream_.WriteU32(WABT_BINARY_VERSION, "WASM_BINARY_VERSION");
@@ -91,7 +99,12 @@ class BinaryReaderStrip : public BinaryReaderNop {
Result BeginCustomSection(Index section_index,
Offset size,
std::string_view section_name) override {
- if (sections_to_keep_.count(section_name) > 0) {
+ if (sections_to_remove_.count(section_name) > 0) {
+ return Result::Ok;
+ }
+
+ if (sections_to_keep_.count(section_name) > 0 ||
+ !sections_to_remove_.empty()) {
stream_.WriteU8Enum(BinarySection::Custom, "section code");
WriteU32Leb128(&stream_, size, "section size");
stream_.WriteData(state->data + section_start_, size, "section data");
@@ -103,6 +116,7 @@ class BinaryReaderStrip : public BinaryReaderNop {
MemoryStream stream_;
Errors* errors_;
std::set<std::string_view> sections_to_keep_;
+ std::set<std::string_view> sections_to_remove_;
Offset section_start_;
};
@@ -127,7 +141,7 @@ int ProgramMain(int argc, char** argv) {
ReadBinaryOptions options(features, nullptr, kReadDebugNames,
kStopOnFirstError, kFailOnCustomSectionError);
- BinaryReaderStrip reader(v_sections_to_keep, &errors);
+ BinaryReaderStrip reader(v_sections_to_keep, v_sections_to_remove, &errors);
result = ReadBinary(file_data.data(), file_data.size(), &reader, options);
FormatErrorsToFile(errors, Location::Type::Binary);
if (Failed(result)) {