forked from pool/MozillaFirefox
da3e0c974f
* You can now toggle Narrate in ReaderMode with the keyboard shortcut "n." * You can find added support for search—with or without diacritics—in the PDF viewer. * The Linux sandbox has been strengthened: processes exposed to web content no longer have access to the X Window system (X11). * Firefox now supports credit card autofill and capture in Germany and France. MFSA 2022-13 (bsc#1197903) * CVE-2022-1097 (bmo#1745667) Use-after-free in NSSToken objects * CVE-2022-28281 (bmo#1755621) Out of bounds write due to unexpected WebAuthN Extensions * CVE-2022-28282 (bmo#1751609) Use-after-free in DocumentL10n::TranslateDocument * CVE-2022-28283 (bmo#1754066) Missing security checks for fetching sourceMapURL * CVE-2022-28284 (bmo#1754522) Script could be executed via svg's use element * CVE-2022-28285 (bmo#1756957) Incorrect AliasSet used in JIT Codegen * CVE-2022-28286 (bmo#1735265) iframe contents could be rendered outside the border * CVE-2022-28287 (bmo#1741515) Text Selection could crash Firefox * CVE-2022-24713 (bmo#1758509) Denial of Service via complex regular expressions * CVE-2022-28289 (bmo#1663508, bmo#1744525, bmo#1753508, bmo#1757476, bmo#1757805, bmo#1758549, bmo#1758776) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=970
54 lines
2.0 KiB
Diff
54 lines
2.0 KiB
Diff
# HG changeset patch
|
|
# User msirringhaus@suse.de
|
|
# Date 1558452408 -7200
|
|
# Tue May 21 17:26:48 2019 +0200
|
|
# Node ID 602e92722e765a3c238d3b96b26c0c8063b5eeb4
|
|
# Parent 136e1f2c44a3099b3e49a576fa62c8ad77aa431e
|
|
[mq]: mozilla-s390-context.patch
|
|
|
|
diff --git a/js/src/wasm/WasmSignalHandlers.cpp b/js/src/wasm/WasmSignalHandlers.cpp
|
|
--- a/js/src/wasm/WasmSignalHandlers.cpp
|
|
+++ b/js/src/wasm/WasmSignalHandlers.cpp
|
|
@@ -157,16 +157,20 @@ using mozilla::DebugOnly;
|
|
# define R32_sig(p) ((p)->uc_mcontext.gp_regs[32])
|
|
# endif
|
|
# if defined(__linux__) && defined(__loongarch__)
|
|
# define EPC_sig(p) ((p)->uc_mcontext.pc)
|
|
# define RRA_sig(p) ((p)->uc_mcontext.gregs[1])
|
|
# define RSP_sig(p) ((p)->uc_mcontext.gregs[3])
|
|
# define RFP_sig(p) ((p)->uc_mcontext.gregs[22])
|
|
# endif
|
|
+# if defined(__linux__) && defined(__s390x__)
|
|
+# define GR_sig(p,x) ((p)->uc_mcontext.gregs[x])
|
|
+# define PSWa_sig(p) ((p)->uc_mcontext.psw.addr)
|
|
+# endif
|
|
# elif defined(__NetBSD__)
|
|
# define EIP_sig(p) ((p)->uc_mcontext.__gregs[_REG_EIP])
|
|
# define EBP_sig(p) ((p)->uc_mcontext.__gregs[_REG_EBP])
|
|
# define ESP_sig(p) ((p)->uc_mcontext.__gregs[_REG_ESP])
|
|
# define RIP_sig(p) ((p)->uc_mcontext.__gregs[_REG_RIP])
|
|
# define RSP_sig(p) ((p)->uc_mcontext.__gregs[_REG_RSP])
|
|
# define RBP_sig(p) ((p)->uc_mcontext.__gregs[_REG_RBP])
|
|
# define R11_sig(p) ((p)->uc_mcontext.__gregs[_REG_R11])
|
|
@@ -399,16 +403,20 @@ struct macos_aarch64_context {
|
|
# define PC_sig(p) R32_sig(p)
|
|
# define SP_sig(p) R01_sig(p)
|
|
# define FP_sig(p) R01_sig(p)
|
|
# elif defined(__loongarch__)
|
|
# define PC_sig(p) EPC_sig(p)
|
|
# define FP_sig(p) RFP_sig(p)
|
|
# define SP_sig(p) RSP_sig(p)
|
|
# define LR_sig(p) RRA_sig(p)
|
|
+# elif defined(__s390x__)
|
|
+# define PC_sig(p) PSWa_sig(p)
|
|
+# define SP_sig(p) GR_sig(p, 15)
|
|
+# define FP_sig(p) GR_sig(p, 11)
|
|
# endif
|
|
|
|
static void SetContextPC(CONTEXT* context, uint8_t* pc) {
|
|
# ifdef PC_sig
|
|
*reinterpret_cast<uint8_t**>(&PC_sig(context)) = pc;
|
|
# else
|
|
MOZ_CRASH();
|
|
# endif
|