1 # Copyright © 2007, 2016 Raphaël Hertzog <hertzog@debian.org>
2 # Copyright © 2007-2008, 2012-2015 Guillem Jover <guillem@debian.org>
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
21 Dpkg::Shlibs - shared library location handling
25 This module provides functions to locate shared libraries.
27 B<Note>: This is a private module, its API can change at any time.
31 package Dpkg
::Shlibs
0.03;
35 use feature
qw(state);
45 use Exporter
qw(import);
46 use List
::Util
qw(none);
50 use Dpkg
::ErrorHandling
;
51 use Dpkg
::Shlibs
::Objdump
;
52 use Dpkg
::BuildAPI
qw(get_build_api);
53 use Dpkg
::Path
qw(resolve_symlink canonpath);
54 use Dpkg
::Arch
qw(get_build_arch get_host_arch :mappers);
56 use constant DEFAULT_LIBRARY_PATH
=>
58 # XXX: Deprecated multilib paths.
59 use constant DEFAULT_MULTILIB_PATH
=>
60 qw(/lib32 /usr/lib32 /lib64 /usr/lib64);
62 # Library paths set by the user.
63 my @custom_librarypaths;
64 # Library paths from the system.
65 my @system_librarypaths;
66 my $librarypaths_init;
73 open my $fh, '<', $file or syserr
(g_
('cannot open %s'), $file);
79 if (/^include\s+(\S.*\S)\s*$/) {
80 foreach my $include (glob($1)) {
81 parse_ldso_conf
($include) if -e
$include
82 && !$visited{$include};
87 if (none
{ $_ eq $libdir } (@custom_librarypaths, @system_librarypaths)) {
88 push @system_librarypaths, $libdir;
95 sub blank_library_paths
{
96 @custom_librarypaths = ();
97 @system_librarypaths = ();
98 $librarypaths_init = 1;
101 sub setup_library_paths
{
102 @custom_librarypaths = ();
103 @system_librarypaths = ();
105 # XXX: Deprecated. Update library paths with LD_LIBRARY_PATH.
106 if ($ENV{LD_LIBRARY_PATH
}) {
108 my $cwd = Cwd
::getcwd
;
110 foreach my $path (split /:/, $ENV{LD_LIBRARY_PATH
}) {
113 my $realpath = Cwd
::realpath
($path);
114 next unless defined $realpath;
115 if ($realpath =~ m/^\Q$cwd\E/) {
116 if (get_build_api
() >= 1) {
117 error
(g_
('use -l option instead of LD_LIBRARY_PATH'));
119 warning
(g_
('deprecated use of LD_LIBRARY_PATH with private ' .
120 'library directory which interferes with ' .
121 'cross-building, please use -l option instead'));
125 next if get_build_api
() >= 1;
127 # XXX: This should be added to @custom_librarypaths, but as this
128 # is deprecated we do not care as the code will go away.
129 push @system_librarypaths, $path;
133 # Adjust set of directories to consider when we're in a situation of a
134 # cross-build or a build of a cross-compiler.
137 # Detect cross compiler builds.
138 if ($ENV{DEB_TARGET_GNU_TYPE
} and
139 ($ENV{DEB_TARGET_GNU_TYPE
} ne $ENV{DEB_BUILD_GNU_TYPE
}))
141 $multiarch = gnutriplet_to_multiarch
($ENV{DEB_TARGET_GNU_TYPE
});
143 # Host for normal cross builds.
144 if (get_build_arch
() ne get_host_arch
()) {
145 $multiarch = debarch_to_multiarch
(get_host_arch
());
147 # Define list of directories containing crossbuilt libraries.
149 push @system_librarypaths, "/lib/$multiarch", "/usr/lib/$multiarch";
152 push @system_librarypaths, DEFAULT_LIBRARY_PATH
;
154 # Update library paths with ld.so config.
155 parse_ldso_conf
('/etc/ld.so.conf') if -e
'/etc/ld.so.conf';
157 push @system_librarypaths, DEFAULT_MULTILIB_PATH
;
159 $librarypaths_init = 1;
162 sub add_library_dir
{
165 setup_library_paths
() if not $librarypaths_init;
167 push @custom_librarypaths, $dir;
170 sub get_library_paths
{
171 setup_library_paths
() if not $librarypaths_init;
173 return (@custom_librarypaths, @system_librarypaths);
176 # find_library ($soname, \@rpath, $format, $root)
178 my ($lib, $rpath, $format, $root) = @_;
180 setup_library_paths
() if not $librarypaths_init;
182 my @librarypaths = (@
{$rpath}, @custom_librarypaths, @system_librarypaths);
187 foreach my $dir (@librarypaths) {
188 my $checkdir = "$root$dir";
189 if (-e
"$checkdir/$lib") {
190 my $libformat = Dpkg
::Shlibs
::Objdump
::get_format
("$checkdir/$lib");
191 if (not defined $libformat) {
192 warning
(g_
("unknown executable format in file '%s'"), "$checkdir/$lib");
193 } elsif ($format eq $libformat) {
194 push @libs, canonpath
("$checkdir/$lib");
196 debug
(1, "Skipping lib $checkdir/$lib, libabi=<%s> != objabi=<%s>",
197 $libformat, $format);
208 This is a private module.