|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-04-18 01:01 UTC] cardoe@php.net
[2007-04-18 07:55 UTC] tony2001@php.net
[2007-04-23 15:22 UTC] cardoe@php.net
[2007-07-13 01:24 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ PHP "leaks" memory in the ldap_{first|next}_attribute() functions. Interestingly, the ldap_get_attributes() function does not leak. I put "leaks" in quotes because the leak() function does not detect the issue; presumably, the memory is programmatically freed, just not until PHP exits. If one does something like: while (true) { $s = ldap_search($link, $base, $filter, $atts); for ($e = ldap_first_entry($link, $s); $e != false; $e = ldap_next_entry($link, $e)) { for ($a = ldap_first_attribute($link, $e, $ber); $a; $a = ldap_next_attribute($link, $e, $ber)) { } } ldap_free_result($s); } then PHP will eat all available memory and bomb with a memory allocation error. Unbinding and re-binding has no effect. Reproduce code: --------------- A working 51-line script that shows memory allocation versus iteration count can be found at this url: http://enterprise.bidmc.harvard.edu/private/php-bugs/ldap-leak-test.php There are a few variables you can set/tweak at the top to get it to point at whatever LDAP server you have handy. Choosing a search filter that returns a dozen or so entries is ideal for showing the runaway memory. You can also change the "$fail" variable from True to False, which will stop the leak by way of using the roughly-equivalent function ldap_get_attributes(). Expected result: ---------------- PHP's memory subsystem should collect and re-use the freed memory. After some number of iterations of the test script (typically 100 to 500) the results reported by memory_get_usage() should remain stable. Actual result: -------------- The results reported by memory_get_usage() increase fairly linearly with each iteration until memory_limit is reached, whence the script bombs.