summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-12-30 01:23:05 -0800
committerStanislav Malyshev <stas@php.net>2014-12-30 01:23:05 -0800
commitf9ad3086693fce680fbe246e4a45aa92edd2ac35 (patch)
tree7c41c96b4242ab802b29f3d6724c2be06bfc9f19
parentcd387b457572709cbaaaee15ccc0db1185a3c23a (diff)
downloadphp-git-f9ad3086693fce680fbe246e4a45aa92edd2ac35.tar.gz
FIx bug #68618 (out of bounds read crashes php-cgi)
-rw-r--r--NEWS2
-rw-r--r--sapi/cgi/cgi_main.c7
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 581f3a62b8..fa57ef3161 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 20?? PHP 5.4.37
+- CGI:
+ . Fix bug #68618 (out of bounds read crashes php-cgi). (Stas)
18 Dec 2014 PHP 5.4.36
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index b8ff878fe4..0af98a47d4 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -2429,14 +2429,17 @@ consult the installation file that came with this distribution, or visit \n\
int i = 1;
c = file_handle.handle.stream.mmap.buf[i++];
- while (c != '\n' && c != '\r' && c != EOF) {
+ while (c != '\n' && c != '\r' && i < file_handle.handle.stream.mmap.len) {
c = file_handle.handle.stream.mmap.buf[i++];
}
if (c == '\r') {
- if (file_handle.handle.stream.mmap.buf[i] == '\n') {
+ if (i < file_handle.handle.stream.mmap.len && file_handle.handle.stream.mmap.buf[i] == '\n') {
i++;
}
}
+ if(i > file_handle.handle.stream.mmap.len) {
+ i = file_handle.handle.stream.mmap.len;
+ }
file_handle.handle.stream.mmap.buf += i;
file_handle.handle.stream.mmap.len -= i;
}