38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
From 4f58e5abcb336292f78bc6d54e1140b4fdded30b Mon Sep 17 00:00:00 2001
|
|
From: Pascal Terjan <pterjan@mandriva.org>
|
|
Date: Sat, 14 Feb 2015 21:58:19 +0000
|
|
Subject: [PATCH] Fix find-debuginfo.sh for ELF with file warnings
|
|
|
|
Since the fix for CVE-2014-9620, file will print a "warning" that it
|
|
only processed 256 notes:
|
|
|
|
$ file -N libjvm.so
|
|
libjvm.so: ELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=63ece24db1a29f9df8231337f741664e0b10fc7f, not stripped, too many notes (256)
|
|
|
|
And this leads to those messages and a failure:
|
|
stat: cannot stat 'libjvm.so,': No such file or directory
|
|
stat: cannot stat 'too': No such file or directory
|
|
stat: cannot stat 'many': No such file or directory
|
|
stat: cannot stat 'notes': No such file or directory
|
|
stat: cannot stat '(256)': No such file or directory
|
|
---
|
|
scripts/find-debuginfo.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/scripts/find-debuginfo.sh b/scripts/find-debuginfo.sh
|
|
index 57449f7..264fad5 100644
|
|
--- a/scripts/find-debuginfo.sh
|
|
+++ b/scripts/find-debuginfo.sh
|
|
@@ -205,7 +205,7 @@ $strict || strict_error=WARNING
|
|
find "$RPM_BUILD_ROOT" ! -path "${debugdir}/*.debug" -type f \
|
|
\( -perm -0100 -or -perm -0010 -or -perm -0001 \) \
|
|
-print |
|
|
-file -N -f - | sed -n -e 's/^\(.*\):[ ]*.*ELF.*, not stripped/\1/p' |
|
|
+file -N -f - | sed -n -e 's/^\(.*\):[ ]*.*ELF.*, not stripped.*/\1/p' |
|
|
xargs --no-run-if-empty stat -c '%h %D_%i %n' |
|
|
while read nlinks inum f; do
|
|
get_debugfn "$f"
|
|
--
|
|
2.3.0
|
|
|