From: gacek at intertele dot pl
Operating system: Linux
PHP version: 5.1.5CVS
PHP Bug Type: Reproducible crash
Bug description: FastCGI env (cgi vars) table overflow
Description:
------------
To many CGI variables overflows cgi var table (128 entries) in fastcgi
mode, crashing php process.
Default env table size (127 usable entries) may be to small in
cgi+ssl+force_redirect.
Apparently it's fixed in 5.2 branch, but not in 5.1.
Expected result:
----------------
No crash, larger env table.
Actual result:
--------------
Simple fix below increases env table to 256 (255 usable entries) and
performs checks where apropriate.
diff -ru php-5.1.4/sapi/cgi/fastcgi.c
php-5.1.4-patched/sapi/cgi/fastcgi.c
--- php-5.1.4/sapi/cgi/fastcgi.c 2006-05-23 14:23:08.000000000
+0200
+++ php-5.1.4-patched/sapi/cgi/fastcgi.c 2006-05-23
08:14:25.000000000 +0200
@@ -401,7 +401,7 @@
int name_len, val_len;
char *s;
- while (p < end) {
+ while (p < end && n < FCGI_MAX_ENV_VARS - 1) {
name_len = *p++;
if (name_len >= 128) {
name_len = ((name_len & 0x7f) << 24);
@@ -928,7 +928,9 @@
}
env++;
}
- *env = fcgi_strndup(var, var_len);
+
+ if (env < req->env + sizeof(req->env) - 1)
+ *env = fcgi_strndup(var, var_len);
}
}
diff -ru php-5.1.4/sapi/cgi/fastcgi.h
php-5.1.4-patched/sapi/cgi/fastcgi.h
--- php-5.1.4/sapi/cgi/fastcgi.h 2006-05-03 17:39:16.000000000
+0200
+++ php-5.1.4-patched/sapi/cgi/fastcgi.h 2006-05-23
07:59:36.000000000 +0200
@@ -26,6 +26,8 @@
#define FCGI_KEEP_CONN 1
+#define FCGI_MAX_ENV_VARS 256
+
typedef enum _fcgi_role {
FCGI_RESPONDER = 1,
FCGI_AUTHORIZER = 2,
@@ -105,7 +107,7 @@
unsigned char out_buf[1024*8];
unsigned char reserved[sizeof(fcgi_end_request_rec)];
- char *env[128];
+ char *env[FCGI_MAX_ENV_VARS];
} fcgi_request;
int fcgi_init(void);
--
Edit bug report at http://bugs.php.net/?id=37576&edit=1
--
Try a CVS snapshot (PHP 4.4):
http://bugs.php.net/fix.php?id=37576&r=trysnapshot44
Try a CVS snapshot (PHP 5.2):
http://bugs.php.net/fix.php?id=37576&r=trysnapshot52
Try a CVS snapshot (PHP 6.0):
http://bugs.php.net/fix.php?id=37576&r=trysnapshot60
Fixed in CVS: http://bugs.php.net/fix.php?id=37576&r=fixedcvs
Fixed in release:
http://bugs.php.net/fix.php?id=37576&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=37576&r=needtrace
Need Reproduce Script: http://bugs.php.net/fix.php?id=37576&r=needscript
Try newer version: http://bugs.php.net/fix.php?id=37576&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=37576&r=support
Expected behavior: http://bugs.php.net/fix.php?id=37576&r=notwrong
Not enough info:
http://bugs.php.net/fix.php?id=37576&r=notenoughinfo
Submitted twice:
http://bugs.php.net/fix.php?id=37576&r=submittedtwice
register_globals: http://bugs.php.net/fix.php?id=37576&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=37576&r=php3
Daylight Savings: http://bugs.php.net/fix.php?id=37576&r=dst
IIS Stability: http://bugs.php.net/fix.php?id=37576&r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=37576&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=37576&r=float
No Zend Extensions: http://bugs.php.net/fix.php?id=37576&r=nozend
MySQL Configuration Error: http://bugs.php.net/fix.php?id=37576&r=mysqlcfg