]> git.ipfire.org Git - thirdparty/glibc.git/blame - conform/linknamespace.pl
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / conform / linknamespace.pl
CommitLineData
24f4f825
JM
1#! /usr/bin/perl
2
3# Check that use of symbols declared in a given header does not result
4# in any symbols being brought in that are not reserved with external
5# linkage for the given standard.
6
b168057a 7# Copyright (C) 2014-2015 Free Software Foundation, Inc.
24f4f825
JM
8# This file is part of the GNU C Library.
9
10# The GNU C Library is free software; you can redistribute it and/or
11# modify it under the terms of the GNU Lesser General Public
12# License as published by the Free Software Foundation; either
13# version 2.1 of the License, or (at your option) any later version.
14
15# The GNU C Library is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18# Lesser General Public License for more details.
19
20# You should have received a copy of the GNU Lesser General Public
21# License along with the GNU C Library; if not, see
22# <http://www.gnu.org/licenses/>.
23
24use GlibcConform;
25use Getopt::Long;
26
27GetOptions ('header=s' => \$header, 'standard=s' => \$standard,
28 'flags=s' => \$flags, 'cc=s' => \$CC, 'tmpdir=s' => \$tmpdir,
29 'stdsyms=s' => \$stdsyms_file, 'libsyms=s' => \$libsyms_file,
30 'readelf=s' => \$READELF);
31
32# Load the list of symbols that are OK.
33%stdsyms = ();
34open (STDSYMS, "<$stdsyms_file") || die ("open $stdsyms_file: $!\n");
35while (<STDSYMS>) {
36 chomp;
37 $stdsyms{$_} = 1;
38}
39close (STDSYMS) || die ("close $stdsyms_file: $!\n");
40
41# The following whitelisted symbols are also allowed for now.
42#
43# * Bug 15421: lgamma wrongly sets signgam for ISO C.
44#
45# * Bug 17576: stdin, stdout, stderr only reserved with external
46# linkage when stdio.h included (and possibly not then), not
47# generally.
48#
49# * False positive: matherr only used conditionally.
50#
51@whitelist = qw(signgam stdin stdout stderr matherr);
52foreach my $sym (@whitelist) {
53 $stdsyms{$sym} = 1;
54}
55
56# Return information about GLOBAL and WEAK symbols listed in readelf
57# -s output.
58sub list_syms {
59 my ($syms_file) = @_;
60 open (SYMS, "<$syms_file") || die ("open $syms_file: $!\n");
61 my ($file) = $syms_file;
62 my (@ret) = ();
63 while (<SYMS>) {
64 chomp;
65 if (/^File: (.*)/) {
66 $file = $1;
67 $file =~ s|^.*/||;
68 next;
69 }
70 s/^\s*//;
71 my (@fields) = split (/\s+/, $_);
72 if (@fields < 8) {
73 next;
74 }
75 my ($bind) = $fields[4];
76 my ($ndx) = $fields[6];
77 my ($sym) = $fields[7];
78 if ($bind ne "GLOBAL" && $bind ne "WEAK") {
79 next;
80 }
81 if ($sym !~ /^\w+$/) {
82 next;
83 }
84 push (@ret, [$file, $sym, $bind, $ndx ne "UND"]);
85 }
86 close (SYMS) || die ("close $syms_file: $!\n");
87 return @ret;
88}
89
90# Load information about GLOBAL and WEAK symbols defined or used in
91# the standard libraries.
92# Strong symbols (defined or undefined) from a given object.
93%strong_syms = ();
94# Strong undefined symbols from a given object.
95%strong_undef_syms = ();
96# Objects defining a given symbol (strongly or weakly).
97%sym_objs = ();
98@sym_data = list_syms ($libsyms_file);
99foreach my $sym (@sym_data) {
100 my ($file, $name, $bind, $defined) = @$sym;
101 if ($defined) {
102 if (!defined ($sym_objs{$name})) {
103 $sym_objs{$name} = [];
104 }
105 push (@{$sym_objs{$name}}, $file);
106 }
107 if ($bind eq "GLOBAL") {
108 if (!defined ($strong_syms{$file})) {
109 $strong_syms{$file} = [];
110 }
111 push (@{$strong_syms{$file}}, $name);
112 if (!$defined) {
113 if (!defined ($strong_undef_syms{$file})) {
114 $strong_undef_syms{$file} = [];
115 }
116 push (@{$strong_undef_syms{$file}}, $name);
117 }
118 }
119}
120
121# Determine what ELF-level symbols are brought in by use of C-level
122# symbols declared in the given header.
123#
124# The rules followed are heuristic and so may produce false positives
125# and false negatives.
126#
127# * Weak undefined symbols are ignored; however, if a code path that
128# references one (even just to check if its address is 0) is executed,
129# that may conflict with a definition of that symbol in the user's
130# program.
131#
132# * Strong undefined symbols are considered of signficance, but it is
133# possible that (a) any standard library definition is weak, so can be
134# overridden by the user's definition, and (b) the symbol is only used
135# conditionally and not if the program is limited to standard
136# functionality. (matherr is an example of such a false positive.)
137#
24f4f825
JM
138# * If a symbol reference is only brought in by the user using a data
139# symbol rather than a function from the standard library, this will
140# not be detected.
141#
142# * If a symbol reference is only brought in by crt*.o or libgcc, this
143# will not be detected.
144#
145# * If a symbol reference is only brought in through __builtin_foo in
146# a standard macro being compiled to call foo, this will not be
147# detected.
148#
149# * Header inclusions should be compiled several times with different
150# options such as -O2, -D_FORTIFY_SOURCE and -D_FILE_OFFSET_BITS=64 to
151# find out what symbols are undefined from such a compilation; this is
152# not yet implemented.
153#
154# * This script finds symbols referenced through use of macros on the
155# basis that if a macro calls an internal function, that function must
156# also be declared in the header. However, the header might also
157# declare implementation-namespace functions that are not called by
158# any standard macro in the header, resulting in false positives for
159# any symbols brought in only through use of those
160# implementation-namespace functions.
161#
162# * Namespace issues can apply for dynamic linking as well as static
163# linking, when a call is from one shared library to another or uses a
164# PLT entry for a call within a shared library; such issues are only
165# detected by this script if the same namespace issue applies for
166# static linking.
167
168@c_syms = list_exported_functions ("$CC $flags", $standard, $header, $tmpdir);
169$cincfile = "$tmpdir/undef-$$.c";
170$cincfile_o = "$tmpdir/undef-$$.o";
171$cincfile_sym = "$tmpdir/undef-$$.sym";
172open (CINCFILE, ">$cincfile") || die ("open $cincfile: $!\n");
173print CINCFILE "#include <$header>\n";
174foreach my $sym (sort @c_syms) {
175 print CINCFILE "void *__glibc_test_$sym = (void *) &$sym;\n";
176}
177close CINCFILE || die ("close $cincfile: $!\n");
178system ("$CC $flags -D_ISOMAC $CFLAGS{$standard} -c $cincfile -o $cincfile_o")
179 && die ("compiling failed\n");
180system ("LC_ALL=C $READELF -W -s $cincfile_o > $cincfile_sym")
181 && die ("readelf failed\n");
182@elf_syms = list_syms ($cincfile_sym);
183unlink ($cincfile) || die ("unlink $cincfile: $!\n");
184unlink ($cincfile_o) || die ("unlink $cincfile_o: $!\n");
185unlink ($cincfile_sym) || die ("unlink $cincfile_sym: $!\n");
186
187%strong_seen = ();
188%files_seen = ();
189%all_undef = ();
190%current_undef = ();
191foreach my $sym (@elf_syms) {
192 my ($file, $name, $bind, $defined) = @$sym;
193 if ($bind eq "GLOBAL" && !$defined) {
194 $strong_seen{$name} = "[initial] $name";
195 $all_undef{$name} = "[initial] $name";
196 $current_undef{$name} = "[initial] $name";
197 }
198}
199
200while (%current_undef) {
201 %new_undef = ();
202 foreach my $sym (sort keys %current_undef) {
203 foreach my $file (@{$sym_objs{$sym}}) {
204 if (defined ($files_seen{$file})) {
205 next;
206 }
207 $files_seen{$file} = 1;
208 foreach my $ssym (@{$strong_syms{$file}}) {
209 if (!defined ($strong_seen{$ssym})) {
210 $strong_seen{$ssym} = "$current_undef{$sym} -> [$file] $ssym";
211 }
212 }
213 foreach my $usym (@{$strong_undef_syms{$file}}) {
214 if (!defined ($all_undef{$usym})) {
215 $all_undef{$usym} = "$current_undef{$sym} -> [$file] $usym";
216 $new_undef{$usym} = "$current_undef{$sym} -> [$file] $usym";
217 }
218 }
219 }
220 }
221 %current_undef = %new_undef;
222}
223
224$ret = 0;
225foreach my $sym (sort keys %strong_seen) {
226 if ($sym =~ /^_/) {
227 next;
228 }
229 if (defined ($stdsyms{$sym})) {
230 next;
231 }
232 print "$strong_seen{$sym}\n";
233 $ret = 1;
234}
235
236exit $ret;