-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
realloc with size 0 in user_filters.c #17650
Labels
Comments
nielsdos
added a commit
to nielsdos/php-src
that referenced
this issue
Jan 31, 2025
If the returned buffer string is of length 0, then a realloc can happen with length 0. However, the behaviour is implementation-defined. From 7.20.3.1 of C11 spec: > If the size of the space requested is zero, the behavior is > implementation-defined: either a null pointer is returned, > or the behavior is as if the size were some nonzero value, > except that the returned pointer shall not be used to access an object This is problematic for the test case on my system as it returns NULL, causing a memleak and later using it in memcpy causing UB. The bucket code is not prepared to handle a NULL pointer. To solve this, we use MAX to clamp the size to 1 at the least.
nielsdos
added a commit
that referenced
this issue
Feb 7, 2025
* PHP-8.3: Fix GH-17650: realloc with size 0 in user_filters.c
nielsdos
added a commit
that referenced
this issue
Feb 7, 2025
* PHP-8.4: Fix GH-17650: realloc with size 0 in user_filters.c
charmitro
pushed a commit
to wasix-org/php
that referenced
this issue
Mar 13, 2025
If the returned buffer string is of length 0, then a realloc can happen with length 0. However, the behaviour is implementation-defined. From 7.20.3.1 of C11 spec: > If the size of the space requested is zero, the behavior is > implementation-defined: either a null pointer is returned, > or the behavior is as if the size were some nonzero value, > except that the returned pointer shall not be used to access an object This is problematic for the test case on my system as it returns NULL, causing a memleak and later using it in memcpy causing UB. The bucket code is not prepared to handle a NULL pointer. To solve this, we use MAX to clamp the size to 1 at the least. Closes phpGH-17656.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
The following code:
Resulted in this output:
USE_ZEND_ALLOC=0 php test.php
PHP Version
nightly
Operating System
ubuntu 22.04
The text was updated successfully, but these errors were encountered: