ID:          47396
 Comment by:  jon dot cooke at frogtrade dot com
 Reported By: [email protected]
 Status:      Open
 Bug Type:    Feature/Change Request
 PHP Version: 5.2.9RC2
 New Comment:

IMHO the issue is in zend_register_resource, which uses 
zend_hash_next_free_element to get the index to use... which just 
returns ht->nNextFreeElement, which is always 1 larger than the 
biggest index in the table (later updated as indicates by 
magicaltux)

I'm going to try a different method for finding a free index if the 
next_free_index is big enough and see how it goes.

Time to give some back I think.


Previous Comments:
------------------------------------------------------------------------

[2009-02-15 16:07:28] [email protected]

I had a look at the problem inside zend, and found the problem most
likely coming from zend_hash.c

       if ((long)h >= (long)ht->nNextFreeElement) {
         ht->nNextFreeElement = h + 1;
       }

If h (the element being inserted) is higher or equal than the current
"nNextFreeElement", we set this to h+1.

This does not handles:
- The fact that we might get back to 0
- The fact that once we get back to 0, the "next free element" might be
non free (and will most likely be for #1 and #2).


------------------------------------------------------------------------

[2009-02-15 16:02:53] [email protected]

Description:
------------
Using php for long running daemons and opening files in there can lead
to crashes, when resource ids wrap around the integer/long size and come
to 0 at last.

There is no sanity check if a resource is already in use when assigning
it.

This problem is more likely to appear on 32bit systems than on 64,
since it takes ages to overflow that number with 64bit. Still, it is a
problem.

Example:
- Open a file -> resource id is now +1
- Open many files. Eventually, it will reach MAX_INT or whatever number
that is and wrap around to "-" that number, increasing from now on.
- Double the time, and the script reaches an resource id of 0
- Now chances are very high that the an existing resource is at the
same id
- PHP crashes


The problem has been - wrongly - described here:
http://gnuvince.wordpress.com/2008/10/28/php-wrong-for-long-running-processes-wrong-for-america/
The issue is the one I described here



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=47396&edit=1

Reply via email to