Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Slow parsing of malformed font files #97

Closed
5225225 opened this issue Jan 1, 2022 · 3 comments
Closed

Slow parsing of malformed font files #97

5225225 opened this issue Jan 1, 2022 · 3 comments
Labels
enhancement New feature or request

Comments

@5225225
Copy link

5225225 commented Jan 1, 2022

Fuzz target:

#![no_main]
use libfuzzer_sys::fuzz_target;

fuzz_target!(|data: &[u8]| {
    fontdue::Font::from_bytes(data, Default::default());
});

Samples are in a zip file to stop github complaining about the file type

155 seconds: slow.zip
33 seconds: slow.zip

@mooman219
Copy link
Owner

Very neat. I'm not sure if I can reasonably defend against this, but I'll look into this.

@mooman219 mooman219 added the enhancement New feature or request label Feb 5, 2022
@Rush
Copy link

Rush commented Mar 10, 2022

I think this is critical for any applications where users can provide their own font files.

@mooman219
Copy link
Owner

The two sample fonts specifically:

Both trigger a Result::err() immediately for me right now for being too malformed. So this is fixed.

The DoS issue in general:

I do not recommend using fontdue for untrusted input because it can be used to take an unreasonable amount of time. The user won't be able to trigger any unsafe behavior, but it can be used to lockup compute resources on parsing the file. There are upper limits for fields that I parse, but it can still be unreasonable. I can imagine a conforming font that's explicitly written to exist at those limits. These issues also exist for rusttype, but those libraries don't do their parsing upfront, and may trigger slow behavior later into their lifecycles.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants