mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Add flexibility to localplt-*.data files, using an awk script rather than diff to check the results.
This commit is contained in:
@ -5,6 +5,11 @@
|
|||||||
|
|
||||||
2012-04-24 Roland McGrath <roland@hack.frob.com>
|
2012-04-24 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* scripts/check-localplt.awk: New file.
|
||||||
|
* elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
|
||||||
|
of diff.
|
||||||
|
* scripts/data/localplt-generic.data: Add a comment.
|
||||||
|
|
||||||
* sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
|
* sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
|
||||||
NODE when __dir_mkfile failed.
|
NODE when __dir_mkfile failed.
|
||||||
* sysdeps/mach/hurd/symlinkat.c: Likewise.
|
* sysdeps/mach/hurd/symlinkat.c: Likewise.
|
||||||
|
@ -933,8 +933,7 @@ $(objpfx)check-localplt.out: $(objpfx)check-localplt \
|
|||||||
$(common-objpfx)crypt/libcrypt.so \
|
$(common-objpfx)crypt/libcrypt.so \
|
||||||
$(check-data)
|
$(check-data)
|
||||||
$(dir $<)$(notdir $<) $(filter-out $< $(check-data),$^) | \
|
$(dir $<)$(notdir $<) $(filter-out $< $(check-data),$^) | \
|
||||||
LC_ALL=C sort | \
|
$(AWK) -f $(..)scripts/check-localplt.awk $(check-data) -
|
||||||
diff -u $(check-data) - > $@
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(objpfx)tst-dlopenrpathmod.so: $(libdl)
|
$(objpfx)tst-dlopenrpathmod.so: $(libdl)
|
||||||
|
53
scripts/check-localplt.awk
Normal file
53
scripts/check-localplt.awk
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# This is an awk script to process the output of elf/check-localplt.
|
||||||
|
# The first file argument is the file of expected results.
|
||||||
|
# Each line is either a comment starting with # or it looks like:
|
||||||
|
# libfoo.so: function
|
||||||
|
# or
|
||||||
|
# libfoo.so: function ?
|
||||||
|
# The latter means that a PLT entry for function is optional in libfoo.so.
|
||||||
|
# The former means one is required.
|
||||||
|
# The second file argument is - and this (stdin) receives the output
|
||||||
|
# of the check-localplt program.
|
||||||
|
|
||||||
|
BEGIN { result = 0 }
|
||||||
|
|
||||||
|
FILENAME != "-" && /^#/ { next }
|
||||||
|
|
||||||
|
FILENAME != "-" {
|
||||||
|
if (NF != 2 && !(NF == 3 && $3 == "?")) {
|
||||||
|
printf "%s:%d: bad data line: %s\n", FILENAME, FNR, $0 > "/dev/stderr";
|
||||||
|
result = 2;
|
||||||
|
} else {
|
||||||
|
accept[$1 " " $2] = NF == 2;
|
||||||
|
}
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
|
||||||
|
NF != 2 {
|
||||||
|
print "Unexpected output from check-localplt:", $0 > "/dev/stderr";
|
||||||
|
result = 2;
|
||||||
|
next
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
key = $1 " " $2
|
||||||
|
if (key in accept) {
|
||||||
|
delete accept[key]
|
||||||
|
} else {
|
||||||
|
print "Extra PLT reference:", $0;
|
||||||
|
if (result == 0)
|
||||||
|
result = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
END {
|
||||||
|
for (key in accept) {
|
||||||
|
if (accept[key]) {
|
||||||
|
# It's mandatory.
|
||||||
|
print "Missing required PLT reference:", key;
|
||||||
|
result = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
exit(result);
|
||||||
|
}
|
@ -1,3 +1,6 @@
|
|||||||
|
# See scripts/check-localplt.awk for how this file is processed.
|
||||||
|
# PLT use is required for the malloc family and for matherr because
|
||||||
|
# users can define their own functions and have library internals call them.
|
||||||
libc.so: calloc
|
libc.so: calloc
|
||||||
libc.so: free
|
libc.so: free
|
||||||
libc.so: malloc
|
libc.so: malloc
|
||||||
|
Reference in New Issue
Block a user