init
This commit is contained in:
commit
3f5b6d926c
44
0001-GLIBCXX-fix-for-GCC-12.patch
Normal file
44
0001-GLIBCXX-fix-for-GCC-12.patch
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
From efd5bc0715e5477318be95a76811cda0a89e8289 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= <emilio@crisal.io>
|
||||||
|
Date: Fri, 4 Mar 2022 12:00:26 +0100
|
||||||
|
Subject: [PATCH] GLIBCXX fix for GCC 12?
|
||||||
|
|
||||||
|
---
|
||||||
|
build/unix/stdc++compat/stdc++compat.cpp | 14 ++++++++++++++
|
||||||
|
1 file changed, 14 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/build/unix/stdc++compat/stdc++compat.cpp b/build/unix/stdc++compat/stdc++compat.cpp
|
||||||
|
index 0180f6bcfa998..8d7a542ff11f0 100644
|
||||||
|
--- a/build/unix/stdc++compat/stdc++compat.cpp
|
||||||
|
+++ b/build/unix/stdc++compat/stdc++compat.cpp
|
||||||
|
@@ -24,6 +24,7 @@
|
||||||
|
GLIBCXX_3.4.27 is from gcc 10
|
||||||
|
GLIBCXX_3.4.28 is from gcc 10
|
||||||
|
GLIBCXX_3.4.29 is from gcc 11
|
||||||
|
+ GLIBCXX_3.4.30 is from gcc 12
|
||||||
|
|
||||||
|
This file adds the necessary compatibility tricks to avoid symbols with
|
||||||
|
version GLIBCXX_3.4.20 and bigger, keeping binary compatibility with
|
||||||
|
@@ -69,6 +70,19 @@ void __attribute__((weak)) __throw_bad_array_new_length() { MOZ_CRASH(); }
|
||||||
|
} // namespace std
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#if _GLIBCXX_RELEASE >= 12
|
||||||
|
+namespace std {
|
||||||
|
+
|
||||||
|
+/* This avoids the GLIBCXX_3.4.30 symbol version. */
|
||||||
|
+void __attribute__((weak))
|
||||||
|
+__glibcxx_assert_fail(const char* __file, int __line, const char* __function,
|
||||||
|
+ const char* __condition) {
|
||||||
|
+ MOZ_CRASH();
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+} // namespace std
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
/* While we generally don't build with exceptions, we have some host tools
|
||||||
|
* that do use them. libstdc++ from GCC 5.0 added exception constructors with
|
||||||
|
* char const* argument. Older versions only have a constructor with
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
||||||
61
CVE-2022-3479.patch
Normal file
61
CVE-2022-3479.patch
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
|
||||||
|
# HG changeset patch
|
||||||
|
# User Robert Relyea <rrelyea@redhat.com>
|
||||||
|
# Date 1670534238 28800
|
||||||
|
# Node ID a7f363511333b8062945557607691002fd6e40b9
|
||||||
|
# Parent 89a562b7cf3d3c501ee49143e0b12c7d0f330a69
|
||||||
|
Bug 1774654 tstclnt crashes when accessing gnutls server without a user cert in the database.
|
||||||
|
|
||||||
|
The filter functions do not handle NULL CERTCertLists, but CERT_FindUserCertsByUsage can return a NULL cert list. If it returns a NULL list, we should just
|
||||||
|
fail at the point (there are no certs available).
|
||||||
|
|
||||||
|
Differential Revision: https://phabricator.services.mozilla.com/D164273
|
||||||
|
|
||||||
|
Origin: https://hg.mozilla.org/projects/nss/rev/a7f363511333b8062945557607691002fd6e40b9
|
||||||
|
|
||||||
|
diff --git a/security/nss/lib/ssl/authcert.c b/security/nss/lib/ssl/authcert.c
|
||||||
|
--- a/security/nss/lib/ssl/authcert.c
|
||||||
|
+++ b/security/nss/lib/ssl/authcert.c
|
||||||
|
@@ -201,36 +201,36 @@ NSS_GetClientAuthData(void *arg,
|
||||||
|
|
||||||
|
/* otherwise look through the cache based on usage
|
||||||
|
* if chosenNickname is set, we ignore the expiration date */
|
||||||
|
if (certList == NULL) {
|
||||||
|
certList = CERT_FindUserCertsByUsage(CERT_GetDefaultCertDB(),
|
||||||
|
certUsageSSLClient,
|
||||||
|
PR_FALSE, chosenNickName == NULL,
|
||||||
|
pw_arg);
|
||||||
|
+ if (certList == NULL) {
|
||||||
|
+ return SECFailure;
|
||||||
|
+ }
|
||||||
|
/* filter only the certs that meet the nickname requirements */
|
||||||
|
if (chosenNickName) {
|
||||||
|
rv = CERT_FilterCertListByNickname(certList, chosenNickName,
|
||||||
|
pw_arg);
|
||||||
|
} else {
|
||||||
|
int nnames = 0;
|
||||||
|
char **names = ssl_DistNamesToStrings(caNames, &nnames);
|
||||||
|
rv = CERT_FilterCertListByCANames(certList, nnames, names,
|
||||||
|
certUsageSSLClient);
|
||||||
|
ssl_FreeDistNamesStrings(names, nnames);
|
||||||
|
}
|
||||||
|
if ((rv != SECSuccess) || CERT_LIST_EMPTY(certList)) {
|
||||||
|
CERT_DestroyCertList(certList);
|
||||||
|
- certList = NULL;
|
||||||
|
+ return SECFailure;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
- if (certList == NULL) {
|
||||||
|
- /* no user certs meeting the nickname/usage requirements found */
|
||||||
|
- return SECFailure;
|
||||||
|
- }
|
||||||
|
+
|
||||||
|
/* now remove any certs that can't meet the connection requirements */
|
||||||
|
rv = ssl_FilterClientCertListBySSLSocket(ss, certList);
|
||||||
|
if ((rv != SECSuccess) || CERT_LIST_EMPTY(certList)) {
|
||||||
|
// no certs left.
|
||||||
|
CERT_DestroyCertList(certList);
|
||||||
|
return SECFailure;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
127
CVE-2023-44488.patch
Normal file
127
CVE-2023-44488.patch
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
From dfff1be88eaa0e0756c74b702484465b48b66fca Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jerome Jiang <jianj@google.com>
|
||||||
|
Date: Thu, 30 Jun 2022 13:48:56 -0400
|
||||||
|
Subject: [PATCH] CVE-2023-44488 Fix bug with smaller width bigger size
|
||||||
|
|
||||||
|
Origin: https://github.com/webmproject/libvpx/commit/df9fd9d5b7325060b2b921558a1eb20ca7880937
|
||||||
|
|
||||||
|
---
|
||||||
|
media/libvpx/libvpx/test/resize_test.cc | 9 +++----
|
||||||
|
.../libvpx/vp9/common/vp9_alloccommon.c | 14 +++++-----
|
||||||
|
media/libvpx/libvpx/vp9/encoder/vp9_encoder.c | 27 +++++++++++++++++--
|
||||||
|
3 files changed, 35 insertions(+), 15 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/media/libvpx/libvpx/test/resize_test.cc b/media/libvpx/libvpx/test/resize_test.cc
|
||||||
|
index 5f323db5ab..55a2fe58c6 100644
|
||||||
|
--- a/media/libvpx/libvpx/test/resize_test.cc
|
||||||
|
+++ b/media/libvpx/libvpx/test/resize_test.cc
|
||||||
|
@@ -101,11 +101,8 @@ void ScaleForFrameNumber(unsigned int frame, unsigned int initial_w,
|
||||||
|
*h = initial_h;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
- if (frame < 100) {
|
||||||
|
- *w = initial_w * 7 / 10;
|
||||||
|
- *h = initial_h * 16 / 10;
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
+ *w = initial_w * 7 / 10;
|
||||||
|
+ *h = initial_h * 16 / 10;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (frame < 10) {
|
||||||
|
@@ -578,7 +575,7 @@ TEST_P(ResizeRealtimeTest, TestExternalResizeWorks) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
-TEST_P(ResizeRealtimeTest, DISABLED_TestExternalResizeSmallerWidthBiggerSize) {
|
||||||
|
+TEST_P(ResizeRealtimeTest, TestExternalResizeSmallerWidthBiggerSize) {
|
||||||
|
ResizingVideoSource video;
|
||||||
|
video.flag_codec_ = true;
|
||||||
|
video.smaller_width_larger_size_ = true;
|
||||||
|
diff --git a/media/libvpx/libvpx/vp9/common/vp9_alloccommon.c b/media/libvpx/libvpx/vp9/common/vp9_alloccommon.c
|
||||||
|
index 5702dca718..7841c5e793 100644
|
||||||
|
--- a/media/libvpx/libvpx/vp9/common/vp9_alloccommon.c
|
||||||
|
+++ b/media/libvpx/libvpx/vp9/common/vp9_alloccommon.c
|
||||||
|
@@ -131,13 +131,7 @@ int vp9_alloc_context_buffers(VP9_COMMON *cm, int width, int height) {
|
||||||
|
cm->free_mi(cm);
|
||||||
|
if (cm->alloc_mi(cm, new_mi_size)) goto fail;
|
||||||
|
}
|
||||||
|
-
|
||||||
|
- if (cm->seg_map_alloc_size < cm->mi_rows * cm->mi_cols) {
|
||||||
|
- // Create the segmentation map structure and set to 0.
|
||||||
|
- free_seg_map(cm);
|
||||||
|
- if (alloc_seg_map(cm, cm->mi_rows * cm->mi_cols)) goto fail;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
+
|
||||||
|
if (cm->above_context_alloc_cols < cm->mi_cols) {
|
||||||
|
vpx_free(cm->above_context);
|
||||||
|
cm->above_context = (ENTROPY_CONTEXT *)vpx_calloc(
|
||||||
|
@@ -151,6 +145,12 @@ int vp9_alloc_context_buffers(VP9_COMMON *cm, int width, int height) {
|
||||||
|
if (!cm->above_seg_context) goto fail;
|
||||||
|
cm->above_context_alloc_cols = cm->mi_cols;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ if (cm->seg_map_alloc_size < cm->mi_rows * cm->mi_cols) {
|
||||||
|
+ // Create the segmentation map structure and set to 0.
|
||||||
|
+ free_seg_map(cm);
|
||||||
|
+ if (alloc_seg_map(cm, cm->mi_rows * cm->mi_cols)) goto fail;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
if (vp9_alloc_loop_filter(cm)) goto fail;
|
||||||
|
|
||||||
|
diff --git a/media/libvpx/libvpx/vp9/encoder/vp9_encoder.c b/media/libvpx/libvpx/vp9/encoder/vp9_encoder.c
|
||||||
|
index 4a37816e20..6efcf91066 100644
|
||||||
|
--- a/media/libvpx/libvpx/vp9/encoder/vp9_encoder.c
|
||||||
|
+++ b/media/libvpx/libvpx/vp9/encoder/vp9_encoder.c
|
||||||
|
@@ -1937,6 +1937,17 @@ static void alloc_copy_partition_data(VP9_COMP *cpi) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+static void free_copy_partition_data(VP9_COMP *cpi) {
|
||||||
|
+ vpx_free(cpi->prev_partition);
|
||||||
|
+ cpi->prev_partition = NULL;
|
||||||
|
+ vpx_free(cpi->prev_segment_id);
|
||||||
|
+ cpi->prev_segment_id = NULL;
|
||||||
|
+ vpx_free(cpi->prev_variance_low);
|
||||||
|
+ cpi->prev_variance_low = NULL;
|
||||||
|
+ vpx_free(cpi->copied_frame_cnt);
|
||||||
|
+ cpi->copied_frame_cnt = NULL;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void vp9_change_config(struct VP9_COMP *cpi, const VP9EncoderConfig *oxcf) {
|
||||||
|
VP9_COMMON *const cm = &cpi->common;
|
||||||
|
RATE_CONTROL *const rc = &cpi->rc;
|
||||||
|
@@ -2021,6 +2032,8 @@ void vp9_change_config(struct VP9_COMP *cpi, const VP9EncoderConfig *oxcf) {
|
||||||
|
new_mi_size = cm->mi_stride * calc_mi_size(cm->mi_rows);
|
||||||
|
if (cm->mi_alloc_size < new_mi_size) {
|
||||||
|
vp9_free_context_buffers(cm);
|
||||||
|
+ vp9_free_pc_tree(&cpi->td);
|
||||||
|
+ vpx_free(cpi->mbmi_ext_base);
|
||||||
|
alloc_compressor_data(cpi);
|
||||||
|
realloc_segmentation_maps(cpi);
|
||||||
|
cpi->initial_width = cpi->initial_height = 0;
|
||||||
|
@@ -2036,8 +2049,18 @@ void vp9_change_config(struct VP9_COMP *cpi, const VP9EncoderConfig *oxcf) {
|
||||||
|
update_frame_size(cpi);
|
||||||
|
|
||||||
|
if (last_w != cpi->oxcf.width || last_h != cpi->oxcf.height) {
|
||||||
|
- memset(cpi->consec_zero_mv, 0,
|
||||||
|
- cm->mi_rows * cm->mi_cols * sizeof(*cpi->consec_zero_mv));
|
||||||
|
+ vpx_free(cpi->consec_zero_mv);
|
||||||
|
+ CHECK_MEM_ERROR(
|
||||||
|
+ cm, cpi->consec_zero_mv,
|
||||||
|
+ vpx_calloc(cm->mi_rows * cm->mi_cols, sizeof(*cpi->consec_zero_mv)));
|
||||||
|
+
|
||||||
|
+ vpx_free(cpi->skin_map);
|
||||||
|
+ CHECK_MEM_ERROR(
|
||||||
|
+ cm, cpi->skin_map,
|
||||||
|
+ vpx_calloc(cm->mi_rows * cm->mi_cols, sizeof(cpi->skin_map[0])));
|
||||||
|
+
|
||||||
|
+ free_copy_partition_data(cpi);
|
||||||
|
+ alloc_copy_partition_data(cpi);
|
||||||
|
if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ)
|
||||||
|
vp9_cyclic_refresh_reset_resize(cpi);
|
||||||
|
rc->rc_1_frame = 0;
|
||||||
|
--
|
||||||
|
2.27.0
|
||||||
|
|
||||||
482
CVE-2023-4863-1.patch
Normal file
482
CVE-2023-4863-1.patch
Normal file
@ -0,0 +1,482 @@
|
|||||||
|
|
||||||
|
# HG changeset patch
|
||||||
|
# User Ryan VanderMeulen <ryanvm@gmail.com>
|
||||||
|
# Date 1694477965 14400
|
||||||
|
# Node ID 96bd93fca47ae72ff0385d2bd87ec7bd18382b0c
|
||||||
|
# Parent 0f605d803733000f3e1fcc3a22c2d53190305314
|
||||||
|
Bug 1852649 - Cherry-pick upstream libwebp fix. r=tnikkel, a=RyanVM
|
||||||
|
|
||||||
|
Backport of:
|
||||||
|
https://chromium.googlesource.com/webm/libwebp.git/+/2af26267cdfcb63a88e5c74a85927a12d6ca1d76
|
||||||
|
|
||||||
|
Differential Revision: https://phabricator.services.mozilla.com/D187950
|
||||||
|
|
||||||
|
diff --git a/media/libwebp/src/dec/vp8l_dec.c b/media/libwebp/src/dec/vp8l_dec.c
|
||||||
|
--- a/media/libwebp/src/dec/vp8l_dec.c
|
||||||
|
+++ b/media/libwebp/src/dec/vp8l_dec.c
|
||||||
|
@@ -248,21 +248,21 @@ static void BuildPackedTable(HTreeGroup*
|
||||||
|
static int ReadHuffmanCodeLengths(
|
||||||
|
VP8LDecoder* const dec, const int* const code_length_code_lengths,
|
||||||
|
int num_symbols, int* const code_lengths) {
|
||||||
|
int ok = 0;
|
||||||
|
VP8LBitReader* const br = &dec->br_;
|
||||||
|
int symbol;
|
||||||
|
int max_symbol;
|
||||||
|
int prev_code_len = DEFAULT_CODE_LENGTH;
|
||||||
|
- HuffmanCode table[1 << LENGTHS_TABLE_BITS];
|
||||||
|
+ HuffmanTables tables;
|
||||||
|
|
||||||
|
- if (!VP8LBuildHuffmanTable(table, LENGTHS_TABLE_BITS,
|
||||||
|
- code_length_code_lengths,
|
||||||
|
- NUM_CODE_LENGTH_CODES)) {
|
||||||
|
+ if (!VP8LHuffmanTablesAllocate(1 << LENGTHS_TABLE_BITS, &tables) ||
|
||||||
|
+ !VP8LBuildHuffmanTable(&tables, LENGTHS_TABLE_BITS,
|
||||||
|
+ code_length_code_lengths, NUM_CODE_LENGTH_CODES)) {
|
||||||
|
goto End;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (VP8LReadBits(br, 1)) { // use length
|
||||||
|
const int length_nbits = 2 + 2 * VP8LReadBits(br, 3);
|
||||||
|
max_symbol = 2 + VP8LReadBits(br, length_nbits);
|
||||||
|
if (max_symbol > num_symbols) {
|
||||||
|
goto End;
|
||||||
|
@@ -272,17 +272,17 @@ static int ReadHuffmanCodeLengths(
|
||||||
|
}
|
||||||
|
|
||||||
|
symbol = 0;
|
||||||
|
while (symbol < num_symbols) {
|
||||||
|
const HuffmanCode* p;
|
||||||
|
int code_len;
|
||||||
|
if (max_symbol-- == 0) break;
|
||||||
|
VP8LFillBitWindow(br);
|
||||||
|
- p = &table[VP8LPrefetchBits(br) & LENGTHS_TABLE_MASK];
|
||||||
|
+ p = &tables.curr_segment->start[VP8LPrefetchBits(br) & LENGTHS_TABLE_MASK];
|
||||||
|
VP8LSetBitPos(br, br->bit_pos_ + p->bits);
|
||||||
|
code_len = p->value;
|
||||||
|
if (code_len < kCodeLengthLiterals) {
|
||||||
|
code_lengths[symbol++] = code_len;
|
||||||
|
if (code_len != 0) prev_code_len = code_len;
|
||||||
|
} else {
|
||||||
|
const int use_prev = (code_len == kCodeLengthRepeatCode);
|
||||||
|
const int slot = code_len - kCodeLengthLiterals;
|
||||||
|
@@ -295,24 +295,26 @@ static int ReadHuffmanCodeLengths(
|
||||||
|
const int length = use_prev ? prev_code_len : 0;
|
||||||
|
while (repeat-- > 0) code_lengths[symbol++] = length;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ok = 1;
|
||||||
|
|
||||||
|
End:
|
||||||
|
+ VP8LHuffmanTablesDeallocate(&tables);
|
||||||
|
if (!ok) dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
|
||||||
|
return ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 'code_lengths' is pre-allocated temporary buffer, used for creating Huffman
|
||||||
|
// tree.
|
||||||
|
static int ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec,
|
||||||
|
- int* const code_lengths, HuffmanCode* const table) {
|
||||||
|
+ int* const code_lengths,
|
||||||
|
+ HuffmanTables* const table) {
|
||||||
|
int ok = 0;
|
||||||
|
int size = 0;
|
||||||
|
VP8LBitReader* const br = &dec->br_;
|
||||||
|
const int simple_code = VP8LReadBits(br, 1);
|
||||||
|
|
||||||
|
memset(code_lengths, 0, alphabet_size * sizeof(*code_lengths));
|
||||||
|
|
||||||
|
if (simple_code) { // Read symbols, codes & code lengths directly.
|
||||||
|
@@ -357,26 +359,29 @@ static int ReadHuffmanCode(int alphabet_
|
||||||
|
|
||||||
|
static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize,
|
||||||
|
int color_cache_bits, int allow_recursion) {
|
||||||
|
int i, j;
|
||||||
|
VP8LBitReader* const br = &dec->br_;
|
||||||
|
VP8LMetadata* const hdr = &dec->hdr_;
|
||||||
|
uint32_t* huffman_image = NULL;
|
||||||
|
HTreeGroup* htree_groups = NULL;
|
||||||
|
- HuffmanCode* huffman_tables = NULL;
|
||||||
|
- HuffmanCode* huffman_table = NULL;
|
||||||
|
+ HuffmanTables* huffman_tables = &hdr->huffman_tables_;
|
||||||
|
int num_htree_groups = 1;
|
||||||
|
int num_htree_groups_max = 1;
|
||||||
|
int max_alphabet_size = 0;
|
||||||
|
int* code_lengths = NULL;
|
||||||
|
const int table_size = kTableSize[color_cache_bits];
|
||||||
|
int* mapping = NULL;
|
||||||
|
int ok = 0;
|
||||||
|
|
||||||
|
+ // Check the table has been 0 initialized (through InitMetadata).
|
||||||
|
+ assert(huffman_tables->root.start == NULL);
|
||||||
|
+ assert(huffman_tables->curr_segment == NULL);
|
||||||
|
+
|
||||||
|
if (allow_recursion && VP8LReadBits(br, 1)) {
|
||||||
|
// use meta Huffman codes.
|
||||||
|
const int huffman_precision = VP8LReadBits(br, 3) + 2;
|
||||||
|
const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision);
|
||||||
|
const int huffman_ysize = VP8LSubSampleSize(ysize, huffman_precision);
|
||||||
|
const int huffman_pixs = huffman_xsize * huffman_ysize;
|
||||||
|
if (!DecodeImageStream(huffman_xsize, huffman_ysize, 0, dec,
|
||||||
|
&huffman_image)) {
|
||||||
|
@@ -429,26 +434,25 @@ static int ReadHuffmanCodes(VP8LDecoder*
|
||||||
|
}
|
||||||
|
if (max_alphabet_size < alphabet_size) {
|
||||||
|
max_alphabet_size = alphabet_size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
code_lengths = (int*)WebPSafeCalloc((uint64_t)max_alphabet_size,
|
||||||
|
sizeof(*code_lengths));
|
||||||
|
- huffman_tables = (HuffmanCode*)WebPSafeMalloc(num_htree_groups * table_size,
|
||||||
|
- sizeof(*huffman_tables));
|
||||||
|
htree_groups = VP8LHtreeGroupsNew(num_htree_groups);
|
||||||
|
|
||||||
|
- if (htree_groups == NULL || code_lengths == NULL || huffman_tables == NULL) {
|
||||||
|
+ if (htree_groups == NULL || code_lengths == NULL ||
|
||||||
|
+ !VP8LHuffmanTablesAllocate(num_htree_groups * table_size,
|
||||||
|
+ huffman_tables)) {
|
||||||
|
dec->status_ = VP8_STATUS_OUT_OF_MEMORY;
|
||||||
|
goto Error;
|
||||||
|
}
|
||||||
|
|
||||||
|
- huffman_table = huffman_tables;
|
||||||
|
for (i = 0; i < num_htree_groups_max; ++i) {
|
||||||
|
// If the index "i" is unused in the Huffman image, just make sure the
|
||||||
|
// coefficients are valid but do not store them.
|
||||||
|
if (mapping != NULL && mapping[i] == -1) {
|
||||||
|
for (j = 0; j < HUFFMAN_CODES_PER_META_CODE; ++j) {
|
||||||
|
int alphabet_size = kAlphabetSize[j];
|
||||||
|
if (j == 0 && color_cache_bits > 0) {
|
||||||
|
alphabet_size += (1 << color_cache_bits);
|
||||||
|
@@ -463,29 +467,30 @@ static int ReadHuffmanCodes(VP8LDecoder*
|
||||||
|
&htree_groups[(mapping == NULL) ? i : mapping[i]];
|
||||||
|
HuffmanCode** const htrees = htree_group->htrees;
|
||||||
|
int size;
|
||||||
|
int total_size = 0;
|
||||||
|
int is_trivial_literal = 1;
|
||||||
|
int max_bits = 0;
|
||||||
|
for (j = 0; j < HUFFMAN_CODES_PER_META_CODE; ++j) {
|
||||||
|
int alphabet_size = kAlphabetSize[j];
|
||||||
|
- htrees[j] = huffman_table;
|
||||||
|
if (j == 0 && color_cache_bits > 0) {
|
||||||
|
alphabet_size += (1 << color_cache_bits);
|
||||||
|
}
|
||||||
|
- size = ReadHuffmanCode(alphabet_size, dec, code_lengths, huffman_table);
|
||||||
|
+ size =
|
||||||
|
+ ReadHuffmanCode(alphabet_size, dec, code_lengths, huffman_tables);
|
||||||
|
+ htrees[j] = huffman_tables->curr_segment->curr_table;
|
||||||
|
if (size == 0) {
|
||||||
|
goto Error;
|
||||||
|
}
|
||||||
|
if (is_trivial_literal && kLiteralMap[j] == 1) {
|
||||||
|
- is_trivial_literal = (huffman_table->bits == 0);
|
||||||
|
+ is_trivial_literal = (htrees[j]->bits == 0);
|
||||||
|
}
|
||||||
|
- total_size += huffman_table->bits;
|
||||||
|
- huffman_table += size;
|
||||||
|
+ total_size += htrees[j]->bits;
|
||||||
|
+ huffman_tables->curr_segment->curr_table += size;
|
||||||
|
if (j <= ALPHA) {
|
||||||
|
int local_max_bits = code_lengths[0];
|
||||||
|
int k;
|
||||||
|
for (k = 1; k < alphabet_size; ++k) {
|
||||||
|
if (code_lengths[k] > local_max_bits) {
|
||||||
|
local_max_bits = code_lengths[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -510,24 +515,23 @@ static int ReadHuffmanCodes(VP8LDecoder*
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ok = 1;
|
||||||
|
|
||||||
|
// All OK. Finalize pointers.
|
||||||
|
hdr->huffman_image_ = huffman_image;
|
||||||
|
hdr->num_htree_groups_ = num_htree_groups;
|
||||||
|
hdr->htree_groups_ = htree_groups;
|
||||||
|
- hdr->huffman_tables_ = huffman_tables;
|
||||||
|
|
||||||
|
Error:
|
||||||
|
WebPSafeFree(code_lengths);
|
||||||
|
WebPSafeFree(mapping);
|
||||||
|
if (!ok) {
|
||||||
|
WebPSafeFree(huffman_image);
|
||||||
|
- WebPSafeFree(huffman_tables);
|
||||||
|
+ VP8LHuffmanTablesDeallocate(huffman_tables);
|
||||||
|
VP8LHtreeGroupsFree(htree_groups);
|
||||||
|
}
|
||||||
|
return ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Scaling.
|
||||||
|
|
||||||
|
@@ -1353,17 +1357,17 @@ static void InitMetadata(VP8LMetadata* c
|
||||||
|
assert(hdr != NULL);
|
||||||
|
memset(hdr, 0, sizeof(*hdr));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void ClearMetadata(VP8LMetadata* const hdr) {
|
||||||
|
assert(hdr != NULL);
|
||||||
|
|
||||||
|
WebPSafeFree(hdr->huffman_image_);
|
||||||
|
- WebPSafeFree(hdr->huffman_tables_);
|
||||||
|
+ VP8LHuffmanTablesDeallocate(&hdr->huffman_tables_);
|
||||||
|
VP8LHtreeGroupsFree(hdr->htree_groups_);
|
||||||
|
VP8LColorCacheClear(&hdr->color_cache_);
|
||||||
|
VP8LColorCacheClear(&hdr->saved_color_cache_);
|
||||||
|
InitMetadata(hdr);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------
|
||||||
|
// VP8LDecoder
|
||||||
|
@@ -1668,17 +1672,17 @@ int VP8LDecodeHeader(VP8LDecoder* const
|
||||||
|
}
|
||||||
|
|
||||||
|
int VP8LDecodeImage(VP8LDecoder* const dec) {
|
||||||
|
VP8Io* io = NULL;
|
||||||
|
WebPDecParams* params = NULL;
|
||||||
|
|
||||||
|
if (dec == NULL) return 0;
|
||||||
|
|
||||||
|
- assert(dec->hdr_.huffman_tables_ != NULL);
|
||||||
|
+ assert(dec->hdr_.huffman_tables_.root.start != NULL);
|
||||||
|
assert(dec->hdr_.htree_groups_ != NULL);
|
||||||
|
assert(dec->hdr_.num_htree_groups_ > 0);
|
||||||
|
|
||||||
|
io = dec->io_;
|
||||||
|
assert(io != NULL);
|
||||||
|
params = (WebPDecParams*)io->opaque;
|
||||||
|
assert(params != NULL);
|
||||||
|
|
||||||
|
diff --git a/media/libwebp/src/dec/vp8li_dec.h b/media/libwebp/src/dec/vp8li_dec.h
|
||||||
|
--- a/media/libwebp/src/dec/vp8li_dec.h
|
||||||
|
+++ b/media/libwebp/src/dec/vp8li_dec.h
|
||||||
|
@@ -46,17 +46,17 @@ typedef struct {
|
||||||
|
VP8LColorCache saved_color_cache_; // for incremental
|
||||||
|
|
||||||
|
int huffman_mask_;
|
||||||
|
int huffman_subsample_bits_;
|
||||||
|
int huffman_xsize_;
|
||||||
|
uint32_t* huffman_image_;
|
||||||
|
int num_htree_groups_;
|
||||||
|
HTreeGroup* htree_groups_;
|
||||||
|
- HuffmanCode* huffman_tables_;
|
||||||
|
+ HuffmanTables huffman_tables_;
|
||||||
|
} VP8LMetadata;
|
||||||
|
|
||||||
|
typedef struct VP8LDecoder VP8LDecoder;
|
||||||
|
struct VP8LDecoder {
|
||||||
|
VP8StatusCode status_;
|
||||||
|
VP8LDecodeState state_;
|
||||||
|
VP8Io* io_;
|
||||||
|
|
||||||
|
diff --git a/media/libwebp/src/utils/huffman_utils.c b/media/libwebp/src/utils/huffman_utils.c
|
||||||
|
--- a/media/libwebp/src/utils/huffman_utils.c
|
||||||
|
+++ b/media/libwebp/src/utils/huffman_utils.c
|
||||||
|
@@ -172,31 +172,34 @@ static int BuildHuffmanTable(HuffmanCode
|
||||||
|
for (len = root_bits + 1, step = 2; len <= MAX_ALLOWED_CODE_LENGTH;
|
||||||
|
++len, step <<= 1) {
|
||||||
|
num_open <<= 1;
|
||||||
|
num_nodes += num_open;
|
||||||
|
num_open -= count[len];
|
||||||
|
if (num_open < 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
- if (root_table == NULL) continue;
|
||||||
|
for (; count[len] > 0; --count[len]) {
|
||||||
|
HuffmanCode code;
|
||||||
|
if ((key & mask) != low) {
|
||||||
|
- table += table_size;
|
||||||
|
+ if (root_table != NULL) table += table_size;
|
||||||
|
table_bits = NextTableBitSize(count, len, root_bits);
|
||||||
|
table_size = 1 << table_bits;
|
||||||
|
total_size += table_size;
|
||||||
|
low = key & mask;
|
||||||
|
- root_table[low].bits = (uint8_t)(table_bits + root_bits);
|
||||||
|
- root_table[low].value = (uint16_t)((table - root_table) - low);
|
||||||
|
+ if (root_table != NULL) {
|
||||||
|
+ root_table[low].bits = (uint8_t)(table_bits + root_bits);
|
||||||
|
+ root_table[low].value = (uint16_t)((table - root_table) - low);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
- code.bits = (uint8_t)(len - root_bits);
|
||||||
|
- code.value = (uint16_t)sorted[symbol++];
|
||||||
|
- ReplicateValue(&table[key >> root_bits], step, table_size, code);
|
||||||
|
+ if (root_table != NULL) {
|
||||||
|
+ code.bits = (uint8_t)(len - root_bits);
|
||||||
|
+ code.value = (uint16_t)sorted[symbol++];
|
||||||
|
+ ReplicateValue(&table[key >> root_bits], step, table_size, code);
|
||||||
|
+ }
|
||||||
|
key = GetNextKey(key, len);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if tree is full.
|
||||||
|
if (num_nodes != 2 * offset[MAX_ALLOWED_CODE_LENGTH] - 1) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
@@ -206,30 +209,88 @@ static int BuildHuffmanTable(HuffmanCode
|
||||||
|
}
|
||||||
|
|
||||||
|
// Maximum code_lengths_size is 2328 (reached for 11-bit color_cache_bits).
|
||||||
|
// More commonly, the value is around ~280.
|
||||||
|
#define MAX_CODE_LENGTHS_SIZE \
|
||||||
|
((1 << MAX_CACHE_BITS) + NUM_LITERAL_CODES + NUM_LENGTH_CODES)
|
||||||
|
// Cut-off value for switching between heap and stack allocation.
|
||||||
|
#define SORTED_SIZE_CUTOFF 512
|
||||||
|
-int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits,
|
||||||
|
+int VP8LBuildHuffmanTable(HuffmanTables* const root_table, int root_bits,
|
||||||
|
const int code_lengths[], int code_lengths_size) {
|
||||||
|
- int total_size;
|
||||||
|
+ const int total_size =
|
||||||
|
+ BuildHuffmanTable(NULL, root_bits, code_lengths, code_lengths_size, NULL);
|
||||||
|
assert(code_lengths_size <= MAX_CODE_LENGTHS_SIZE);
|
||||||
|
- if (root_table == NULL) {
|
||||||
|
- total_size = BuildHuffmanTable(NULL, root_bits,
|
||||||
|
- code_lengths, code_lengths_size, NULL);
|
||||||
|
- } else if (code_lengths_size <= SORTED_SIZE_CUTOFF) {
|
||||||
|
+ if (total_size == 0 || root_table == NULL) return total_size;
|
||||||
|
+
|
||||||
|
+ if (root_table->curr_segment->curr_table + total_size >=
|
||||||
|
+ root_table->curr_segment->start + root_table->curr_segment->size) {
|
||||||
|
+ // If 'root_table' does not have enough memory, allocate a new segment.
|
||||||
|
+ // The available part of root_table->curr_segment is left unused because we
|
||||||
|
+ // need a contiguous buffer.
|
||||||
|
+ const int segment_size = root_table->curr_segment->size;
|
||||||
|
+ struct HuffmanTablesSegment* next =
|
||||||
|
+ (HuffmanTablesSegment*)WebPSafeMalloc(1, sizeof(*next));
|
||||||
|
+ if (next == NULL) return 0;
|
||||||
|
+ // Fill the new segment.
|
||||||
|
+ // We need at least 'total_size' but if that value is small, it is better to
|
||||||
|
+ // allocate a big chunk to prevent more allocations later. 'segment_size' is
|
||||||
|
+ // therefore chosen (any other arbitrary value could be chosen).
|
||||||
|
+ next->size = total_size > segment_size ? total_size : segment_size;
|
||||||
|
+ next->start =
|
||||||
|
+ (HuffmanCode*)WebPSafeMalloc(next->size, sizeof(*next->start));
|
||||||
|
+ if (next->start == NULL) {
|
||||||
|
+ WebPSafeFree(next);
|
||||||
|
+ return 0;
|
||||||
|
+ }
|
||||||
|
+ next->curr_table = next->start;
|
||||||
|
+ next->next = NULL;
|
||||||
|
+ // Point to the new segment.
|
||||||
|
+ root_table->curr_segment->next = next;
|
||||||
|
+ root_table->curr_segment = next;
|
||||||
|
+ }
|
||||||
|
+ if (code_lengths_size <= SORTED_SIZE_CUTOFF) {
|
||||||
|
// use local stack-allocated array.
|
||||||
|
uint16_t sorted[SORTED_SIZE_CUTOFF];
|
||||||
|
- total_size = BuildHuffmanTable(root_table, root_bits,
|
||||||
|
- code_lengths, code_lengths_size, sorted);
|
||||||
|
- } else { // rare case. Use heap allocation.
|
||||||
|
+ BuildHuffmanTable(root_table->curr_segment->curr_table, root_bits,
|
||||||
|
+ code_lengths, code_lengths_size, sorted);
|
||||||
|
+ } else { // rare case. Use heap allocation.
|
||||||
|
uint16_t* const sorted =
|
||||||
|
(uint16_t*)WebPSafeMalloc(code_lengths_size, sizeof(*sorted));
|
||||||
|
if (sorted == NULL) return 0;
|
||||||
|
- total_size = BuildHuffmanTable(root_table, root_bits,
|
||||||
|
- code_lengths, code_lengths_size, sorted);
|
||||||
|
+ BuildHuffmanTable(root_table->curr_segment->curr_table, root_bits,
|
||||||
|
+ code_lengths, code_lengths_size, sorted);
|
||||||
|
WebPSafeFree(sorted);
|
||||||
|
}
|
||||||
|
return total_size;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+int VP8LHuffmanTablesAllocate(int size, HuffmanTables* huffman_tables) {
|
||||||
|
+ // Have 'segment' point to the first segment for now, 'root'.
|
||||||
|
+ HuffmanTablesSegment* const root = &huffman_tables->root;
|
||||||
|
+ huffman_tables->curr_segment = root;
|
||||||
|
+ // Allocate root.
|
||||||
|
+ root->start = (HuffmanCode*)WebPSafeMalloc(size, sizeof(*root->start));
|
||||||
|
+ if (root->start == NULL) return 0;
|
||||||
|
+ root->curr_table = root->start;
|
||||||
|
+ root->next = NULL;
|
||||||
|
+ root->size = size;
|
||||||
|
+ return 1;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+void VP8LHuffmanTablesDeallocate(HuffmanTables* const huffman_tables) {
|
||||||
|
+ HuffmanTablesSegment *current, *next;
|
||||||
|
+ if (huffman_tables == NULL) return;
|
||||||
|
+ // Free the root node.
|
||||||
|
+ current = &huffman_tables->root;
|
||||||
|
+ next = current->next;
|
||||||
|
+ WebPSafeFree(current->start);
|
||||||
|
+ current->start = NULL;
|
||||||
|
+ current->next = NULL;
|
||||||
|
+ current = next;
|
||||||
|
+ // Free the following nodes.
|
||||||
|
+ while (current != NULL) {
|
||||||
|
+ next = current->next;
|
||||||
|
+ WebPSafeFree(current->start);
|
||||||
|
+ WebPSafeFree(current);
|
||||||
|
+ current = next;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/media/libwebp/src/utils/huffman_utils.h b/media/libwebp/src/utils/huffman_utils.h
|
||||||
|
--- a/media/libwebp/src/utils/huffman_utils.h
|
||||||
|
+++ b/media/libwebp/src/utils/huffman_utils.h
|
||||||
|
@@ -38,16 +38,39 @@ typedef struct {
|
||||||
|
// long version for holding 32b values
|
||||||
|
typedef struct {
|
||||||
|
int bits; // number of bits used for this symbol,
|
||||||
|
// or an impossible value if not a literal code.
|
||||||
|
uint32_t value; // 32b packed ARGB value if literal,
|
||||||
|
// or non-literal symbol otherwise
|
||||||
|
} HuffmanCode32;
|
||||||
|
|
||||||
|
+// Contiguous memory segment of HuffmanCodes.
|
||||||
|
+typedef struct HuffmanTablesSegment {
|
||||||
|
+ HuffmanCode* start;
|
||||||
|
+ // Pointer to where we are writing into the segment. Starts at 'start' and
|
||||||
|
+ // cannot go beyond 'start' + 'size'.
|
||||||
|
+ HuffmanCode* curr_table;
|
||||||
|
+ // Pointer to the next segment in the chain.
|
||||||
|
+ struct HuffmanTablesSegment* next;
|
||||||
|
+ int size;
|
||||||
|
+} HuffmanTablesSegment;
|
||||||
|
+
|
||||||
|
+// Chained memory segments of HuffmanCodes.
|
||||||
|
+typedef struct HuffmanTables {
|
||||||
|
+ HuffmanTablesSegment root;
|
||||||
|
+ // Currently processed segment. At first, this is 'root'.
|
||||||
|
+ HuffmanTablesSegment* curr_segment;
|
||||||
|
+} HuffmanTables;
|
||||||
|
+
|
||||||
|
+// Allocates a HuffmanTables with 'size' contiguous HuffmanCodes. Returns 0 on
|
||||||
|
+// memory allocation error, 1 otherwise.
|
||||||
|
+int VP8LHuffmanTablesAllocate(int size, HuffmanTables* huffman_tables);
|
||||||
|
+void VP8LHuffmanTablesDeallocate(HuffmanTables* const huffman_tables);
|
||||||
|
+
|
||||||
|
#define HUFFMAN_PACKED_BITS 6
|
||||||
|
#define HUFFMAN_PACKED_TABLE_SIZE (1u << HUFFMAN_PACKED_BITS)
|
||||||
|
|
||||||
|
// Huffman table group.
|
||||||
|
// Includes special handling for the following cases:
|
||||||
|
// - is_trivial_literal: one common literal base for RED/BLUE/ALPHA (not GREEN)
|
||||||
|
// - is_trivial_code: only 1 code (no bit is read from bitstream)
|
||||||
|
// - use_packed_table: few enough literal symbols, so all the bit codes
|
||||||
|
@@ -73,18 +96,16 @@ HTreeGroup* VP8LHtreeGroupsNew(int num_h
|
||||||
|
// Releases the memory allocated for HTreeGroup.
|
||||||
|
void VP8LHtreeGroupsFree(HTreeGroup* const htree_groups);
|
||||||
|
|
||||||
|
// Builds Huffman lookup table assuming code lengths are in symbol order.
|
||||||
|
// The 'code_lengths' is pre-allocated temporary memory buffer used for creating
|
||||||
|
// the huffman table.
|
||||||
|
// Returns built table size or 0 in case of error (invalid tree or
|
||||||
|
// memory error).
|
||||||
|
-// If root_table is NULL, it returns 0 if a lookup cannot be built, something
|
||||||
|
-// > 0 otherwise (but not the table size).
|
||||||
|
-int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits,
|
||||||
|
+int VP8LBuildHuffmanTable(HuffmanTables* const root_table, int root_bits,
|
||||||
|
const int code_lengths[], int code_lengths_size);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} // extern "C"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // WEBP_UTILS_HUFFMAN_UTILS_H_
|
||||||
|
|
||||||
49
CVE-2023-4863-2.patch
Normal file
49
CVE-2023-4863-2.patch
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
|
||||||
|
# HG changeset patch
|
||||||
|
# User Timothy Nikkel <tnikkel@gmail.com>
|
||||||
|
# Date 1694697417 0
|
||||||
|
# Node ID cbbf997c33890c2c49d24079db83b6ebb74cd7d8
|
||||||
|
# Parent 1aa227e40ab488aa065fe035debff0615f67b1f1
|
||||||
|
Bug 1852749. Cherry-pick upstream libwebp fix. r=gfx-reviewers,lsalzman a=RyanVM
|
||||||
|
|
||||||
|
https://github.com/webmproject/libwebp/commit/95ea5226c870449522240ccff26f0b006037c520
|
||||||
|
|
||||||
|
Differential Revision: https://phabricator.services.mozilla.com/D188066
|
||||||
|
|
||||||
|
diff --git a/media/libwebp/src/dec/vp8l_dec.c b/media/libwebp/src/dec/vp8l_dec.c
|
||||||
|
--- a/media/libwebp/src/dec/vp8l_dec.c
|
||||||
|
+++ b/media/libwebp/src/dec/vp8l_dec.c
|
||||||
|
@@ -1236,19 +1236,30 @@ static int DecodeImageData(VP8LDecoder*
|
||||||
|
*src = VP8LColorCacheLookup(color_cache, key);
|
||||||
|
goto AdvanceByOne;
|
||||||
|
} else { // Not reached
|
||||||
|
goto Error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
br->eos_ = VP8LIsEndOfStream(br);
|
||||||
|
- if (dec->incremental_ && br->eos_ && src < src_end) {
|
||||||
|
+ // In incremental decoding:
|
||||||
|
+ // br->eos_ && src < src_last: if 'br' reached the end of the buffer and
|
||||||
|
+ // 'src_last' has not been reached yet, there is not enough data. 'dec' has to
|
||||||
|
+ // be reset until there is more data.
|
||||||
|
+ // !br->eos_ && src < src_last: this cannot happen as either the buffer is
|
||||||
|
+ // fully read, either enough has been read to reach 'src_last'.
|
||||||
|
+ // src >= src_last: 'src_last' is reached, all is fine. 'src' can actually go
|
||||||
|
+ // beyond 'src_last' in case the image is cropped and an LZ77 goes further.
|
||||||
|
+ // The buffer might have been enough or there is some left. 'br->eos_' does
|
||||||
|
+ // not matter.
|
||||||
|
+ assert(!dec->incremental_ || (br->eos_ && src < src_last) || src >= src_last);
|
||||||
|
+ if (dec->incremental_ && br->eos_ && src < src_last) {
|
||||||
|
RestoreState(dec);
|
||||||
|
- } else if (!br->eos_) {
|
||||||
|
+ } else if ((dec->incremental_ && src >= src_last) || !br->eos_) {
|
||||||
|
// Process the remaining rows corresponding to last row-block.
|
||||||
|
if (process_func != NULL) {
|
||||||
|
process_func(dec, row > last_row ? last_row : row);
|
||||||
|
}
|
||||||
|
dec->status_ = VP8_STATUS_OK;
|
||||||
|
dec->last_pixel_ = (int)(src - data); // end-of-scan marker
|
||||||
|
} else {
|
||||||
|
// if not incremental, and we are past the end of buffer (eos_=1), then this
|
||||||
|
|
||||||
40
CVE-2023-5217.patch
Normal file
40
CVE-2023-5217.patch
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
|
||||||
|
# HG changeset patch
|
||||||
|
# User Ryan VanderMeulen <ryanvm@gmail.com>
|
||||||
|
# Date 1695856343 0
|
||||||
|
# Node ID c53f5ef77b62b79af86951a7f9130e1896b695d2
|
||||||
|
# Parent 90445136a15d059a272041ef3c4a277732b346b6
|
||||||
|
Bug 1855550 - VP8: disallow thread count changes. r=jesup
|
||||||
|
|
||||||
|
Cherry-pick of upstream libvpx commits:
|
||||||
|
https://chromium.googlesource.com/webm/libvpx/+/af6dedd715f4307669366944cca6e0417b290282
|
||||||
|
https://chromium.googlesource.com/webm/libvpx/+/3fbd1dca6a4d2dad332a2110d646e4ffef36d590
|
||||||
|
|
||||||
|
Differential Revision: https://phabricator.services.mozilla.com/D189428
|
||||||
|
|
||||||
|
Origin:
|
||||||
|
https://hg.mozilla.org/mozilla-central/raw-rev/c53f5ef77b62b79af86951a7f9130e1896b695d2
|
||||||
|
---
|
||||||
|
media/libvpx/libvpx/vp8/encoder/onyx_if.c | 6 ++++++
|
||||||
|
1 file changed, 6 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/media/libvpx/libvpx/vp8/encoder/onyx_if.c b/media/libvpx/libvpx/vp8/encoder/onyx_if.c
|
||||||
|
index 2b059a1..8d05668 100644
|
||||||
|
--- a/media/libvpx/libvpx/vp8/encoder/onyx_if.c
|
||||||
|
+++ b/media/libvpx/libvpx/vp8/encoder/onyx_if.c
|
||||||
|
@@ -1445,6 +1445,12 @@ void vp8_change_config(VP8_COMP *cpi, VP8_CONFIG *oxcf) {
|
||||||
|
last_h = cpi->oxcf.Height;
|
||||||
|
prev_number_of_layers = cpi->oxcf.number_of_layers;
|
||||||
|
|
||||||
|
+ if (cpi->initial_width) {
|
||||||
|
+ // TODO(https://crbug.com/1486441): Allow changing thread counts; the
|
||||||
|
+ // allocation is done once in vp8_create_compressor().
|
||||||
|
+ oxcf->multi_threaded = cpi->oxcf.multi_threaded;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
cpi->oxcf = *oxcf;
|
||||||
|
|
||||||
|
switch (cpi->oxcf.Mode) {
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
||||||
38
CVE-2023-7104.patch
Normal file
38
CVE-2023-7104.patch
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
Origin: https://sqlite.org/src/info/0e4e7a05c4204b47
|
||||||
|
|
||||||
|
Index: third_party/sqlite3/src/sqlite3.c
|
||||||
|
==================================================================
|
||||||
|
--- a/third_party/sqlite3/src/sqlite3.c
|
||||||
|
+++ b/third_party/sqlite3/src/sqlite3.c
|
||||||
|
@@ -3234,19 +3234,23 @@
|
||||||
|
pIn->iNext += nByte;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){
|
||||||
|
- sqlite3_int64 v = sessionGetI64(aVal);
|
||||||
|
- if( eType==SQLITE_INTEGER ){
|
||||||
|
- sqlite3VdbeMemSetInt64(apOut[i], v);
|
||||||
|
+ if( (pIn->nData-pIn->iNext)<8 ){
|
||||||
|
+ rc = SQLITE_CORRUPT_BKPT;
|
||||||
|
}else{
|
||||||
|
- double d;
|
||||||
|
- memcpy(&d, &v, 8);
|
||||||
|
- sqlite3VdbeMemSetDouble(apOut[i], d);
|
||||||
|
+ sqlite3_int64 v = sessionGetI64(aVal);
|
||||||
|
+ if( eType==SQLITE_INTEGER ){
|
||||||
|
+ sqlite3VdbeMemSetInt64(apOut[i], v);
|
||||||
|
+ }else{
|
||||||
|
+ double d;
|
||||||
|
+ memcpy(&d, &v, 8);
|
||||||
|
+ sqlite3VdbeMemSetDouble(apOut[i], d);
|
||||||
|
+ }
|
||||||
|
+ pIn->iNext += 8;
|
||||||
|
}
|
||||||
|
- pIn->iNext += 8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
|
||||||
82
D110204-fscreen.patch
Normal file
82
D110204-fscreen.patch
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
diff -up firefox-102.2.0/widget/gtk/nsWindow.cpp.D110204-fscreen.diff firefox-102.2.0/widget/gtk/nsWindow.cpp
|
||||||
|
--- firefox-102.2.0/widget/gtk/nsWindow.cpp.D110204-fscreen.diff 2022-08-18 21:54:09.000000000 +0200
|
||||||
|
+++ firefox-102.2.0/widget/gtk/nsWindow.cpp 2022-09-02 15:55:18.023843940 +0200
|
||||||
|
@@ -96,6 +96,7 @@
|
||||||
|
#include "ScreenHelperGTK.h"
|
||||||
|
#include "SystemTimeConverter.h"
|
||||||
|
#include "WidgetUtilsGtk.h"
|
||||||
|
+#include "nsIBrowserHandler.h"
|
||||||
|
|
||||||
|
#ifdef ACCESSIBILITY
|
||||||
|
# include "mozilla/a11y/LocalAccessible.h"
|
||||||
|
@@ -169,7 +170,8 @@ const gint kEvents = GDK_TOUCHPAD_GESTUR
|
||||||
|
GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
|
||||||
|
GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
|
||||||
|
GDK_SMOOTH_SCROLL_MASK | GDK_TOUCH_MASK | GDK_SCROLL_MASK |
|
||||||
|
- GDK_POINTER_MOTION_MASK | GDK_PROPERTY_CHANGE_MASK;
|
||||||
|
+ GDK_POINTER_MOTION_MASK | GDK_PROPERTY_CHANGE_MASK |
|
||||||
|
+ GDK_FOCUS_CHANGE_MASK;
|
||||||
|
|
||||||
|
/* utility functions */
|
||||||
|
static bool is_mouse_in_window(GdkWindow* aWindow, gdouble aMouseX,
|
||||||
|
@@ -408,7 +410,8 @@ nsWindow::nsWindow()
|
||||||
|
mMovedAfterMoveToRect(false),
|
||||||
|
mResizedAfterMoveToRect(false),
|
||||||
|
mConfiguredClearColor(false),
|
||||||
|
- mGotNonBlankPaint(false) {
|
||||||
|
+ mGotNonBlankPaint(false),
|
||||||
|
+ mPendingFullscreen(false) {
|
||||||
|
mWindowType = eWindowType_child;
|
||||||
|
mSizeConstraints.mMaxSize = GetSafeWindowSize(mSizeConstraints.mMaxSize);
|
||||||
|
|
||||||
|
@@ -4814,6 +4817,19 @@ void nsWindow::OnWindowStateEvent(GtkWid
|
||||||
|
ClearTransparencyBitmap();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ // Hack to ensure window switched to fullscreen - avoid to fail when starting
|
||||||
|
+ // in kiosk mode
|
||||||
|
+ if (mPendingFullscreen &&
|
||||||
|
+ !(aEvent->new_window_state & GDK_WINDOW_STATE_FULLSCREEN)) {
|
||||||
|
+ LOG(
|
||||||
|
+ " Window should be fullscreen, but it's not, retrying set to "
|
||||||
|
+ "fullscreen.\n");
|
||||||
|
+ MakeFullScreen(true);
|
||||||
|
+ } else {
|
||||||
|
+ LOG(" Window successfully switched to fullscreen, happy now\n");
|
||||||
|
+ mPendingFullscreen = false;
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
|
||||||
|
void nsWindow::OnDPIChanged() {
|
||||||
|
@@ -7042,6 +7058,19 @@ nsresult nsWindow::MakeFullScreen(bool a
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // if in kiosk, ensure the fullscreen is called
|
||||||
|
+ nsCOMPtr<nsIBrowserHandler> browserHandler =
|
||||||
|
+ do_GetService("@mozilla.org/browser/clh;1");
|
||||||
|
+ if (browserHandler) {
|
||||||
|
+ bool isKiosk;
|
||||||
|
+ browserHandler->GetKiosk(&isKiosk);
|
||||||
|
+ if (isKiosk) {
|
||||||
|
+ LOG(" is kiosk, ensure the window switch to fullscreen\n");
|
||||||
|
+ mPendingFullscreen = true;
|
||||||
|
+ }
|
||||||
|
+ } else {
|
||||||
|
+ LOG(" Cannot find the browserHandler service.\n");
|
||||||
|
+ }
|
||||||
|
gtk_window_fullscreen(GTK_WINDOW(mShell));
|
||||||
|
} else {
|
||||||
|
mSizeMode = mLastSizeMode;
|
||||||
|
diff -up firefox-102.2.0/widget/gtk/nsWindow.h.D110204-fscreen.diff firefox-102.2.0/widget/gtk/nsWindow.h
|
||||||
|
--- firefox-102.2.0/widget/gtk/nsWindow.h.D110204-fscreen.diff 2022-08-18 21:53:52.000000000 +0200
|
||||||
|
+++ firefox-102.2.0/widget/gtk/nsWindow.h 2022-09-02 08:17:07.606010905 +0200
|
||||||
|
@@ -712,6 +712,7 @@ class nsWindow final : public nsBaseWidg
|
||||||
|
* move-to-rect callback we set mMovedAfterMoveToRect/mResizedAfterMoveToRect.
|
||||||
|
*/
|
||||||
|
bool mWaitingForMoveToRectCallback : 1;
|
||||||
|
+ bool mPendingFullscreen : 1;
|
||||||
|
bool mMovedAfterMoveToRect : 1;
|
||||||
|
bool mResizedAfterMoveToRect : 1;
|
||||||
|
|
||||||
25
D158770.patch
Normal file
25
D158770.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
diff --git a/parser/expat/lib/xmlparse.c b/parser/expat/lib/xmlparse.c
|
||||||
|
--- a/parser/expat/lib/xmlparse.c
|
||||||
|
+++ b/parser/expat/lib/xmlparse.c
|
||||||
|
@@ -5652,12 +5652,18 @@
|
||||||
|
else
|
||||||
|
#endif /* XML_DTD */
|
||||||
|
{
|
||||||
|
processor = contentProcessor;
|
||||||
|
/* see externalEntityContentProcessor vs contentProcessor */
|
||||||
|
- return doContent(parser, parentParser ? 1 : 0, encoding, s, end,
|
||||||
|
- nextPtr, (XML_Bool)!ps_finalBuffer);
|
||||||
|
+ result = doContent(parser, parser->m_parentParser ? 1 : 0,
|
||||||
|
+ parser->m_encoding, s, end, nextPtr,
|
||||||
|
+ (XML_Bool)! parser->m_parsingStatus.finalBuffer);
|
||||||
|
+ if (result == XML_ERROR_NONE) {
|
||||||
|
+ if (! storeRawNames(parser))
|
||||||
|
+ return XML_ERROR_NO_MEMORY;
|
||||||
|
+ }
|
||||||
|
+ return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static enum XML_Error PTRCALL
|
||||||
|
errorProcessor(XML_Parser parser,
|
||||||
|
|
||||||
45
build-aarch64-skia.patch
Normal file
45
build-aarch64-skia.patch
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
diff -up firefox-72.0/gfx/skia/skia/include/private/SkHalf.h.aarch64-skia firefox-72.0/gfx/skia/skia/include/private/SkHalf.h
|
||||||
|
--- firefox-72.0/gfx/skia/skia/include/private/SkHalf.h.aarch64-skia 2020-01-02 22:33:02.000000000 +0100
|
||||||
|
+++ firefox-72.0/gfx/skia/skia/include/private/SkHalf.h 2020-01-03 09:00:37.537296105 +0100
|
||||||
|
@@ -40,7 +40,7 @@ static inline Sk4h SkFloatToHalf_finite_
|
||||||
|
|
||||||
|
static inline Sk4f SkHalfToFloat_finite_ftz(uint64_t rgba) {
|
||||||
|
Sk4h hs = Sk4h::Load(&rgba);
|
||||||
|
-#if !defined(SKNX_NO_SIMD) && defined(SK_CPU_ARM64)
|
||||||
|
+#if 0 // !defined(SKNX_NO_SIMD) && defined(SK_CPU_ARM64)
|
||||||
|
float32x4_t fs;
|
||||||
|
asm ("fcvtl %[fs].4s, %[hs].4h \n" // vcvt_f32_f16(...)
|
||||||
|
: [fs] "=w" (fs) // =w: write-only NEON register
|
||||||
|
@@ -62,7 +62,7 @@ static inline Sk4f SkHalfToFloat_finite_
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline Sk4h SkFloatToHalf_finite_ftz(const Sk4f& fs) {
|
||||||
|
-#if !defined(SKNX_NO_SIMD) && defined(SK_CPU_ARM64)
|
||||||
|
+#if 0 // !defined(SKNX_NO_SIMD) && defined(SK_CPU_ARM64)
|
||||||
|
float32x4_t vec = fs.fVec;
|
||||||
|
asm ("fcvtn %[vec].4h, %[vec].4s \n" // vcvt_f16_f32(vec)
|
||||||
|
: [vec] "+w" (vec)); // +w: read-write NEON register
|
||||||
|
diff -up firefox-72.0/gfx/skia/skia/src/opts/SkRasterPipeline_opts.h.aarch64-skia firefox-72.0/gfx/skia/skia/src/opts/SkRasterPipeline_opts.h
|
||||||
|
--- firefox-72.0/gfx/skia/skia/src/opts/SkRasterPipeline_opts.h.aarch64-skia 2020-01-03 09:00:37.538296107 +0100
|
||||||
|
+++ firefox-72.0/gfx/skia/skia/src/opts/SkRasterPipeline_opts.h 2020-01-03 10:11:41.259219508 +0100
|
||||||
|
@@ -1087,7 +1087,7 @@ SI F from_half(U16 h) {
|
||||||
|
}
|
||||||
|
|
||||||
|
SI U16 to_half(F f) {
|
||||||
|
-#if defined(JUMPER_IS_NEON) && defined(SK_CPU_ARM64) \
|
||||||
|
+#if 0 //defined(JUMPER_IS_NEON) && defined(SK_CPU_ARM64) \
|
||||||
|
&& !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds.
|
||||||
|
return vcvt_f16_f32(f);
|
||||||
|
|
||||||
|
diff -up firefox-72.0/gfx/skia/skia/third_party/skcms/src/Transform_inl.h.aarch64-skia firefox-72.0/gfx/skia/skia/third_party/skcms/src/Transform_inl.h
|
||||||
|
--- firefox-72.0/gfx/skia/skia/third_party/skcms/src/Transform_inl.h.aarch64-skia 2020-01-03 09:00:37.538296107 +0100
|
||||||
|
+++ firefox-72.0/gfx/skia/skia/third_party/skcms/src/Transform_inl.h 2020-01-03 10:11:53.513250979 +0100
|
||||||
|
@@ -183,8 +183,6 @@ SI F F_from_Half(U16 half) {
|
||||||
|
SI U16 Half_from_F(F f) {
|
||||||
|
#if defined(USING_NEON_FP16)
|
||||||
|
return bit_pun<U16>(f);
|
||||||
|
-#elif defined(USING_NEON_F16C)
|
||||||
|
- return (U16)vcvt_f16_f32(f);
|
||||||
|
#elif defined(USING_AVX512F)
|
||||||
|
return (U16)_mm512_cvtps_ph((__m512 )f, _MM_FROUND_CUR_DIRECTION );
|
||||||
|
#elif defined(USING_AVX_F16C)
|
||||||
12
build-arm-libaom.patch
Normal file
12
build-arm-libaom.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up firefox-73.0/media/libaom/moz.build.old firefox-73.0/media/libaom/moz.build
|
||||||
|
--- firefox-73.0/media/libaom/moz.build.old 2020-02-07 23:13:28.000000000 +0200
|
||||||
|
+++ firefox-73.0/media/libaom/moz.build 2020-02-17 10:30:08.509805092 +0200
|
||||||
|
@@ -55,7 +55,7 @@ elif CONFIG['CPU_ARCH'] == 'arm':
|
||||||
|
|
||||||
|
for f in SOURCES:
|
||||||
|
if f.endswith('neon.c'):
|
||||||
|
- SOURCES[f].flags += CONFIG['VPX_ASFLAGS']
|
||||||
|
+ SOURCES[f].flags += CONFIG['NEON_FLAGS']
|
||||||
|
|
||||||
|
if CONFIG['OS_TARGET'] == 'Android':
|
||||||
|
# For cpu-features.h
|
||||||
12
build-arm-libopus.patch
Normal file
12
build-arm-libopus.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up firefox-66.0/media/libopus/silk/arm/arm_silk_map.c.old firefox-66.0/media/libopus/silk/arm/arm_silk_map.c
|
||||||
|
--- firefox-66.0/media/libopus/silk/arm/arm_silk_map.c.old 2019-03-12 21:07:35.356677522 +0100
|
||||||
|
+++ firefox-66.0/media/libopus/silk/arm/arm_silk_map.c 2019-03-12 21:07:42.937693394 +0100
|
||||||
|
@@ -28,7 +28,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
# include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
-#include "main_FIX.h"
|
||||||
|
+#include "fixed/main_FIX.h"
|
||||||
|
#include "NSQ.h"
|
||||||
|
#include "SigProc_FIX.h"
|
||||||
|
|
||||||
57
build-big-endian-errors.patch
Normal file
57
build-big-endian-errors.patch
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
diff -up firefox-102.0/third_party/libwebrtc/common_audio/wav_file.cc.big-endian-errors firefox-102.0/third_party/libwebrtc/common_audio/wav_file.cc
|
||||||
|
--- firefox-102.0/third_party/libwebrtc/common_audio/wav_file.cc.big-endian-errors 2022-08-17 13:19:53.056891028 +0200
|
||||||
|
+++ firefox-102.0/third_party/libwebrtc/common_audio/wav_file.cc 2022-08-17 13:19:57.251879556 +0200
|
||||||
|
@@ -89,9 +89,6 @@ void WavReader::Reset() {
|
||||||
|
|
||||||
|
size_t WavReader::ReadSamples(const size_t num_samples,
|
||||||
|
int16_t* const samples) {
|
||||||
|
-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
||||||
|
-#error "Need to convert samples to big-endian when reading from WAV file"
|
||||||
|
-#endif
|
||||||
|
|
||||||
|
size_t num_samples_left_to_read = num_samples;
|
||||||
|
size_t next_chunk_start = 0;
|
||||||
|
@@ -129,9 +126,6 @@ size_t WavReader::ReadSamples(const size
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t WavReader::ReadSamples(const size_t num_samples, float* const samples) {
|
||||||
|
-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
||||||
|
-#error "Need to convert samples to big-endian when reading from WAV file"
|
||||||
|
-#endif
|
||||||
|
|
||||||
|
size_t num_samples_left_to_read = num_samples;
|
||||||
|
size_t next_chunk_start = 0;
|
||||||
|
@@ -213,9 +207,6 @@ WavWriter::WavWriter(FileWrapper file,
|
||||||
|
}
|
||||||
|
|
||||||
|
void WavWriter::WriteSamples(const int16_t* samples, size_t num_samples) {
|
||||||
|
-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
||||||
|
-#error "Need to convert samples to little-endian when writing to WAV file"
|
||||||
|
-#endif
|
||||||
|
|
||||||
|
for (size_t i = 0; i < num_samples; i += kMaxChunksize) {
|
||||||
|
const size_t num_remaining_samples = num_samples - i;
|
||||||
|
@@ -243,9 +234,6 @@ void WavWriter::WriteSamples(const int16
|
||||||
|
}
|
||||||
|
|
||||||
|
void WavWriter::WriteSamples(const float* samples, size_t num_samples) {
|
||||||
|
-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
||||||
|
-#error "Need to convert samples to little-endian when writing to WAV file"
|
||||||
|
-#endif
|
||||||
|
|
||||||
|
for (size_t i = 0; i < num_samples; i += kMaxChunksize) {
|
||||||
|
const size_t num_remaining_samples = num_samples - i;
|
||||||
|
diff -up firefox-102.0/third_party/libwebrtc/common_audio/wav_header.cc.big-endian-errors firefox-102.0/third_party/libwebrtc/common_audio/wav_header.cc
|
||||||
|
--- firefox-102.0/third_party/libwebrtc/common_audio/wav_header.cc.big-endian-errors 2022-08-17 13:18:04.688187393 +0200
|
||||||
|
+++ firefox-102.0/third_party/libwebrtc/common_audio/wav_header.cc 2022-08-17 13:18:22.451138816 +0200
|
||||||
|
@@ -26,10 +26,6 @@
|
||||||
|
namespace webrtc {
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
||||||
|
-#error "Code not working properly for big endian platforms."
|
||||||
|
-#endif
|
||||||
|
-
|
||||||
|
#pragma pack(2)
|
||||||
|
struct ChunkHeader {
|
||||||
|
uint32_t ID;
|
||||||
12
build-disable-elfhack.patch
Normal file
12
build-disable-elfhack.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up firefox-97.0/toolkit/moz.configure.disable-elfhack firefox-97.0/toolkit/moz.configure
|
||||||
|
--- firefox-97.0/toolkit/moz.configure.disable-elfhack 2022-02-08 09:58:47.518047952 +0100
|
||||||
|
+++ firefox-97.0/toolkit/moz.configure 2022-02-08 10:17:49.552945956 +0100
|
||||||
|
@@ -1273,7 +1273,7 @@ with only_when("--enable-compile-environ
|
||||||
|
help="{Enable|Disable} elf hacks",
|
||||||
|
)
|
||||||
|
|
||||||
|
- set_config("USE_ELF_HACK", depends_if("--enable-elf-hack")(lambda _: True))
|
||||||
|
+ set_config("USE_ELF_HACK", depends_if("--enable-elf-hack")(lambda _: False))
|
||||||
|
|
||||||
|
|
||||||
|
@depends(build_environment)
|
||||||
49
build-remove-dav1d-from-wayland-dep.patch
Normal file
49
build-remove-dav1d-from-wayland-dep.patch
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
diff -up firefox-102.0/media/ffvpx/config_common.h.dav1d-remove firefox-102.0/media/ffvpx/config_common.h
|
||||||
|
--- firefox-102.0/media/ffvpx/config_common.h.dav1d-remove 2022-08-08 12:48:33.218128539 +0200
|
||||||
|
+++ firefox-102.0/media/ffvpx/config_common.h 2022-08-08 12:48:52.986003374 +0200
|
||||||
|
@@ -24,15 +24,11 @@
|
||||||
|
#undef CONFIG_VP8_VAAPI_HWACCEL
|
||||||
|
#undef CONFIG_VP9_VAAPI_HWACCEL
|
||||||
|
#undef CONFIG_AV1_VAAPI_HWACCEL
|
||||||
|
-#undef CONFIG_LIBDAV1D
|
||||||
|
-#undef CONFIG_AV1_DECODER
|
||||||
|
#define CONFIG_VAAPI 1
|
||||||
|
#define CONFIG_VAAPI_1 1
|
||||||
|
#define CONFIG_VP8_VAAPI_HWACCEL 1
|
||||||
|
#define CONFIG_VP9_VAAPI_HWACCEL 1
|
||||||
|
#define CONFIG_AV1_VAAPI_HWACCEL 1
|
||||||
|
-#define CONFIG_LIBDAV1D 1
|
||||||
|
-#define CONFIG_AV1_DECODER 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
diff -up firefox-102.0/media/ffvpx/libavcodec/moz.build.dav1d-remove firefox-102.0/media/ffvpx/libavcodec/moz.build
|
||||||
|
--- firefox-102.0/media/ffvpx/libavcodec/moz.build.dav1d-remove 2022-08-08 12:44:24.098710736 +0200
|
||||||
|
+++ firefox-102.0/media/ffvpx/libavcodec/moz.build 2022-08-08 12:46:42.635828719 +0200
|
||||||
|
@@ -104,17 +104,23 @@ if not CONFIG['MOZ_FFVPX_AUDIOONLY']:
|
||||||
|
]
|
||||||
|
if CONFIG['MOZ_WAYLAND']:
|
||||||
|
LOCAL_INCLUDES += ['/media/mozva']
|
||||||
|
+ if CONFIG['MOZ_DAV1D_ASM']:
|
||||||
|
+ SOURCES += [
|
||||||
|
+ 'libdav1d.c',
|
||||||
|
+ ]
|
||||||
|
SOURCES += [
|
||||||
|
'atsc_a53.c',
|
||||||
|
- 'libdav1d.c',
|
||||||
|
'vaapi_av1.c',
|
||||||
|
'vaapi_decode.c',
|
||||||
|
'vaapi_vp8.c',
|
||||||
|
'vaapi_vp9.c',
|
||||||
|
]
|
||||||
|
+ if CONFIG['MOZ_DAV1D_ASM']:
|
||||||
|
+ USE_LIBS += [
|
||||||
|
+ 'dav1d',
|
||||||
|
+ 'media_libdav1d_asm',
|
||||||
|
+ ]
|
||||||
|
USE_LIBS += [
|
||||||
|
- 'dav1d',
|
||||||
|
- 'media_libdav1d_asm',
|
||||||
|
'mozva'
|
||||||
|
]
|
||||||
|
|
||||||
BIN
cbindgen-vendor.tar.xz
Normal file
BIN
cbindgen-vendor.tar.xz
Normal file
Binary file not shown.
28
disable-glean-sdk,psutil,zstandard.patch
Normal file
28
disable-glean-sdk,psutil,zstandard.patch
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
From cac2a2962d2461e5a8969bb08d02bacd545e52cf Mon Sep 17 00:00:00 2001
|
||||||
|
From: wk333 <13474090681@163.com>
|
||||||
|
Date: Mon, 27 Feb 2023 20:09:10 +0800
|
||||||
|
Subject: [PATCH 1/1] disable glean-sdk,psutil,zstandard
|
||||||
|
|
||||||
|
---
|
||||||
|
python/sites/mach.txt | 8 --------
|
||||||
|
1 file changed, 8 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/python/sites/mach.txt b/python/sites/mach.txt
|
||||||
|
index 6547ee5..cd66ba1 100644
|
||||||
|
--- a/python/sites/mach.txt
|
||||||
|
+++ b/python/sites/mach.txt
|
||||||
|
@@ -127,11 +127,3 @@ pth:tools/moztreedocs
|
||||||
|
pth:xpcom/ds/tools
|
||||||
|
pth:xpcom/geckoprocesstypes_generator
|
||||||
|
pth:xpcom/idl-parser
|
||||||
|
-# glean-sdk may not be installable if a wheel isn't available
|
||||||
|
-# and it has to be built from source.
|
||||||
|
-pypi-optional:glean-sdk==44.1.1:telemetry will not be collected
|
||||||
|
-# Mach gracefully handles the case where `psutil` is unavailable.
|
||||||
|
-# We aren't (yet) able to pin packages in automation, so we have to
|
||||||
|
-# support down to the oldest locally-installed version (5.4.2).
|
||||||
|
-pypi-optional:psutil>=5.4.2,<=5.8.0:telemetry will be missing some data
|
||||||
|
-pypi-optional:zstandard>=0.11.1,<=0.17.0:zstd archives will not be possible to extract
|
||||||
|
--
|
||||||
|
2.27.0
|
||||||
|
|
||||||
10
distribution.ini
Normal file
10
distribution.ini
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Global]
|
||||||
|
id=openeuler
|
||||||
|
version=1.0
|
||||||
|
about=Mozilla Firefox for Openeuler
|
||||||
|
|
||||||
|
[Preferences]
|
||||||
|
app.distributor=openeuler
|
||||||
|
app.distributor.channel=openeuler
|
||||||
|
app.partner.openeuler=openeuler
|
||||||
|
|
||||||
BIN
firefox-102.15.0esr.processed-source.tar.xz
Normal file
BIN
firefox-102.15.0esr.processed-source.tar.xz
Normal file
Binary file not shown.
13
firefox-enable-addons.patch
Normal file
13
firefox-enable-addons.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff -up firefox-55.0/browser/app/profile/firefox.js.addons firefox-55.0/browser/app/profile/firefox.js
|
||||||
|
--- firefox-55.0/browser/app/profile/firefox.js.addons 2017-08-02 10:58:30.566363833 +0200
|
||||||
|
+++ firefox-55.0/browser/app/profile/firefox.js 2017-08-02 10:59:15.377216959 +0200
|
||||||
|
@@ -65,7 +65,8 @@ pref("extensions.systemAddon.update.url"
|
||||||
|
|
||||||
|
// Disable add-ons that are not installed by the user in all scopes by default.
|
||||||
|
// See the SCOPE constants in AddonManager.jsm for values to use here.
|
||||||
|
-pref("extensions.autoDisableScopes", 15);
|
||||||
|
+pref("extensions.autoDisableScopes", 0);
|
||||||
|
+pref("extensions.showMismatchUI", false);
|
||||||
|
// Scopes to scan for changes at startup.
|
||||||
|
pref("extensions.startupScanScopes", 0);
|
||||||
|
|
||||||
38
firefox-gcc-build.patch
Normal file
38
firefox-gcc-build.patch
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
--- firefox-80.0.1/toolkit/crashreporter/google-breakpad/src/third_party/lss/linux_syscall_support.h 2020-08-31 10:04:19.000000000 -0400
|
||||||
|
+++ firefox-80.0.1/toolkit/crashreporter/google-breakpad/src/third_party/lss/linux_syscall_support.h 2020-09-12 07:24:35.298931628 -0400
|
||||||
|
@@ -1962,7 +1962,7 @@ struct kernel_statfs {
|
||||||
|
LSS_ENTRYPOINT \
|
||||||
|
"pop %%ebx" \
|
||||||
|
args \
|
||||||
|
- : "esp", "memory"); \
|
||||||
|
+ : "memory"); \
|
||||||
|
LSS_RETURN(type,__res)
|
||||||
|
#undef _syscall0
|
||||||
|
#define _syscall0(type,name) \
|
||||||
|
@@ -2019,7 +2019,7 @@ struct kernel_statfs {
|
||||||
|
: "i" (__NR_##name), "ri" ((long)(arg1)), \
|
||||||
|
"c" ((long)(arg2)), "d" ((long)(arg3)), \
|
||||||
|
"S" ((long)(arg4)), "D" ((long)(arg5)) \
|
||||||
|
- : "esp", "memory"); \
|
||||||
|
+ : "memory"); \
|
||||||
|
LSS_RETURN(type,__res); \
|
||||||
|
}
|
||||||
|
#undef _syscall6
|
||||||
|
@@ -2041,7 +2041,7 @@ struct kernel_statfs {
|
||||||
|
: "i" (__NR_##name), "0" ((long)(&__s)), \
|
||||||
|
"c" ((long)(arg2)), "d" ((long)(arg3)), \
|
||||||
|
"S" ((long)(arg4)), "D" ((long)(arg5)) \
|
||||||
|
- : "esp", "memory"); \
|
||||||
|
+ : "memory"); \
|
||||||
|
LSS_RETURN(type,__res); \
|
||||||
|
}
|
||||||
|
LSS_INLINE int LSS_NAME(clone)(int (*fn)(void *), void *child_stack,
|
||||||
|
@@ -2127,7 +2127,7 @@ struct kernel_statfs {
|
||||||
|
: "0"(-EINVAL), "i"(__NR_clone),
|
||||||
|
"m"(fn), "m"(child_stack), "m"(flags), "m"(arg),
|
||||||
|
"m"(parent_tidptr), "m"(newtls), "m"(child_tidptr)
|
||||||
|
- : "esp", "memory", "ecx", "edx", "esi", "edi");
|
||||||
|
+ : "memory", "ecx", "edx", "esi", "edi");
|
||||||
|
LSS_RETURN(int, __res);
|
||||||
|
}
|
||||||
|
|
||||||
BIN
firefox-langpacks-102.15.0esr-20230824.tar.xz
Normal file
BIN
firefox-langpacks-102.15.0esr-20230824.tar.xz
Normal file
Binary file not shown.
28
firefox-mozconfig
Normal file
28
firefox-mozconfig
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
. $topsrcdir/browser/config/mozconfig
|
||||||
|
|
||||||
|
ac_add_options --with-system-zlib
|
||||||
|
ac_add_options --disable-strip
|
||||||
|
#ac_add_options --enable-libnotify
|
||||||
|
ac_add_options --enable-necko-wifi
|
||||||
|
ac_add_options --disable-updater
|
||||||
|
ac_add_options --enable-chrome-format=omni
|
||||||
|
ac_add_options --enable-pulseaudio
|
||||||
|
ac_add_options --enable-av1
|
||||||
|
ac_add_options --without-system-icu
|
||||||
|
ac_add_options --enable-release
|
||||||
|
ac_add_options --allow-addon-sideload
|
||||||
|
ac_add_options --with-system-jpeg
|
||||||
|
ac_add_options --enable-js-shell
|
||||||
|
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||||
|
ac_add_options --without-sysroot
|
||||||
|
# investigate this one:
|
||||||
|
ac_add_options --without-wasm-sandboxed-libraries
|
||||||
|
ac_add_options --disable-crashreporter
|
||||||
|
export BUILD_OFFICIAL=1
|
||||||
|
export MOZILLA_OFFICIAL=1
|
||||||
|
export MOZ_TELEMETRY_REPORTING=1
|
||||||
|
export MOZ_UPDATE_CHANNEL=release
|
||||||
|
export MOZ_APP_REMOTINGNAME=firefox
|
||||||
|
mk_add_options BUILD_OFFICIAL=1
|
||||||
|
mk_add_options MOZILLA_OFFICIAL=1
|
||||||
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/objdir
|
||||||
19
firefox-nss-addon-hack.patch
Normal file
19
firefox-nss-addon-hack.patch
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
diff -up firefox-84.0.2/security/certverifier/NSSCertDBTrustDomain.cpp.nss-hack firefox-84.0.2/security/certverifier/NSSCertDBTrustDomain.cpp
|
||||||
|
--- firefox-84.0.2/security/certverifier/NSSCertDBTrustDomain.cpp.nss-hack 2021-01-11 12:12:02.585514543 +0100
|
||||||
|
+++ firefox-84.0.2/security/certverifier/NSSCertDBTrustDomain.cpp 2021-01-11 12:47:50.345984582 +0100
|
||||||
|
@@ -1619,6 +1619,15 @@ SECStatus InitializeNSS(const nsACString
|
||||||
|
return srv;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ /* Sets the NSS_USE_ALG_IN_ANY_SIGNATURE bit.
|
||||||
|
+ * does not change NSS_USE_ALG_IN_CERT_SIGNATURE,
|
||||||
|
+ * so policy will still disable use of sha1 in
|
||||||
|
+ * certificate related signature processing. */
|
||||||
|
+ srv = NSS_SetAlgorithmPolicy(SEC_OID_SHA1, NSS_USE_ALG_IN_ANY_SIGNATURE, 0);
|
||||||
|
+ if (srv != SECSuccess) {
|
||||||
|
+ NS_WARNING("Unable to use SHA1 for Add-ons, expect broken/disabled Add-ons. See https://bugzilla.redhat.com/show_bug.cgi?id=1908018 for details.");
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
if (nssDbConfig == NSSDBConfig::ReadWrite) {
|
||||||
|
UniquePK11SlotInfo slot(PK11_GetInternalKeySlot());
|
||||||
|
if (!slot) {
|
||||||
11
firefox-nss-version.patch
Normal file
11
firefox-nss-version.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- firefox-102.6.0/build/moz.configure/nss.configure.firefox-nss-version 2022-12-06 19:14:59.439978420 +0100
|
||||||
|
+++ firefox-102.6.0/build/moz.configure/nss.configure 2022-12-06 19:18:23.299471634 +0100
|
||||||
|
@@ -9,7 +9,7 @@ system_lib_option("--with-system-nss", h
|
||||||
|
imply_option("--with-system-nspr", True, when="--with-system-nss")
|
||||||
|
|
||||||
|
nss_pkg = pkg_check_modules(
|
||||||
|
- "NSS", "nss >= 3.79.2", when="--with-system-nss", config=False
|
||||||
|
+ "NSS", "nss >= 3.72", when="--with-system-nss", config=False
|
||||||
|
)
|
||||||
|
|
||||||
|
set_config("MOZ_SYSTEM_NSS", True, when="--with-system-nss")
|
||||||
42
firefox-openeuler-default-prefs.js
Normal file
42
firefox-openeuler-default-prefs.js
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
pref("app.update.auto", false);
|
||||||
|
pref("app.update.enabled", false);
|
||||||
|
pref("app.update.autoInstallEnabled", false);
|
||||||
|
pref("general.smoothScroll", true);
|
||||||
|
pref("intl.locale.requested", "");
|
||||||
|
pref("toolkit.storage.synchronous", 0);
|
||||||
|
pref("toolkit.networkmanager.disable", false);
|
||||||
|
pref("offline.autoDetect", true);
|
||||||
|
pref("browser.backspace_action", 2);
|
||||||
|
pref("browser.display.use_system_colors", true);
|
||||||
|
pref("browser.download.folderList", 1);
|
||||||
|
pref("browser.link.open_external", 3);
|
||||||
|
pref("browser.shell.checkDefaultBrowser", false);
|
||||||
|
pref("network.manage-offline-status", true);
|
||||||
|
pref("extensions.shownSelectionUI", true);
|
||||||
|
pref("ui.SpellCheckerUnderlineStyle", 1);
|
||||||
|
pref("startup.homepage_override_url", "https://openeuler.org/zh/");
|
||||||
|
pref("startup.homepage_welcome_url", "https://openeuler.org/zh/");
|
||||||
|
pref("browser.startup.homepage", "data:text/plain,browser.startup.homepage=https://openeuler.org/zh/");
|
||||||
|
pref("geo.wifi.uri", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%");
|
||||||
|
pref("media.gmp-gmpopenh264.autoupdate",true);
|
||||||
|
pref("media.gmp-gmpopenh264.enabled",false);
|
||||||
|
pref("media.gmp.decoder.enabled", true);
|
||||||
|
pref("plugins.notifyMissingFlash", false);
|
||||||
|
/* See https://bugzilla.redhat.com/show_bug.cgi?id=1226489 */
|
||||||
|
pref("browser.display.use_system_colors", false);
|
||||||
|
/* Allow sending credetials to all https:// sites */
|
||||||
|
pref("network.negotiate-auth.trusted-uris", "https://");
|
||||||
|
pref("security.use_sqldb", false);
|
||||||
|
pref("spellchecker.dictionary_path","/usr/share/myspell");
|
||||||
|
/* Disable DoH by default */
|
||||||
|
pref("network.trr.mode", 5);
|
||||||
|
/* Enable per-user policy dir, see mozbz#1583466 */
|
||||||
|
pref("browser.policies.perUserDir", true);
|
||||||
|
pref("browser.gnome-search-provider.enabled",true);
|
||||||
|
/* Enable ffvpx playback for WebRTC */
|
||||||
|
pref("media.navigator.mediadatadecoder_vpx_enabled", true);
|
||||||
|
/* See https://bugzilla.redhat.com/show_bug.cgi?id=1672424 */
|
||||||
|
pref("storage.nfs_filesystem", true);
|
||||||
|
pref("datareporting.healthreport.uploadEnabled", false);
|
||||||
|
pref("datareporting.policy.dataSubmissionEnabled", false);
|
||||||
|
pref("toolkit.telemetry.archive.enabled", false);
|
||||||
5
firefox-search-provider.ini
Normal file
5
firefox-search-provider.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[Shell Search Provider]
|
||||||
|
DesktopId=firefox.desktop
|
||||||
|
BusName=org.mozilla.Firefox.SearchProvider
|
||||||
|
ObjectPath=/org/mozilla/Firefox/SearchProvider
|
||||||
|
Version=2
|
||||||
3
firefox-symbolic.svg
Normal file
3
firefox-symbolic.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg id="Assets" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path d="M190.368 150.591c0.157 0.009 0.079 0.003 0 0zm-57.874-28.933c0.158 0.008 0.079 0.003 0 0zm346.228 44.674c-10.445-25.123-31.6-52.248-48.211-60.82 13.52 26.5 21.345 53.093 24.335 72.935 0 0.04 0.015 0.136 0.047 0.4-27.175-67.732-73.254-95.047-110.886-154.512-1.9-3.008-3.805-6.022-5.661-9.2a73.237 73.237 0 0 1-2.646-4.972 43.757 43.757 0 0 1-3.585-9.5 0.625 0.625 0 0 0-0.546-0.644 0.8 0.8 0 0 0-0.451 0c-0.033 0.011-0.084 0.051-0.119 0.065-0.053 0.02-0.12 0.069-0.176 0.095 0.026-0.036 0.083-0.117 0.1-0.135-53.437 31.3-75.587 86.093-81.282 120.97a128.057 128.057 0 0 0-47.624 12.153 6.144 6.144 0 0 0-3.041 7.63 6.034 6.034 0 0 0 8.192 3.525 116.175 116.175 0 0 1 41.481-10.826c0.468-0.033 0.937-0.062 1.405-0.1a117.624 117.624 0 0 1 5.932-0.211 120.831 120.831 0 0 1 34.491 4.777c0.654 0.192 1.295 0.414 1.946 0.616a120.15 120.15 0 0 1 5.539 1.842 121.852 121.852 0 0 1 3.992 1.564c1.074 0.434 2.148 0.868 3.206 1.331a118.453 118.453 0 0 1 4.9 2.307c0.743 0.368 1.485 0.735 2.217 1.117a120.535 120.535 0 0 1 4.675 2.587 107.785 107.785 0 0 1 2.952 1.776 123.018 123.018 0 0 1 42.028 43.477c-12.833-9.015-35.81-17.918-57.947-14.068 86.441 43.214 63.234 192.027-56.545 186.408a106.7 106.7 0 0 1-31.271-6.031 132.461 132.461 0 0 1-7.059-2.886c-1.356-0.618-2.711-1.243-4.051-1.935-29.349-15.168-53.583-43.833-56.611-78.643 0 0 11.093-41.335 79.433-41.335 7.388 0 28.508-20.614 28.9-26.593-0.09-1.953-41.917-18.59-58.223-34.656-8.714-8.585-12.851-12.723-16.514-15.829a71.7 71.7 0 0 0-6.225-4.7 111.335 111.335 0 0 1-0.675-58.733c-24.687 11.242-43.89 29.011-57.849 44.7h-0.111c-9.528-12.067-8.855-51.873-8.312-60.184-0.114-0.516-7.107 3.63-8.024 4.254a175.21 175.21 0 0 0-23.486 20.12 210.5 210.5 0 0 0-22.443 26.913c0 0.012-0.007 0.025-0.011 0.037 0-0.012 0.007-0.025 0.011-0.038a202.837 202.837 0 0 0-32.244 72.81c-0.058 0.265-2.29 10.054-3.92 22.147a265.794 265.794 0 0 0-0.769 5.651c-0.558 3.636-0.992 7.6-1.42 13.767-0.019 0.239-0.031 0.474-0.048 0.712a591.152 591.152 0 0 0-0.481 7.995c0 0.411-0.025 0.816-0.025 1.227 0 132.709 107.6 240.29 240.324 240.29 118.865 0 217.559-86.288 236.882-199.63 0.407-3.075 0.732-6.168 1.092-9.27 4.777-41.21-0.53-84.525-15.588-120.747zm-164.068 72.1z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
14
firefox-tests-xpcshell-freeze.patch
Normal file
14
firefox-tests-xpcshell-freeze.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
diff -up firefox-88.0/testing/xpcshell/runxpcshelltests.py.old firefox-88.0/testing/xpcshell/runxpcshelltests.py
|
||||||
|
--- firefox-88.0/testing/xpcshell/runxpcshelltests.py.old 2021-04-30 10:45:14.466616224 +0200
|
||||||
|
+++ firefox-88.0/testing/xpcshell/runxpcshelltests.py 2021-04-30 10:45:21.339525085 +0200
|
||||||
|
@@ -1382,8 +1382,8 @@ class XPCShellTests(object):
|
||||||
|
self.log.info("Process %s" % label)
|
||||||
|
self.log.info(msg)
|
||||||
|
|
||||||
|
- dumpOutput(proc.stdout, "stdout")
|
||||||
|
- dumpOutput(proc.stderr, "stderr")
|
||||||
|
+ #dumpOutput(proc.stdout, "stdout")
|
||||||
|
+ #dumpOutput(proc.stderr, "stderr")
|
||||||
|
self.nodeProc = {}
|
||||||
|
|
||||||
|
def startHttp3Server(self):
|
||||||
235
firefox-x11.desktop
Normal file
235
firefox-x11.desktop
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Name=Firefox on X11
|
||||||
|
GenericName=Web Browser
|
||||||
|
Comment=Browse the Web
|
||||||
|
Exec=firefox-x11 --name firefox-x11 %u
|
||||||
|
Icon=firefox
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;
|
||||||
|
StartupNotify=true
|
||||||
|
Categories=Network;WebBrowser;
|
||||||
|
Keywords=web;browser;internet;
|
||||||
|
Actions=new-window;new-private-window;profile-manager-window;
|
||||||
|
|
||||||
|
[Desktop Action new-window]
|
||||||
|
Name=Open a New Window
|
||||||
|
Name[ach]=Dirica manyen
|
||||||
|
Name[af]=Nuwe venster
|
||||||
|
Name[an]=Nueva finestra
|
||||||
|
Name[ar]=نافذة جديدة
|
||||||
|
Name[as]=নতুন উইন্ডো
|
||||||
|
Name[ast]=Ventana nueva
|
||||||
|
Name[az]=Yeni Pəncərə
|
||||||
|
Name[be]=Новае акно
|
||||||
|
Name[bg]=Нов прозорец
|
||||||
|
Name[bn_BD]=নতুন উইন্ডো (N)
|
||||||
|
Name[bn_IN]=নতুন উইন্ডো
|
||||||
|
Name[br]=Prenestr nevez
|
||||||
|
Name[brx]=गोदान उइन्ड'(N)
|
||||||
|
Name[bs]=Novi prozor
|
||||||
|
Name[ca]=Finestra nova
|
||||||
|
Name[cak]=K'ak'a' tzuwäch
|
||||||
|
Name[cs]=Nové okno
|
||||||
|
Name[cy]=Ffenestr Newydd
|
||||||
|
Name[da]=Nyt vindue
|
||||||
|
Name[de]=Neues Fenster
|
||||||
|
Name[dsb]=Nowe wokno
|
||||||
|
Name[el]=Νέο παράθυρο
|
||||||
|
Name[en_GB]=New Window
|
||||||
|
Name[en_US]=New Window
|
||||||
|
Name[en_ZA]=New Window
|
||||||
|
Name[eo]=Nova fenestro
|
||||||
|
Name[es_AR]=Nueva ventana
|
||||||
|
Name[es_CL]=Nueva ventana
|
||||||
|
Name[es_ES]=Nueva ventana
|
||||||
|
Name[es_MX]=Nueva ventana
|
||||||
|
Name[et]=Uus aken
|
||||||
|
Name[eu]=Leiho berria
|
||||||
|
Name[fa]=پنجره جدید
|
||||||
|
Name[ff]=Henorde Hesere
|
||||||
|
Name[fi]=Uusi ikkuna
|
||||||
|
Name[fr]=Nouvelle fenêtre
|
||||||
|
Name[fy_NL]=Nij finster
|
||||||
|
Name[ga_IE]=Fuinneog Nua
|
||||||
|
Name[gd]=Uinneag ùr
|
||||||
|
Name[gl]=Nova xanela
|
||||||
|
Name[gn]=Ovetã pyahu
|
||||||
|
Name[gu_IN]=નવી વિન્ડો
|
||||||
|
Name[he]=חלון חדש
|
||||||
|
Name[hi_IN]=नया विंडो
|
||||||
|
Name[hr]=Novi prozor
|
||||||
|
Name[hsb]=Nowe wokno
|
||||||
|
Name[hu]=Új ablak
|
||||||
|
Name[hy_AM]=Նոր Պատուհան
|
||||||
|
Name[id]=Jendela Baru
|
||||||
|
Name[is]=Nýr gluggi
|
||||||
|
Name[it]=Nuova finestra
|
||||||
|
Name[ja]=新しいウィンドウ
|
||||||
|
Name[ja_JP-mac]=新規ウインドウ
|
||||||
|
Name[ka]=ახალი ფანჯარა
|
||||||
|
Name[kk]=Жаңа терезе
|
||||||
|
Name[km]=បង្អួចថ្មី
|
||||||
|
Name[kn]=ಹೊಸ ಕಿಟಕಿ
|
||||||
|
Name[ko]=새 창
|
||||||
|
Name[kok]=नवें जनेल
|
||||||
|
Name[ks]=نئئ وِنڈو
|
||||||
|
Name[lij]=Neuvo barcon
|
||||||
|
Name[lo]=ຫນ້າຕ່າງໃຫມ່
|
||||||
|
Name[lt]=Naujas langas
|
||||||
|
Name[ltg]=Jauns lūgs
|
||||||
|
Name[lv]=Jauns logs
|
||||||
|
Name[mai]=नव विंडो
|
||||||
|
Name[mk]=Нов прозорец
|
||||||
|
Name[ml]=പുതിയ ജാലകം
|
||||||
|
Name[mr]=नवीन पटल
|
||||||
|
Name[ms]=Tetingkap Baru
|
||||||
|
Name[my]=ဝင်းဒိုးအသစ်
|
||||||
|
Name[nb_NO]=Nytt vindu
|
||||||
|
Name[ne_NP]=नयाँ सञ्झ्याल
|
||||||
|
Name[nl]=Nieuw venster
|
||||||
|
Name[nn_NO]=Nytt vindauge
|
||||||
|
Name[or]=ନୂତନ ୱିଣ୍ଡୋ
|
||||||
|
Name[pa_IN]=ਨਵੀਂ ਵਿੰਡੋ
|
||||||
|
Name[pl]=Nowe okno
|
||||||
|
Name[pt_BR]=Nova janela
|
||||||
|
Name[pt_PT]=Nova janela
|
||||||
|
Name[rm]=Nova fanestra
|
||||||
|
Name[ro]=Fereastră nouă
|
||||||
|
Name[ru]=Новое окно
|
||||||
|
Name[sat]=नावा विंडो (N)
|
||||||
|
Name[si]=නව කවුළුවක්
|
||||||
|
Name[sk]=Nové okno
|
||||||
|
Name[sl]=Novo okno
|
||||||
|
Name[son]=Zanfun taaga
|
||||||
|
Name[sq]=Dritare e Re
|
||||||
|
Name[sr]=Нови прозор
|
||||||
|
Name[sv_SE]=Nytt fönster
|
||||||
|
Name[ta]=புதிய சாளரம்
|
||||||
|
Name[te]=కొత్త విండో
|
||||||
|
Name[th]=หน้าต่างใหม่
|
||||||
|
Name[tr]=Yeni pencere
|
||||||
|
Name[tsz]=Eraatarakua jimpani
|
||||||
|
Name[uk]=Нове вікно
|
||||||
|
Name[ur]=نیا دریچہ
|
||||||
|
Name[uz]=Yangi oyna
|
||||||
|
Name[vi]=Cửa sổ mới
|
||||||
|
Name[wo]=Palanteer bu bees
|
||||||
|
Name[xh]=Ifestile entsha
|
||||||
|
Name[zh_CN]=新建窗口
|
||||||
|
Name[zh_TW]=開新視窗
|
||||||
|
Exec=firefox-x11 --name firefox-x11 --new-window %u
|
||||||
|
|
||||||
|
[Desktop Action new-private-window]
|
||||||
|
Name=Open a New Private Window
|
||||||
|
Name[ach]=Dirica manyen me mung
|
||||||
|
Name[af]=Nuwe privaatvenster
|
||||||
|
Name[an]=Nueva finestra privada
|
||||||
|
Name[ar]=نافذة خاصة جديدة
|
||||||
|
Name[as]=নতুন ব্যক্তিগত উইন্ডো
|
||||||
|
Name[ast]=Ventana privada nueva
|
||||||
|
Name[az]=Yeni Məxfi Pəncərə
|
||||||
|
Name[be]=Новае акно адасаблення
|
||||||
|
Name[bg]=Нов прозорец за поверително сърфиране
|
||||||
|
Name[bn_BD]=নতুন ব্যক্তিগত উইন্ডো
|
||||||
|
Name[bn_IN]=নতুন ব্যক্তিগত উইন্ডো
|
||||||
|
Name[br]=Prenestr merdeiñ prevez nevez
|
||||||
|
Name[brx]=गोदान प्राइभेट उइन्ड'
|
||||||
|
Name[bs]=Novi privatni prozor
|
||||||
|
Name[ca]=Finestra privada nova
|
||||||
|
Name[cak]=K'ak'a' ichinan tzuwäch
|
||||||
|
Name[cs]=Nové anonymní okno
|
||||||
|
Name[cy]=Ffenestr Breifat Newydd
|
||||||
|
Name[da]=Nyt privat vindue
|
||||||
|
Name[de]=Neues privates Fenster
|
||||||
|
Name[dsb]=Nowe priwatne wokno
|
||||||
|
Name[el]=Νέο παράθυρο ιδιωτικής περιήγησης
|
||||||
|
Name[en_GB]=New Private Window
|
||||||
|
Name[en_US]=New Private Window
|
||||||
|
Name[en_ZA]=New Private Window
|
||||||
|
Name[eo]=Nova privata fenestro
|
||||||
|
Name[es_AR]=Nueva ventana privada
|
||||||
|
Name[es_CL]=Nueva ventana privada
|
||||||
|
Name[es_ES]=Nueva ventana privada
|
||||||
|
Name[es_MX]=Nueva ventana privada
|
||||||
|
Name[et]=Uus privaatne aken
|
||||||
|
Name[eu]=Leiho pribatu berria
|
||||||
|
Name[fa]=پنجره ناشناس جدید
|
||||||
|
Name[ff]=Henorde Suturo Hesere
|
||||||
|
Name[fi]=Uusi yksityinen ikkuna
|
||||||
|
Name[fr]=Nouvelle fenêtre de navigation privée
|
||||||
|
Name[fy_NL]=Nij priveefinster
|
||||||
|
Name[ga_IE]=Fuinneog Nua Phríobháideach
|
||||||
|
Name[gd]=Uinneag phrìobhaideach ùr
|
||||||
|
Name[gl]=Nova xanela privada
|
||||||
|
Name[gn]=Ovetã ñemi pyahu
|
||||||
|
Name[gu_IN]=નવી ખાનગી વિન્ડો
|
||||||
|
Name[he]=חלון פרטי חדש
|
||||||
|
Name[hi_IN]=नयी निजी विंडो
|
||||||
|
Name[hr]=Novi privatni prozor
|
||||||
|
Name[hsb]=Nowe priwatne wokno
|
||||||
|
Name[hu]=Új privát ablak
|
||||||
|
Name[hy_AM]=Սկսել Գաղտնի դիտարկում
|
||||||
|
Name[id]=Jendela Mode Pribadi Baru
|
||||||
|
Name[is]=Nýr huliðsgluggi
|
||||||
|
Name[it]=Nuova finestra anonima
|
||||||
|
Name[ja]=新しいプライベートウィンドウ
|
||||||
|
Name[ja_JP-mac]=新規プライベートウインドウ
|
||||||
|
Name[ka]=ახალი პირადი ფანჯარა
|
||||||
|
Name[kk]=Жаңа жекелік терезе
|
||||||
|
Name[km]=បង្អួចឯកជនថ្មី
|
||||||
|
Name[kn]=ಹೊಸ ಖಾಸಗಿ ಕಿಟಕಿ
|
||||||
|
Name[ko]=새 사생활 보호 모드
|
||||||
|
Name[kok]=नवो खाजगी विंडो
|
||||||
|
Name[ks]=نْو پرایوٹ وینڈو&
|
||||||
|
Name[lij]=Neuvo barcon privou
|
||||||
|
Name[lo]=ເປີດຫນ້າຕ່າງສວນຕົວຂື້ນມາໃຫມ່
|
||||||
|
Name[lt]=Naujas privataus naršymo langas
|
||||||
|
Name[ltg]=Jauns privatais lūgs
|
||||||
|
Name[lv]=Jauns privātais logs
|
||||||
|
Name[mai]=नया निज विंडो (W)
|
||||||
|
Name[mk]=Нов приватен прозорец
|
||||||
|
Name[ml]=പുതിയ സ്വകാര്യ ജാലകം
|
||||||
|
Name[mr]=नवीन वैयक्तिक पटल
|
||||||
|
Name[ms]=Tetingkap Persendirian Baharu
|
||||||
|
Name[my]=New Private Window
|
||||||
|
Name[nb_NO]=Nytt privat vindu
|
||||||
|
Name[ne_NP]=नयाँ निजी सञ्झ्याल
|
||||||
|
Name[nl]=Nieuw privévenster
|
||||||
|
Name[nn_NO]=Nytt privat vindauge
|
||||||
|
Name[or]=ନୂତନ ବ୍ୟକ୍ତିଗତ ୱିଣ୍ଡୋ
|
||||||
|
Name[pa_IN]=ਨਵੀਂ ਪ੍ਰਾਈਵੇਟ ਵਿੰਡੋ
|
||||||
|
Name[pl]=Nowe okno prywatne
|
||||||
|
Name[pt_BR]=Nova janela privativa
|
||||||
|
Name[pt_PT]=Nova janela privada
|
||||||
|
Name[rm]=Nova fanestra privata
|
||||||
|
Name[ro]=Fereastră privată nouă
|
||||||
|
Name[ru]=Новое приватное окно
|
||||||
|
Name[sat]=नावा निजेराक् विंडो (W )
|
||||||
|
Name[si]=නව පුද්ගලික කවුළුව (W)
|
||||||
|
Name[sk]=Nové okno v režime Súkromné prehliadanie
|
||||||
|
Name[sl]=Novo zasebno okno
|
||||||
|
Name[son]=Sutura zanfun taaga
|
||||||
|
Name[sq]=Dritare e Re Private
|
||||||
|
Name[sr]=Нови приватан прозор
|
||||||
|
Name[sv_SE]=Nytt privat fönster
|
||||||
|
Name[ta]=புதிய தனிப்பட்ட சாளரம்
|
||||||
|
Name[te]=కొత్త ఆంతరంగిక విండో
|
||||||
|
Name[th]=หน้าต่างส่วนตัวใหม่
|
||||||
|
Name[tr]=Yeni gizli pencere
|
||||||
|
Name[tsz]=Juchiiti eraatarakua jimpani
|
||||||
|
Name[uk]=Приватне вікно
|
||||||
|
Name[ur]=نیا نجی دریچہ
|
||||||
|
Name[uz]=Yangi maxfiy oyna
|
||||||
|
Name[vi]=Cửa sổ riêng tư mới
|
||||||
|
Name[wo]=Panlanteeru biir bu bees
|
||||||
|
Name[xh]=Ifestile yangasese entsha
|
||||||
|
Name[zh_CN]=新建隐私浏览窗口
|
||||||
|
Name[zh_TW]=新增隱私視窗
|
||||||
|
Exec=firefox-x11 --private-window --name firefox-x11 %u
|
||||||
|
|
||||||
|
[Desktop Action profile-manager-window]
|
||||||
|
Name=Open the Profile Manager
|
||||||
|
Name[cs]=Správa profilů
|
||||||
|
Exec=firefox-x11 --name firefox-x11 --ProfileManager
|
||||||
7
firefox-x11.sh.in
Normal file
7
firefox-x11.sh.in
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
#
|
||||||
|
# Run Firefox on X11 backend
|
||||||
|
#
|
||||||
|
|
||||||
|
export MOZ_DISABLE_WAYLAND=1
|
||||||
|
exec /__PREFIX__/bin/firefox "$@"
|
||||||
141
firefox.1
Normal file
141
firefox.1
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
.TH FIREFOX 1 "November 30, 2017" firefox "Linux User's Manual"
|
||||||
|
.SH NAME
|
||||||
|
firefox \- a Web browser for X11 derived from the Mozilla browser
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B firefox
|
||||||
|
[\fIOPTIONS\fR ...] [\fIURL\fR]
|
||||||
|
|
||||||
|
.B firefox-bin
|
||||||
|
[\fIOPTIONS\fR] [\fIURL\fR]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
\fBMozilla Firefox\fR is an open-source web browser, designed for
|
||||||
|
standards compliance, performance and portability.
|
||||||
|
|
||||||
|
.SH USAGE
|
||||||
|
\fBfirefox\fR is a simple shell script that will set up the
|
||||||
|
environment for the actual executable, \fBfirefox-bin\fR.
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
A summary of the options supported by \fBfirefox\fR is included below.
|
||||||
|
|
||||||
|
.SS "X11 options"
|
||||||
|
.TP
|
||||||
|
.BI \-\-display= DISPLAY
|
||||||
|
X display to use
|
||||||
|
.TP
|
||||||
|
.B \--sync
|
||||||
|
Make X calls synchronous
|
||||||
|
.TP
|
||||||
|
.B \-\-g-fatal-warnings
|
||||||
|
Make all warnings fatal
|
||||||
|
|
||||||
|
.SS "Firefox options"
|
||||||
|
.TP
|
||||||
|
.B \-h, \-help
|
||||||
|
Show summary of options.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-version
|
||||||
|
Print Firefox version.
|
||||||
|
.TP
|
||||||
|
\fB\-P\fR \fIprofile\fR
|
||||||
|
Start with \fIprofile\fR.
|
||||||
|
.TP
|
||||||
|
\fB\-\-profile\fR \fIpath\fR
|
||||||
|
Start with profile at \fIpath\fR.
|
||||||
|
.TP
|
||||||
|
\fB\-\-migration\fR
|
||||||
|
Start with migration wizard.
|
||||||
|
.TP
|
||||||
|
.B \-\-ProfileManager
|
||||||
|
Start with ProfileManager.
|
||||||
|
.TP
|
||||||
|
\fB\-\-no\-remote\fR
|
||||||
|
Do not accept or send remote commands; implies \fB--new-instance\fR.
|
||||||
|
.TP
|
||||||
|
\fB\-\-new\-instance\fR
|
||||||
|
Open new instance, not a new window in running instance.
|
||||||
|
.TP
|
||||||
|
\fB\-\-UILocale\fR \fIlocale\fR
|
||||||
|
Start with \fIlocale\fR resources as UI Locale.
|
||||||
|
.TP
|
||||||
|
\fB\-\-safe\-mode\fR
|
||||||
|
Disables extensions and themes for this session.
|
||||||
|
.TP
|
||||||
|
\fB\-\-headless\fR
|
||||||
|
Run without a GUI.
|
||||||
|
.TP
|
||||||
|
\fB\-\-marionette\fR
|
||||||
|
Enable remote control server.
|
||||||
|
.TP
|
||||||
|
\fB\-\-browser\fR
|
||||||
|
Open a browser window.
|
||||||
|
.TP
|
||||||
|
\fB\-\-new-window\fR \fIurl\fR
|
||||||
|
Open \fIurl\fR in a new window.
|
||||||
|
.TP
|
||||||
|
\fB\-\-new-tab\fR \fIurl\fR
|
||||||
|
Open \fIurl\fR in a new tab.
|
||||||
|
.TP
|
||||||
|
\fB\-\-private-window\fR \fIurl\fR
|
||||||
|
Open \fIurl\fR in a new private window.
|
||||||
|
.TP
|
||||||
|
\fB\-\-preferences\fR
|
||||||
|
Open Preferences dialog.
|
||||||
|
.TP
|
||||||
|
\fB\-\-screenshot\fR [\fIpath\fR]
|
||||||
|
Save screenshot to \fIpath\fR or in working directory.
|
||||||
|
.TP
|
||||||
|
\fB\-\-window-size\fR \fIwidth\fR[,\fIheight\fR]
|
||||||
|
Width and optionally height of screenshot.
|
||||||
|
.TP
|
||||||
|
\fB\-\-search\fR \fIterm\fR
|
||||||
|
Search \fIterm\fR with your default search engine.
|
||||||
|
.TP
|
||||||
|
|
||||||
|
|
||||||
|
\fB\-\-jsconsole\fR
|
||||||
|
Open the Browser Console.
|
||||||
|
.TP
|
||||||
|
\fB\-\-jsdebugger\fR
|
||||||
|
Open the Browser Toolbox.
|
||||||
|
.TP
|
||||||
|
\fB\-\-wait-for-jsdebugger\fR
|
||||||
|
Spin event loop until JS debugger connects. Enables debugging (some) application startup code paths. Only has an effect when \fI--jsdebugger\fR is also supplied.
|
||||||
|
.TP
|
||||||
|
\fB\-\-devtools\fR
|
||||||
|
Open DevTools on initial load.
|
||||||
|
.TP
|
||||||
|
\fB\-\-start-debugger-server\fR [ws:][\fIport\fR|\fIpath\fR]
|
||||||
|
Start the debugger server on a TCP port or Unix domain socket path. Defaults to TCP port 6000. Use WebSocket protocol if ws: prefix is specified.
|
||||||
|
.TP
|
||||||
|
\fB\-\-recording\fR \fIfile\fR
|
||||||
|
Record drawing for a given URL.
|
||||||
|
.TP
|
||||||
|
\fB\-\-recording-output\fR \fIfile\fR
|
||||||
|
Specify destination file for a drawing recording.
|
||||||
|
.TP
|
||||||
|
\fB\-\-setDefaultBrowser\fR
|
||||||
|
Set this app as the default browser.
|
||||||
|
|
||||||
|
.SH FILES
|
||||||
|
\fI/usr/bin/firefox\fR - shell script wrapping
|
||||||
|
\fBfirefox\fR
|
||||||
|
.br
|
||||||
|
\fI/usr/lib64/firefox/firefox-bin\fR - \fBfirefox\fR
|
||||||
|
executable
|
||||||
|
|
||||||
|
.SH VERSION
|
||||||
|
57.0
|
||||||
|
|
||||||
|
.SH BUGS
|
||||||
|
To report a bug, please visit \fIhttp://bugzilla.mozilla.org/\fR
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.TP
|
||||||
|
.B The Mozilla Organization
|
||||||
|
.I http://www.mozilla.org/about.html
|
||||||
|
.TP
|
||||||
|
.B Tobias Girstmair
|
||||||
|
.I https://gir.st/
|
||||||
53
firefox.appdata.xml.in
Normal file
53
firefox.appdata.xml.in
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Copyright 2019 Firefox contributors -->
|
||||||
|
<component type="desktop">
|
||||||
|
<id>firefox.desktop</id>
|
||||||
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
|
<name>Firefox</name>
|
||||||
|
<summary>Web Browser</summary>
|
||||||
|
<summary xml:lang="ca">Navegador web</summary>
|
||||||
|
<summary xml:lang="cs">Webový prohlížeč</summary>
|
||||||
|
<summary xml:lang="es">Navegador web</summary>
|
||||||
|
<summary xml:lang="fa">مرورگر اینترنتی</summary>
|
||||||
|
<summary xml:lang="fi">WWW-selain</summary>
|
||||||
|
<summary xml:lang="fr">Navigateur Web</summary>
|
||||||
|
<summary xml:lang="hu">Webböngésző</summary>
|
||||||
|
<summary xml:lang="it">Browser Web</summary>
|
||||||
|
<summary xml:lang="ja">ウェブ・ブラウザ</summary>
|
||||||
|
<summary xml:lang="ko">웹 브라우저</summary>
|
||||||
|
<summary xml:lang="nb">Nettleser</summary>
|
||||||
|
<summary xml:lang="nl">Webbrowser</summary>
|
||||||
|
<summary xml:lang="nn">Nettlesar</summary>
|
||||||
|
<summary xml:lang="no">Nettleser</summary>
|
||||||
|
<summary xml:lang="pl">Przeglądarka WWW</summary>
|
||||||
|
<summary xml:lang="pt">Navegador Web</summary>
|
||||||
|
<summary xml:lang="pt_BR">Navegador Web</summary>
|
||||||
|
<summary xml:lang="sk">Internetový prehliadač</summary>
|
||||||
|
<summary xml:lang="sv">Webbläsare</summary>
|
||||||
|
<description>
|
||||||
|
<p>
|
||||||
|
Bringing together all kinds of awesomeness to make browsing better for you.
|
||||||
|
Get to your favorite sites quickly – even if you don’t remember the URLs.
|
||||||
|
Type your term into the location bar (aka the Awesome Bar) and the autocomplete
|
||||||
|
function will include possible matches from your browsing history, bookmarked
|
||||||
|
sites and open tabs.
|
||||||
|
</p>
|
||||||
|
</description>
|
||||||
|
<url type="homepage">https://www.mozilla.org</url>
|
||||||
|
<kudos>
|
||||||
|
<kudo>ModernToolkit</kudo>
|
||||||
|
<kudo>SearchProvider</kudo>
|
||||||
|
</kudos>
|
||||||
|
<project_group>Mozilla</project_group>
|
||||||
|
<project_license>GPL-3.0+</project_license>
|
||||||
|
<developer_name>Mozilla Corporation</developer_name>
|
||||||
|
<url type="bugtracker">https://bugzilla.mozilla.org/</url>
|
||||||
|
<url type="help">https://support.mozilla.org/</url>
|
||||||
|
<translation type="gettext">firefox</translation>
|
||||||
|
<provides>
|
||||||
|
<id>firefox.desktop</id>
|
||||||
|
</provides>
|
||||||
|
<releases>
|
||||||
|
<release version="__VERSION__" date="__DATE__"/>
|
||||||
|
</releases>
|
||||||
|
</component>
|
||||||
275
firefox.desktop
Normal file
275
firefox.desktop
Normal file
@ -0,0 +1,275 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Name=Firefox
|
||||||
|
GenericName=Web Browser
|
||||||
|
GenericName[ca]=Navegador web
|
||||||
|
GenericName[cs]=Webový prohlížeč
|
||||||
|
GenericName[es]=Navegador web
|
||||||
|
GenericName[fa]=مرورگر اینترنتی
|
||||||
|
GenericName[fi]=WWW-selain
|
||||||
|
GenericName[fr]=Navigateur Web
|
||||||
|
GenericName[hu]=Webböngésző
|
||||||
|
GenericName[it]=Browser Web
|
||||||
|
GenericName[ja]=ウェブ・ブラウザ
|
||||||
|
GenericName[ko]=웹 브라우저
|
||||||
|
GenericName[nb]=Nettleser
|
||||||
|
GenericName[nl]=Webbrowser
|
||||||
|
GenericName[nn]=Nettlesar
|
||||||
|
GenericName[no]=Nettleser
|
||||||
|
GenericName[pl]=Przeglądarka WWW
|
||||||
|
GenericName[pt]=Navegador Web
|
||||||
|
GenericName[pt_BR]=Navegador Web
|
||||||
|
GenericName[sk]=Internetový prehliadač
|
||||||
|
GenericName[sv]=Webbläsare
|
||||||
|
Comment=Browse the Web
|
||||||
|
Comment[ca]=Navegueu per el web
|
||||||
|
Comment[cs]=Prohlížení stránek World Wide Webu
|
||||||
|
Comment[de]=Im Internet surfen
|
||||||
|
Comment[es]=Navegue por la web
|
||||||
|
Comment[fa]=صفحات شبکه جهانی اینترنت را مرور نمایید
|
||||||
|
Comment[fi]=Selaa Internetin WWW-sivuja
|
||||||
|
Comment[fr]=Navigue sur Internet
|
||||||
|
Comment[hu]=A világháló böngészése
|
||||||
|
Comment[it]=Esplora il web
|
||||||
|
Comment[ja]=ウェブを閲覧します
|
||||||
|
Comment[ko]=웹을 돌아 다닙니다
|
||||||
|
Comment[nb]=Surf på nettet
|
||||||
|
Comment[nl]=Verken het internet
|
||||||
|
Comment[nn]=Surf på nettet
|
||||||
|
Comment[no]=Surf på nettet
|
||||||
|
Comment[pl]=Przeglądanie stron WWW
|
||||||
|
Comment[pt]=Navegue na Internet
|
||||||
|
Comment[pt_BR]=Navegue na Internet
|
||||||
|
Comment[sk]=Prehliadanie internetu
|
||||||
|
Comment[sv]=Surfa på webben
|
||||||
|
Exec=firefox %u
|
||||||
|
Icon=firefox
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;
|
||||||
|
StartupNotify=true
|
||||||
|
Categories=Network;WebBrowser;
|
||||||
|
Keywords=web;browser;internet;
|
||||||
|
Actions=new-window;new-private-window;profile-manager-window;
|
||||||
|
|
||||||
|
[Desktop Action new-window]
|
||||||
|
Name=Open a New Window
|
||||||
|
Name[ach]=Dirica manyen
|
||||||
|
Name[af]=Nuwe venster
|
||||||
|
Name[an]=Nueva finestra
|
||||||
|
Name[ar]=نافذة جديدة
|
||||||
|
Name[as]=নতুন উইন্ডো
|
||||||
|
Name[ast]=Ventana nueva
|
||||||
|
Name[az]=Yeni Pəncərə
|
||||||
|
Name[be]=Новае акно
|
||||||
|
Name[bg]=Нов прозорец
|
||||||
|
Name[bn_BD]=নতুন উইন্ডো (N)
|
||||||
|
Name[bn_IN]=নতুন উইন্ডো
|
||||||
|
Name[br]=Prenestr nevez
|
||||||
|
Name[brx]=गोदान उइन्ड'(N)
|
||||||
|
Name[bs]=Novi prozor
|
||||||
|
Name[ca]=Finestra nova
|
||||||
|
Name[cak]=K'ak'a' tzuwäch
|
||||||
|
Name[cs]=Nové okno
|
||||||
|
Name[cy]=Ffenestr Newydd
|
||||||
|
Name[da]=Nyt vindue
|
||||||
|
Name[de]=Neues Fenster
|
||||||
|
Name[dsb]=Nowe wokno
|
||||||
|
Name[el]=Νέο παράθυρο
|
||||||
|
Name[en_GB]=New Window
|
||||||
|
Name[en_US]=New Window
|
||||||
|
Name[en_ZA]=New Window
|
||||||
|
Name[eo]=Nova fenestro
|
||||||
|
Name[es_AR]=Nueva ventana
|
||||||
|
Name[es_CL]=Nueva ventana
|
||||||
|
Name[es_ES]=Nueva ventana
|
||||||
|
Name[es_MX]=Nueva ventana
|
||||||
|
Name[et]=Uus aken
|
||||||
|
Name[eu]=Leiho berria
|
||||||
|
Name[fa]=پنجره جدید
|
||||||
|
Name[ff]=Henorde Hesere
|
||||||
|
Name[fi]=Uusi ikkuna
|
||||||
|
Name[fr]=Nouvelle fenêtre
|
||||||
|
Name[fy_NL]=Nij finster
|
||||||
|
Name[ga_IE]=Fuinneog Nua
|
||||||
|
Name[gd]=Uinneag ùr
|
||||||
|
Name[gl]=Nova xanela
|
||||||
|
Name[gn]=Ovetã pyahu
|
||||||
|
Name[gu_IN]=નવી વિન્ડો
|
||||||
|
Name[he]=חלון חדש
|
||||||
|
Name[hi_IN]=नया विंडो
|
||||||
|
Name[hr]=Novi prozor
|
||||||
|
Name[hsb]=Nowe wokno
|
||||||
|
Name[hu]=Új ablak
|
||||||
|
Name[hy_AM]=Նոր Պատուհան
|
||||||
|
Name[id]=Jendela Baru
|
||||||
|
Name[is]=Nýr gluggi
|
||||||
|
Name[it]=Nuova finestra
|
||||||
|
Name[ja]=新しいウィンドウ
|
||||||
|
Name[ja_JP-mac]=新規ウインドウ
|
||||||
|
Name[ka]=ახალი ფანჯარა
|
||||||
|
Name[kk]=Жаңа терезе
|
||||||
|
Name[km]=បង្អួចថ្មី
|
||||||
|
Name[kn]=ಹೊಸ ಕಿಟಕಿ
|
||||||
|
Name[ko]=새 창
|
||||||
|
Name[kok]=नवें जनेल
|
||||||
|
Name[ks]=نئئ وِنڈو
|
||||||
|
Name[lij]=Neuvo barcon
|
||||||
|
Name[lo]=ຫນ້າຕ່າງໃຫມ່
|
||||||
|
Name[lt]=Naujas langas
|
||||||
|
Name[ltg]=Jauns lūgs
|
||||||
|
Name[lv]=Jauns logs
|
||||||
|
Name[mai]=नव विंडो
|
||||||
|
Name[mk]=Нов прозорец
|
||||||
|
Name[ml]=പുതിയ ജാലകം
|
||||||
|
Name[mr]=नवीन पटल
|
||||||
|
Name[ms]=Tetingkap Baru
|
||||||
|
Name[my]=ဝင်းဒိုးအသစ်
|
||||||
|
Name[nb_NO]=Nytt vindu
|
||||||
|
Name[ne_NP]=नयाँ सञ्झ्याल
|
||||||
|
Name[nl]=Nieuw venster
|
||||||
|
Name[nn_NO]=Nytt vindauge
|
||||||
|
Name[or]=ନୂତନ ୱିଣ୍ଡୋ
|
||||||
|
Name[pa_IN]=ਨਵੀਂ ਵਿੰਡੋ
|
||||||
|
Name[pl]=Nowe okno
|
||||||
|
Name[pt_BR]=Nova janela
|
||||||
|
Name[pt_PT]=Nova janela
|
||||||
|
Name[rm]=Nova fanestra
|
||||||
|
Name[ro]=Fereastră nouă
|
||||||
|
Name[ru]=Новое окно
|
||||||
|
Name[sat]=नावा विंडो (N)
|
||||||
|
Name[si]=නව කවුළුවක්
|
||||||
|
Name[sk]=Nové okno
|
||||||
|
Name[sl]=Novo okno
|
||||||
|
Name[son]=Zanfun taaga
|
||||||
|
Name[sq]=Dritare e Re
|
||||||
|
Name[sr]=Нови прозор
|
||||||
|
Name[sv_SE]=Nytt fönster
|
||||||
|
Name[ta]=புதிய சாளரம்
|
||||||
|
Name[te]=కొత్త విండో
|
||||||
|
Name[th]=หน้าต่างใหม่
|
||||||
|
Name[tr]=Yeni pencere
|
||||||
|
Name[tsz]=Eraatarakua jimpani
|
||||||
|
Name[uk]=Нове вікно
|
||||||
|
Name[ur]=نیا دریچہ
|
||||||
|
Name[uz]=Yangi oyna
|
||||||
|
Name[vi]=Cửa sổ mới
|
||||||
|
Name[wo]=Palanteer bu bees
|
||||||
|
Name[xh]=Ifestile entsha
|
||||||
|
Name[zh_CN]=新建窗口
|
||||||
|
Name[zh_TW]=開新視窗
|
||||||
|
Exec=firefox --new-window %u
|
||||||
|
|
||||||
|
[Desktop Action new-private-window]
|
||||||
|
Name=Open a New Private Window
|
||||||
|
Name[ach]=Dirica manyen me mung
|
||||||
|
Name[af]=Nuwe privaatvenster
|
||||||
|
Name[an]=Nueva finestra privada
|
||||||
|
Name[ar]=نافذة خاصة جديدة
|
||||||
|
Name[as]=নতুন ব্যক্তিগত উইন্ডো
|
||||||
|
Name[ast]=Ventana privada nueva
|
||||||
|
Name[az]=Yeni Məxfi Pəncərə
|
||||||
|
Name[be]=Новае акно адасаблення
|
||||||
|
Name[bg]=Нов прозорец за поверително сърфиране
|
||||||
|
Name[bn_BD]=নতুন ব্যক্তিগত উইন্ডো
|
||||||
|
Name[bn_IN]=নতুন ব্যক্তিগত উইন্ডো
|
||||||
|
Name[br]=Prenestr merdeiñ prevez nevez
|
||||||
|
Name[brx]=गोदान प्राइभेट उइन्ड'
|
||||||
|
Name[bs]=Novi privatni prozor
|
||||||
|
Name[ca]=Finestra privada nova
|
||||||
|
Name[cak]=K'ak'a' ichinan tzuwäch
|
||||||
|
Name[cs]=Nové anonymní okno
|
||||||
|
Name[cy]=Ffenestr Breifat Newydd
|
||||||
|
Name[da]=Nyt privat vindue
|
||||||
|
Name[de]=Neues privates Fenster
|
||||||
|
Name[dsb]=Nowe priwatne wokno
|
||||||
|
Name[el]=Νέο παράθυρο ιδιωτικής περιήγησης
|
||||||
|
Name[en_GB]=New Private Window
|
||||||
|
Name[en_US]=New Private Window
|
||||||
|
Name[en_ZA]=New Private Window
|
||||||
|
Name[eo]=Nova privata fenestro
|
||||||
|
Name[es_AR]=Nueva ventana privada
|
||||||
|
Name[es_CL]=Nueva ventana privada
|
||||||
|
Name[es_ES]=Nueva ventana privada
|
||||||
|
Name[es_MX]=Nueva ventana privada
|
||||||
|
Name[et]=Uus privaatne aken
|
||||||
|
Name[eu]=Leiho pribatu berria
|
||||||
|
Name[fa]=پنجره ناشناس جدید
|
||||||
|
Name[ff]=Henorde Suturo Hesere
|
||||||
|
Name[fi]=Uusi yksityinen ikkuna
|
||||||
|
Name[fr]=Nouvelle fenêtre de navigation privée
|
||||||
|
Name[fy_NL]=Nij priveefinster
|
||||||
|
Name[ga_IE]=Fuinneog Nua Phríobháideach
|
||||||
|
Name[gd]=Uinneag phrìobhaideach ùr
|
||||||
|
Name[gl]=Nova xanela privada
|
||||||
|
Name[gn]=Ovetã ñemi pyahu
|
||||||
|
Name[gu_IN]=નવી ખાનગી વિન્ડો
|
||||||
|
Name[he]=חלון פרטי חדש
|
||||||
|
Name[hi_IN]=नयी निजी विंडो
|
||||||
|
Name[hr]=Novi privatni prozor
|
||||||
|
Name[hsb]=Nowe priwatne wokno
|
||||||
|
Name[hu]=Új privát ablak
|
||||||
|
Name[hy_AM]=Սկսել Գաղտնի դիտարկում
|
||||||
|
Name[id]=Jendela Mode Pribadi Baru
|
||||||
|
Name[is]=Nýr huliðsgluggi
|
||||||
|
Name[it]=Nuova finestra anonima
|
||||||
|
Name[ja]=新しいプライベートウィンドウ
|
||||||
|
Name[ja_JP-mac]=新規プライベートウインドウ
|
||||||
|
Name[ka]=ახალი პირადი ფანჯარა
|
||||||
|
Name[kk]=Жаңа жекелік терезе
|
||||||
|
Name[km]=បង្អួចឯកជនថ្មី
|
||||||
|
Name[kn]=ಹೊಸ ಖಾಸಗಿ ಕಿಟಕಿ
|
||||||
|
Name[ko]=새 사생활 보호 모드
|
||||||
|
Name[kok]=नवो खाजगी विंडो
|
||||||
|
Name[ks]=نْو پرایوٹ وینڈو&
|
||||||
|
Name[lij]=Neuvo barcon privou
|
||||||
|
Name[lo]=ເປີດຫນ້າຕ່າງສວນຕົວຂື້ນມາໃຫມ່
|
||||||
|
Name[lt]=Naujas privataus naršymo langas
|
||||||
|
Name[ltg]=Jauns privatais lūgs
|
||||||
|
Name[lv]=Jauns privātais logs
|
||||||
|
Name[mai]=नया निज विंडो (W)
|
||||||
|
Name[mk]=Нов приватен прозорец
|
||||||
|
Name[ml]=പുതിയ സ്വകാര്യ ജാലകം
|
||||||
|
Name[mr]=नवीन वैयक्तिक पटल
|
||||||
|
Name[ms]=Tetingkap Persendirian Baharu
|
||||||
|
Name[my]=New Private Window
|
||||||
|
Name[nb_NO]=Nytt privat vindu
|
||||||
|
Name[ne_NP]=नयाँ निजी सञ्झ्याल
|
||||||
|
Name[nl]=Nieuw privévenster
|
||||||
|
Name[nn_NO]=Nytt privat vindauge
|
||||||
|
Name[or]=ନୂତନ ବ୍ୟକ୍ତିଗତ ୱିଣ୍ଡୋ
|
||||||
|
Name[pa_IN]=ਨਵੀਂ ਪ੍ਰਾਈਵੇਟ ਵਿੰਡੋ
|
||||||
|
Name[pl]=Nowe okno prywatne
|
||||||
|
Name[pt_BR]=Nova janela privativa
|
||||||
|
Name[pt_PT]=Nova janela privada
|
||||||
|
Name[rm]=Nova fanestra privata
|
||||||
|
Name[ro]=Fereastră privată nouă
|
||||||
|
Name[ru]=Новое приватное окно
|
||||||
|
Name[sat]=नावा निजेराक् विंडो (W )
|
||||||
|
Name[si]=නව පුද්ගලික කවුළුව (W)
|
||||||
|
Name[sk]=Nové okno v režime Súkromné prehliadanie
|
||||||
|
Name[sl]=Novo zasebno okno
|
||||||
|
Name[son]=Sutura zanfun taaga
|
||||||
|
Name[sq]=Dritare e Re Private
|
||||||
|
Name[sr]=Нови приватан прозор
|
||||||
|
Name[sv_SE]=Nytt privat fönster
|
||||||
|
Name[ta]=புதிய தனிப்பட்ட சாளரம்
|
||||||
|
Name[te]=కొత్త ఆంతరంగిక విండో
|
||||||
|
Name[th]=หน้าต่างส่วนตัวใหม่
|
||||||
|
Name[tr]=Yeni gizli pencere
|
||||||
|
Name[tsz]=Juchiiti eraatarakua jimpani
|
||||||
|
Name[uk]=Приватне вікно
|
||||||
|
Name[ur]=نیا نجی دریچہ
|
||||||
|
Name[uz]=Yangi maxfiy oyna
|
||||||
|
Name[vi]=Cửa sổ riêng tư mới
|
||||||
|
Name[wo]=Panlanteeru biir bu bees
|
||||||
|
Name[xh]=Ifestile yangasese entsha
|
||||||
|
Name[zh_CN]=新建隐私浏览窗口
|
||||||
|
Name[zh_TW]=新增隱私視窗
|
||||||
|
Exec=firefox --private-window %u
|
||||||
|
|
||||||
|
[Desktop Action profile-manager-window]
|
||||||
|
Name=Open the Profile Manager
|
||||||
|
Name[cs]=Správa profilů
|
||||||
|
Name[de]=Profilverwaltung öffnen
|
||||||
|
Exec=firefox --ProfileManager
|
||||||
288
firefox.sh.in
Normal file
288
firefox.sh.in
Normal file
@ -0,0 +1,288 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
#
|
||||||
|
# The contents of this file are subject to the Netscape Public
|
||||||
|
# License Version 1.1 (the "License"); you may not use this file
|
||||||
|
# except in compliance with the License. You may obtain a copy of
|
||||||
|
# the License at http://www.mozilla.org/NPL/
|
||||||
|
#
|
||||||
|
# Software distributed under the License is distributed on an "AS
|
||||||
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||||
|
# implied. See the License for the specific language governing
|
||||||
|
# rights and limitations under the License.
|
||||||
|
#
|
||||||
|
# The Original Code is mozilla.org code.
|
||||||
|
#
|
||||||
|
# The Initial Developer of the Original Code is Netscape
|
||||||
|
# Communications Corporation. Portions created by Netscape are
|
||||||
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||||
|
# Rights Reserved.
|
||||||
|
#
|
||||||
|
# Contributor(s):
|
||||||
|
#
|
||||||
|
|
||||||
|
##
|
||||||
|
## Usage:
|
||||||
|
##
|
||||||
|
## $ firefox
|
||||||
|
##
|
||||||
|
## This script is meant to run a mozilla program from the mozilla
|
||||||
|
## rpm installation.
|
||||||
|
##
|
||||||
|
## The script will setup all the environment voodoo needed to make
|
||||||
|
## mozilla work.
|
||||||
|
|
||||||
|
cmdname=`basename $0`
|
||||||
|
|
||||||
|
##
|
||||||
|
## Variables
|
||||||
|
##
|
||||||
|
MOZ_ARCH=$(uname -m)
|
||||||
|
case $MOZ_ARCH in
|
||||||
|
x86_64 | s390x | sparc64)
|
||||||
|
MOZ_LIB_DIR="/__PREFIX__/lib64"
|
||||||
|
SECONDARY_LIB_DIR="/__PREFIX__/lib"
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
MOZ_LIB_DIR="/__PREFIX__/lib"
|
||||||
|
SECONDARY_LIB_DIR="/__PREFIX__/lib64"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
MOZ_FIREFOX_FILE="firefox"
|
||||||
|
|
||||||
|
if [ ! -r $MOZ_LIB_DIR/firefox/$MOZ_FIREFOX_FILE ]; then
|
||||||
|
if [ ! -r $SECONDARY_LIB_DIR/firefox/$MOZ_FIREFOX_FILE ]; then
|
||||||
|
echo "Error: $MOZ_LIB_DIR/firefox/$MOZ_FIREFOX_FILE not found"
|
||||||
|
if [ -d $SECONDARY_LIB_DIR ]; then
|
||||||
|
echo " $SECONDARY_LIB_DIR/firefox/$MOZ_FIREFOX_FILE not found"
|
||||||
|
fi
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
MOZ_LIB_DIR="$SECONDARY_LIB_DIR"
|
||||||
|
fi
|
||||||
|
MOZ_DIST_BIN="$MOZ_LIB_DIR/firefox"
|
||||||
|
MOZ_LANGPACKS_DIR="$MOZ_DIST_BIN/langpacks"
|
||||||
|
MOZ_EXTENSIONS_PROFILE_DIR="$HOME/.mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
|
||||||
|
MOZ_PROGRAM="$MOZ_DIST_BIN/$MOZ_FIREFOX_FILE"
|
||||||
|
MOZ_LAUNCHER="$MOZ_DIST_BIN/run-mozilla.sh"
|
||||||
|
GETENFORCE_FILE="/usr/sbin/getenforce"
|
||||||
|
|
||||||
|
##
|
||||||
|
## Enable Wayland backend?
|
||||||
|
##
|
||||||
|
%DISABLE_WAYLAND_PLACEHOLDER%
|
||||||
|
|
||||||
|
if ! [ $MOZ_DISABLE_WAYLAND ] && [ "$WAYLAND_DISPLAY" ]; then
|
||||||
|
if [ "$XDG_CURRENT_DESKTOP" == "GNOME" ]; then
|
||||||
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
fi
|
||||||
|
## Enable Wayland on KDE/Sway
|
||||||
|
##
|
||||||
|
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
|
||||||
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
##
|
||||||
|
## Use D-Bus remote exclusively when there's Wayland display.
|
||||||
|
##
|
||||||
|
if [ "$WAYLAND_DISPLAY" ]; then
|
||||||
|
export MOZ_DBUS_REMOTE=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
##
|
||||||
|
## Set MOZ_GRE_CONF
|
||||||
|
##
|
||||||
|
MOZ_GRE_CONF=/etc/gre.d/gre.conf
|
||||||
|
if [ "$MOZ_LIB_DIR" == "/__PREFIX__/lib64" ]; then
|
||||||
|
MOZ_GRE_CONF=/etc/gre.d/gre64.conf
|
||||||
|
fi
|
||||||
|
export MOZ_GRE_CONF
|
||||||
|
|
||||||
|
##
|
||||||
|
## Set MOZILLA_FIVE_HOME
|
||||||
|
##
|
||||||
|
MOZILLA_FIVE_HOME="$MOZ_DIST_BIN"
|
||||||
|
|
||||||
|
export MOZILLA_FIVE_HOME
|
||||||
|
|
||||||
|
##
|
||||||
|
## Make sure that we set the plugin path
|
||||||
|
##
|
||||||
|
MOZ_PLUGIN_DIR="plugins"
|
||||||
|
|
||||||
|
if [ "$MOZ_PLUGIN_PATH" ]
|
||||||
|
then
|
||||||
|
MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:$MOZ_LIB_DIR/mozilla/$MOZ_PLUGIN_DIR:$MOZ_DIST_BIN/$MOZ_PLUGIN_DIR
|
||||||
|
else
|
||||||
|
MOZ_PLUGIN_PATH=$MOZ_LIB_DIR/mozilla/$MOZ_PLUGIN_DIR:$MOZ_DIST_BIN/$MOZ_PLUGIN_DIR
|
||||||
|
fi
|
||||||
|
export MOZ_PLUGIN_PATH
|
||||||
|
|
||||||
|
##
|
||||||
|
## Set MOZ_APP_LAUNCHER for gnome-session
|
||||||
|
##
|
||||||
|
export MOZ_APP_LAUNCHER="/__PREFIX__/bin/firefox"
|
||||||
|
|
||||||
|
##
|
||||||
|
## Set FONTCONFIG_PATH for Xft/fontconfig
|
||||||
|
##
|
||||||
|
FONTCONFIG_PATH="/etc/fonts:${MOZILLA_FIVE_HOME}/res/Xft"
|
||||||
|
export FONTCONFIG_PATH
|
||||||
|
|
||||||
|
export MOZ_GMP_PATH=$MOZ_LIB_DIR/mozilla/plugins/gmp-gmpopenh264/system-installed
|
||||||
|
|
||||||
|
##
|
||||||
|
## In order to better support certain scripts (such as Indic and some CJK
|
||||||
|
## scripts), openeuler builds its Firefox, with permission from the Mozilla
|
||||||
|
## Corporation, with the Pango system as its text renderer. This change
|
||||||
|
## may negatively impact performance on some pages. To disable the use of
|
||||||
|
## Pango, set MOZ_DISABLE_PANGO=1 in your environment before launching
|
||||||
|
## Firefox.
|
||||||
|
##
|
||||||
|
#
|
||||||
|
# MOZ_DISABLE_PANGO=1
|
||||||
|
# export MOZ_DISABLE_PANGO
|
||||||
|
#
|
||||||
|
|
||||||
|
##
|
||||||
|
## Disable the GNOME crash dialog, Moz has it's own
|
||||||
|
##
|
||||||
|
GNOME_DISABLE_CRASH_DIALOG=1
|
||||||
|
export GNOME_DISABLE_CRASH_DIALOG
|
||||||
|
|
||||||
|
##
|
||||||
|
## Disable the SLICE allocator (rhbz#1014858)
|
||||||
|
##
|
||||||
|
export G_SLICE=always-malloc
|
||||||
|
|
||||||
|
##
|
||||||
|
## Enable Xinput2 (mozbz#1207973)
|
||||||
|
##
|
||||||
|
export MOZ_USE_XINPUT2=1
|
||||||
|
|
||||||
|
# OK, here's where all the real work gets done
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## To disable the use of Firefox localization, set MOZ_DISABLE_LANGPACKS=1
|
||||||
|
## in your environment before launching Firefox.
|
||||||
|
##
|
||||||
|
#
|
||||||
|
# MOZ_DISABLE_LANGPACKS=1
|
||||||
|
# export MOZ_DISABLE_LANGPACKS
|
||||||
|
#
|
||||||
|
|
||||||
|
##
|
||||||
|
## Automatically installed langpacks are tracked by .openeuler-langpack-install
|
||||||
|
## config file.
|
||||||
|
##
|
||||||
|
OPENEULER_LANGPACK_CONFIG="$MOZ_EXTENSIONS_PROFILE_DIR/.openeuler-langpack-install"
|
||||||
|
|
||||||
|
# MOZ_DISABLE_LANGPACKS disables language packs completely
|
||||||
|
MOZILLA_DOWN=0
|
||||||
|
if ! [ $MOZ_DISABLE_LANGPACKS ] || [ $MOZ_DISABLE_LANGPACKS -eq 0 ]; then
|
||||||
|
if [ -x $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE ]; then
|
||||||
|
# Is firefox running?
|
||||||
|
/__PREFIX__/bin/pidof firefox > /dev/null 2>&1
|
||||||
|
MOZILLA_DOWN=$?
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# When Firefox is not running, restore SELinux labels for profile files
|
||||||
|
if [ $MOZILLA_DOWN -ne 0 ]; then
|
||||||
|
if [ -x $GETENFORCE_FILE ] && [ `$GETENFORCE_FILE` != "Disabled" ] && [ -d ~/.mozilla/firefox ]; then
|
||||||
|
(/usr/sbin/restorecon -vr ~/.mozilla/firefox &)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Modify language pack configuration only when firefox is not running
|
||||||
|
# and language packs are not disabled
|
||||||
|
if [ $MOZILLA_DOWN -ne 0 ]; then
|
||||||
|
|
||||||
|
# Clear already installed langpacks
|
||||||
|
mkdir -p $MOZ_EXTENSIONS_PROFILE_DIR
|
||||||
|
if [ -f $OPENEULER_LANGPACK_CONFIG ]; then
|
||||||
|
rm `cat $OPENEULER_LANGPACK_CONFIG` > /dev/null 2>&1
|
||||||
|
rm $OPENEULER_LANGPACK_CONFIG > /dev/null 2>&1
|
||||||
|
# remove all empty langpacks dirs while they block installation of langpacks
|
||||||
|
rmdir $MOZ_EXTENSIONS_PROFILE_DIR/langpack* > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Get locale from system
|
||||||
|
CURRENT_LOCALE=$LC_ALL
|
||||||
|
CURRENT_LOCALE=${CURRENT_LOCALE:-$LC_MESSAGES}
|
||||||
|
CURRENT_LOCALE=${CURRENT_LOCALE:-$LANG}
|
||||||
|
|
||||||
|
# Try with a local variant first, then without a local variant
|
||||||
|
SHORTMOZLOCALE=`echo $CURRENT_LOCALE | sed "s|_\([^.]*\).*||g" | sed "s|\..*||g"`
|
||||||
|
MOZLOCALE=`echo $CURRENT_LOCALE | sed "s|_\([^.]*\).*|-\1|g" | sed "s|\..*||g"`
|
||||||
|
|
||||||
|
function create_langpack_link() {
|
||||||
|
local language=$*
|
||||||
|
local langpack=langpack-${language}@firefox.mozilla.org.xpi
|
||||||
|
if [ -f $MOZ_LANGPACKS_DIR/$langpack ]; then
|
||||||
|
rm -rf $MOZ_EXTENSIONS_PROFILE_DIR/$langpack
|
||||||
|
# If the target file is a symlink (the fallback langpack),
|
||||||
|
# install the original file instead of the fallback one
|
||||||
|
if [ -h $MOZ_LANGPACKS_DIR/$langpack ]; then
|
||||||
|
langpack=`readlink $MOZ_LANGPACKS_DIR/$langpack`
|
||||||
|
fi
|
||||||
|
ln -s $MOZ_LANGPACKS_DIR/$langpack \
|
||||||
|
$MOZ_EXTENSIONS_PROFILE_DIR/$langpack
|
||||||
|
echo $MOZ_EXTENSIONS_PROFILE_DIR/$langpack > $OPENEULER_LANGPACK_CONFIG
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
create_langpack_link $MOZLOCALE || create_langpack_link $SHORTMOZLOCALE || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# BEAST fix (rhbz#1005611)
|
||||||
|
NSS_SSL_CBC_RANDOM_IV=${NSS_SSL_CBC_RANDOM_IV-1}
|
||||||
|
export NSS_SSL_CBC_RANDOM_IV
|
||||||
|
|
||||||
|
# Prepare command line arguments
|
||||||
|
script_args=""
|
||||||
|
pass_arg_count=0
|
||||||
|
while [ $# -gt $pass_arg_count ]
|
||||||
|
do
|
||||||
|
case "$1" in
|
||||||
|
-g | --debug)
|
||||||
|
script_args="$script_args -g"
|
||||||
|
debugging=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-d | --debugger)
|
||||||
|
if [ $# -gt 1 ]; then
|
||||||
|
script_args="$script_args -d $2"
|
||||||
|
shift 2
|
||||||
|
else
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# Move the unrecognized argument to the end of the list.
|
||||||
|
arg="$1"
|
||||||
|
shift
|
||||||
|
set -- "$@" "$arg"
|
||||||
|
pass_arg_count=`expr $pass_arg_count + 1`
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# Flatpak specific environment variables
|
||||||
|
%FLATPAK_ENV_VARS%
|
||||||
|
|
||||||
|
# Don't throw "old profile" dialog box.
|
||||||
|
export MOZ_ALLOW_DOWNGRADE=1
|
||||||
|
|
||||||
|
# Run the browser
|
||||||
|
debugging=0
|
||||||
|
if [ $debugging = 1 ]
|
||||||
|
then
|
||||||
|
echo $MOZ_LAUNCHER $script_args $MOZ_PROGRAM "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec $MOZ_LAUNCHER $script_args $MOZ_PROGRAM "$@"
|
||||||
1238
firefox.spec
Normal file
1238
firefox.spec
Normal file
File diff suppressed because it is too large
Load Diff
1
google-api-key
Normal file
1
google-api-key
Normal file
@ -0,0 +1 @@
|
|||||||
|
AIzaSyBPGXa4AYD4FC3HJK7LnIKxm4fDusVuuco
|
||||||
1
google-loc-api-key
Normal file
1
google-loc-api-key
Normal file
@ -0,0 +1 @@
|
|||||||
|
AIzaSyB2h2OuRcUgy5N-5hsZqiPW6sH3n_rptiQ
|
||||||
33248
libwebrtc-screen-cast-sync.patch
Normal file
33248
libwebrtc-screen-cast-sync.patch
Normal file
File diff suppressed because it is too large
Load Diff
0
mochitest-python.tar.gz
Normal file
0
mochitest-python.tar.gz
Normal file
99
mozilla-1170092.patch
Normal file
99
mozilla-1170092.patch
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
diff -up firefox-87.0/extensions/pref/autoconfig/src/nsReadConfig.cpp.1170092 firefox-87.0/extensions/pref/autoconfig/src/nsReadConfig.cpp
|
||||||
|
--- firefox-87.0/extensions/pref/autoconfig/src/nsReadConfig.cpp.1170092 2021-03-18 14:48:36.000000000 +0100
|
||||||
|
+++ firefox-87.0/extensions/pref/autoconfig/src/nsReadConfig.cpp 2021-03-22 19:20:02.429310184 +0100
|
||||||
|
@@ -249,8 +249,20 @@ nsresult nsReadConfig::openAndEvaluateJS
|
||||||
|
if (NS_FAILED(rv)) return rv;
|
||||||
|
|
||||||
|
rv = NS_NewLocalFileInputStream(getter_AddRefs(inStr), jsFile);
|
||||||
|
- if (NS_FAILED(rv)) return rv;
|
||||||
|
+ if (NS_FAILED(rv)) {
|
||||||
|
+ // Look for cfg file in /etc/<application>/pref
|
||||||
|
+ rv = NS_GetSpecialDirectory(NS_APP_PREFS_SYSTEM_CONFIG_DIR,
|
||||||
|
+ getter_AddRefs(jsFile));
|
||||||
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
+
|
||||||
|
+ rv = jsFile->AppendNative(nsLiteralCString("pref"));
|
||||||
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
+ rv = jsFile->AppendNative(nsDependentCString(aFileName));
|
||||||
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
|
||||||
|
+ rv = NS_NewLocalFileInputStream(getter_AddRefs(inStr), jsFile);
|
||||||
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
+ }
|
||||||
|
} else {
|
||||||
|
nsAutoCString location("resource://gre/defaults/autoconfig/");
|
||||||
|
location += aFileName;
|
||||||
|
diff -up firefox-87.0/modules/libpref/Preferences.cpp.1170092 firefox-87.0/modules/libpref/Preferences.cpp
|
||||||
|
--- firefox-87.0/modules/libpref/Preferences.cpp.1170092 2021-03-18 14:48:54.000000000 +0100
|
||||||
|
+++ firefox-87.0/modules/libpref/Preferences.cpp 2021-03-22 19:20:02.429310184 +0100
|
||||||
|
@@ -4499,6 +4499,9 @@ nsresult Preferences::InitInitialObjects
|
||||||
|
//
|
||||||
|
// Thus, in the omni.jar case, we always load app-specific default
|
||||||
|
// preferences from omni.jar, whether or not `$app == $gre`.
|
||||||
|
+ //
|
||||||
|
+ // At very end load configuration from system config location:
|
||||||
|
+ // - /etc/firefox/pref/*.js
|
||||||
|
|
||||||
|
nsresult rv = NS_ERROR_FAILURE;
|
||||||
|
UniquePtr<nsZipFind> find;
|
||||||
|
diff -up firefox-87.0/toolkit/xre/nsXREDirProvider.cpp.1170092 firefox-87.0/toolkit/xre/nsXREDirProvider.cpp
|
||||||
|
--- firefox-87.0/toolkit/xre/nsXREDirProvider.cpp.1170092 2021-03-18 14:52:00.000000000 +0100
|
||||||
|
+++ firefox-87.0/toolkit/xre/nsXREDirProvider.cpp 2021-03-22 19:37:56.574480347 +0100
|
||||||
|
@@ -65,6 +65,7 @@
|
||||||
|
#endif
|
||||||
|
#ifdef XP_UNIX
|
||||||
|
# include <ctype.h>
|
||||||
|
+# include "nsIXULAppInfo.h"
|
||||||
|
#endif
|
||||||
|
#ifdef XP_IOS
|
||||||
|
# include "UIKitDirProvider.h"
|
||||||
|
@@ -552,6 +553,21 @@ nsXREDirProvider::GetFile(const char* aP
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+#if defined(XP_UNIX)
|
||||||
|
+ if (!strcmp(aProperty, NS_APP_PREFS_SYSTEM_CONFIG_DIR)) {
|
||||||
|
+ nsCString sysConfigDir = nsLiteralCString("/etc/");
|
||||||
|
+ nsCOMPtr<nsIXULAppInfo> appInfo = do_GetService("@mozilla.org/xre/app-info;1");
|
||||||
|
+ if (!appInfo)
|
||||||
|
+ return NS_ERROR_NOT_AVAILABLE;
|
||||||
|
+ nsCString appName;
|
||||||
|
+ appInfo->GetName(appName);
|
||||||
|
+ ToLowerCase(appName);
|
||||||
|
+ sysConfigDir.Append(appName);
|
||||||
|
+ return NS_NewNativeLocalFile(sysConfigDir, false, aFile);
|
||||||
|
+ }
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
if (NS_FAILED(rv) || !file) return NS_ERROR_FAILURE;
|
||||||
|
|
||||||
|
if (ensureFilePermissions) {
|
||||||
|
@@ -874,6 +890,16 @@ nsresult nsXREDirProvider::GetFilesInter
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+ // Add /etc/<application>/pref/ directory if it exists
|
||||||
|
+ nsCOMPtr<nsIFile> systemPrefDir;
|
||||||
|
+ rv = NS_GetSpecialDirectory(NS_APP_PREFS_SYSTEM_CONFIG_DIR,
|
||||||
|
+ getter_AddRefs(systemPrefDir));
|
||||||
|
+ if (NS_SUCCEEDED(rv)) {
|
||||||
|
+ rv = systemPrefDir->AppendNative(nsLiteralCString("pref"));
|
||||||
|
+ if (NS_SUCCEEDED(rv))
|
||||||
|
+ directories.AppendObject(systemPrefDir);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
rv = NS_NewArrayEnumerator(aResult, directories, NS_GET_IID(nsIFile));
|
||||||
|
} else if (!strcmp(aProperty, NS_APP_CHROME_DIR_LIST)) {
|
||||||
|
// NS_APP_CHROME_DIR_LIST is only used to get default (native) icons
|
||||||
|
diff -up firefox-87.0/xpcom/io/nsAppDirectoryServiceDefs.h.1170092 firefox-87.0/xpcom/io/nsAppDirectoryServiceDefs.h
|
||||||
|
--- firefox-87.0/xpcom/io/nsAppDirectoryServiceDefs.h.1170092 2021-03-18 14:51:58.000000000 +0100
|
||||||
|
+++ firefox-87.0/xpcom/io/nsAppDirectoryServiceDefs.h 2021-03-22 19:20:02.430310213 +0100
|
||||||
|
@@ -59,6 +59,7 @@
|
||||||
|
#define NS_APP_PREFS_DEFAULTS_DIR_LIST "PrefDL"
|
||||||
|
#define NS_APP_PREFS_OVERRIDE_DIR \
|
||||||
|
"PrefDOverride" // Directory for per-profile defaults
|
||||||
|
+#define NS_APP_PREFS_SYSTEM_CONFIG_DIR "PrefSysConf" // Directory with system-wide configuration
|
||||||
|
|
||||||
|
#define NS_APP_USER_PROFILE_50_DIR "ProfD"
|
||||||
|
#define NS_APP_USER_PROFILE_LOCAL_50_DIR "ProfLD"
|
||||||
15
mozilla-1516803.patch
Normal file
15
mozilla-1516803.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
diff -up firefox-84.0/security/sandbox/linux/moz.build.1516803 firefox-84.0/security/sandbox/linux/moz.build
|
||||||
|
--- firefox-84.0/security/sandbox/linux/moz.build.1516803 2020-12-10 16:17:55.425139545 +0100
|
||||||
|
+++ firefox-84.0/security/sandbox/linux/moz.build 2020-12-10 16:29:21.945860841 +0100
|
||||||
|
@@ -114,9 +114,8 @@ if CONFIG["CC_TYPE"] in ("clang", "gcc")
|
||||||
|
# gcc lto likes to put the top level asm in syscall.cc in a different partition
|
||||||
|
# from the function using it which breaks the build. Work around that by
|
||||||
|
# forcing there to be only one partition.
|
||||||
|
-for f in CONFIG["OS_CXXFLAGS"]:
|
||||||
|
- if f.startswith("-flto") and CONFIG["CC_TYPE"] != "clang":
|
||||||
|
- LDFLAGS += ["--param lto-partitions=1"]
|
||||||
|
+if CONFIG['CC_TYPE'] != 'clang':
|
||||||
|
+ LDFLAGS += ['--param', 'lto-partitions=1']
|
||||||
|
|
||||||
|
DEFINES["NS_NO_XPCOM"] = True
|
||||||
|
DisableStlWrapping()
|
||||||
14
mozilla-1669639.patch
Normal file
14
mozilla-1669639.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
--- firefox-81.0.1/build/mach_initialize.py.old 2020-10-06 14:16:06.212974910 +0200
|
||||||
|
+++ firefox-81.0.1/build/mach_initialize.py 2020-10-06 14:19:03.313179557 +0200
|
||||||
|
@@ -507,7 +507,10 @@ class ImportHook(object):
|
||||||
|
# doesn't happen or because it doesn't matter).
|
||||||
|
if not os.path.exists(module.__file__[:-1]):
|
||||||
|
if os.path.exists(module.__file__):
|
||||||
|
- os.remove(module.__file__)
|
||||||
|
+ try:
|
||||||
|
+ os.remove(module.__file__)
|
||||||
|
+ except:
|
||||||
|
+ pass
|
||||||
|
del sys.modules[module.__name__]
|
||||||
|
module = self(name, globals, locals, fromlist, level)
|
||||||
|
|
||||||
68
mozilla-1670333.patch
Normal file
68
mozilla-1670333.patch
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
diff -up firefox-99.0/dom/media/mp4/MP4Demuxer.cpp.1670333 firefox-99.0/dom/media/mp4/MP4Demuxer.cpp
|
||||||
|
--- firefox-99.0/dom/media/mp4/MP4Demuxer.cpp.1670333 2022-03-31 01:24:44.000000000 +0200
|
||||||
|
+++ firefox-99.0/dom/media/mp4/MP4Demuxer.cpp 2022-04-04 09:58:35.606351546 +0200
|
||||||
|
@@ -31,6 +31,8 @@ mozilla::LogModule* GetDemuxerLog() { re
|
||||||
|
DDMOZ_LOG(gMediaDemuxerLog, mozilla::LogLevel::Debug, "::%s: " arg, \
|
||||||
|
__func__, ##__VA_ARGS__)
|
||||||
|
|
||||||
|
+extern bool gUseKeyframeFromContainer;
|
||||||
|
+
|
||||||
|
namespace mozilla {
|
||||||
|
|
||||||
|
DDLoggedTypeDeclNameAndBase(MP4TrackDemuxer, MediaTrackDemuxer);
|
||||||
|
@@ -394,6 +396,12 @@ already_AddRefed<MediaRawData> MP4TrackD
|
||||||
|
[[fallthrough]];
|
||||||
|
case H264::FrameType::OTHER: {
|
||||||
|
bool keyframe = type == H264::FrameType::I_FRAME;
|
||||||
|
+ if (gUseKeyframeFromContainer) {
|
||||||
|
+ if (sample->mKeyframe && sample->mKeyframe != keyframe) {
|
||||||
|
+ sample->mKeyframe = keyframe;
|
||||||
|
+ }
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
if (sample->mKeyframe != keyframe) {
|
||||||
|
NS_WARNING(nsPrintfCString("Frame incorrectly marked as %skeyframe "
|
||||||
|
"@ pts:%" PRId64 " dur:%" PRId64
|
||||||
|
diff -up firefox-99.0/dom/media/platforms/PDMFactory.cpp.1670333 firefox-99.0/dom/media/platforms/PDMFactory.cpp
|
||||||
|
--- firefox-99.0/dom/media/platforms/PDMFactory.cpp.1670333 2022-03-31 01:24:44.000000000 +0200
|
||||||
|
+++ firefox-99.0/dom/media/platforms/PDMFactory.cpp 2022-04-04 10:09:57.383419125 +0200
|
||||||
|
@@ -58,6 +58,8 @@
|
||||||
|
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
|
+bool gUseKeyframeFromContainer = false;
|
||||||
|
+
|
||||||
|
namespace mozilla {
|
||||||
|
|
||||||
|
#define PDM_INIT_LOG(msg, ...) \
|
||||||
|
@@ -495,7 +497,7 @@ void PDMFactory::CreateRddPDMs() {
|
||||||
|
#ifdef MOZ_FFMPEG
|
||||||
|
if (StaticPrefs::media_ffmpeg_enabled() &&
|
||||||
|
StaticPrefs::media_rdd_ffmpeg_enabled() &&
|
||||||
|
- !CreateAndStartupPDM<FFmpegRuntimeLinker>()) {
|
||||||
|
+ !(mFFmpegUsed = CreateAndStartupPDM<FFmpegRuntimeLinker>())) {
|
||||||
|
mFailureFlags += GetFailureFlagBasedOnFFmpegStatus(
|
||||||
|
FFmpegRuntimeLinker::LinkStatusCode());
|
||||||
|
}
|
||||||
|
@@ -602,8 +604,9 @@ void PDMFactory::CreateDefaultPDMs() {
|
||||||
|
|
||||||
|
CreateAndStartupPDM<AgnosticDecoderModule>();
|
||||||
|
|
||||||
|
- if (StaticPrefs::media_gmp_decoder_enabled() &&
|
||||||
|
+ if (StaticPrefs::media_gmp_decoder_enabled() && !mFFmpegUsed &&
|
||||||
|
!CreateAndStartupPDM<GMPDecoderModule>()) {
|
||||||
|
+ gUseKeyframeFromContainer = true;
|
||||||
|
mFailureFlags += DecoderDoctorDiagnostics::Flags::GMPPDMFailedToStartup;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
diff -up firefox-99.0/dom/media/platforms/PDMFactory.h.1670333 firefox-99.0/dom/media/platforms/PDMFactory.h
|
||||||
|
--- firefox-99.0/dom/media/platforms/PDMFactory.h.1670333 2022-03-31 01:24:44.000000000 +0200
|
||||||
|
+++ firefox-99.0/dom/media/platforms/PDMFactory.h 2022-04-04 09:58:35.606351546 +0200
|
||||||
|
@@ -121,6 +121,7 @@ class PDMFactory final {
|
||||||
|
RefPtr<PlatformDecoderModule> mNullPDM;
|
||||||
|
|
||||||
|
DecoderDoctorDiagnostics::FlagsSet mFailureFlags;
|
||||||
|
+ bool mFFmpegUsed = false;
|
||||||
|
|
||||||
|
friend class RemoteVideoDecoderParent;
|
||||||
|
static void EnsureInit();
|
||||||
17
mozilla-1775202.patch
Normal file
17
mozilla-1775202.patch
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
diff --git a/third_party/libwebrtc/moz.build b/third_party/libwebrtc/moz.build
|
||||||
|
index 8579f8bb3622..d9ca79d4fcb8 100644
|
||||||
|
--- a/third_party/libwebrtc/moz.build
|
||||||
|
+++ b/third_party/libwebrtc/moz.build
|
||||||
|
@@ -520,7 +520,10 @@ if CONFIG["CPU_ARCH"] == "ppc64" and CONFIG["OS_TARGET"] == "Linux":
|
||||||
|
"/third_party/libwebrtc/api/audio_codecs/isac/audio_decoder_isac_float_gn",
|
||||||
|
"/third_party/libwebrtc/api/audio_codecs/isac/audio_encoder_isac_float_gn",
|
||||||
|
"/third_party/libwebrtc/modules/audio_coding/isac_c_gn",
|
||||||
|
- "/third_party/libwebrtc/modules/audio_coding/isac_gn"
|
||||||
|
+ "/third_party/libwebrtc/modules/audio_coding/isac_gn",
|
||||||
|
+ "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_generic_gn",
|
||||||
|
+ "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_gn",
|
||||||
|
+ "/third_party/libwebrtc/modules/desktop_capture/primitives_gn"
|
||||||
|
]
|
||||||
|
|
||||||
|
if CONFIG["CPU_ARCH"] == "x86" and CONFIG["OS_TARGET"] == "Linux":
|
||||||
|
|
||||||
632
mozilla-1833330.patch
Normal file
632
mozilla-1833330.patch
Normal file
@ -0,0 +1,632 @@
|
|||||||
|
diff --git a/security/manager/locales/en-US/security/certificates/certManager.ftl b/security/manager/locales/en-US/security/certificates/certManager.ftl
|
||||||
|
--- a/security/manager/locales/en-US/security/certificates/certManager.ftl
|
||||||
|
+++ b/security/manager/locales/en-US/security/certificates/certManager.ftl
|
||||||
|
@@ -51,9 +51,6 @@ certmgr-cert-name =
|
||||||
|
certmgr-cert-server =
|
||||||
|
.label = Server
|
||||||
|
|
||||||
|
-certmgr-override-lifetime =
|
||||||
|
- .label = Lifetime
|
||||||
|
-
|
||||||
|
certmgr-token-name =
|
||||||
|
.label = Security Device
|
||||||
|
|
||||||
|
@@ -69,6 +66,9 @@ certmgr-email =
|
||||||
|
certmgr-serial =
|
||||||
|
.label = Serial Number
|
||||||
|
|
||||||
|
+certmgr-fingerprint-sha-256 =
|
||||||
|
+ .label = SHA-256 Fingerprint
|
||||||
|
+
|
||||||
|
certmgr-view =
|
||||||
|
.label = View…
|
||||||
|
.accesskey = V
|
||||||
|
diff --git a/security/manager/pki/resources/content/certManager.js b/security/manager/pki/resources/content/certManager.js
|
||||||
|
--- a/security/manager/pki/resources/content/certManager.js
|
||||||
|
+++ b/security/manager/pki/resources/content/certManager.js
|
||||||
|
@@ -64,22 +64,16 @@ var serverRichList = {
|
||||||
|
|
||||||
|
buildRichList() {
|
||||||
|
let overrides = overrideService.getOverrides().map(item => {
|
||||||
|
- let cert = null;
|
||||||
|
- if (item.dbKey !== "") {
|
||||||
|
- cert = certdb.findCertByDBKey(item.dbKey);
|
||||||
|
- }
|
||||||
|
return {
|
||||||
|
hostPort: item.hostPort,
|
||||||
|
- dbKey: item.dbKey,
|
||||||
|
asciiHost: item.asciiHost,
|
||||||
|
port: item.port,
|
||||||
|
originAttributes: item.originAttributes,
|
||||||
|
- isTemporary: item.isTemporary,
|
||||||
|
- displayName: cert !== null ? cert.displayName : "",
|
||||||
|
+ fingerprint: item.fingerprint,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
overrides.sort((a, b) => {
|
||||||
|
- let criteria = ["hostPort", "displayName"];
|
||||||
|
+ let criteria = ["hostPort", "fingerprint"];
|
||||||
|
for (let c of criteria) {
|
||||||
|
let res = a[c].localeCompare(b[c]);
|
||||||
|
if (res !== 0) {
|
||||||
|
@@ -106,10 +100,10 @@ var serverRichList = {
|
||||||
|
_richBoxAddItem(item) {
|
||||||
|
let richlistitem = document.createXULElement("richlistitem");
|
||||||
|
|
||||||
|
- richlistitem.setAttribute("dbKey", item.dbKey);
|
||||||
|
richlistitem.setAttribute("host", item.asciiHost);
|
||||||
|
richlistitem.setAttribute("port", item.port);
|
||||||
|
richlistitem.setAttribute("hostPort", item.hostPort);
|
||||||
|
+ richlistitem.setAttribute("fingerprint", item.fingerprint);
|
||||||
|
richlistitem.setAttribute(
|
||||||
|
"originAttributes",
|
||||||
|
JSON.stringify(item.originAttributes)
|
||||||
|
@@ -120,18 +114,7 @@ var serverRichList = {
|
||||||
|
hbox.setAttribute("equalsize", "always");
|
||||||
|
|
||||||
|
hbox.appendChild(createRichlistItem({ raw: item.hostPort }));
|
||||||
|
- hbox.appendChild(
|
||||||
|
- createRichlistItem(
|
||||||
|
- item.displayName !== ""
|
||||||
|
- ? { raw: item.displayName }
|
||||||
|
- : { l10nid: "no-cert-stored-for-override" }
|
||||||
|
- )
|
||||||
|
- );
|
||||||
|
- hbox.appendChild(
|
||||||
|
- createRichlistItem({
|
||||||
|
- l10nid: item.isTemporary ? "temporary-override" : "permanent-override",
|
||||||
|
- })
|
||||||
|
- );
|
||||||
|
+ hbox.appendChild(createRichlistItem({ raw: item.fingerprint }));
|
||||||
|
|
||||||
|
richlistitem.appendChild(hbox);
|
||||||
|
|
||||||
|
@@ -170,32 +153,6 @@ var serverRichList = {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
- viewSelectedRichListItem() {
|
||||||
|
- let selectedItem = this.richlist.selectedItem;
|
||||||
|
- if (!selectedItem) {
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- let dbKey = selectedItem.getAttribute("dbKey");
|
||||||
|
- if (dbKey) {
|
||||||
|
- let cert = certdb.findCertByDBKey(dbKey);
|
||||||
|
- viewCertHelper(window, cert);
|
||||||
|
- }
|
||||||
|
- },
|
||||||
|
-
|
||||||
|
- exportSelectedRichListItem() {
|
||||||
|
- let selectedItem = this.richlist.selectedItem;
|
||||||
|
- if (!selectedItem) {
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- let dbKey = selectedItem.getAttribute("dbKey");
|
||||||
|
- if (dbKey) {
|
||||||
|
- let cert = certdb.findCertByDBKey(dbKey);
|
||||||
|
- exportToFile(window, cert);
|
||||||
|
- }
|
||||||
|
- },
|
||||||
|
-
|
||||||
|
addException() {
|
||||||
|
let retval = {
|
||||||
|
exceptionAdded: false,
|
||||||
|
@@ -212,16 +169,8 @@ var serverRichList = {
|
||||||
|
},
|
||||||
|
|
||||||
|
_setButtonState() {
|
||||||
|
- let websiteViewButton = document.getElementById("websites_viewButton");
|
||||||
|
- let websiteExportButton = document.getElementById("websites_exportButton");
|
||||||
|
let websiteDeleteButton = document.getElementById("websites_deleteButton");
|
||||||
|
-
|
||||||
|
- let certKey = this.richlist.selectedItem?.getAttribute("dbKey");
|
||||||
|
- let cert = certKey && certdb.findCertByDBKey(certKey);
|
||||||
|
-
|
||||||
|
websiteDeleteButton.disabled = this.richlist.selectedIndex < 0;
|
||||||
|
- websiteExportButton.disabled = !cert;
|
||||||
|
- websiteViewButton.disabled = websiteExportButton.disabled;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
/**
|
||||||
|
diff --git a/security/manager/pki/resources/content/certManager.xhtml b/security/manager/pki/resources/content/certManager.xhtml
|
||||||
|
--- a/security/manager/pki/resources/content/certManager.xhtml
|
||||||
|
+++ b/security/manager/pki/resources/content/certManager.xhtml
|
||||||
|
@@ -157,18 +157,13 @@
|
||||||
|
|
||||||
|
<listheader equalsize="always">
|
||||||
|
<treecol id="sitecol" data-l10n-id="certmgr-cert-server" primary="true" flex="1"/>
|
||||||
|
- <treecol id="certcol" data-l10n-id="certmgr-cert-name" flex="1"/>
|
||||||
|
- <treecol id="lifetimecol" data-l10n-id="certmgr-override-lifetime" flex="1"/>
|
||||||
|
+ <treecol id="sha256col" data-l10n-id="certmgr-fingerprint-sha-256" flex="1"/>
|
||||||
|
</listheader>
|
||||||
|
<richlistbox ondblclick="serverRichList.viewSelectedRichListItem();" class="certManagerRichlistBox" id="serverList" flex="1" selected="false"/>
|
||||||
|
|
||||||
|
<separator class="thin"/>
|
||||||
|
|
||||||
|
<hbox>
|
||||||
|
- <button id="websites_viewButton"
|
||||||
|
- data-l10n-id="certmgr-view" oncommand="serverRichList.viewSelectedRichListItem();"/>
|
||||||
|
- <button id="websites_exportButton"
|
||||||
|
- data-l10n-id="certmgr-export" oncommand="serverRichList.exportSelectedRichListItem();"/>
|
||||||
|
<button id="websites_deleteButton"
|
||||||
|
data-l10n-id="certmgr-delete" oncommand="serverRichList.deleteSelectedRichListItem();"/>
|
||||||
|
<button id="websites_exceptionButton"
|
||||||
|
diff --git a/security/manager/ssl/nsCertOverrideService.cpp b/security/manager/ssl/nsCertOverrideService.cpp
|
||||||
|
--- a/security/manager/ssl/nsCertOverrideService.cpp
|
||||||
|
+++ b/security/manager/ssl/nsCertOverrideService.cpp
|
||||||
|
@@ -106,8 +106,8 @@ nsCertOverride::GetAsciiHost(/*out*/ nsA
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
-nsCertOverride::GetDbKey(/*out*/ nsACString& aDBKey) {
|
||||||
|
- aDBKey = mDBKey;
|
||||||
|
+nsCertOverride::GetFingerprint(/*out*/ nsACString& aFingerprint) {
|
||||||
|
+ aFingerprint = mFingerprint;
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -118,12 +118,6 @@ nsCertOverride::GetPort(/*out*/ int32_t*
|
||||||
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
-nsCertOverride::GetIsTemporary(/*out*/ bool* aIsTemporary) {
|
||||||
|
- *aIsTemporary = mIsTemporary;
|
||||||
|
- return NS_OK;
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-NS_IMETHODIMP
|
||||||
|
nsCertOverride::GetHostPort(/*out*/ nsACString& aHostPort) {
|
||||||
|
nsCertOverrideService::GetHostWithPort(mAsciiHost, mPort, aHostPort);
|
||||||
|
return NS_OK;
|
||||||
|
@@ -274,7 +268,6 @@ void nsCertOverrideService::RemoveAllTem
|
||||||
|
for (auto iter = mSettingsTable.Iter(); !iter.Done(); iter.Next()) {
|
||||||
|
nsCertOverrideEntry* entry = iter.Get();
|
||||||
|
if (entry->mSettings->mIsTemporary) {
|
||||||
|
- entry->mSettings->mCert = nullptr;
|
||||||
|
iter.Remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -297,18 +297,11 @@
|
||||||
|
nsAutoCString buffer;
|
||||||
|
bool isMore = true;
|
||||||
|
|
||||||
|
- /* file format is:
|
||||||
|
- *
|
||||||
|
- * host:port:originattributes \t fingerprint-algorithm \t fingerprint \t
|
||||||
|
- * override-mask \t dbKey
|
||||||
|
- *
|
||||||
|
- * where override-mask is a sequence of characters,
|
||||||
|
- * M meaning hostname-Mismatch-override
|
||||||
|
- * U meaning Untrusted-override
|
||||||
|
- * T meaning Time-error-override (expired/not yet valid)
|
||||||
|
- *
|
||||||
|
- * if this format isn't respected we move onto the next line in the file.
|
||||||
|
- */
|
||||||
|
+ // Each line is of the form:
|
||||||
|
+ // host:port:originAttributes \t sSHA256OIDString \t fingerprint \t
|
||||||
|
+ // There may be some "bits" identifiers and "dbKey" after the `fingerprint`
|
||||||
|
+ // field in 'fingerprint \t \t dbKey' format, but these are now ignored.
|
||||||
|
+ // Lines that don't match this form are silently dropped.
|
||||||
|
|
||||||
|
while (isMore && NS_SUCCEEDED(lineInputStream->ReadLine(buffer, &isMore))) {
|
||||||
|
if (buffer.IsEmpty() || buffer.First() == '#') {
|
||||||
|
@@ -350,23 +343,10 @@
|
||||||
|
fingerprint.Length() == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
- nsDependentCSubstring bitsString;
|
||||||
|
- if (!parser.ReadUntil(Tokenizer::Token::Whitespace(), bitsString) ||
|
||||||
|
- bitsString.Length() == 0) {
|
||||||
|
- continue;
|
||||||
|
- }
|
||||||
|
- nsDependentCSubstring dbKey;
|
||||||
|
- if (!parser.ReadUntil(Tokenizer::Token::EndOfFile(), dbKey) ||
|
||||||
|
- dbKey.Length() == 0) {
|
||||||
|
- continue;
|
||||||
|
- }
|
||||||
|
- nsCertOverride::OverrideBits bits;
|
||||||
|
- nsCertOverride::convertStringToBits(bitsString, bits);
|
||||||
|
|
||||||
|
AddEntryToList(host, port, attributes,
|
||||||
|
- nullptr, // don't have the cert
|
||||||
|
- false, // not temporary
|
||||||
|
- fingerprint, bits, dbKey, aProofOfLock);
|
||||||
|
+ false, // not temporary
|
||||||
|
+ fingerprint, aProofOfLock);
|
||||||
|
}
|
||||||
|
|
||||||
|
return NS_OK;
|
||||||
|
@@ -412,9 +392,8 @@
|
||||||
|
output.Append(kTab);
|
||||||
|
output.Append(settings->mFingerprint);
|
||||||
|
output.Append(kTab);
|
||||||
|
- output.Append(bitsString);
|
||||||
|
- output.Append(kTab);
|
||||||
|
- output.Append(settings->mDBKey);
|
||||||
|
+ // the "bits" string used to go here, but it no longer exists
|
||||||
|
+ // the "\t dbKey" string used to go here, but it no longer exists
|
||||||
|
output.Append(NS_LINEBREAK);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -462,42 +441,16 @@
|
||||||
|
return NS_ERROR_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
- nsAutoCString nickname;
|
||||||
|
- nsresult rv = DefaultServerNicknameForCert(nsscert.get(), nickname);
|
||||||
|
- if (!aTemporary && NS_SUCCEEDED(rv)) {
|
||||||
|
- UniquePK11SlotInfo slot(PK11_GetInternalKeySlot());
|
||||||
|
- if (!slot) {
|
||||||
|
- return NS_ERROR_FAILURE;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // This can fail (for example, if we're in read-only mode). Luckily, we
|
||||||
|
- // don't even need it to succeed - we always match on the stored hash of the
|
||||||
|
- // certificate rather than the full certificate. It makes the display a bit
|
||||||
|
- // less informative (since we won't have a certificate to display), but it's
|
||||||
|
- // better than failing the entire operation.
|
||||||
|
- Unused << PK11_ImportCert(slot.get(), nsscert.get(), CK_INVALID_HANDLE,
|
||||||
|
- nickname.get(), false);
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
nsAutoCString fpStr;
|
||||||
|
- rv = GetCertSha256Fingerprint(aCert, fpStr);
|
||||||
|
- if (NS_FAILED(rv)) {
|
||||||
|
- return rv;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- nsAutoCString dbkey;
|
||||||
|
- rv = aCert->GetDbKey(dbkey);
|
||||||
|
+ nsresult rv = GetCertSha256Fingerprint(aCert, fpStr);
|
||||||
|
if (NS_FAILED(rv)) {
|
||||||
|
return rv;
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
MutexAutoLock lock(mMutex);
|
||||||
|
- AddEntryToList(aHostName, aPort, aOriginAttributes,
|
||||||
|
- aTemporary ? aCert : nullptr,
|
||||||
|
- // keep a reference to the cert for temporary overrides
|
||||||
|
- aTemporary, fpStr,
|
||||||
|
- (nsCertOverride::OverrideBits)aOverrideBits, dbkey, lock);
|
||||||
|
+ AddEntryToList(aHostName, aPort, aOriginAttributes, aTemporary, fpStr,
|
||||||
|
+ lock);
|
||||||
|
if (!aTemporary) {
|
||||||
|
Write(lock);
|
||||||
|
}
|
||||||
|
@@ -532,10 +485,8 @@
|
||||||
|
|
||||||
|
MutexAutoLock lock(mMutex);
|
||||||
|
AddEntryToList(aHostName, aPort, aOriginAttributes,
|
||||||
|
- nullptr, // No cert to keep alive
|
||||||
|
true, // temporary
|
||||||
|
- aCertFingerprint, (nsCertOverride::OverrideBits)aOverrideBits,
|
||||||
|
- ""_ns, // dbkey
|
||||||
|
+ aCertFingerprint,
|
||||||
|
lock);
|
||||||
|
|
||||||
|
return NS_OK;
|
||||||
|
@@ -632,10 +583,8 @@
|
||||||
|
|
||||||
|
nsresult nsCertOverrideService::AddEntryToList(
|
||||||
|
const nsACString& aHostName, int32_t aPort,
|
||||||
|
- const OriginAttributes& aOriginAttributes, nsIX509Cert* aCert,
|
||||||
|
- const bool aIsTemporary, const nsACString& fingerprint,
|
||||||
|
- nsCertOverride::OverrideBits ob, const nsACString& dbKey,
|
||||||
|
- const MutexAutoLock& aProofOfLock) {
|
||||||
|
+ const OriginAttributes& aOriginAttributes, const bool aIsTemporary,
|
||||||
|
+ const nsACString& fingerprint, const MutexAutoLock& aProofOfLock) {
|
||||||
|
mMutex.AssertCurrentThreadOwns();
|
||||||
|
nsAutoCString keyString;
|
||||||
|
GetKeyString(aHostName, aPort, aOriginAttributes, keyString);
|
||||||
|
@@ -656,11 +605,6 @@
|
||||||
|
settings->mOriginAttributes = aOriginAttributes;
|
||||||
|
settings->mIsTemporary = aIsTemporary;
|
||||||
|
settings->mFingerprint = fingerprint;
|
||||||
|
- settings->mOverrideBits = ob;
|
||||||
|
- settings->mDBKey = dbKey;
|
||||||
|
- // remove whitespace from stored dbKey for backwards compatibility
|
||||||
|
- settings->mDBKey.StripWhitespace();
|
||||||
|
- settings->mCert = aCert;
|
||||||
|
entry->mSettings = settings;
|
||||||
|
|
||||||
|
return NS_OK;
|
||||||
|
diff --git a/security/manager/ssl/nsCertOverrideService.h b/security/manager/ssl/nsCertOverrideService.h
|
||||||
|
--- a/security/manager/ssl/nsCertOverrideService.h
|
||||||
|
+++ b/security/manager/ssl/nsCertOverrideService.h
|
||||||
|
@@ -43,8 +43,6 @@
|
||||||
|
bool mIsTemporary; // true: session only, false: stored on disk
|
||||||
|
nsCString mFingerprint;
|
||||||
|
OverrideBits mOverrideBits;
|
||||||
|
- nsCString mDBKey;
|
||||||
|
- nsCOMPtr<nsIX509Cert> mCert;
|
||||||
|
|
||||||
|
static void convertBitsToString(OverrideBits ob, nsACString& str);
|
||||||
|
static void convertStringToBits(const nsACString& str, OverrideBits& ob);
|
||||||
|
@@ -145,10 +143,8 @@
|
||||||
|
nsresult Write(const mozilla::MutexAutoLock& aProofOfLock);
|
||||||
|
nsresult AddEntryToList(const nsACString& host, int32_t port,
|
||||||
|
const OriginAttributes& aOriginAttributes,
|
||||||
|
- nsIX509Cert* aCert, const bool aIsTemporary,
|
||||||
|
+ const bool aIsTemporary,
|
||||||
|
const nsACString& fingerprint,
|
||||||
|
- nsCertOverride::OverrideBits ob,
|
||||||
|
- const nsACString& dbKey,
|
||||||
|
const mozilla::MutexAutoLock& aProofOfLock);
|
||||||
|
|
||||||
|
// Set in constructor only
|
||||||
|
diff --git a/security/manager/ssl/SSLServerCertVerification.cpp b/security/manager/ssl/SSLServerCertVerification.cpp
|
||||||
|
--- a/security/manager/ssl/SSLServerCertVerification.cpp
|
||||||
|
+++ b/security/manager/ssl/SSLServerCertVerification.cpp
|
||||||
|
@@ -791,8 +791,8 @@
|
||||||
|
aHostName, aPort, aOriginAttributes, aCert, &overrideBits,
|
||||||
|
&isTemporaryOverride, &haveOverride);
|
||||||
|
if (NS_SUCCEEDED(rv) && haveOverride) {
|
||||||
|
- // remove the errors that are already overriden
|
||||||
|
- remainingDisplayErrors &= ~overrideBits;
|
||||||
|
+ // remove all the errors
|
||||||
|
+ remainingDisplayErrors = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/security/manager/ssl/nsICertOverrideService.idl b/security/manager/ssl/nsICertOverrideService.idl
|
||||||
|
--- a/security/manager/ssl/nsICertOverrideService.idl
|
||||||
|
+++ b/security/manager/ssl/nsICertOverrideService.idl
|
||||||
|
@@ -33,17 +33,6 @@ interface nsICertOverride : nsISupports
|
||||||
|
readonly attribute int32_t port;
|
||||||
|
|
||||||
|
/**
|
||||||
|
- * Whether or not the override is only used for this
|
||||||
|
- * session (true) or stored persistently (false)
|
||||||
|
- */
|
||||||
|
- readonly attribute boolean isTemporary;
|
||||||
|
-
|
||||||
|
- /**
|
||||||
|
- * The database key for the associated certificate.
|
||||||
|
- */
|
||||||
|
- readonly attribute ACString dbKey;
|
||||||
|
-
|
||||||
|
- /**
|
||||||
|
* A combination of hostname and port in the form host:port.
|
||||||
|
* Since the port can be -1 which is equivalent to port 433 we use an
|
||||||
|
* existing function of nsCertOverrideService to create this property.
|
||||||
|
@@ -51,6 +40,11 @@ interface nsICertOverride : nsISupports
|
||||||
|
readonly attribute ACString hostPort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
+ * The fingerprint for the associated certificate.
|
||||||
|
+ */
|
||||||
|
+ readonly attribute ACString fingerprint;
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
* The origin attributes associated with this override.
|
||||||
|
*/
|
||||||
|
[implicit_jscontext]
|
||||||
|
diff --git a/security/manager/ssl/tests/mochitest/browser/browser_certificateManager.js b/security/manager/ssl/tests/mochitest/browser/browser_certificateManager.js
|
||||||
|
--- a/security/manager/ssl/tests/mochitest/browser/browser_certificateManager.js
|
||||||
|
+++ b/security/manager/ssl/tests/mochitest/browser/browser_certificateManager.js
|
||||||
|
@@ -27,9 +27,7 @@ async function checkServerCertificates(w
|
||||||
|
|
||||||
|
expectedValues.forEach((item, i) => {
|
||||||
|
let hostPort = labels[i * 3].value;
|
||||||
|
- let certString = labels[i * 3 + 1].value || labels[i * 3 + 1].textContent;
|
||||||
|
- let isTemporaryString =
|
||||||
|
- labels[i * 3 + 2].value || labels[i * 3 + 2].textContent;
|
||||||
|
+ let fingerprint = labels[i * 3 + 1].value || labels[i * 3 + 1].textContent;
|
||||||
|
|
||||||
|
Assert.equal(
|
||||||
|
hostPort,
|
||||||
|
@@ -38,15 +36,9 @@ async function checkServerCertificates(w
|
||||||
|
);
|
||||||
|
|
||||||
|
Assert.equal(
|
||||||
|
- certString,
|
||||||
|
- item.certName,
|
||||||
|
- `Expected override to have field ${item.certName}`
|
||||||
|
- );
|
||||||
|
-
|
||||||
|
- Assert.equal(
|
||||||
|
- isTemporaryString,
|
||||||
|
- item.isTemporary ? "Temporary" : "Permanent",
|
||||||
|
- `Expected override to be ${item.isTemporary ? "Temporary" : "Permanent"}`
|
||||||
|
+ fingerprint,
|
||||||
|
+ item.fingerprint,
|
||||||
|
+ `Expected override to have field ${item.fingerprint}`
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@@ -73,41 +73,6 @@
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
-async function testViewButton(win) {
|
||||||
|
- win.document.getElementById("serverList").selectedIndex = 1;
|
||||||
|
-
|
||||||
|
- Assert.ok(
|
||||||
|
- win.document.getElementById("websites_viewButton").disabled,
|
||||||
|
- "View button should be disabled for override without cert"
|
||||||
|
- );
|
||||||
|
-
|
||||||
|
- win.document.getElementById("serverList").selectedIndex = 0;
|
||||||
|
-
|
||||||
|
- Assert.ok(
|
||||||
|
- !win.document.getElementById("websites_viewButton").disabled,
|
||||||
|
- "View button should be enabled for override with cert"
|
||||||
|
- );
|
||||||
|
-
|
||||||
|
- let loaded = BrowserTestUtils.waitForNewTab(gBrowser, null, true);
|
||||||
|
-
|
||||||
|
- win.document.getElementById("websites_viewButton").click();
|
||||||
|
-
|
||||||
|
- let newTab = await loaded;
|
||||||
|
- let spec = newTab.linkedBrowser.documentURI.spec;
|
||||||
|
-
|
||||||
|
- Assert.ok(
|
||||||
|
- spec.startsWith("about:certificate"),
|
||||||
|
- "about:certificate should habe been opened"
|
||||||
|
- );
|
||||||
|
-
|
||||||
|
- let newUrl = new URL(spec);
|
||||||
|
- let certEncoded = newUrl.searchParams.get("cert");
|
||||||
|
- let certDecoded = decodeURIComponent(certEncoded);
|
||||||
|
- Assert.ok(certDecoded, "should have some certificate as cert url param");
|
||||||
|
-
|
||||||
|
- gBrowser.removeCurrentTab();
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
add_task(async function test_cert_manager_server_tab() {
|
||||||
|
let win = await openCertManager();
|
||||||
|
|
||||||
|
@@ -134,48 +99,13 @@
|
||||||
|
await checkServerCertificates(win, [
|
||||||
|
{
|
||||||
|
hostPort: "example.com:443",
|
||||||
|
- certName: "md5-ee",
|
||||||
|
- isTemporary: false,
|
||||||
|
- },
|
||||||
|
- ]);
|
||||||
|
-
|
||||||
|
- win.document.getElementById("certmanager").acceptDialog();
|
||||||
|
- await BrowserTestUtils.windowClosed(win);
|
||||||
|
-
|
||||||
|
- certOverrideService.rememberTemporaryValidityOverrideUsingFingerprint(
|
||||||
|
- "example.com",
|
||||||
|
- 9999,
|
||||||
|
- {},
|
||||||
|
- "40:20:3E:57:FB:82:95:0D:3F:62:D7:04:39:F6:32:CC:B2:2F:70:9F:3E:66:C5:35:64:6E:49:2A:F1:02:75:9F",
|
||||||
|
- Ci.nsICertOverrideService.ERROR_UNTRUSTED
|
||||||
|
- );
|
||||||
|
-
|
||||||
|
- win = await openCertManager();
|
||||||
|
-
|
||||||
|
- await checkServerCertificates(win, [
|
||||||
|
- {
|
||||||
|
- hostPort: "example.com:443",
|
||||||
|
- certName: "md5-ee",
|
||||||
|
- isTemporary: false,
|
||||||
|
- },
|
||||||
|
- {
|
||||||
|
- hostPort: "example.com:9999",
|
||||||
|
- certName: "(Not Stored)",
|
||||||
|
- isTemporary: true,
|
||||||
|
+ fingerprint: cert.sha256Fingerprint,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
- await testViewButton(win);
|
||||||
|
-
|
||||||
|
- await deleteOverride(win, 2);
|
||||||
|
+ await deleteOverride(win, 1);
|
||||||
|
|
||||||
|
- await checkServerCertificates(win, [
|
||||||
|
- {
|
||||||
|
- hostPort: "example.com:9999",
|
||||||
|
- certName: "(Not Stored)",
|
||||||
|
- isTemporary: true,
|
||||||
|
- },
|
||||||
|
- ]);
|
||||||
|
+ await checkServerCertificates(win, []);
|
||||||
|
|
||||||
|
win.document.getElementById("certmanager").acceptDialog();
|
||||||
|
await BrowserTestUtils.windowClosed(win);
|
||||||
|
diff --git a/security/manager/ssl/tests/unit/test_cert_override_read.js b/security/manager/ssl/tests/unit/test_cert_override_read.js
|
||||||
|
--- a/security/manager/ssl/tests/unit/test_cert_override_read.js
|
||||||
|
+++ b/security/manager/ssl/tests/unit/test_cert_override_read.js
|
||||||
|
@@ -11,19 +11,16 @@ function run_test() {
|
||||||
|
let cert1 = {
|
||||||
|
sha256Fingerprint:
|
||||||
|
"E9:3A:91:F6:15:11:FB:DD:02:76:DD:45:8C:4B:F4:9B:D1:14:13:91:2E:96:4B:EC:D2:4F:90:D5:F4:BB:29:5C",
|
||||||
|
- dbKey: "This isn't relevant for this test.",
|
||||||
|
};
|
||||||
|
// bad_certs/selfsigned.pem
|
||||||
|
let cert2 = {
|
||||||
|
sha256Fingerprint:
|
||||||
|
"51:BC:41:90:C1:FD:6E:73:18:19:B0:60:08:DD:A3:3D:59:B2:5B:FB:D0:3D:DD:89:19:A5:BB:C6:2B:5A:72:A7",
|
||||||
|
- dbKey: "This isn't relevant for this test.",
|
||||||
|
};
|
||||||
|
// bad_certs/noValidNames.pem
|
||||||
|
let cert3 = {
|
||||||
|
sha256Fingerprint:
|
||||||
|
"C3:A3:61:02:CA:64:CC:EC:45:1D:24:B6:A0:69:DB:DB:F0:D8:58:76:FC:50:36:52:5A:E8:40:4C:55:72:08:F4",
|
||||||
|
- dbKey: "This isn't relevant for this test.",
|
||||||
|
};
|
||||||
|
|
||||||
|
let profileDir = do_get_profile();
|
||||||
|
@@ -35,58 +35,42 @@
|
||||||
|
"# This is a generated file! Do not edit.",
|
||||||
|
"test.example.com:443:^privateBrowsingId=1\tOID.2.16.840.1.101.3.4.2.1\t" +
|
||||||
|
cert1.sha256Fingerprint +
|
||||||
|
- "\tM\t" +
|
||||||
|
- cert1.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"test.example.com:443:^privateBrowsingId=2\tOID.2.16.840.1.101.3.4.2.1\t" +
|
||||||
|
cert1.sha256Fingerprint +
|
||||||
|
+ "\t",
|
||||||
|
+ "test.example.com:443:^privateBrowsingId=3\tOID.2.16.840.1.101.3.4.2.1\t" + // includes bits and dbKey (now obsolete)
|
||||||
|
+ cert1.sha256Fingerprint +
|
||||||
|
"\tM\t" +
|
||||||
|
- cert1.dbKey,
|
||||||
|
+ "AAAAAAAAAAAAAAACAAAAFjA5MBQxEjAQBgNVBAMMCWxvY2FsaG9zdA==",
|
||||||
|
"example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t" +
|
||||||
|
cert2.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert2.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"[::1]:443:\tOID.2.16.840.1.101.3.4.2.1\t" + // IPv6
|
||||||
|
cert2.sha256Fingerprint +
|
||||||
|
- "\tM\t" +
|
||||||
|
- cert2.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"old.example.com:443\tOID.2.16.840.1.101.3.4.2.1\t" + // missing attributes (defaulted)
|
||||||
|
cert1.sha256Fingerprint +
|
||||||
|
- "\tM\t" +
|
||||||
|
- cert1.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
":443:\tOID.2.16.840.1.101.3.4.2.1\t" + // missing host name
|
||||||
|
cert3.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"example.com::\tOID.2.16.840.1.101.3.4.2.1\t" + // missing port
|
||||||
|
cert3.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
- "example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t" + // wrong fingerprint/dbkey
|
||||||
|
+ "\t",
|
||||||
|
+ "example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t" + // wrong fingerprint
|
||||||
|
cert2.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"example.com:443:\tOID.0.00.000.0.000.0.0.0.0\t" + // bad OID
|
||||||
|
cert3.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"example.com:443:\t.0.0.0.0\t" + // malformed OID
|
||||||
|
cert3.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
+ "\t",
|
||||||
|
"example.com:443:\t\t" + // missing OID
|
||||||
|
cert3.sha256Fingerprint +
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
- "example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t" + // missing fingerprint
|
||||||
|
- "\tU\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
- "example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t" + // missing override bits
|
||||||
|
- cert3.sha256Fingerprint +
|
||||||
|
- "\t\t" +
|
||||||
|
- cert3.dbKey,
|
||||||
|
- "example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t" + // missing dbkey
|
||||||
|
- cert3.sha256Fingerprint +
|
||||||
|
- "\tU\t",
|
||||||
|
+ "\t",
|
||||||
|
+ "example.com:443:\tOID.2.16.840.1.101.3.4.2.1\t", // missing fingerprint
|
||||||
|
];
|
||||||
|
writeLinesAndClose(lines, outputStream);
|
||||||
|
let overrideService = Cc["@mozilla.org/security/certoverride;1"].getService(
|
||||||
1
mozilla-api-key
Normal file
1
mozilla-api-key
Normal file
@ -0,0 +1 @@
|
|||||||
|
9008bb7e-1e22-4038-94fe-047dd48ccc0b
|
||||||
30
mozilla-bmo1005535.patch
Normal file
30
mozilla-bmo1005535.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User Steve Singer <steve@ssinger.info>
|
||||||
|
# Date 1558451540 -7200
|
||||||
|
# Tue May 21 17:12:20 2019 +0200
|
||||||
|
# Node ID 433beec63e6b5f409683af20a0c1ab137cc7bfad
|
||||||
|
# Parent c0fdccc716e80a6d289c94f5d507ae141c62a3bf
|
||||||
|
Bug 1005535 - Get skia GPU building on big endian.
|
||||||
|
|
||||||
|
diff --git a/gfx/skia/skia/src/gpu/GrColor.h b/gfx/skia/skia/src/gpu/GrColor.h
|
||||||
|
--- a/gfx/skia/skia/src/gpu/GrColor.h
|
||||||
|
+++ b/gfx/skia/skia/src/gpu/GrColor.h
|
||||||
|
@@ -59,17 +59,17 @@ static inline GrColor GrColorPackRGBA(un
|
||||||
|
#define GrColorUnpackG(color) (((color) >> GrColor_SHIFT_G) & 0xFF)
|
||||||
|
#define GrColorUnpackB(color) (((color) >> GrColor_SHIFT_B) & 0xFF)
|
||||||
|
#define GrColorUnpackA(color) (((color) >> GrColor_SHIFT_A) & 0xFF)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Since premultiplied means that alpha >= color, we construct a color with
|
||||||
|
* each component==255 and alpha == 0 to be "illegal"
|
||||||
|
*/
|
||||||
|
-#define GrColor_ILLEGAL (~(0xFF << GrColor_SHIFT_A))
|
||||||
|
+#define GrColor_ILLEGAL ((uint32_t)(~(0xFF << GrColor_SHIFT_A)))
|
||||||
|
|
||||||
|
/** Normalizes and coverts an uint8_t to a float. [0, 255] -> [0.0, 1.0] */
|
||||||
|
static inline float GrNormalizeByteToFloat(uint8_t value) {
|
||||||
|
static const float ONE_OVER_255 = 1.f / 255.f;
|
||||||
|
return value * ONE_OVER_255;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Used to pick vertex attribute types. */
|
||||||
121
mozilla-bmo1504834-part1.patch
Normal file
121
mozilla-bmo1504834-part1.patch
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent b5471d23321d16a0bacc25b7afd27d2e16adba1a
|
||||||
|
Taken from https://bugzilla.mozilla.org/show_bug.cgi?id=1504834
|
||||||
|
|
||||||
|
diff --git a/gfx/2d/DrawTargetSkia.cpp b/gfx/2d/DrawTargetSkia.cpp
|
||||||
|
--- a/gfx/2d/DrawTargetSkia.cpp
|
||||||
|
+++ b/gfx/2d/DrawTargetSkia.cpp
|
||||||
|
@@ -130,18 +130,17 @@ static IntRect CalculateSurfaceBounds(co
|
||||||
|
Rect sampledBounds = inverse.TransformBounds(*aBounds);
|
||||||
|
if (!sampledBounds.ToIntRect(&bounds)) {
|
||||||
|
return surfaceBounds;
|
||||||
|
}
|
||||||
|
|
||||||
|
return surfaceBounds.Intersect(bounds);
|
||||||
|
}
|
||||||
|
|
||||||
|
-static const int kARGBAlphaOffset =
|
||||||
|
- SurfaceFormat::A8R8G8B8_UINT32 == SurfaceFormat::B8G8R8A8 ? 3 : 0;
|
||||||
|
+static const int kARGBAlphaOffset = 0; // Skia is always BGRA SurfaceFormat::A8R8G8B8_UINT32 == SurfaceFormat::B8G8R8A8 ? 3 : 0;
|
||||||
|
|
||||||
|
static bool VerifyRGBXFormat(uint8_t* aData, const IntSize& aSize,
|
||||||
|
const int32_t aStride, SurfaceFormat aFormat) {
|
||||||
|
if (aFormat != SurfaceFormat::B8G8R8X8 || aSize.IsEmpty()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
// We should've initialized the data to be opaque already
|
||||||
|
// On debug builds, verify that this is actually true.
|
||||||
|
diff --git a/gfx/2d/Types.h b/gfx/2d/Types.h
|
||||||
|
--- a/gfx/2d/Types.h
|
||||||
|
+++ b/gfx/2d/Types.h
|
||||||
|
@@ -84,25 +84,18 @@ enum class SurfaceFormat : int8_t {
|
||||||
|
Depth,
|
||||||
|
|
||||||
|
// This represents the unknown format.
|
||||||
|
UNKNOWN,
|
||||||
|
|
||||||
|
// The following values are endian-independent synonyms. The _UINT32 suffix
|
||||||
|
// indicates that the name reflects the layout when viewed as a uint32_t
|
||||||
|
// value.
|
||||||
|
-#if MOZ_LITTLE_ENDIAN()
|
||||||
|
A8R8G8B8_UINT32 = B8G8R8A8, // 0xAARRGGBB
|
||||||
|
X8R8G8B8_UINT32 = B8G8R8X8, // 0x00RRGGBB
|
||||||
|
-#elif MOZ_BIG_ENDIAN()
|
||||||
|
- A8R8G8B8_UINT32 = A8R8G8B8, // 0xAARRGGBB
|
||||||
|
- X8R8G8B8_UINT32 = X8R8G8B8, // 0x00RRGGBB
|
||||||
|
-#else
|
||||||
|
-# error "bad endianness"
|
||||||
|
-#endif
|
||||||
|
|
||||||
|
// The following values are OS and endian-independent synonyms.
|
||||||
|
//
|
||||||
|
// TODO(aosmond): When everything blocking bug 1581828 has been resolved, we
|
||||||
|
// can make this use R8B8G8A8 and R8B8G8X8 for non-Windows platforms.
|
||||||
|
OS_RGBA = A8R8G8B8_UINT32,
|
||||||
|
OS_RGBX = X8R8G8B8_UINT32
|
||||||
|
};
|
||||||
|
diff --git a/gfx/skia/skia/third_party/skcms/skcms.cc b/gfx/skia/skia/third_party/skcms/skcms.cc
|
||||||
|
--- a/gfx/skia/skia/third_party/skcms/skcms.cc
|
||||||
|
+++ b/gfx/skia/skia/third_party/skcms/skcms.cc
|
||||||
|
@@ -25,16 +25,18 @@
|
||||||
|
// it'd be a lot slower. But we want all those headers included so we
|
||||||
|
// can use their features after runtime checks later.
|
||||||
|
#include <smmintrin.h>
|
||||||
|
#include <avxintrin.h>
|
||||||
|
#include <avx2intrin.h>
|
||||||
|
#include <avx512fintrin.h>
|
||||||
|
#include <avx512dqintrin.h>
|
||||||
|
#endif
|
||||||
|
+#else
|
||||||
|
+ #define SKCMS_PORTABLE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// sizeof(x) will return size_t, which is 32-bit on some machines and 64-bit on others.
|
||||||
|
// We have better testing on 64-bit machines, so force 32-bit machines to behave like 64-bit.
|
||||||
|
//
|
||||||
|
// Please do not use sizeof() directly, and size_t only when required.
|
||||||
|
// (We have no way of enforcing these requests...)
|
||||||
|
#define SAFE_SIZEOF(x) ((uint64_t)sizeof(x))
|
||||||
|
@@ -275,30 +277,38 @@ enum {
|
||||||
|
skcms_Signature_sf32 = 0x73663332,
|
||||||
|
// XYZ is also a PCS signature, so it's defined in skcms.h
|
||||||
|
// skcms_Signature_XYZ = 0x58595A20,
|
||||||
|
};
|
||||||
|
|
||||||
|
static uint16_t read_big_u16(const uint8_t* ptr) {
|
||||||
|
uint16_t be;
|
||||||
|
memcpy(&be, ptr, sizeof(be));
|
||||||
|
-#if defined(_MSC_VER)
|
||||||
|
+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
|
+ return be;
|
||||||
|
+#else
|
||||||
|
+ #if defined(_MSC_VER)
|
||||||
|
return _byteswap_ushort(be);
|
||||||
|
-#else
|
||||||
|
+ #else
|
||||||
|
return __builtin_bswap16(be);
|
||||||
|
+ #endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint32_t read_big_u32(const uint8_t* ptr) {
|
||||||
|
uint32_t be;
|
||||||
|
memcpy(&be, ptr, sizeof(be));
|
||||||
|
-#if defined(_MSC_VER)
|
||||||
|
+#if __BYTE_ORDER == __ORDER_BIG_ENDIAN__
|
||||||
|
+ return be;
|
||||||
|
+#else
|
||||||
|
+ #if defined(_MSC_VER)
|
||||||
|
return _byteswap_ulong(be);
|
||||||
|
-#else
|
||||||
|
+ #else
|
||||||
|
return __builtin_bswap32(be);
|
||||||
|
+ #endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static int32_t read_big_i32(const uint8_t* ptr) {
|
||||||
|
return (int32_t)read_big_u32(ptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
static float read_big_fixed(const uint8_t* ptr) {
|
||||||
64
mozilla-bmo1504834-part3.patch
Normal file
64
mozilla-bmo1504834-part3.patch
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent d1d66f7e4d0e7fd45e91e4fcee07555e72046d48
|
||||||
|
For FF68, AntiAliasing of XULTexts seem to be broken on big endian (s390x). Text and icons of the sandwich-menu to the
|
||||||
|
right of the address bar, as well as plugin-windows appears transparant, which usually means unreadable (white on white).
|
||||||
|
|
||||||
|
diff --git a/gfx/skia/skia/include/private/SkNx.h b/gfx/skia/skia/include/private/SkNx.h
|
||||||
|
--- a/gfx/skia/skia/include/private/SkNx.h
|
||||||
|
+++ b/gfx/skia/skia/include/private/SkNx.h
|
||||||
|
@@ -233,17 +233,28 @@ struct SkNx<1,T> {
|
||||||
|
AI SkNx operator<<(int bits) const { return fVal << bits; }
|
||||||
|
AI SkNx operator>>(int bits) const { return fVal >> bits; }
|
||||||
|
|
||||||
|
AI SkNx operator+(const SkNx& y) const { return fVal + y.fVal; }
|
||||||
|
AI SkNx operator-(const SkNx& y) const { return fVal - y.fVal; }
|
||||||
|
AI SkNx operator*(const SkNx& y) const { return fVal * y.fVal; }
|
||||||
|
AI SkNx operator/(const SkNx& y) const { return fVal / y.fVal; }
|
||||||
|
|
||||||
|
+ // On Big endian the commented out variant doesn't work,
|
||||||
|
+ // and honestly, I have no idea why it exists in the first place.
|
||||||
|
+ // The reason its broken is, I think, that it defaults to the double-variant of ToBits()
|
||||||
|
+ // which gets a 64-bit integer, and FromBits returns 32-bit,
|
||||||
|
+ // cutting off the wrong half again.
|
||||||
|
+ // Overall, I see no reason to have ToBits and FromBits at all (even for floats/doubles).
|
||||||
|
+ // Still we are only "fixing" this for big endian and leave little endian alone (never touch a running system)
|
||||||
|
+#ifdef SK_CPU_BENDIAN
|
||||||
|
+ AI SkNx operator&(const SkNx& y) const { return fVal & y.fVal; }
|
||||||
|
+#else
|
||||||
|
AI SkNx operator&(const SkNx& y) const { return FromBits(ToBits(fVal) & ToBits(y.fVal)); }
|
||||||
|
+#endif
|
||||||
|
AI SkNx operator|(const SkNx& y) const { return FromBits(ToBits(fVal) | ToBits(y.fVal)); }
|
||||||
|
AI SkNx operator^(const SkNx& y) const { return FromBits(ToBits(fVal) ^ ToBits(y.fVal)); }
|
||||||
|
|
||||||
|
AI SkNx operator==(const SkNx& y) const { return FromBits(fVal == y.fVal ? ~0 : 0); }
|
||||||
|
AI SkNx operator!=(const SkNx& y) const { return FromBits(fVal != y.fVal ? ~0 : 0); }
|
||||||
|
AI SkNx operator<=(const SkNx& y) const { return FromBits(fVal <= y.fVal ? ~0 : 0); }
|
||||||
|
AI SkNx operator>=(const SkNx& y) const { return FromBits(fVal >= y.fVal ? ~0 : 0); }
|
||||||
|
AI SkNx operator< (const SkNx& y) const { return FromBits(fVal < y.fVal ? ~0 : 0); }
|
||||||
|
diff --git a/gfx/skia/skia/src/opts/SkBlitMask_opts.h b/gfx/skia/skia/src/opts/SkBlitMask_opts.h
|
||||||
|
--- a/gfx/skia/skia/src/opts/SkBlitMask_opts.h
|
||||||
|
+++ b/gfx/skia/skia/src/opts/SkBlitMask_opts.h
|
||||||
|
@@ -198,17 +198,23 @@ namespace SK_OPTS_NS {
|
||||||
|
const SkAlpha* mask, size_t maskRB,
|
||||||
|
int w, int h) {
|
||||||
|
auto fn = [](const Sk4px& d, const Sk4px& aa) {
|
||||||
|
// = (s + d(1-sa))aa + d(1-aa)
|
||||||
|
// = s*aa + d(1-sa*aa)
|
||||||
|
// ~~~>
|
||||||
|
// a = 1*aa + d(1-1*aa) = aa + d(1-aa)
|
||||||
|
// c = 0*aa + d(1-1*aa) = d(1-aa)
|
||||||
|
+
|
||||||
|
+ // For big endian we have to swap the alpha-mask from 0,0,0,255 to 255,0,0,0
|
||||||
|
+#ifdef SK_CPU_BENDIAN
|
||||||
|
+ return Sk4px(Sk16b(aa) & Sk16b(255,0,0,0, 255,0,0,0, 255,0,0,0, 255,0,0,0))
|
||||||
|
+#else
|
||||||
|
return Sk4px(Sk16b(aa) & Sk16b(0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255))
|
||||||
|
+#endif
|
||||||
|
+ d.approxMulDiv255(aa.inv());
|
||||||
|
};
|
||||||
|
while (h --> 0) {
|
||||||
|
Sk4px::MapDstAlpha(w, dst, mask, fn);
|
||||||
|
dst += dstRB / sizeof(*dst);
|
||||||
|
mask += maskRB / sizeof(*mask);
|
||||||
|
}
|
||||||
|
}
|
||||||
35
mozilla-bmo849632.patch
Normal file
35
mozilla-bmo849632.patch
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent 3de59fe1b8708c01e134ce698c4232b8a854f617
|
||||||
|
Problem: webGL sites are displayed in the wrong color (usually blue-ish)
|
||||||
|
Solution: Problem is with skia once again. Output of webgl seems endian-correct, but skia only
|
||||||
|
knows how to deal with little endian.
|
||||||
|
So we swizzle the output of webgl after reading it from readpixels()
|
||||||
|
Note: This does not fix all webGL sites, but is a step in the right direction
|
||||||
|
|
||||||
|
diff --git a/gfx/gl/GLContext.h b/gfx/gl/GLContext.h
|
||||||
|
--- a/gfx/gl/GLContext.h
|
||||||
|
+++ b/gfx/gl/GLContext.h
|
||||||
|
@@ -1548,16 +1548,23 @@ class GLContext : public GenericAtomicRe
|
||||||
|
AFTER_GL_CALL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void raw_fReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
|
||||||
|
GLenum format, GLenum type, GLvoid* pixels) {
|
||||||
|
BEFORE_GL_CALL;
|
||||||
|
mSymbols.fReadPixels(x, y, width, height, format, type, pixels);
|
||||||
|
OnSyncCall();
|
||||||
|
+#if MOZ_BIG_ENDIAN()
|
||||||
|
+ uint8_t* itr = (uint8_t*)pixels;
|
||||||
|
+ for (GLsizei i = 0; i < width * height; i++) {
|
||||||
|
+ NativeEndian::swapToLittleEndianInPlace((uint32_t*)itr, 1);
|
||||||
|
+ itr += 4;
|
||||||
|
+ }
|
||||||
|
+#endif
|
||||||
|
AFTER_GL_CALL;
|
||||||
|
mHeavyGLCallsSinceLastFlush = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
|
||||||
|
GLenum format, GLenum type, GLvoid* pixels);
|
||||||
|
|
||||||
|
public:
|
||||||
29
mozilla-bmo998749.patch
Normal file
29
mozilla-bmo998749.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User msirringhaus@suse.de
|
||||||
|
# Date 1583738770 -3600
|
||||||
|
# Mon Mar 09 08:26:10 2020 +0100
|
||||||
|
# Node ID 34676feac1a542e409e22acf5b98735f8313b1ce
|
||||||
|
# Parent 506857dace0a08d1c9685e3ac264646590b3e27f
|
||||||
|
[mq]: mozilla-bmo998749.patch
|
||||||
|
|
||||||
|
diff -r 506857dace0a -r 34676feac1a5 gfx/2d/FilterProcessing.h
|
||||||
|
--- a/gfx/2d/FilterProcessing.h Fri Feb 28 12:31:51 2020 +0100
|
||||||
|
+++ b/gfx/2d/FilterProcessing.h Mon Mar 09 08:26:10 2020 +0100
|
||||||
|
@@ -13,10 +13,17 @@
|
||||||
|
namespace mozilla {
|
||||||
|
namespace gfx {
|
||||||
|
|
||||||
|
+#if MOZ_BIG_ENDIAN()
|
||||||
|
+const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_B = 3;
|
||||||
|
+const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_G = 2;
|
||||||
|
+const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_R = 1;
|
||||||
|
+const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_A = 0;
|
||||||
|
+#else
|
||||||
|
const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_B = 0;
|
||||||
|
const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_G = 1;
|
||||||
|
const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_R = 2;
|
||||||
|
const ptrdiff_t B8G8R8A8_COMPONENT_BYTEOFFSET_A = 3;
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
class FilterProcessing {
|
||||||
|
public:
|
||||||
14
mozilla-build-arm.patch
Normal file
14
mozilla-build-arm.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
diff -up firefox-52.0/gfx/skia/skia/include/core/SkPreConfig.h.arm firefox-52.0/gfx/skia/skia/include/core/SkPreConfig.h
|
||||||
|
--- firefox-52.0/gfx/skia/skia/include/core/SkPreConfig.h.arm 2017-03-03 13:53:52.480754536 +0100
|
||||||
|
+++ firefox-52.0/gfx/skia/skia/include/core/SkPreConfig.h 2017-03-03 13:56:01.476018102 +0100
|
||||||
|
@@ -203,6 +203,10 @@
|
||||||
|
#define SK_ARM_HAS_CRC32
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#if defined(__aarch64__)
|
||||||
|
+ #undef SK_ARM_HAS_NEON
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#if !defined(SKIA_IMPLEMENTATION)
|
||||||
51
mozilla-s390x-skia-gradient.patch
Normal file
51
mozilla-s390x-skia-gradient.patch
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent acf59ea86dd1d878b43920832093f082dcfc61c0
|
||||||
|
|
||||||
|
diff -r acf59ea86dd1 gfx/skia/skia/src/shaders/gradients/Sk4fLinearGradient.cpp
|
||||||
|
--- a/gfx/skia/skia/src/shaders/gradients/Sk4fLinearGradient.cpp Mon Mar 09 08:26:10 2020 +0100
|
||||||
|
+++ b/gfx/skia/skia/src/shaders/gradients/Sk4fLinearGradient.cpp Fri Mar 27 13:30:28 2020 +0100
|
||||||
|
@@ -7,7 +7,7 @@
|
||||||
|
|
||||||
|
#include "include/core/SkPaint.h"
|
||||||
|
#include "src/shaders/gradients/Sk4fLinearGradient.h"
|
||||||
|
-
|
||||||
|
+#include "src/core/SkEndian.h"
|
||||||
|
#include <cmath>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
@@ -28,6 +28,9 @@
|
||||||
|
|
||||||
|
while (n >= 4) {
|
||||||
|
DstTraits<premul>::store4x(c0, c1, c2, c3, dst, bias0, bias1);
|
||||||
|
+#ifdef SK_CPU_BENDIAN
|
||||||
|
+ SkEndianSwap32s(dst, 4);
|
||||||
|
+#endif
|
||||||
|
dst += 4;
|
||||||
|
|
||||||
|
c0 = c0 + dc4;
|
||||||
|
@@ -37,12 +40,23 @@
|
||||||
|
n -= 4;
|
||||||
|
}
|
||||||
|
if (n & 2) {
|
||||||
|
- DstTraits<premul>::store(c0, dst++, bias0);
|
||||||
|
- DstTraits<premul>::store(c1, dst++, bias1);
|
||||||
|
+ DstTraits<premul>::store(c0, dst, bias0);
|
||||||
|
+#ifdef SK_CPU_BENDIAN
|
||||||
|
+ *dst = SkEndianSwap32(*dst);
|
||||||
|
+#endif
|
||||||
|
+ ++dst;
|
||||||
|
+ DstTraits<premul>::store(c1, dst, bias1);
|
||||||
|
+#ifdef SK_CPU_BENDIAN
|
||||||
|
+ *dst = SkEndianSwap32(*dst);
|
||||||
|
+#endif
|
||||||
|
+ ++dst;
|
||||||
|
c0 = c0 + dc2;
|
||||||
|
}
|
||||||
|
if (n & 1) {
|
||||||
|
DstTraits<premul>::store(c0, dst, bias0);
|
||||||
|
+#ifdef SK_CPU_BENDIAN
|
||||||
|
+ *dst = SkEndianSwap32(*dst);
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
2
node-stdout-nonblocking-wrapper
Normal file
2
node-stdout-nonblocking-wrapper
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
exec node "$@" 2>&1 | cat -
|
||||||
34
one_swizzle_to_rule_them_all.patch
Normal file
34
one_swizzle_to_rule_them_all.patch
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User M. Sirringhaus <msirringhaus@suse.de>
|
||||||
|
# Date 1645518286 -3600
|
||||||
|
# Tue Feb 22 09:24:46 2022 +0100
|
||||||
|
# Node ID 494640792b4677f6462e95b90a54a4e22aeb738b
|
||||||
|
# Parent 81832d035e101471dcf52dd91de287268add7a91
|
||||||
|
imported patch one_swizzle_to_rule_them_all.patch
|
||||||
|
|
||||||
|
Index: firefox-102.0/gfx/webrender_bindings/RenderCompositorSWGL.cpp
|
||||||
|
===================================================================
|
||||||
|
--- firefox-102.0.orig/gfx/webrender_bindings/RenderCompositorSWGL.cpp
|
||||||
|
+++ firefox-102.0/gfx/webrender_bindings/RenderCompositorSWGL.cpp
|
||||||
|
@@ -7,6 +7,7 @@
|
||||||
|
#include "RenderCompositorSWGL.h"
|
||||||
|
|
||||||
|
#include "mozilla/gfx/Logging.h"
|
||||||
|
+#include "mozilla/gfx/Swizzle.h"
|
||||||
|
#include "mozilla/widget/CompositorWidget.h"
|
||||||
|
|
||||||
|
#ifdef MOZ_WIDGET_GTK
|
||||||
|
@@ -235,6 +237,13 @@ void RenderCompositorSWGL::CommitMappedB
|
||||||
|
}
|
||||||
|
mDT->Flush();
|
||||||
|
|
||||||
|
+#if MOZ_BIG_ENDIAN()
|
||||||
|
+ // One swizzle to rule them all.
|
||||||
|
+ gfx::SwizzleData(mMappedData, mMappedStride, gfx::SurfaceFormat::B8G8R8A8,
|
||||||
|
+ mMappedData, mMappedStride, gfx::SurfaceFormat::A8R8G8B8,
|
||||||
|
+ mDT->GetSize());
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
// Done with the DT. Hand it back to the widget and clear out any trace of it.
|
||||||
|
mWidget->EndRemoteDrawingInRegion(mDT, mDirtyRegion);
|
||||||
|
mDirtyRegion.SetEmpty();
|
||||||
115
pgo.patch
Normal file
115
pgo.patch
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
diff -up firefox-99.0/build/moz.configure/lto-pgo.configure.pgo firefox-99.0/build/moz.configure/lto-pgo.configure
|
||||||
|
--- firefox-99.0/build/moz.configure/lto-pgo.configure.pgo 2022-03-31 01:24:38.000000000 +0200
|
||||||
|
+++ firefox-99.0/build/moz.configure/lto-pgo.configure 2022-04-04 10:15:45.387694143 +0200
|
||||||
|
@@ -247,8 +247,8 @@ def lto(
|
||||||
|
cflags.append("-flto")
|
||||||
|
ldflags.append("-flto")
|
||||||
|
else:
|
||||||
|
- cflags.append("-flto=thin")
|
||||||
|
- ldflags.append("-flto=thin")
|
||||||
|
+ cflags.append("-flto")
|
||||||
|
+ ldflags.append("-flto")
|
||||||
|
|
||||||
|
if target.os == "Android" and value == "cross":
|
||||||
|
# Work around https://github.com/rust-lang/rust/issues/90088
|
||||||
|
@@ -264,7 +264,7 @@ def lto(
|
||||||
|
if value == "full":
|
||||||
|
cflags.append("-flto")
|
||||||
|
else:
|
||||||
|
- cflags.append("-flto=thin")
|
||||||
|
+ cflags.append("-flto")
|
||||||
|
# With clang-cl, -flto can only be used with -c or -fuse-ld=lld.
|
||||||
|
# AC_TRY_LINKs during configure don't have -c, so pass -fuse-ld=lld.
|
||||||
|
cflags.append("-fuse-ld=lld")
|
||||||
|
diff -up firefox-99.0/build/pgo/profileserver.py.pgo firefox-99.0/build/pgo/profileserver.py
|
||||||
|
--- firefox-99.0/build/pgo/profileserver.py.pgo 2022-03-31 01:24:38.000000000 +0200
|
||||||
|
+++ firefox-99.0/build/pgo/profileserver.py 2022-04-04 10:15:45.387694143 +0200
|
||||||
|
@@ -11,7 +11,7 @@ import glob
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
import mozcrash
|
||||||
|
-from mozbuild.base import MozbuildObject, BinaryNotFoundException
|
||||||
|
+from mozbuild.base import MozbuildObject, BinaryNotFoundException, BuildEnvironmentNotFoundException
|
||||||
|
from mozfile import TemporaryDirectory
|
||||||
|
from mozhttpd import MozHttpd
|
||||||
|
from mozprofile import FirefoxProfile, Preferences
|
||||||
|
@@ -87,9 +87,22 @@ if __name__ == "__main__":
|
||||||
|
locations = ServerLocations()
|
||||||
|
locations.add_host(host="127.0.0.1", port=PORT, options="primary,privileged")
|
||||||
|
|
||||||
|
- old_profraw_files = glob.glob("*.profraw")
|
||||||
|
- for f in old_profraw_files:
|
||||||
|
- os.remove(f)
|
||||||
|
+ using_gcc = False
|
||||||
|
+ try:
|
||||||
|
+ if build.config_environment.substs.get('CC_TYPE') == 'gcc':
|
||||||
|
+ using_gcc = True
|
||||||
|
+ except BuildEnvironmentNotFoundException:
|
||||||
|
+ pass
|
||||||
|
+
|
||||||
|
+ if using_gcc:
|
||||||
|
+ for dirpath, _, filenames in os.walk('.'):
|
||||||
|
+ for f in filenames:
|
||||||
|
+ if f.endswith('.gcda'):
|
||||||
|
+ os.remove(os.path.join(dirpath, f))
|
||||||
|
+ else:
|
||||||
|
+ old_profraw_files = glob.glob('*.profraw')
|
||||||
|
+ for f in old_profraw_files:
|
||||||
|
+ os.remove(f)
|
||||||
|
|
||||||
|
with TemporaryDirectory() as profilePath:
|
||||||
|
# TODO: refactor this into mozprofile
|
||||||
|
@@ -212,6 +225,10 @@ if __name__ == "__main__":
|
||||||
|
print("Firefox exited successfully, but produced a crashreport")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
+ print('Copying profile data....')
|
||||||
|
+ os.system('pwd');
|
||||||
|
+ os.system('tar cf profdata.tar.gz `find . -name "*.gcda"`; cd ..; tar xf instrumented/profdata.tar.gz;');
|
||||||
|
+
|
||||||
|
llvm_profdata = env.get("LLVM_PROFDATA")
|
||||||
|
if llvm_profdata:
|
||||||
|
profraw_files = glob.glob("*.profraw")
|
||||||
|
diff -up firefox-99.0/build/unix/mozconfig.unix.pgo firefox-99.0/build/unix/mozconfig.unix
|
||||||
|
--- firefox-99.0/build/unix/mozconfig.unix.pgo 2022-03-31 01:24:38.000000000 +0200
|
||||||
|
+++ firefox-99.0/build/unix/mozconfig.unix 2022-04-04 10:15:45.387694143 +0200
|
||||||
|
@@ -4,6 +4,15 @@ if [ -n "$FORCE_GCC" ]; then
|
||||||
|
CC="$MOZ_FETCHES_DIR/gcc/bin/gcc"
|
||||||
|
CXX="$MOZ_FETCHES_DIR/gcc/bin/g++"
|
||||||
|
|
||||||
|
+ if [ -n "$MOZ_PGO" ]; then
|
||||||
|
+ if [ -z "$USE_ARTIFACT" ]; then
|
||||||
|
+ ac_add_options --enable-lto
|
||||||
|
+ fi
|
||||||
|
+ export AR="$topsrcdir/gcc/bin/gcc-ar"
|
||||||
|
+ export NM="$topsrcdir/gcc/bin/gcc-nm"
|
||||||
|
+ export RANLIB="$topsrcdir/gcc/bin/gcc-ranlib"
|
||||||
|
+ fi
|
||||||
|
+
|
||||||
|
# We want to make sure we use binutils and other binaries in the tooltool
|
||||||
|
# package.
|
||||||
|
mk_add_options "export PATH=$MOZ_FETCHES_DIR/gcc/bin:$PATH"
|
||||||
|
diff -up firefox-99.0/extensions/spellcheck/src/moz.build.pgo firefox-99.0/extensions/spellcheck/src/moz.build
|
||||||
|
--- firefox-99.0/extensions/spellcheck/src/moz.build.pgo 2022-03-31 01:24:50.000000000 +0200
|
||||||
|
+++ firefox-99.0/extensions/spellcheck/src/moz.build 2022-04-04 10:15:45.387694143 +0200
|
||||||
|
@@ -28,3 +28,5 @@ EXPORTS.mozilla += [
|
||||||
|
"mozInlineSpellChecker.h",
|
||||||
|
"mozSpellChecker.h",
|
||||||
|
]
|
||||||
|
+
|
||||||
|
+CXXFLAGS += ['-fno-devirtualize']
|
||||||
|
diff -up firefox-99.0/toolkit/components/terminator/nsTerminator.cpp.pgo firefox-99.0/toolkit/components/terminator/nsTerminator.cpp
|
||||||
|
--- firefox-99.0/toolkit/components/terminator/nsTerminator.cpp.pgo 2022-04-04 10:15:45.387694143 +0200
|
||||||
|
+++ firefox-99.0/toolkit/components/terminator/nsTerminator.cpp 2022-04-04 10:19:07.022239556 +0200
|
||||||
|
@@ -466,6 +466,11 @@ void nsTerminator::StartWatchdog() {
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+ // Disable watchdog for PGO train builds - writting profile information at
|
||||||
|
+ // exit may take time and it is better to make build hang rather than
|
||||||
|
+ // silently produce poorly performing binary.
|
||||||
|
+ crashAfterMS = INT32_MAX;
|
||||||
|
+
|
||||||
|
UniquePtr<Options> options(new Options());
|
||||||
|
// crashAfterTicks is guaranteed to be > 0 as
|
||||||
|
// crashAfterMS >= ADDITIONAL_WAIT_BEFORE_CRASH_MS >> HEARTBEAT_INTERVAL_MS
|
||||||
13
print-error-reftest
Normal file
13
print-error-reftest
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# Print reftest failures and compose them to html
|
||||||
|
|
||||||
|
TEST_DIR="$1"
|
||||||
|
TEST_FLAVOUR="$2"
|
||||||
|
OUTPUT_FILE="failures-reftest$TEST_FLAVOUR.html"
|
||||||
|
|
||||||
|
grep --text -e "REFTEST TEST-UNEXPECTED-PASS" -e "REFTEST TEST-UNEXPECTED-FAIL" -e "IMAGE 1 (TEST):" -e "IMAGE 2 (REFERENCE):" $TEST_DIR/reftest$TEST_FLAVOUR 2>&1 > $OUTPUT_FILE
|
||||||
|
sed -i '/REFTEST IMAGE 1/a ">' $OUTPUT_FILE
|
||||||
|
sed -i '/REFTEST IMAGE 2/a "><BR><BR>' $OUTPUT_FILE
|
||||||
|
sed -i '/REFTEST TEST/a <BR>' $OUTPUT_FILE
|
||||||
|
sed -i -e 's/^REFTEST IMAGE 1 (TEST): /<img border=2 src="/' $OUTPUT_FILE
|
||||||
|
sed -i -e 's/^REFTEST IMAGE 2 (REFERENCE): /<img border=2 src="/' $OUTPUT_FILE
|
||||||
9
print-errors
Normal file
9
print-errors
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# Print failed tests
|
||||||
|
|
||||||
|
TEST_DIR=$1
|
||||||
|
TEST_FLAVOUR=$2
|
||||||
|
|
||||||
|
grep "TEST-UNEXPECTED-FAIL" $TEST_DIR/mochitest$TEST_FLAVOUR 2>&1 > failures-mochitest$TEST_FLAVOUR.txt
|
||||||
|
grep --text -e " FAIL " -e " TIMEOUT " $TEST_DIR/xpcshell$TEST_FLAVOUR 2>&1 > failures-xpcshell$TEST_FLAVOUR.txt
|
||||||
|
grep --text -e "REFTEST TEST-UNEXPECTED-PASS" -e "REFTEST TEST-UNEXPECTED-FAIL" $TEST_DIR/reftest$TEST_FLAVOUR 2>&1 > failures-reftest$TEST_FLAVOUR.txt
|
||||||
9
print_failures
Normal file
9
print_failures
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# Analyze and print test failures
|
||||||
|
|
||||||
|
export TEST_DIR="test_results"
|
||||||
|
|
||||||
|
#./print-errors $TEST_DIR ""
|
||||||
|
./print-errors $TEST_DIR "-wr"
|
||||||
|
#./print-error-reftest $TEST_DIR ""
|
||||||
|
./print-error-reftest $TEST_DIR "-wr"
|
||||||
10
print_results
Normal file
10
print_results
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# Analyze and print general test results
|
||||||
|
|
||||||
|
export TEST_DIR="test_results"
|
||||||
|
|
||||||
|
echo "Test results"
|
||||||
|
#echo "Basic compositor"
|
||||||
|
#./psummary $TEST_DIR ""
|
||||||
|
echo "WebRender"
|
||||||
|
./psummary $TEST_DIR "-wr"
|
||||||
23
process-official-tarball
Normal file
23
process-official-tarball
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
rm -rf ./process-tarball-dir
|
||||||
|
mkdir ./process-tarball-dir
|
||||||
|
tar -xJf $1 --directory process-tarball-dir
|
||||||
|
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0030-isvalid.html
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0008-isvalid.html
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly-64.svg
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly.svg
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0230-novalid.html
|
||||||
|
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0231-isvalid.html
|
||||||
|
rm -vf ./process-tarball-dir/*/layout/inspector/tests/chrome/test_fontVariationsAPI.css
|
||||||
|
|
||||||
|
processed_tarball=${1/source/processed-source}
|
||||||
|
|
||||||
|
cd ./process-tarball-dir
|
||||||
|
tar -cf - ./* | xz -9 -T 0 -f > $processed_tarball
|
||||||
|
mv $processed_tarball ..
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
rm -rf ./process-tarball-dir
|
||||||
23
psummary
Normal file
23
psummary
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# Analyze and print specialized (basic/webrender) test results
|
||||||
|
|
||||||
|
TEST_DIR=$1
|
||||||
|
TEST_FLAVOUR=$2
|
||||||
|
|
||||||
|
MPASS=`grep "TEST_END: Test OK" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
|
||||||
|
MERR=`grep "TEST_END: Test ERROR" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
|
||||||
|
MUNEX=`grep "TEST-UNEXPECTED-FAIL" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
|
||||||
|
echo "Mochitest PASSED: $MPASS FAILED: $MERR UNEXPECTED-FAILURES: $MUNEX"
|
||||||
|
|
||||||
|
XPCPASS=`grep --text "Expected results:" $TEST_DIR/xpcshell$TEST_FLAVOUR | cut -d ' ' -f 3`
|
||||||
|
XPCFAIL=`grep --text "Unexpected results:" $TEST_DIR/xpcshell$TEST_FLAVOUR | cut -d ' ' -f 3`
|
||||||
|
echo "XPCShell: PASSED: $XPCPASS FAILED: $XPCFAIL"
|
||||||
|
|
||||||
|
CRPASS=`grep "REFTEST INFO | Successful:" $TEST_DIR/crashtest$TEST_FLAVOUR | cut -d ' ' -f 5`
|
||||||
|
CRFAIL=`grep "^REFTEST INFO | Unexpected:" $TEST_DIR/crashtest$TEST_FLAVOUR | cut -d ' ' -f 5`
|
||||||
|
echo "Crashtest: PASSED: $CRPASS FAILED: $CRFAIL"
|
||||||
|
|
||||||
|
RFPASS=`grep --text "REFTEST INFO | Successful:" $TEST_DIR/reftest$TEST_FLAVOUR | cut -d ' ' -f 5`
|
||||||
|
RFUN=`grep --text "^REFTEST INFO | Unexpected:" $TEST_DIR/reftest$TEST_FLAVOUR | cut -d ' ' -f 5`
|
||||||
|
RFKNOWN=`grep --text "REFTEST INFO | Known problems:" $TEST_DIR/reftest$TEST_FLAVOUR | cut -d ' ' -f 6`
|
||||||
|
echo "Reftest: PASSED: $RFPASS FAILED: $RFUN Known issues: $RFKNOWN"
|
||||||
12
rhbz-1173156.patch
Normal file
12
rhbz-1173156.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up firefox-60.5.0/extensions/auth/nsAuthSambaNTLM.cpp.rhbz-1173156 firefox-60.5.0/extensions/auth/nsAuthSambaNTLM.cpp
|
||||||
|
--- firefox-60.5.0/extensions/auth/nsAuthSambaNTLM.cpp.rhbz-1173156 2019-01-22 10:36:09.284069020 +0100
|
||||||
|
+++ firefox-60.5.0/extensions/auth/nsAuthSambaNTLM.cpp 2019-01-22 10:37:12.669757744 +0100
|
||||||
|
@@ -161,7 +161,7 @@ nsresult nsAuthSambaNTLM::SpawnNTLMAuthH
|
||||||
|
const char* username = PR_GetEnv("USER");
|
||||||
|
if (!username) return NS_ERROR_FAILURE;
|
||||||
|
|
||||||
|
- const char* const args[] = {"ntlm_auth",
|
||||||
|
+ const char* const args[] = {"/usr/bin/ntlm_auth",
|
||||||
|
"--helper-protocol",
|
||||||
|
"ntlmssp-client-1",
|
||||||
|
"--use-cached-creds",
|
||||||
23
rhbz-1219542-s390-build.patch
Normal file
23
rhbz-1219542-s390-build.patch
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
diff -up firefox-55.0/js/src/old-configure.in.rhbz-1219542-s390 firefox-55.0/js/src/old-configure.in
|
||||||
|
--- firefox-55.0/js/src/old-configure.in.rhbz-1219542-s390 2017-07-31 18:20:48.000000000 +0200
|
||||||
|
+++ firefox-55.0/js/src/old-configure.in 2017-08-02 14:31:32.190243669 +0200
|
||||||
|
@@ -541,7 +541,7 @@ case "$host" in
|
||||||
|
|
||||||
|
*-linux*|*-kfreebsd*-gnu|*-gnu*)
|
||||||
|
HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
|
||||||
|
- HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
|
||||||
|
+ HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O1}"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
@@ -617,8 +617,8 @@ case "$target" in
|
||||||
|
|
||||||
|
*-*linux*)
|
||||||
|
if test "$GNU_CC" -o "$GNU_CXX"; then
|
||||||
|
- MOZ_PGO_OPTIMIZE_FLAGS="-O3"
|
||||||
|
- MOZ_OPTIMIZE_FLAGS="-O3"
|
||||||
|
+ MOZ_PGO_OPTIMIZE_FLAGS="-O1"
|
||||||
|
+ MOZ_OPTIMIZE_FLAGS="-O1"
|
||||||
|
if test -z "$CLANG_CC"; then
|
||||||
|
MOZ_OPTIMIZE_FLAGS="-freorder-blocks $MOZ_OPTIMIZE_FLAGS"
|
||||||
|
fi
|
||||||
12
rhbz-1354671.patch
Normal file
12
rhbz-1354671.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up firefox-70.0/layout/base/PresShell.h.1354671 firefox-70.0/layout/base/PresShell.h
|
||||||
|
--- firefox-70.0/layout/base/PresShell.h.1354671 2019-10-22 12:33:12.987775587 +0200
|
||||||
|
+++ firefox-70.0/layout/base/PresShell.h 2019-10-22 12:36:39.999366086 +0200
|
||||||
|
@@ -257,7 +257,7 @@ class PresShell final : public nsStubDoc
|
||||||
|
* to the same aSize value. AllocateFrame is infallible and will abort
|
||||||
|
* on out-of-memory.
|
||||||
|
*/
|
||||||
|
- void* AllocateFrame(nsQueryFrame::FrameIID aID, size_t aSize) {
|
||||||
|
+ void* __attribute__((optimize("no-lifetime-dse"))) AllocateFrame(nsQueryFrame::FrameIID aID, size_t aSize) {
|
||||||
|
#define FRAME_ID(classname, ...) \
|
||||||
|
static_assert(size_t(nsQueryFrame::FrameIID::classname##_id) == \
|
||||||
|
size_t(eArenaObjectID_##classname), \
|
||||||
80
run-tests-wayland
Normal file
80
run-tests-wayland
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# usage: run-tests-wayland [test flavour]
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
|
RUN_XPCSHELL_TEST=1
|
||||||
|
RUN_REFTEST=1
|
||||||
|
RUN_MOCHITEST=1
|
||||||
|
RUN_CRASHTEST=1
|
||||||
|
|
||||||
|
while (( "$#" )); do
|
||||||
|
SELECTED_TEST=$1
|
||||||
|
if [ "$SELECTED_TEST" = "xpcshell" ] ; then
|
||||||
|
RUN_XPCSHELL_TEST=1
|
||||||
|
elif [ "$SELECTED_TEST" = "reftest" ] ; then
|
||||||
|
RUN_REFTEST=1
|
||||||
|
elif [ "$SELECTED_TEST" = "mochitest" ] ; then
|
||||||
|
RUN_MOCHITEST=1
|
||||||
|
elif [ "$SELECTED_TEST" = "crashtest" ] ; then
|
||||||
|
RUN_CRASHTEST=1
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
export MACH_USE_SYSTEM_PYTHON=1
|
||||||
|
export MOZ_NODE_PATH=/usr/bin/node
|
||||||
|
|
||||||
|
MOCHITEST_PARAMS="--timeout 1 --chunk-by-dir 4"
|
||||||
|
TEST_DIR="test_results"
|
||||||
|
mkdir $TEST_DIR
|
||||||
|
|
||||||
|
env | grep "DISPLAY"
|
||||||
|
|
||||||
|
# Fix for system nss
|
||||||
|
ln -s /usr/bin/certutil objdir/dist/bin/certutil
|
||||||
|
ln -s /usr/bin/pk12util objdir/dist/bin/pk12util
|
||||||
|
|
||||||
|
NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
|
||||||
|
|
||||||
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
|
||||||
|
if [ $RUN_XPCSHELL_TEST -ne 0 ] ; then
|
||||||
|
# ./mach xpcshell-test 2>&1 | cat - | tee $TEST_DIR/xpcshell
|
||||||
|
./mach xpcshell-test --enable-webrender 2>&1 | cat - | tee $TEST_DIR/xpcshell-wr
|
||||||
|
sleep 60
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Basic render testing
|
||||||
|
export TEST_PARAMS="--setpref reftest.ignoreWindowSize=true --setpref widget.wayland.test-workarounds.enabled=true"
|
||||||
|
#export TEST_FLAVOUR=""
|
||||||
|
#if [ $RUN_REFTEST -ne 0 ] ; then
|
||||||
|
# ./mach reftest --marionette localhost:$(($(($RANDOM))+2000)) $TEST_PARAMS 2>&1 | tee $TEST_DIR/reftest$TEST_FLAVOUR
|
||||||
|
#fi
|
||||||
|
#if [ $RUN_CRASHTEST -ne 0 ] ; then
|
||||||
|
# ./mach crashtest --marionette localhost:$(($(($RANDOM))+2000)) $TEST_PARAMS 2>&1 | tee $TEST_DIR/crashtest$TEST_FLAVOUR
|
||||||
|
#fi
|
||||||
|
#if [ $RUN_MOCHITEST -ne 0 ] ; then
|
||||||
|
# ./mach mochitest --marionette localhost:$(($(($RANDOM))+2000)) $MOCHITEST_PARAMS $TEST_PARAMS 2>&1 | tee $TEST_DIR/mochitest$TEST_FLAVOUR
|
||||||
|
#fi
|
||||||
|
|
||||||
|
# WebRender testing
|
||||||
|
export TEST_PARAMS="--enable-webrender $TEST_PARAMS"
|
||||||
|
export TEST_FLAVOUR="-wr"
|
||||||
|
# Use dom/base/test or dom/base/test/chrome for short version
|
||||||
|
export MOCHITEST_DIR='dom'
|
||||||
|
if [ $RUN_REFTEST -ne 0 ] ; then
|
||||||
|
./mach reftest $TEST_PARAMS 2>&1 | tee $TEST_DIR/reftest$TEST_FLAVOUR
|
||||||
|
sleep 60
|
||||||
|
fi
|
||||||
|
if [ $RUN_CRASHTEST -ne 0 ] ; then
|
||||||
|
./mach crashtest $TEST_PARAMS 2>&1 | tee $TEST_DIR/crashtest$TEST_FLAVOUR
|
||||||
|
sleep 60
|
||||||
|
fi
|
||||||
|
if [ $RUN_MOCHITEST -ne 0 ] ; then
|
||||||
|
./mach mochitest $MOCHITEST_DIR $MOCHITEST_PARAMS $TEST_PARAMS 2>&1 | tee $TEST_DIR/mochitest$TEST_FLAVOUR
|
||||||
|
sleep 60
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f objdir/dist/bin/certutil
|
||||||
|
rm -f objdir/dist/bin/pk12util
|
||||||
39
run-tests-x11
Normal file
39
run-tests-x11
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
set -x
|
||||||
|
|
||||||
|
export MACH_USE_SYSTEM_PYTHON=1
|
||||||
|
export MOZ_NODE_PATH=/usr/bin/node
|
||||||
|
export X_PARAMS="-screen 0 1600x1200x24"
|
||||||
|
export MOCHITEST_PARAMS="--timeout 1 --chunk-by-dir 4"
|
||||||
|
export TEST_DIR="test_results"
|
||||||
|
|
||||||
|
# Fix for system nss
|
||||||
|
ln -s /usr/bin/certutil objdir/dist/bin/certutil
|
||||||
|
ln -s /usr/bin/pk12util objdir/dist/bin/pk12util
|
||||||
|
|
||||||
|
NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
|
||||||
|
|
||||||
|
# Basic render testing
|
||||||
|
export TEST_PARAMS=""
|
||||||
|
export TEST_FLAVOUR=""
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 91 ./mach xpcshell-test --sequential $TEST_PARAMS 2>&1 | cat - | tee $TEST_DIR/xpcshell
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 92 ./mach reftest --marionette localhost:$(($(($RANDOM))+2000)) $TEST_PARAMS 2>&1 | tee $TEST_DIR/reftest$TEST_FLAVOUR
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 93 ./mach crashtest --marionette localhost:$(($(($RANDOM))+2000)) $TEST_PARAMS 2>&1 | tee $TEST_DIR/crashtest$TEST_FLAVOUR
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 94 ./mach mochitest --marionette localhost:$(($(($RANDOM))+2000)) $MOCHITEST_PARAMS $TEST_PARAMS 2>&1 | tee $TEST_DIR/mochitest$TEST_FLAVOUR
|
||||||
|
|
||||||
|
# WebRender testing
|
||||||
|
export TEST_PARAMS="--enable-webrender $TEST_PARAMS"
|
||||||
|
export TEST_FLAVOUR="-wr"
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 95 ./mach xpcshell-test --sequential $TEST_PARAMS 2>&1 | cat - | tee $TEST_DIR/xpcshell-wr
|
||||||
|
#sleep 60
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 96 ./mach reftest $TEST_PARAMS 2>&1 | tee $TEST_DIR/reftest$TEST_FLAVOUR
|
||||||
|
#sleep 60
|
||||||
|
#xvfb-run -s "$X_PARAMS" -n 97 ./mach crashtest $TEST_PARAMS 2>&1 | tee $TEST_DIR/crashtest$TEST_FLAVOUR
|
||||||
|
#sleep 60
|
||||||
|
#export DISPLAY=:0
|
||||||
|
#./mach mochitest dom/base/test/ $MOCHITEST_PARAMS $TEST_PARAMS 2>&1 | tee $TEST_DIR/mochitest$TEST_FLAVOUR
|
||||||
|
export DISPLAY=:98
|
||||||
|
xvfb-run -s "$X_PARAMS" -n 98 ./mach mochitest dom/base/test/ $MOCHITEST_PARAMS $TEST_PARAMS 2>&1 | tee $TEST_DIR/mochitest$TEST_FLAVOUR
|
||||||
|
|
||||||
|
rm -f objdir/dist/bin/certutil
|
||||||
|
rm -f objdir/dist/bin/pk12util
|
||||||
50
run-wayland-compositor
Normal file
50
run-wayland-compositor
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# Run wayland compositor and set WAYLAND_DISPLAY env variable
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
|
echo export DESKTOP_SESSION=gnome > $HOME/.xsessionrc
|
||||||
|
echo export XDG_CURRENT_DESKTOP=GNOME > $HOME/.xsessionrc
|
||||||
|
echo export XDG_SESSION_TYPE=wayland >> $HOME/.xsessionrc
|
||||||
|
|
||||||
|
# Turn off the screen saver and screen locking
|
||||||
|
gsettings set org.gnome.desktop.screensaver idle-activation-enabled false
|
||||||
|
gsettings set org.gnome.desktop.screensaver lock-enabled false
|
||||||
|
gsettings set org.gnome.desktop.screensaver lock-delay 3600
|
||||||
|
|
||||||
|
# Disable the screen saver
|
||||||
|
# This starts the gnome-keyring-daemon with an unlocked login keyring. libsecret uses this to
|
||||||
|
# store secrets. Firefox uses libsecret to store a key that protects sensitive information like
|
||||||
|
# credit card numbers.
|
||||||
|
if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
|
||||||
|
# if not found, launch a new one
|
||||||
|
eval `dbus-launch --sh-syntax`
|
||||||
|
fi
|
||||||
|
eval `echo '' | /usr/bin/gnome-keyring-daemon -r -d --unlock --components=secrets`
|
||||||
|
|
||||||
|
if [ -z "$XDG_RUNTIME_DIR" ]; then
|
||||||
|
export XDG_RUNTIME_DIR=$HOME
|
||||||
|
fi
|
||||||
|
|
||||||
|
. xvfb-run -s "-screen 0 1600x1200x24" -n 80 mutter --display=:80 --wayland --nested &
|
||||||
|
export DISPLAY=:80
|
||||||
|
|
||||||
|
if [ -z "$WAYLAND_DISPLAY" ] ; then
|
||||||
|
export WAYLAND_DISPLAY=wayland-0
|
||||||
|
else
|
||||||
|
export WAYLAND_DISPLAY=wayland-1
|
||||||
|
fi
|
||||||
|
sleep 10
|
||||||
|
retry_count=0
|
||||||
|
max_retries=5
|
||||||
|
until [ $retry_count -gt $max_retries ]; do
|
||||||
|
if [ -S "$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY" ]; then
|
||||||
|
retry_count=$(($max_retries + 1))
|
||||||
|
else
|
||||||
|
retry_count=$(($retry_count + 1))
|
||||||
|
echo "Waiting for Mutter, retry: $retry_count"
|
||||||
|
sleep 2
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
env | grep "DISPLAY"
|
||||||
29
svg-rendering.patch
Normal file
29
svg-rendering.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User M. Sirringhaus <msirringhaus@suse.de>
|
||||||
|
# Date 1645518286 -3600
|
||||||
|
# Tue Feb 22 09:24:46 2022 +0100
|
||||||
|
# Node ID 81832d035e101471dcf52dd91de287268add7a91
|
||||||
|
# Parent 66f7ce16eb4965108687280e5443edd610631efb
|
||||||
|
imported patch svg-rendering.patch
|
||||||
|
|
||||||
|
diff --git a/image/imgFrame.cpp b/image/imgFrame.cpp
|
||||||
|
--- a/image/imgFrame.cpp
|
||||||
|
+++ b/image/imgFrame.cpp
|
||||||
|
@@ -372,6 +372,17 @@ nsresult imgFrame::InitWithDrawable(gfxD
|
||||||
|
return NS_ERROR_OUT_OF_MEMORY;
|
||||||
|
}
|
||||||
|
|
||||||
|
+#if MOZ_BIG_ENDIAN()
|
||||||
|
+ if (aBackend == gfx::BackendType::SKIA && canUseDataSurface) {
|
||||||
|
+ // SKIA is lying about what format it returns on big endian
|
||||||
|
+ for (int ii=0; ii < mRawSurface->GetSize().Height()*mRawSurface->Stride() / 4; ++ii) {
|
||||||
|
+ uint32_t *vals = (uint32_t*)(mRawSurface->GetData());
|
||||||
|
+ uint32_t val = ((vals[ii] << 8) & 0xFF00FF00 ) | ((vals[ii] >> 8) & 0xFF00FF );
|
||||||
|
+ vals[ii] = (val << 16) | (val >> 16);
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
if (!canUseDataSurface) {
|
||||||
|
// We used an offscreen surface, which is an "optimized" surface from
|
||||||
|
// imgFrame's perspective.
|
||||||
25
webrtc-nss-fix.patch
Normal file
25
webrtc-nss-fix.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
diff -up firefox-102.3.0/third_party/libsrtp/src/crypto/cipher/aes_gcm_nss.c.webrtc-fix firefox-102.3.0/third_party/libsrtp/src/crypto/cipher/aes_gcm_nss.c
|
||||||
|
--- firefox-102.3.0/third_party/libsrtp/src/crypto/cipher/aes_gcm_nss.c.webrtc-fix 2022-10-04 18:58:30.563683229 +0200
|
||||||
|
+++ firefox-102.3.0/third_party/libsrtp/src/crypto/cipher/aes_gcm_nss.c 2022-10-04 18:58:44.583652963 +0200
|
||||||
|
@@ -293,7 +293,7 @@ static srtp_err_status_t srtp_aes_gcm_ns
|
||||||
|
|
||||||
|
int rv;
|
||||||
|
SECItem param = { siBuffer, (unsigned char *)&c->params,
|
||||||
|
- sizeof(CK_GCM_PARAMS) };
|
||||||
|
+ sizeof(CK_NSS_GCM_PARAMS) };
|
||||||
|
if (encrypt) {
|
||||||
|
rv = PK11_Encrypt(c->key, CKM_AES_GCM, ¶m, buf, enc_len,
|
||||||
|
*enc_len + 16, buf, *enc_len);
|
||||||
|
diff -up firefox-102.3.0/third_party/libsrtp/src/crypto/include/aes_gcm.h.webrtc-fix firefox-102.3.0/third_party/libsrtp/src/crypto/include/aes_gcm.h
|
||||||
|
--- firefox-102.3.0/third_party/libsrtp/src/crypto/include/aes_gcm.h.webrtc-fix 2022-10-04 18:59:16.635583764 +0200
|
||||||
|
+++ firefox-102.3.0/third_party/libsrtp/src/crypto/include/aes_gcm.h 2022-10-04 18:59:31.848550924 +0200
|
||||||
|
@@ -101,7 +101,7 @@ typedef struct {
|
||||||
|
uint8_t iv[12];
|
||||||
|
uint8_t aad[MAX_AD_SIZE];
|
||||||
|
int aad_size;
|
||||||
|
- CK_GCM_PARAMS params;
|
||||||
|
+ CK_NSS_GCM_PARAMS params;
|
||||||
|
uint8_t tag[16];
|
||||||
|
} srtp_aes_gcm_ctx_t;
|
||||||
|
|
||||||
|
diff -up firefox-102.3.0/third_party/prio/prio/encrypt.c.webrtc-fix firefox-102.3.0/third_party/prio/prio/encrypt.c
|
||||||
Loading…
x
Reference in New Issue
Block a user