From 97a8fd8995db4fb49f3a07e76a10407d86fa0e48 Mon Sep 17 00:00:00 2001 From: Jesus Checa Hidalgo Date: Fri, 30 Jun 2023 11:35:46 +0200 Subject: [PATCH] rpminspect: add badfuncs inspection exception --- rpminspect.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 rpminspect.yaml diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..dcfcb62 --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,20 @@ +--- +badfuncs: + # For compiler-rt, we allow the following forbidden functions: + # - gethostbyname + # - gethostbyname2 + # - gethostbyaddr + # - inet_aton + # These are never actually used, and are installed just as interceptors. + allowed: + /usr/lib*/clang/*/lib/libclang_rt.?san*so: + - gethostbyaddr + - gethostbyname + - gethostbyname2 + - inet_aton + /usr/lib*/clang/*/lib/libclang_rt.memprof*so: + - gethostbyaddr + - gethostbyname + - gethostbyname2 + - inet_aton +