Commit | Line | Data |
bb304ec8 |
1 | #!/usr/bin/perl -w |
2 | |
3 | # |
4 | # findrfuncs: find reentrant variants of functions used in an executable. |
5 | # Requires a functional "nm -u". Searches headers in /usr/include |
6 | # to find available *_r functions and looks for non-reentrant |
7 | # variants used in the supplied executable. |
8 | # |
9 | # Gurusamy Sarathy |
10 | # gsar@ActiveState.com |
11 | # |
12 | # Hacked to automatically find the executable and shared objects. |
13 | # --jhi |
14 | |
15 | use strict; |
16 | use File::Find; |
17 | |
18 | my @EXES; |
19 | my $NMU = 'nm -u'; |
20 | my @INCDIRS = qw(/usr/include); |
21 | my $SO = 'so'; |
22 | my $EXE = ''; |
23 | |
24 | if (open(CONFIG, "config.sh")) { |
25 | local $/; |
26 | my $CONFIG = <CONFIG>; |
27 | $SO = $1 if $CONFIG =~ /^so='(\w+)'/m; |
28 | $EXE = $1 if $CONFIG =~ /^_exe='\.(\w+)'/m; |
29 | } |
30 | |
31 | push @EXES, "perl$EXE"; |
32 | |
33 | find(sub {push @EXES, $File::Find::name if /.$SO$/}, '.' ); |
34 | |
35 | push @EXES, @ARGV; |
36 | |
37 | if ($^O eq 'dec_osf') { |
38 | $NMU = 'nm -Bu'; |
39 | } |
40 | |
41 | my %rfuncs; |
42 | my @syms; |
43 | find(sub { |
44 | return unless -f $File::Find::name; |
45 | open my $F, "<$File::Find::name" |
46 | or die "Can't open $File::Find::name: $!"; |
47 | my $line; |
48 | while (defined ($line = <$F>)) { |
49 | if ($line =~ /\b(\w+_r)\b/) { |
50 | #warn "$1 => $File::Find::name\n"; |
51 | $rfuncs{$1} = $File::Find::name; |
52 | } |
53 | } |
54 | close $F; |
55 | }, @INCDIRS); |
56 | |
57 | # delete bogus symbols grepped out of comments and such |
58 | delete $rfuncs{setlocale_r} if $^O eq 'linux'; |
59 | |
60 | for my $exe (@EXES) { |
61 | for my $sym (`$NMU $exe`) { |
62 | chomp $sym; |
63 | $sym =~ s/^\s+[Uu]\s+//; |
64 | $sym =~ s/^\s+//; |
65 | next if /\s/; |
66 | $sym =~ s/\@.*\z//; # remove @@GLIBC_2.0 etc |
67 | # warn "#### $sym\n"; |
68 | if (exists $rfuncs{"${sym}_r"}) { |
69 | push @syms, $sym; |
70 | } |
71 | } |
72 | |
73 | if (@syms) { |
74 | print "\nFollowing symbols in $exe have reentrant versions:\n"; |
75 | for my $sym (@syms) { |
76 | print "$sym => $sym" . "_r (in file " . $rfuncs{"${sym}_r"} . ")\n"; |
77 | } |
78 | } |
79 | @syms = (); |
80 | } |
81 | |