-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various security and bug fixes; adds support for the JIT compiler. * Fixed bug #81026 (PHP-FPM oob R/W in root process leading to privilege escalation) (CVE-2021-21703). https://www.php.net/ChangeLog-8.php#8.0.0 Signed-off-by: Claude Bing <cbing@cybernetics.com>
- Loading branch information
Claude Bing
committed
Nov 10, 2021
1 parent
a2640f3
commit 93aad82
Showing
15 changed files
with
193 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 13 additions & 9 deletions
22
...vtools/php/php/debian-php-fixheader.patch → ...host-specific-info-from-header-file.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
From 1234a8ef7c5ab88e24bc5908f0ccfd55af21aa39 Mon Sep 17 00:00:00 2001 | ||
From: Leon Anavi <leon.anavi@konsulko.com> | ||
Date: Mon, 31 Aug 2020 16:03:27 +0300 | ||
Subject: [PATCH] php: remove host specific info from header file | ||
From c81d0bd3491a6c6371d9df2f43956d109f984310 Mon Sep 17 00:00:00 2001 | ||
From: Claude Bing <cbing@cybernetics.com> | ||
Date: Tue, 9 Nov 2021 13:02:29 -0500 | ||
Subject: [PATCH 03/11] php: remove host specific info from header file | ||
|
||
Based on: | ||
https://sources.debian.org/data/main/p/php7.3/7.3.6-1/debian/patches/ | ||
0036-php-5.4.9-fixheader.patch | ||
|
||
Upstream-Status: Inappropriate [not author] | ||
|
||
Signed-off-by: Joe Slater <joe.slater@windriver.com> | ||
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> | ||
|
||
update patch to 8.0.12 | ||
Signed-off-by: Claude Bing <cbing@cybernetics.com> | ||
--- | ||
configure.ac | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/configure.ac b/configure.ac | ||
index 2a474ba36d..6d22a21630 100644 | ||
index 1eafd62a44..90c94323aa 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -1323,7 +1323,7 @@ PHP_BUILD_DATE=`date -u +%Y-%m-%d` | ||
fi | ||
AC_DEFINE_UNQUOTED(PHP_BUILD_DATE,"$PHP_BUILD_DATE",[PHP build date]) | ||
@@ -1289,7 +1289,7 @@ PHP_REMOVE_USR_LIB(LDFLAGS) | ||
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PHP_LDFLAGS" | ||
EXTRA_LDFLAGS_PROGRAM="$EXTRA_LDFLAGS_PROGRAM $PHP_LDFLAGS" | ||
|
||
-UNAME=`uname -a | xargs` | ||
+UNAME=`uname | xargs` | ||
PHP_UNAME=${PHP_UNAME:-$UNAME} | ||
AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME",[uname -a output]) | ||
PHP_OS=`uname | xargs` | ||
-- | ||
2.17.1 | ||
2.25.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.