LibWeb+LibXML: Make Listener::set_source(ByteString) fallible

`set_source` takes a ByteString but the implementation might require a
specific encoding. Make it fallible so that we don't need to crash in
the case of invalid UTF-8 or similar.

The test includes a sequence of invalid UTF-8 bytes that crash the
browser without this change.
This commit is contained in:
rmg-x 2025-09-30 10:53:41 -05:00 committed by Ali Mohammad Pur
parent 2397ae4af5
commit b9554038ff
Notes: github-actions[bot] 2025-10-02 00:27:16 +00:00
7 changed files with 25 additions and 5 deletions

View file

@ -62,9 +62,10 @@ XMLDocumentBuilder::XMLDocumentBuilder(DOM::Document& document, XMLScriptingSupp
m_namespace_stack.append({ {}, 1 });
}
void XMLDocumentBuilder::set_source(ByteString source)
ErrorOr<void> XMLDocumentBuilder::set_source(ByteString source)
{
m_document->set_source(MUST(String::from_byte_string(source)));
m_document->set_source(TRY(String::from_byte_string(source)));
return {};
}
void XMLDocumentBuilder::set_doctype(XML::Doctype doctype)

View file

@ -30,7 +30,7 @@ public:
bool has_error() const { return m_has_error; }
private:
virtual void set_source(ByteString) override;
virtual ErrorOr<void> set_source(ByteString) override;
virtual void set_doctype(XML::Doctype) override;
virtual void element_start(XML::Name const& name, OrderedHashMap<XML::Name, ByteString> const& attributes) override;
virtual void element_end(XML::Name const& name) override;

View file

@ -199,7 +199,12 @@ ErrorOr<void, ParseError> Parser::parse_with_listener(Listener& listener)
{
m_listener = &listener;
ScopeGuard unset_listener { [this] { m_listener = nullptr; } };
m_listener->set_source(m_source);
if (auto const maybe_source_error = m_listener->set_source(m_source); maybe_source_error.is_error()) {
auto const error_message = maybe_source_error.error().string_literal();
return parse_error(m_lexer.current_position(), Expectation { error_message });
}
m_listener->document_start();
auto result = parse_internal();
if (result.is_error())

View file

@ -34,7 +34,7 @@ struct ParseError {
struct Listener {
virtual ~Listener() { }
virtual void set_source(ByteString) { }
virtual ErrorOr<void> set_source(ByteString) { return {}; }
virtual void set_doctype(XML::Doctype) { }
virtual void document_start() { }
virtual void document_end() { }