[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 08/26] scripts/oss-fuzz: add a suppression for keymap
From: |
Alex Bennée |
Subject: |
[PATCH 08/26] scripts/oss-fuzz: add a suppression for keymap |
Date: |
Fri, 23 Jun 2023 13:20:42 +0100 |
When updating to the latest fedora the santizer found more leaks
inside xkbmap:
FAILED: pc-bios/keymaps/ar
/builds/stsquad/qemu/build-oss-fuzz/qemu-keymap -f pc-bios/keymaps/ar -l ara
=================================================================
==3604==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 1424 byte(s) in 1 object(s) allocated from:
#0 0x56316418ebec in __interceptor_calloc
(/builds/stsquad/qemu/build-oss-fuzz/qemu-keymap+0x127bec) (BuildId:
a2ad9da3190962acaa010fa8f44a9269f9081e1c)
#1 0x7f60d4dc067e (/lib64/libxkbcommon.so.0+0x1c67e) (BuildId:
b243a34e4e58e6a30b93771c256268b114d34b80)
#2 0x7f60d4dc2137 in xkb_keymap_new_from_names
(/lib64/libxkbcommon.so.0+0x1e137) (BuildId:
b243a34e4e58e6a30b93771c256268b114d34b80)
#3 0x5631641ca50f in main
/builds/stsquad/qemu/build-oss-fuzz/../qemu-keymap.c:215:11
and many more. As we can't do anything about the library add a
suppression to keep the CI going with what its meant to be doing.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
scripts/oss-fuzz/lsan_suppressions.txt | 3 +++
1 file changed, 3 insertions(+)
diff --git a/scripts/oss-fuzz/lsan_suppressions.txt
b/scripts/oss-fuzz/lsan_suppressions.txt
index 02ec0a6ed5..7d90c280d0 100644
--- a/scripts/oss-fuzz/lsan_suppressions.txt
+++ b/scripts/oss-fuzz/lsan_suppressions.txt
@@ -1,2 +1,5 @@
# The tcmalloc on Fedora37 confuses things
leak:/lib64/libtcmalloc_minimal.so.4
+
+# libxkbcommon also leaks in qemu-keymap
+leak:/lib64/libxkbcommon.so.0
--
2.39.2
- [PATCH 00/26] maintainer omnibus: testing, fuzz, plugins, documentation, Alex Bennée, 2023/06/23
- [PATCH 03/26] gitlab: reduce testing scope of check-gcov, Alex Bennée, 2023/06/23
- [PATCH 01/26] gitlab: explicit set artifacts publishing criteria, Alex Bennée, 2023/06/23
- [PATCH 06/26] qemu-keymap: use modern name for Arabic keymap, Alex Bennée, 2023/06/23
- [PATCH 04/26] docs/devel: remind developers to run CI container pipeline when updating images, Alex Bennée, 2023/06/23
- [PATCH 02/26] gitlab: ensure coverage job also publishes meson log, Alex Bennée, 2023/06/23
- [PATCH 05/26] tests/tcg: add mechanism to handle plugin arguments, Alex Bennée, 2023/06/23
- [PATCH 08/26] scripts/oss-fuzz: add a suppression for keymap,
Alex Bennée <=
- [PATCH 12/26] tests/lcitool: update to latest version, Alex Bennée, 2023/06/23
- [PATCH 15/26] tests/lcitool: introduce qemu-minimal, Alex Bennée, 2023/06/23
- [PATCH 14/26] tests/lcitool: add an explicit gcc-native package, Alex Bennée, 2023/06/23
- [PATCH 07/26] qemu-keymap: properly check return from xkb_keymap_mod_get_index, Alex Bennée, 2023/06/23
- [PATCH 10/26] tests/docker: add test-fuzz, Alex Bennée, 2023/06/23
- [PATCH 09/26] tests/qtests: clean-up and fix leak in generic_fuzz, Alex Bennée, 2023/06/23
- [PATCH 16/26] tests/docker: convert riscv64-cross to lcitool, Alex Bennée, 2023/06/23
- [PATCH 11/26] Makefile: add lcitool-refresh to UNCHECKED_GOALS, Alex Bennée, 2023/06/23