php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login

Patch fix-segfault-wit-multipart-form-data-POST-and-404-request for Built-in web server Bug #55121

Patch version 2011-12-09 02:52 UTC

Return to Bug #55121 | Download this patch
Patch Revisions:

Developer: reeze.xia@gmail.com

Index: main/SAPI.c
===================================================================
--- main/SAPI.c	(revision 320680)
+++ main/SAPI.c	(working copy)
@@ -533,6 +533,7 @@
 	}
 	if (SG(rfc1867_uploaded_files)) {
 		destroy_uploaded_files_hash(TSRMLS_C);
+		SG(rfc1867_uploaded_files) = NULL;
 	}
 	if (SG(sapi_headers).mimetype) {
 		efree(SG(sapi_headers).mimetype);
Index: sapi/cli/tests/php_cli_server_014.phpt
===================================================================
--- sapi/cli/tests/php_cli_server_014.phpt	(revision 0)
+++ sapi/cli/tests/php_cli_server_014.phpt	(revision 0)
@@ -0,0 +1,84 @@
+--TEST--
+Bug #55121: Segfault with multipart/form-data POST / 404 request
+--SKIPIF--
+<?php
+include "skipif.inc"; 
+?>
+--FILE--
+<?php
+include "php_cli_server.inc";
+php_cli_server_start(NULL, TRUE);
+
+list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS);
+$port = intval($port)?:80;
+$output = '';
+
+$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
+if (!$fp) {
+  die("connect failed");
+}
+
+
+$script_name = "php_cli_server_014.tmp.php";
+
+// empty php file
+file_put_contents(__DIR__ . "/$script_name", '<?php echo "OK\n";'); 
+
+if(fwrite($fp, <<<HEADER
+POST /$script_name HTTP/1.1
+Host: {$host}
+Content-Type: multipart/form-data; boundary=---------123456789
+Content-Length: 70
+
+---------123456789
+Content-Type: application/x-www-form-urlencoded
+a=b
+HEADER
+)) {
+	while (!feof($fp)) {
+		$output .= fgets($fp);
+	}
+}
+
+fclose($fp);
+
+$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
+if(fwrite($fp, <<<HEADER
+POST /main/foo/bar HTTP/1.1
+Host: {$host}
+Content-Type: multipart/form-data; boundary=---------123456789
+Content-Length: 70
+
+---------123456789
+Content-Type: application/x-www-form-urlencoded
+a=b
+HEADER
+)) {
+	while (!feof($fp)) {
+		$output .= fgets($fp);
+	}
+}
+
+echo preg_replace("/<style type=\"text\/css\">(.*?)<\/style>/s", "<style type=\"text/css\">AAA</style>", $output), "\n";
+fclose($fp);
+
+@unlink(__DIR__ . "/$script_name");
+?>
+--EXPECTF--
+
+HTTP/1.1 200 OK
+Host: %s
+Connection: closed
+X-Powered-By: %s
+Content-type: %s
+
+OK
+HTTP/1.1 404 Not Found
+Host: %s
+Connection: closed
+Content-Type: %s
+Content-Length: %d
+
+<html><head><title>404 Not Found</title><style type="text/css">AAA</style>
+</head><body><h1 class="h">Not Found</h1><p>The requested resource /main/foo/bar was not found on this server.</p></body></html>
+
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 13:01:28 2024 UTC