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

Added decodeMemoryLimit to Config to avoid memory leaks. #476

Merged
merged 4 commits into from
Nov 25, 2021

Conversation

b3n-l
Copy link
Contributor

@b3n-l b3n-l commented Oct 29, 2021

Per issue #475, we have potential for a memory leak, especially with Flate compressed data.

This PR adds an optional memory limit in the config, that can be used by any filter.

By default, the limit is set to 0 or unlimited.

This may not be the best way to propagate the setting, but I wanted it to be a configurable option, rather than hard-coded.

@k00ni
Copy link
Collaborator

k00ni commented Nov 1, 2021

Thank you for your pull request!

I am busy in the next 2 weeks, but will try to come back to you until end of November.

A few remarks:

@b3n-l
Copy link
Contributor Author

b3n-l commented Nov 1, 2021

To confirm, this fixes the issue described in #475.

I made it optional, so that it didn't break compatibility if people are expecting to be able to deflate huge files.

I will update the PR with appropriate types.

@k00ni k00ni linked an issue Nov 1, 2021 that may be closed by this pull request
@b3n-l
Copy link
Contributor Author

b3n-l commented Nov 12, 2021

Just a quick note,

I've investigated why it's failing the tests and it's because there's now the wrong number of arguments in some of the test calls. I'd appreciate input into the best format/structure for adding these arguments, as not all decompression methods will use/need them.

See decodeFilter as an example.

@k00ni
Copy link
Collaborator

k00ni commented Nov 16, 2021

I'd appreciate input into the best format/structure for adding these arguments, as not all decompression methods will use/need them.

There is no official statement. In my opinion the most important parameters should be first. Optional parameters always at the end.

If that doesn't help, can you please be more clear about what you mean?

@b3n-l
Copy link
Contributor Author

b3n-l commented Nov 19, 2021

I've updated the PR, and simplified it slightly too, I'm now happy with it.

I think this should fix the tests failing too.

@k00ni k00ni self-assigned this Nov 25, 2021
@k00ni
Copy link
Collaborator

k00ni commented Nov 25, 2021

I took the liberty to fix remaining coding style issues. Any remarks @b3n-l?

If there are no objections I will merge it soon.

@b3n-l
Copy link
Contributor Author

b3n-l commented Nov 25, 2021

Thanks for that, all looks good to me.

@k00ni k00ni merged commit e056671 into smalot:master Nov 25, 2021
k00ni added a commit that referenced this pull request Nov 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Crashing PHP process through memory exhaustion when decompressing images.
2 participants