Valgrinding shared modules
Over the past year I've been writing various commercial (more about that later) and open source PHP extensions (such as QuickHash, more about that later too). Most of the time they are shared extensions that are not part of PHP. While testing whether I correctly free all memory with Valgrind, I ran into the issue where I couldn't see the stack frames of where the memory leaks occurred in the extensions, and once I even ran into a Valgrind bug. The reason why Valgrind could not show the function names belonging to the stack frames is because PHP had already unloaded the shared extensions from memory.
I often found myself compiling the extensions into PHP statically so that there was nothing to unload for PHP, but that was becoming annoying. So instead I added a patch to PHP that prevents the shutdown sequence from actually unloading the modules. You can trigger this behaviour by setting the ZEND_DONT_UNLOAD_MODULES environment variable before running your script:
# export ZEND_DONT_UNLOAD_MODULES=1 # valgrind --leak-check=full --show-reachable=yes php -r 'echo "Hello World\n";'
Without ZEND_DONT_UNLOAD_MODULES exported, my Valgrind output shows a block like:
# unset ZEND_DONT_UNLOAD_MODULES # valgrind --leak-check=full --show-reachable=yes php -r 'echo "Hello World\n";' ... ==25829== 8 bytes in 1 blocks are indirectly lost in loss record 2 of 21 ==25829== at 0x4C25E84: calloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==25829== by 0xCE440DC: ??? ==25829== by 0xCE44316: ??? ==25829== by 0xCE44368: ??? ==25829== by 0xCBEE55F: ??? ==25829== by 0xCBD3F87: ??? ==25829== by 0x949A85: zend_activate_modules (zend_API.c:2285) ==25829== by 0x8B5EBC: php_request_startup (main.c:1491) ==25829== by 0xA83D60: do_cli (php_cli.c:954) ==25829== by 0xA84F7B: main (php_cli.c:1356) ...
And with ZEND_DONT_UNLOAD_MODULES exported, it shows instead:
# export ZEND_DONT_UNLOAD_MODULES=1 # valgrind --leak-check=full --show-reachable=yes php -r 'echo "Hello World\n";' ... ==25824== 8 bytes in 1 blocks are still reachable in loss record 2 of 30 ==25824== at 0x4C25E84: calloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==25824== by 0xCE440DC: event_base_priority_init (in /usr/lib/libevent-1.4.so.2.1.3) ==25824== by 0xCE44316: event_base_new (in /usr/lib/libevent-1.4.so.2.1.3) ==25824== by 0xCE44368: event_init (in /usr/lib/libevent-1.4.so.2.1.3) ==25824== by 0xCBEE55F: zm_activate_http_request_pool (http_request_pool_api.c:58) ==25824== by 0xCBD3F87: zm_activate_http (http.c:373) ==25824== by 0x949A85: zend_activate_modules (zend_API.c:2285) ==25824== by 0x8B5EBC: php_request_startup (main.c:1491) ==25824== by 0xA83D60: do_cli (php_cli.c:954) ==25824== by 0xA84F7B: main (php_cli.c:1356) ...
As you can see all the symbols are now nicely resolved. This patch is part of the upcoming PHP 5.4, but applies to PHP 5.2 and PHP 5.3 as well.
Life Line
Updated a bus_stop, a waste_basket, and a bench
Created 2 waste_baskets; Updated 2 bus_stops and a crossing; Confirmed a dry_cleaning shop
Merge branch 'v2022'
Update data to 2026a
Sigh, the AI Slop has now come for the PHP project.
I had this little Black-capped Chickadee eating out of my hand earlier on a lovely 8k walk with @dseguy and @DaveLiddament in the snow at the back end of @ConFooCa .
Thanks Canada!
Updated a restaurant
Created a ticket shop, a bench, and a toilet
Created a picnic_table; Updated a viewpoint
Updated a shelter
I hiked 9.3km in 3h12m03s
Updated 3 restaurants
I walked 3.1km in 29m25s
I walked 4.4km in 45m01s
I walked 5.4km in 55m28s
Updated a restaurant; Confirmed a hotel
I walked 6.3km in 1h12m59s
Paraphrasing opening keynote speaker at ConFoo: "Should we go back to the waterfall method of writing massive specs upfront to feed to AI coding agents?"
I walked 1.6km in 17m29s
I walked 2.1km in 17m44s
Updated a pub
I walked 2.6km in 26m41s
Merged pull request #1065
Comparison whether class is userland or internal used the wrong macro



Shortlink
This article has a short URL available: https://drck.me/vlgrnd-shared-8qh