mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +00:00
redis: 6.2.7 -> 6.2.8
This upgrade include fix for CVE-2022-3647 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
e32295911e
commit
005143057e
@@ -1,4 +1,4 @@
|
||||
From 6134b471c35df826ccb41aab9a47e5c89e15a0c4 Mon Sep 17 00:00:00 2001
|
||||
From 26bd72f3b8de22e5036d86e6c79f815853b83473 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Mon, 26 Oct 2020 21:32:22 -0700
|
||||
Subject: [PATCH] Define correct gregs for RISCV32
|
||||
@@ -13,10 +13,10 @@ Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
|
||||
1 file changed, 24 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/debug.c b/src/debug.c
|
||||
index e7fec29..5abb404 100644
|
||||
index 5318c14..8c21b47 100644
|
||||
--- a/src/debug.c
|
||||
+++ b/src/debug.c
|
||||
@@ -1039,7 +1039,9 @@ static void *getMcontextEip(ucontext_t *uc) {
|
||||
@@ -1055,7 +1055,9 @@ static void* getAndSetMcontextEip(ucontext_t *uc, void *eip) {
|
||||
#endif
|
||||
#elif defined(__linux__)
|
||||
/* Linux */
|
||||
@@ -24,10 +24,10 @@ index e7fec29..5abb404 100644
|
||||
+ #if defined(__riscv) && __riscv_xlen == 32
|
||||
+ return (void*) uc->uc_mcontext.__gregs[REG_PC];
|
||||
+ #elif defined(__i386__) || ((defined(__X86_64__) || defined(__x86_64__)) && defined(__ILP32__))
|
||||
return (void*) uc->uc_mcontext.gregs[14]; /* Linux 32 */
|
||||
GET_SET_RETURN(uc->uc_mcontext.gregs[14], eip);
|
||||
#elif defined(__X86_64__) || defined(__x86_64__)
|
||||
return (void*) uc->uc_mcontext.gregs[16]; /* Linux 64 */
|
||||
@@ -1206,8 +1208,28 @@ void logRegisters(ucontext_t *uc) {
|
||||
GET_SET_RETURN(uc->uc_mcontext.gregs[16], eip);
|
||||
@@ -1222,8 +1224,28 @@ void logRegisters(ucontext_t *uc) {
|
||||
#endif
|
||||
/* Linux */
|
||||
#elif defined(__linux__)
|
||||
@@ -57,3 +57,6 @@ index e7fec29..5abb404 100644
|
||||
serverLog(LL_WARNING,
|
||||
"\n"
|
||||
"EAX:%08lx EBX:%08lx ECX:%08lx EDX:%08lx\n"
|
||||
--
|
||||
2.25.1
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ SRC_URI = "http://download.redis.io/releases/${BP}.tar.gz \
|
||||
file://GNU_SOURCE.patch \
|
||||
file://0006-Define-correct-gregs-for-RISCV32.patch \
|
||||
"
|
||||
SRC_URI[sha256sum] = "b7a79cc3b46d3c6eb52fa37dde34a4a60824079ebdfb3abfbbfa035947c55319"
|
||||
SRC_URI[sha256sum] = "f91ab24bcb42673cb853292eb5d43c2017d11d659854808ed6a529c97297fdfe"
|
||||
|
||||
inherit autotools-brokensep update-rc.d systemd useradd
|
||||
|
||||
Reference in New Issue
Block a user