Jump to content
The Uniform Server Community

httpd1.exe Security Token Handle Leak (MEMLEAK)


 Share

Recommended Posts

OS I have tried: Windows 7 SP1 and Windows Server 2008 R2 (both is 64-bit OS)...

 

Uniserver version I have tried: 8.5.8-Coral and 8.5.5-Coral

 

How to reproduce this problem:

1. Download Uniserver 8.5.5-Coral and extract it. Run apache and mysql as usual.

 

2. Download Process Explorer http://download.sysinternals.com/files/ProcessExplorer.zip and extract it.

 

3. Run Process Explorer as Administrator, then View > Select Columns. In "Process Performance" tab, tick "Handle Count" > OK. After this, click View > Lower Pane View > tick "Handle"...

 

4. Click on httpd1.exe child processes which have around 300 handle count at startup... The lower pane will show the handle list...

 

5. Open your favorite browser, and go to http://127.0.0.1

 

Everytime you press refresh (F5) on your browser (re-request the webserver), you will notice that httpd1.exe have 1 more handle count in Process Explorer window... In the lower pane view, you will notice that 1 new security token handle is created with the name format like this: YOURCOMPUTERNAME\YOURUSERNAME:RANDOMTOKEN

 

This is where the problem happened. Everytime httpd1.exe server new web request, the handle is created, but NEVER closed, and will hogging system resources over time. It's okay on test server, but once you put it in production server with real websites running, the opened Handle Count of httpd1.exe will increase to a very high number...

 

In my server, it goes from 300 (at startup) to 1 million opened handle only in 2 days! Other process only consumes around 10 ~ 2000 handles. httpd1.exe memory consumption still remains around 20mb, but because handle consumes kernel space, your ram usage will increase around +512mb mysteriously for every 1 million handle...

 

In only two weeks, my server experience some slowdowns / freeze because too much handle for Windows to hold... I need to restart Uniserver Apache service every few days so the handle count reset back to around 300 after restart (and it will goes up quickly again everytime the world accessing my websites)...

 

If you want to mimic the behaviour of production server, after accessing http://127.0.0.1 try to hold down F5 buttons for 1 minutes... See how is the handle count now...

 

It only happened since I upgrade to 8.5.5-Coral (I'm sorry I forget the version before this which doesn't have this leak issues)... Maybe it's the problem on Apache or PHP compilation...

 

post-3906-1343135543_thumb.jpg

Link to comment
Share on other sites

To add something to the empirical data:

 

I just tried 8.5.7-Coral on Windows Server 2008 32-Bit and the problem did not occur for me. After torturing the F5 button for a minute, I could see the handle count went up about 100 and then stayed there no matter how often I refreshed.

Link to comment
Share on other sites

I confirm this issue on Windows 7 SP1 x64. Not only tokens, but also threads! There are about ~200 threads created! Most of them are in suspended state. This must be also leak, no application need so many threads as 8 threads is enough for ordinary thread pool. One thread takes 2MB of RAM (for the stack), so it's like ~400MB leak! Or not?

 

Have to restart my server periodically...

Link to comment
Share on other sites

I wonder why if I refresh the default uniserver index.php, it leaks handle, while if change it with static index.html, it doesn't leak...

 

So I try open default uniserver index.php, commenting some function, then test refresh again...

 

Turns out that is_readable() function in line 7 of index.php was the culprit...

 

Try this simple script, save as index.php

 

 

<?php

if (is_readable("index.php"))

?>

 

^

it will leak handles each time this is executed. but if you change value index.php to something else (so file doesnt exist and is_readable() return false), it will not leak handles...

 

this is php bugs...

Link to comment
Share on other sites

After browsing through php sites, seems there's already a bug report:

 

https://bugs.php.net/bug.php?id=62444

 

It seems happened since introduction of php 5.3.0. If you see in the changelogs:

 

http://www.php.net/ChangeLog-5.php

 

Added support for ACL (is_writable, is_readable, reports now correct results) on Windows. (Pierre, Venkat Raman Don, Kanwaljeet Singla)

 

Temporary solution:

 

Revert back to UniServer 5.6a-Nano http://forum.uniformserver.com/index.php?showtopic=1878 because it uses PHP 5.2.13. But the old apache version somehow turns me off because eaccelerator often crashes the apache. New apache seems more stable and consumes less memory.

Link to comment
Share on other sites

A bug not reported is never going to be fixed then again a reported bug may be ignored. That said perhaps the following two submitted bug reports will be addressed in the next releases of PHP:

 

https://bugs.php.net/bug.php?id=62444

https://bugs.php.net/bug.php?id=62669

 

All the best

Ric :)

Link to comment
Share on other sites

  • 4 weeks later...
  • 3 months later...

It looks like these new versions need to be put into the next release of Steel-9 Beta. But I suppose you realize this... ;)

 

Regards,

BobS

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...