| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- # Copyright (C) 2007 Raphael Hertzog
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- # You should have received a copy of the GNU General Public License along
- # with this program; if not, write to the Free Software Foundation, Inc.,
- # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- package Dpkg::Shlibs::SymbolFile;
- use Dpkg::Gettext;
- use Dpkg::ErrorHandling qw(syserr warning error);
- use Dpkg::Version qw(vercmp);
- textdomain("dpkg-dev");
- my %blacklist = (
- '__bss_end__' => 1, # arm
- '__bss_end' => 1, # arm
- '_bss_end__' => 1, # arm
- '__bss_start' => 1, # ALL
- '__bss_start__' => 1, # arm
- '__data_start' => 1, # arm
- '__do_global_ctors_aux' => 1, # ia64
- '__do_global_dtors_aux' => 1, # ia64
- '__do_jv_register_classes' => 1,# ia64
- '_edata' => 1, # ALL
- '_end' => 1, # ALL
- '__end__' => 1, # arm
- '_fbss' => 1, # mips, mipsel
- '_fdata' => 1, # mips, mipsel
- '_fini' => 1, # ALL
- '_ftext' => 1, # mips, mipsel
- '_GLOBAL_OFFSET_TABLE_' => 1, # hppa, mips, mipsel
- '__gmon_start__' => 1, # hppa
- '_gp' => 1, # mips, mipsel
- '_init' => 1, # ALL
- );
- for (my $i = 14; $i <= 31; $i++) {
- # Many powerpc specific symbols
- $blacklist{"_restfpr_$i"} = 1;
- $blacklist{"_restfpr_$i\_x"} = 1;
- $blacklist{"_restgpr_$i"} = 1;
- $blacklist{"_restgpr_$i\_x"} = 1;
- $blacklist{"_savefpr_$i"} = 1;
- $blacklist{"_savegpr_$i"} = 1;
- }
- sub new {
- my $this = shift;
- my $file = shift;
- my $class = ref($this) || $this;
- my $self = { };
- bless $self, $class;
- if (defined($file) ) {
- $self->{file} = $file;
- $self->load($file) if -e $file;
- }
- return $self;
- }
- sub clear {
- my ($self) = @_;
- $self->{objects} = {};
- }
- sub clear_except {
- my ($self, @ids) = @_;
- my %has;
- $has{$_} = 1 foreach (@ids);
- foreach my $objid (keys %{$self->{objects}}) {
- delete $self->{objects}{$objid} unless exists $has{$objid};
- }
- }
- # Parameter seen is only used for recursive calls
- sub load {
- my ($self, $file, $seen) = @_;
- if (defined($seen)) {
- return if exists $seen->{$file}; # Avoid include loops
- } else {
- $self->{file} = $file;
- $seen = {};
- }
- $seen->{$file} = 1;
- open(my $sym_file, "<", $file)
- || syserr(sprintf(_g("Can't open %s: %s"), $file));
- my ($object);
- while (defined($_ = <$sym_file>)) {
- chomp($_);
- if (/^\s+(\S+)\s(\S+)(?:\s(\d+))?/) {
- if (not defined ($object)) {
- error(sprintf(_g("Symbol information must be preceded by a header (file %s, line %s).", $file, $.)));
- }
- # New symbol
- my $sym = {
- minver => $2,
- dep_id => defined($3) ? $3 : 0,
- deprecated => 0
- };
- $self->{objects}{$object}{syms}{$1} = $sym;
- } elsif (/^#include\s+"([^"]+)"/) {
- my $filename = $1;
- my $dir = $file;
- $dir =~ s{[^/]+$}{}; # Strip filename
- $self->load("$dir$filename", $seen);
- } elsif (/^#DEPRECATED: ([^#]+)#\s*(\S+)\s(\S+)(?:\s(\d+))?/) {
- my $sym = {
- minver => $3,
- dep_id => defined($4) ? $4 : 0,
- deprecated => $1
- };
- $self->{objects}{$object}{syms}{$2} = $sym;
- } elsif (/^#/) {
- # Skip possible comments
- } elsif (/^\|\s*(.*)$/) {
- # Alternative dependency template
- push @{$self->{objects}{$object}{deps}}, "$1";
- } elsif (/^(\S+)\s+(.*)$/) {
- # New object and dependency template
- $object = $1;
- if (exists $self->{objects}{$object}) {
- # Update/override infos only
- $self->{objects}{$object}{deps} = [ "$2" ];
- } else {
- # Create a new object
- $self->{objects}{$object} = {
- syms => {},
- deps => [ "$2" ]
- };
- }
- } else {
- warning(sprintf(_g("Failed to parse a line in %s: %s"), $file, $_));
- }
- }
- close($sym_file);
- }
- sub save {
- my ($self, $file) = @_;
- $file = $self->{file} unless defined($file);
- my $fh;
- if ($file eq "-") {
- $fh = \*STDOUT;
- } else {
- open($fh, ">", $file)
- || syserr(sprintf(_g("Can't open %s for writing: %s"), $file, $!));
- }
- $self->dump($fh);
- close($fh) if ($file ne "-");
- }
- sub dump {
- my ($self, $fh) = @_;
- foreach my $soname (sort keys %{$self->{objects}}) {
- print $fh "$soname $self->{objects}{$soname}{deps}[0]\n";
- print $fh "| $_" foreach (@{$self->{objects}{$soname}{deps}}[ 1 .. -1 ]);
- foreach my $sym (sort keys %{$self->{objects}{$soname}{syms}}) {
- my $info = $self->{objects}{$soname}{syms}{$sym};
- print $fh "#DEPRECATED: $info->{deprecated}#" if $info->{deprecated};
- print $fh " $sym $info->{minver}";
- print $fh " $info->{dep_id}" if $info->{dep_id};
- print $fh "\n";
- }
- }
- }
- # merge_symbols($object, $minver)
- # Needs $Objdump->get_object($soname) as parameter
- # Don't merge blacklisted symbols related to the internal (arch-specific)
- # machinery
- sub merge_symbols {
- my ($self, $object, $minver) = @_;
- my $soname = $object->{SONAME} || error(_g("Can't merge symbols from objects without SONAME."));
- my %dynsyms = map { $_ => $object->{dynsyms}{$_} }
- grep {
- local $a = $object->{dynsyms}{$_};
- $a->{dynamic} && $a->{defined} && not exists $blacklist{$a->{name}}
- }
- keys %{$object->{dynsyms}};
- unless ($self->{objects}{$soname}) {
- $self->create_object($soname, '');
- }
- # Scan all symbols provided by the objects
- foreach my $sym (keys %dynsyms) {
- if (exists $self->{objects}{$soname}{syms}{$sym}) {
- # If the symbol is already listed in the file
- my $info = $self->{objects}{$soname}{syms}{$sym};
- if ($info->{deprecated}) {
- # Symbol reappeared somehow
- $info->{deprecated} = 0;
- $info->{minver} = $minver;
- next;
- }
- # We assume that the right dependency information is already
- # there.
- if (vercmp($minver, $info->{minver}) < 0) {
- $info->{minver} = $minver;
- }
- } else {
- # The symbol is new and not present in the file
- my $info = {
- minver => $minver,
- deprecated => 0,
- dep_id => 0
- };
- $self->{objects}{$soname}{syms}{$sym} = $info;
- }
- }
- # Scan all symbols in the file and mark as deprecated those that are
- # no more provided
- foreach my $sym (keys %{$self->{objects}{$soname}{syms}}) {
- if (! exists $dynsyms{$sym}) {
- $self->{objects}{$soname}{syms}{$sym}{deprecated} = $minver;
- }
- }
- }
- sub is_empty {
- my ($self) = @_;
- return scalar(keys %{$self->{objects}}) ? 0 : 1;
- }
- sub has_object {
- my ($self, $soname) = @_;
- return exists $self->{objects}{$soname};
- }
- sub create_object {
- my ($self, $soname, @deps) = @_;
- $self->{objects}{$soname} = {
- syms => {},
- deps => [ @deps ]
- };
- }
- sub get_dependency {
- my ($self, $soname, $dep_id) = @_;
- $dep_id = 0 unless defined($dep_id);
- return $self->{objects}{$soname}{deps}[$dep_id];
- }
- sub lookup_symbol {
- my ($self, $name, $sonames) = @_;
- foreach my $so (@{$sonames}) {
- next if (! exists $self->{objects}{$so});
- if (exists $self->{objects}{$so}{syms}{$name} and
- not $self->{objects}{$so}{syms}{$name}{deprecated})
- {
- my $dep_id = $self->{objects}{$so}{syms}{$name}{dep_id};
- return {
- 'depends' => $self->{objects}{$so}{deps}[$dep_id],
- 'soname' => $so,
- %{$self->{objects}{$so}{syms}{$name}}
- };
- }
- }
- return undef;
- }
- sub has_new_symbols {
- my ($self, $ref) = @_;
- foreach my $soname (keys %{$self->{objects}}) {
- my $mysyms = $self->{objects}{$soname}{syms};
- next if not exists $ref->{objects}{$soname};
- my $refsyms = $ref->{objects}{$soname}{syms};
- foreach my $sym (grep { not $mysyms->{$_}{deprecated} }
- keys %{$mysyms})
- {
- if ((not exists $refsyms->{$sym}) or
- $refsyms->{$sym}{deprecated})
- {
- return 1;
- }
- }
- }
- return 0;
- }
- sub has_lost_symbols {
- my ($self, $ref) = @_;
- return $ref->has_new_symbols($self);
- }
- sub has_new_libs {
- my ($self, $ref) = @_;
- foreach my $soname (keys %{$self->{objects}}) {
- return 1 if not exists $ref->{objects}{$soname};
- }
- return 0;
- }
- sub has_lost_libs {
- my ($self, $ref) = @_;
- return $ref->has_new_libs($self);
- }
- 1;
|