summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/php_pdo_sqlite.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-09-17 12:44:56 +0000
committerWez Furlong <wez@php.net>2004-09-17 12:44:56 +0000
commit99e290f882c9116e74418b9271a75d557533c4f5 (patch)
tree737c6e4ec61d02067b60372407542e3235d511e6 /ext/pdo_sqlite/php_pdo_sqlite.h
parent9085689d6faec9eeae6802638ff2dea233d536b8 (diff)
downloadphp-git-99e290f882c9116e74418b9271a75d557533c4f5.tar.gz
Fix for Bug #24189: possibly unsafe select(2) usage.
We avoid the problem by using poll(2). On systems without poll(2) (older bsd-ish systems, and win32), we emulate poll(2) using select(2) and check for valid descriptors before attempting to access them via the descriptor sets. If an out-of-range descriptor is detected, an E_WARNING is raised suggesting that PHP should be recompiled with a larger FD_SETSIZE (and also with a suggested value). Most uses of select(2) in the source are to poll a single descriptor, so a couple of handy wrapper functions have been added to make this easier. A configure option --enable-fd-setsize has been added to both the unix and win32 builds; on unix we default to 16384 and on windows we default to 256. Windows FD_SETSIZE imposes a limit on the maximum number of descriptors that can be select()ed at once, whereas the unix FD_SETSIZE limit is based on the highest numbered descriptor; 256 should be plenty for PHP scripts under windows (the default OS setting is 64). The win32 specific parts are untested; will do that now.
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite.h')
0 files changed, 0 insertions, 0 deletions