All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: Adrian Perez de Castro <aperez@igalia.com>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/1] package/wpewebkit: security bump to version 2.32.4
Date: Wed, 22 Sep 2021 21:26:26 +0200	[thread overview]
Message-ID: <453916af-9c27-a00e-b31e-1150c84e9718@mind.be> (raw)
In-Reply-To: <20210920124632.3472855-1-aperez@igalia.com>



On 20/09/2021 14:46, Adrian Perez de Castro wrote:
> This is a minor release which provides fixes for CVE-2021-30858 and
> a number of other potential security issues without an associated CVE.
> Patch "0001-Add-ldp-and-stp-support-for-FP-registers-plus-some-b.patch"
> is deleted as it has been included in this release.
> 
> Full release notes can be found at:
> 
>    https://wpewebkit.org/release/wpewebkit-2.32.4.html
> 
> An accompanying security advisory has been published at:
> 
>    https://wpewebkit.org/security/WSA-2021-0005.html
> 
> Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   ...support-for-FP-registers-plus-some-b.patch | 382 ------------------
>   package/wpewebkit/wpewebkit.hash              |   9 +-
>   package/wpewebkit/wpewebkit.mk                |   2 +-
>   3 files changed, 5 insertions(+), 388 deletions(-)
>   delete mode 100644 package/wpewebkit/0001-Add-ldp-and-stp-support-for-FP-registers-plus-some-b.patch
> 
> diff --git a/package/wpewebkit/0001-Add-ldp-and-stp-support-for-FP-registers-plus-some-b.patch b/package/wpewebkit/0001-Add-ldp-and-stp-support-for-FP-registers-plus-some-b.patch
> deleted file mode 100644
> index c8b8501bdb..0000000000
> --- a/package/wpewebkit/0001-Add-ldp-and-stp-support-for-FP-registers-plus-some-b.patch
> +++ /dev/null
> @@ -1,382 +0,0 @@
> -From 05f6ba814422a392d59037ebe4412168da0e44db Mon Sep 17 00:00:00 2001
> -From: Mark Lam <mark.lam@apple.com>
> -Date: Tue, 15 Jun 2021 01:04:01 +0000
> -Subject: [PATCH] Add ldp and stp support for FP registers, plus some bug
> - fixes. https://bugs.webkit.org/show_bug.cgi?id=226998 rdar://79313717
> -
> -Reviewed by Robin Morisset.
> -
> -This patch does the following:
> -1. Add ldp and stp support for FP registers.
> -   This simply entails providing wrappers that take FPRegisterID and passing true
> -   for the V bit to the underlying loadStoreRegisterPairXXX encoding function.
> -   V is for vector (aka floating point).  This will cause bit 26 in the instruction
> -   to be set indicating that it's loading / storing floating point registers.
> -
> -2. Add ARM64 disassembler support ldp and stp for FP registers.
> -   This includes fixing A64DOpcodeLoadStoreRegisterPair::mask to not exclude the
> -   FP versions of the instructions.
> -
> -3. Add ARM64Assembler query methods for determining if an immediate is encodable
> -   as the signed 12 bit immediate of ldp and stp instructions.
> -
> -4. Fix ldp and stp offset form to take an int instead of an unsigned.  The
> -   immediate it takes is a 12-bit signed int, not unsigned.
> -
> -5. In loadStoreRegisterPairXXX encoding functions used by the forms of ldp and stp,
> -   RELEASE_ASSERT that the passed in immediate is encodable.  Unlike ldur / stur,
> -   there is no form of ldp / stp that takes the offset in a register that can be
> -   used as a fail over.  Hence, if the immediate is not encodable, this is a
> -   non-recoverable event.  The client is responsible for ensuring that the offset
> -   is encodable.
> -
> -6. Added some testmasm tests for testing the offset form (as opposed to PreIndex
> -   and PostIndex forms) of ldp and stp.  We currently only use the offset form
> -   in our JITs.
> -
> -* assembler/ARM64Assembler.h:
> -(JSC::ARM64Assembler::isValidLDPImm):
> -(JSC::ARM64Assembler::isValidLDPFPImm):
> -(JSC::ARM64Assembler::ldp):
> -(JSC::ARM64Assembler::ldnp):
> -(JSC::ARM64Assembler::isValidSTPImm):
> -(JSC::ARM64Assembler::isValidSTPFPImm):
> -(JSC::ARM64Assembler::stp):
> -(JSC::ARM64Assembler::stnp):
> -(JSC::ARM64Assembler::loadStoreRegisterPairPostIndex):
> -(JSC::ARM64Assembler::loadStoreRegisterPairPreIndex):
> -(JSC::ARM64Assembler::loadStoreRegisterPairOffset):
> -(JSC::ARM64Assembler::loadStoreRegisterPairNonTemporal):
> -* assembler/AssemblerCommon.h:
> -(JSC::isValidSignedImm7):
> -* assembler/MacroAssemblerARM64.h:
> -(JSC::MacroAssemblerARM64::loadPair64):
> -(JSC::MacroAssemblerARM64::storePair64):
> -* assembler/testmasm.cpp:
> -(JSC::testLoadStorePair64Int64):
> -(JSC::testLoadStorePair64Double):
> -* disassembler/ARM64/A64DOpcode.cpp:
> -(JSC::ARM64Disassembler::A64DOpcodeLoadStoreRegisterPair::format):
> -* disassembler/ARM64/A64DOpcode.h:
> -
> -
> -
> -Canonical link: https://commits.webkit.org/238801@main
> -git-svn-id: https://svn.webkit.org/repository/webkit/trunk@278856 268f45cc-cd09-0410-ab3c-d52691b4dbfc
> -
> -Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> -[james.hilliard1@gmail.com: backport from upstream commit
> -05f6ba814422a392d59037ebe4412168da0e44db]
> ----
> - Source/JavaScriptCore/ChangeLog               |  61 +++
> - .../JavaScriptCore/assembler/ARM64Assembler.h | 104 ++++-
> - .../assembler/AssemblerCommon.h               |  11 +-
> - .../assembler/MacroAssemblerARM64.h           |  20 +
> - Source/JavaScriptCore/assembler/testmasm.cpp  | 437 ++++++++++++++++++
> - .../disassembler/ARM64/A64DOpcode.cpp         |   8 +-
> - .../disassembler/ARM64/A64DOpcode.h           |   4 +-
> - 7 files changed, 630 insertions(+), 15 deletions(-)
> -
> -diff --git a/Source/JavaScriptCore/assembler/ARM64Assembler.h b/Source/JavaScriptCore/assembler/ARM64Assembler.h
> -index 2cc53c8ccda5..758cbe402779 100644
> ---- a/Source/JavaScriptCore/assembler/ARM64Assembler.h
> -+++ b/Source/JavaScriptCore/assembler/ARM64Assembler.h
> -@@ -1,5 +1,5 @@
> - /*
> -- * Copyright (C) 2012-2020 Apple Inc. All rights reserved.
> -+ * Copyright (C) 2012-2021 Apple Inc. All rights reserved.
> -  *
> -  * Redistribution and use in source and binary forms, with or without
> -  * modification, are permitted provided that the following conditions
> -@@ -1114,6 +1114,20 @@ public:
> -         insn(0x0);
> -     }
> -
> -+    template<int datasize>
> -+    ALWAYS_INLINE static bool isValidLDPImm(int immediate)
> -+    {
> -+        unsigned immedShiftAmount = memPairOffsetShift(false, MEMPAIROPSIZE_INT(datasize));
> -+        return isValidSignedImm7(immediate, immedShiftAmount);
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE static bool isValidLDPFPImm(int immediate)
> -+    {
> -+        unsigned immedShiftAmount = memPairOffsetShift(true, MEMPAIROPSIZE_FP(datasize));
> -+        return isValidSignedImm7(immediate, immedShiftAmount);
> -+    }
> -+
> -     template<int datasize>
> -     ALWAYS_INLINE void ldp(RegisterID rt, RegisterID rt2, RegisterID rn, PairPostIndex simm)
> -     {
> -@@ -1129,17 +1143,45 @@ public:
> -     }
> -
> -     template<int datasize>
> --    ALWAYS_INLINE void ldp(RegisterID rt, RegisterID rt2, RegisterID rn, unsigned pimm = 0)
> -+    ALWAYS_INLINE void ldp(RegisterID rt, RegisterID rt2, RegisterID rn, int simm = 0)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairOffset(MEMPAIROPSIZE_INT(datasize), false, MemOp_LOAD, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void ldnp(RegisterID rt, RegisterID rt2, RegisterID rn, int simm = 0)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairNonTemporal(MEMPAIROPSIZE_INT(datasize), false, MemOp_LOAD, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void ldp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, PairPostIndex simm)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairPostIndex(MEMPAIROPSIZE_FP(datasize), true, MemOp_LOAD, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void ldp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, PairPreIndex simm)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairPreIndex(MEMPAIROPSIZE_FP(datasize), true, MemOp_LOAD, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void ldp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, int simm = 0)
> -     {
> -         CHECK_DATASIZE();
> --        insn(loadStoreRegisterPairOffset(MEMPAIROPSIZE_INT(datasize), false, MemOp_LOAD, pimm, rn, rt, rt2));
> -+        insn(loadStoreRegisterPairOffset(MEMPAIROPSIZE_FP(datasize), true, MemOp_LOAD, simm, rn, rt, rt2));
> -     }
> -
> -     template<int datasize>
> --    ALWAYS_INLINE void ldnp(RegisterID rt, RegisterID rt2, RegisterID rn, unsigned pimm = 0)
> -+    ALWAYS_INLINE void ldnp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, int simm = 0)
> -     {
> -         CHECK_DATASIZE();
> --        insn(loadStoreRegisterPairNonTemporal(MEMPAIROPSIZE_INT(datasize), false, MemOp_LOAD, pimm, rn, rt, rt2));
> -+        insn(loadStoreRegisterPairNonTemporal(MEMPAIROPSIZE_FP(datasize), true, MemOp_LOAD, simm, rn, rt, rt2));
> -     }
> -
> -     template<int datasize>
> -@@ -1743,6 +1785,18 @@ public:
> -         smaddl(rd, rn, rm, ARM64Registers::zr);
> -     }
> -
> -+    template<int datasize>
> -+    ALWAYS_INLINE static bool isValidSTPImm(int immediate)
> -+    {
> -+        return isValidLDPImm<datasize>(immediate);
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE static bool isValidSTPFPImm(int immediate)
> -+    {
> -+        return isValidLDPFPImm<datasize>(immediate);
> -+    }
> -+
> -     template<int datasize>
> -     ALWAYS_INLINE void stp(RegisterID rt, RegisterID rt2, RegisterID rn, PairPostIndex simm)
> -     {
> -@@ -1758,17 +1812,45 @@ public:
> -     }
> -
> -     template<int datasize>
> --    ALWAYS_INLINE void stp(RegisterID rt, RegisterID rt2, RegisterID rn, unsigned pimm = 0)
> -+    ALWAYS_INLINE void stp(RegisterID rt, RegisterID rt2, RegisterID rn, int simm = 0)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairOffset(MEMPAIROPSIZE_INT(datasize), false, MemOp_STORE, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void stnp(RegisterID rt, RegisterID rt2, RegisterID rn, int simm = 0)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairNonTemporal(MEMPAIROPSIZE_INT(datasize), false, MemOp_STORE, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void stp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, PairPostIndex simm)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairPostIndex(MEMPAIROPSIZE_FP(datasize), true, MemOp_STORE, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void stp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, PairPreIndex simm)
> -+    {
> -+        CHECK_DATASIZE();
> -+        insn(loadStoreRegisterPairPreIndex(MEMPAIROPSIZE_FP(datasize), true, MemOp_STORE, simm, rn, rt, rt2));
> -+    }
> -+
> -+    template<int datasize>
> -+    ALWAYS_INLINE void stp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, int simm = 0)
> -     {
> -         CHECK_DATASIZE();
> --        insn(loadStoreRegisterPairOffset(MEMPAIROPSIZE_INT(datasize), false, MemOp_STORE, pimm, rn, rt, rt2));
> -+        insn(loadStoreRegisterPairOffset(MEMPAIROPSIZE_FP(datasize), true, MemOp_STORE, simm, rn, rt, rt2));
> -     }
> -
> -     template<int datasize>
> --    ALWAYS_INLINE void stnp(RegisterID rt, RegisterID rt2, RegisterID rn, unsigned pimm = 0)
> -+    ALWAYS_INLINE void stnp(FPRegisterID rt, FPRegisterID rt2, RegisterID rn, int simm = 0)
> -     {
> -         CHECK_DATASIZE();
> --        insn(loadStoreRegisterPairNonTemporal(MEMPAIROPSIZE_INT(datasize), false, MemOp_STORE, pimm, rn, rt, rt2));
> -+        insn(loadStoreRegisterPairNonTemporal(MEMPAIROPSIZE_FP(datasize), true, MemOp_STORE, simm, rn, rt, rt2));
> -     }
> -
> -     template<int datasize>
> -@@ -3544,6 +3626,7 @@ protected:
> -         ASSERT(opc == (opc & 1)); // Only load or store, load signed 64 is handled via size.
> -         ASSERT(V || (size != MemPairOp_LoadSigned_32) || (opc == MemOp_LOAD)); // There isn't an integer store signed.
> -         unsigned immedShiftAmount = memPairOffsetShift(V, size);
> -+        RELEASE_ASSERT(isValidSignedImm7(immediate, immedShiftAmount));
> -         int imm7 = immediate >> immedShiftAmount;
> -         ASSERT((imm7 << immedShiftAmount) == immediate && isInt<7>(imm7));
> -         return (0x28800000 | size << 30 | V << 26 | opc << 22 | (imm7 & 0x7f) << 15 | rt2 << 10 | xOrSp(rn) << 5 | rt);
> -@@ -3575,6 +3658,7 @@ protected:
> -         ASSERT(opc == (opc & 1)); // Only load or store, load signed 64 is handled via size.
> -         ASSERT(V || (size != MemPairOp_LoadSigned_32) || (opc == MemOp_LOAD)); // There isn't an integer store signed.
> -         unsigned immedShiftAmount = memPairOffsetShift(V, size);
> -+        RELEASE_ASSERT(isValidSignedImm7(immediate, immedShiftAmount));
> -         int imm7 = immediate >> immedShiftAmount;
> -         ASSERT((imm7 << immedShiftAmount) == immediate && isInt<7>(imm7));
> -         return (0x29800000 | size << 30 | V << 26 | opc << 22 | (imm7 & 0x7f) << 15 | rt2 << 10 | xOrSp(rn) << 5 | rt);
> -@@ -3592,6 +3676,7 @@ protected:
> -         ASSERT(opc == (opc & 1)); // Only load or store, load signed 64 is handled via size.
> -         ASSERT(V || (size != MemPairOp_LoadSigned_32) || (opc == MemOp_LOAD)); // There isn't an integer store signed.
> -         unsigned immedShiftAmount = memPairOffsetShift(V, size);
> -+        RELEASE_ASSERT(isValidSignedImm7(immediate, immedShiftAmount));
> -         int imm7 = immediate >> immedShiftAmount;
> -         ASSERT((imm7 << immedShiftAmount) == immediate && isInt<7>(imm7));
> -         return (0x29000000 | size << 30 | V << 26 | opc << 22 | (imm7 & 0x7f) << 15 | rt2 << 10 | xOrSp(rn) << 5 | rt);
> -@@ -3609,6 +3694,7 @@ protected:
> -         ASSERT(opc == (opc & 1)); // Only load or store, load signed 64 is handled via size.
> -         ASSERT(V || (size != MemPairOp_LoadSigned_32) || (opc == MemOp_LOAD)); // There isn't an integer store signed.
> -         unsigned immedShiftAmount = memPairOffsetShift(V, size);
> -+        RELEASE_ASSERT(isValidSignedImm7(immediate, immedShiftAmount));
> -         int imm7 = immediate >> immedShiftAmount;
> -         ASSERT((imm7 << immedShiftAmount) == immediate && isInt<7>(imm7));
> -         return (0x28000000 | size << 30 | V << 26 | opc << 22 | (imm7 & 0x7f) << 15 | rt2 << 10 | xOrSp(rn) << 5 | rt);
> -diff --git a/Source/JavaScriptCore/assembler/AssemblerCommon.h b/Source/JavaScriptCore/assembler/AssemblerCommon.h
> -index a594823d6a4d..2e50ffdbc82a 100644
> ---- a/Source/JavaScriptCore/assembler/AssemblerCommon.h
> -+++ b/Source/JavaScriptCore/assembler/AssemblerCommon.h
> -@@ -1,5 +1,5 @@
> - /*
> -- * Copyright (C) 2012-2019 Apple Inc. All rights reserved.
> -+ * Copyright (C) 2012-2021 Apple Inc. All rights reserved.
> -  *
> -  * Redistribution and use in source and binary forms, with or without
> -  * modification, are permitted provided that the following conditions
> -@@ -74,6 +74,15 @@ ALWAYS_INLINE bool isValidSignedImm9(int32_t value)
> -     return isInt9(value);
> - }
> -
> -+ALWAYS_INLINE bool isValidSignedImm7(int32_t value, int alignmentShiftAmount)
> -+{
> -+    constexpr int32_t disallowedHighBits = 32 - 7;
> -+    int32_t shiftedValue = value >> alignmentShiftAmount;
> -+    bool fitsIn7Bits = shiftedValue == ((shiftedValue << disallowedHighBits) >> disallowedHighBits);
> -+    bool hasCorrectAlignment = value == (shiftedValue << alignmentShiftAmount);
> -+    return fitsIn7Bits && hasCorrectAlignment;
> -+}
> -+
> - class ARM64LogicalImmediate {
> - public:
> -     static ARM64LogicalImmediate create32(uint32_t value)
> -diff --git a/Source/JavaScriptCore/assembler/MacroAssemblerARM64.h b/Source/JavaScriptCore/assembler/MacroAssemblerARM64.h
> -index f86aec1c5400..14e477fde3b8 100644
> ---- a/Source/JavaScriptCore/assembler/MacroAssemblerARM64.h
> -+++ b/Source/JavaScriptCore/assembler/MacroAssemblerARM64.h
> -@@ -1244,6 +1244,16 @@ public:
> -         m_assembler.ldnp<64>(dest1, dest2, src, offset.m_value);
> -     }
> -
> -+    void loadPair64(RegisterID src, FPRegisterID dest1, FPRegisterID dest2)
> -+    {
> -+        loadPair64(src, TrustedImm32(0), dest1, dest2);
> -+    }
> -+
> -+    void loadPair64(RegisterID src, TrustedImm32 offset, FPRegisterID dest1, FPRegisterID dest2)
> -+    {
> -+        m_assembler.ldp<64>(dest1, dest2, src, offset.m_value);
> -+    }
> -+
> -     void abortWithReason(AbortReason reason)
> -     {
> -         // It is safe to use dataTempRegister directly since this is a crashing JIT Assert.
> -@@ -1568,6 +1578,16 @@ public:
> -         m_assembler.stnp<64>(src1, src2, dest, offset.m_value);
> -     }
> -
> -+    void storePair64(FPRegisterID src1, FPRegisterID src2, RegisterID dest)
> -+    {
> -+        storePair64(src1, src2, dest, TrustedImm32(0));
> -+    }
> -+
> -+    void storePair64(FPRegisterID src1, FPRegisterID src2, RegisterID dest, TrustedImm32 offset)
> -+    {
> -+        m_assembler.stp<64>(src1, src2, dest, offset.m_value);
> -+    }
> -+
> -     void store32(RegisterID src, ImplicitAddress address)
> -     {
> -         if (tryStoreWithOffset<32>(src, address.base, address.offset))
> -diff --git a/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.cpp b/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.cpp
> -index 247c79dcb428..dfe09b671470 100644
> ---- a/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.cpp
> -+++ b/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.cpp
> -@@ -1,5 +1,5 @@
> - /*
> -- * Copyright (C) 2012, 2016 Apple Inc. All rights reserved.
> -+ * Copyright (C) 2012-2021 Apple Inc. All rights reserved.
> -  *
> -  * Redistribution and use in source and binary forms, with or without
> -  * modification, are permitted provided that the following conditions
> -@@ -72,6 +72,8 @@ static const OpcodeGroupInitializer opcodeGroupList[] = {
> -     OPCODE_GROUP_ENTRY(0x0a, A64DOpcodeLogicalShiftedRegister),
> -     OPCODE_GROUP_ENTRY(0x0b, A64DOpcodeAddSubtractExtendedRegister),
> -     OPCODE_GROUP_ENTRY(0x0b, A64DOpcodeAddSubtractShiftedRegister),
> -+    OPCODE_GROUP_ENTRY(0x0c, A64DOpcodeLoadStoreRegisterPair),
> -+    OPCODE_GROUP_ENTRY(0x0d, A64DOpcodeLoadStoreRegisterPair),
> -     OPCODE_GROUP_ENTRY(0x11, A64DOpcodeAddSubtractImmediate),
> -     OPCODE_GROUP_ENTRY(0x12, A64DOpcodeMoveWide),
> -     OPCODE_GROUP_ENTRY(0x12, A64DOpcodeLogicalImmediate),
> -@@ -1363,9 +1365,9 @@ const char* A64DOpcodeLoadStoreRegisterPair::format()
> -     appendInstructionName(thisOpName);
> -     unsigned offsetShift;
> -     if (vBit()) {
> --        appendFPRegisterName(rt(), size());
> -+        appendFPRegisterName(rt(), size() + 2);
> -         appendSeparator();
> --        appendFPRegisterName(rt2(), size());
> -+        appendFPRegisterName(rt2(), size() + 2);
> -         offsetShift = size() + 2;
> -     } else {
> -         if (!lBit())
> -diff --git a/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.h b/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.h
> -index e071babb8e01..fd9db7cae58e 100644
> ---- a/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.h
> -+++ b/Source/JavaScriptCore/disassembler/ARM64/A64DOpcode.h
> -@@ -1,5 +1,5 @@
> - /*
> -- * Copyright (C) 2012-2019 Apple Inc. All rights reserved.
> -+ * Copyright (C) 2012-2021 Apple Inc. All rights reserved.
> -  *
> -  * Redistribution and use in source and binary forms, with or without
> -  * modification, are permitted provided that the following conditions
> -@@ -787,7 +787,7 @@ public:
> -
> - class A64DOpcodeLoadStoreRegisterPair : public A64DOpcodeLoadStore {
> - public:
> --    static constexpr uint32_t mask = 0x3a000000;
> -+    static constexpr uint32_t mask = 0x38000000;
> -     static constexpr uint32_t pattern = 0x28000000;
> -
> -     DEFINE_STATIC_FORMAT(A64DOpcodeLoadStoreRegisterPair, thisObj);
> ---
> -2.25.1
> -
> diff --git a/package/wpewebkit/wpewebkit.hash b/package/wpewebkit/wpewebkit.hash
> index 39bf8829d0..ff8bd1f30a 100644
> --- a/package/wpewebkit/wpewebkit.hash
> +++ b/package/wpewebkit/wpewebkit.hash
> @@ -1,8 +1,7 @@
> -
> -# From https://wpewebkit.org/releases/wpewebkit-2.32.3.tar.xz.sums
> -md5  1e34412c50fe8d1ff084738477ecad7e  wpewebkit-2.32.3.tar.xz
> -sha1  157344d8febfc89d6731404c30857f122f220d6e  wpewebkit-2.32.3.tar.xz
> -sha256  859bd1bbe51026aecfb2b6f5c8c024d88fb69ac6fcdc74c788c9fbe9499d740d  wpewebkit-2.32.3.tar.xz
> +# From https://wpewebkit.org/releases/wpewebkit-2.32.4.tar.xz.sums
> +md5  94ca1cc3f7b2de8b96c59d6e59cafcd0  wpewebkit-2.32.4.tar.xz
> +sha1  19b8ebdbfef193ca50f7625703d871db87624f86  wpewebkit-2.32.4.tar.xz
> +sha256  381f1422cbc319db1aa42dda48de39590ed90ac3bec6b81ec83f3f2cae5c3eeb  wpewebkit-2.32.4.tar.xz
>   
>   # Hashes for license files:
>   sha256  0b5d3a7cc325942567373b0ecd757d07c132e0ebd7c97bfc63f7e1a76094edb4  Source/WebCore/LICENSE-APPLE
> diff --git a/package/wpewebkit/wpewebkit.mk b/package/wpewebkit/wpewebkit.mk
> index 42bea291e6..4c11cd21a7 100644
> --- a/package/wpewebkit/wpewebkit.mk
> +++ b/package/wpewebkit/wpewebkit.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -WPEWEBKIT_VERSION = 2.32.3
> +WPEWEBKIT_VERSION = 2.32.4
>   WPEWEBKIT_SITE = http://www.wpewebkit.org/releases
>   WPEWEBKIT_SOURCE = wpewebkit-$(WPEWEBKIT_VERSION).tar.xz
>   WPEWEBKIT_INSTALL_STAGING = YES
> 
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2021-09-22 19:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-20 12:46 [Buildroot] [PATCH 1/1] package/wpewebkit: security bump to version 2.32.4 Adrian Perez de Castro
2021-09-22 19:26 ` Arnout Vandecappelle [this message]
2021-10-04 21:42 ` Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=453916af-9c27-a00e-b31e-1150c84e9718@mind.be \
    --to=arnout@mind.be \
    --cc=aperez@igalia.com \
    --cc=buildroot@buildroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.