2024-08-12 10:30:59 +01:00
|
|
|
# typed: true # rubocop:todo Sorbet/StrictSigil
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-02-08 20:06:09 +01:00
|
|
|
require "compilers"
|
|
|
|
|
2018-06-22 16:56:37 -07:00
|
|
|
class Keg
|
|
|
|
def relocate_dynamic_linkage(relocation)
|
2018-08-20 11:24:19 -07:00
|
|
|
# Patching the dynamic linker of glibc breaks it.
|
2022-01-02 17:30:34 -08:00
|
|
|
return if name.match? Version.formula_optionally_versioned_regex(:glibc)
|
2019-10-10 15:16:30 +01:00
|
|
|
|
2021-04-29 17:52:10 +01:00
|
|
|
old_prefix, new_prefix = relocation.replacement_pair_for(:prefix)
|
|
|
|
|
2018-06-22 16:56:37 -07:00
|
|
|
elf_files.each do |file|
|
|
|
|
file.ensure_writable do
|
2021-04-29 17:52:10 +01:00
|
|
|
change_rpath(file, old_prefix, new_prefix)
|
2018-06-22 16:56:37 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def change_rpath(file, old_prefix, new_prefix)
|
2023-09-08 00:52:35 -07:00
|
|
|
return false if !file.elf? || !file.dynamic_elf?
|
2018-06-22 16:56:37 -07:00
|
|
|
|
2020-08-05 20:32:37 +05:30
|
|
|
updated = {}
|
2020-07-10 06:31:31 +05:30
|
|
|
old_rpath = file.rpath
|
|
|
|
new_rpath = if old_rpath
|
|
|
|
rpath = old_rpath.split(":")
|
|
|
|
.map { |x| x.sub(old_prefix, new_prefix) }
|
|
|
|
.select { |x| x.start_with?(new_prefix, "$ORIGIN") }
|
2018-06-22 16:56:37 -07:00
|
|
|
|
2020-07-10 06:31:31 +05:30
|
|
|
lib_path = "#{new_prefix}/lib"
|
|
|
|
rpath << lib_path unless rpath.include? lib_path
|
2022-08-02 13:29:14 +08:00
|
|
|
|
2022-09-22 00:53:56 +08:00
|
|
|
# Add GCC's lib directory (as of GCC 12+) to RPATH when there is existing versioned linkage.
|
|
|
|
# This prevents broken linkage when pouring bottles built with an old GCC formula.
|
|
|
|
unless name.match?(Version.formula_optionally_versioned_regex(:gcc))
|
|
|
|
rpath.map! { |rp| rp.sub(%r{lib/gcc/\d+$}, "lib/gcc/current") }
|
2022-08-02 19:09:38 +08:00
|
|
|
end
|
2020-06-23 03:18:29 +05:30
|
|
|
|
2020-08-05 20:32:37 +05:30
|
|
|
rpath.join(":")
|
2018-07-16 23:17:16 +02:00
|
|
|
end
|
2020-08-05 20:32:37 +05:30
|
|
|
updated[:rpath] = new_rpath if old_rpath != new_rpath
|
2018-06-22 16:56:37 -07:00
|
|
|
|
2020-06-23 03:18:29 +05:30
|
|
|
old_interpreter = file.interpreter
|
|
|
|
new_interpreter = if old_interpreter.nil?
|
|
|
|
nil
|
|
|
|
elsif File.readable? "#{new_prefix}/lib/ld.so"
|
|
|
|
"#{new_prefix}/lib/ld.so"
|
|
|
|
else
|
|
|
|
old_interpreter.sub old_prefix, new_prefix
|
2018-06-22 16:56:37 -07:00
|
|
|
end
|
2020-08-05 20:32:37 +05:30
|
|
|
updated[:interpreter] = new_interpreter if old_interpreter != new_interpreter
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2020-08-05 20:32:37 +05:30
|
|
|
file.patch!(interpreter: updated[:interpreter], rpath: updated[:rpath])
|
2023-09-08 00:52:35 -07:00
|
|
|
true
|
2018-06-22 16:56:37 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def detect_cxx_stdlibs(options = {})
|
|
|
|
skip_executables = options.fetch(:skip_executables, false)
|
|
|
|
results = Set.new
|
|
|
|
elf_files.each do |file|
|
|
|
|
next unless file.dynamic_elf?
|
|
|
|
next if file.binary_executable? && skip_executables
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-06-22 16:56:37 -07:00
|
|
|
dylibs = file.dynamically_linked_libraries
|
|
|
|
results << :libcxx if dylibs.any? { |s| s.include? "libc++.so" }
|
|
|
|
results << :libstdcxx if dylibs.any? { |s| s.include? "libstdc++.so" }
|
|
|
|
end
|
|
|
|
results.to_a
|
|
|
|
end
|
|
|
|
|
|
|
|
def elf_files
|
|
|
|
hardlinks = Set.new
|
|
|
|
elf_files = []
|
|
|
|
path.find do |pn|
|
|
|
|
next if pn.symlink? || pn.directory?
|
|
|
|
next if !pn.dylib? && !pn.binary_executable?
|
|
|
|
|
|
|
|
# If we've already processed a file, ignore its hardlinks (which have the
|
|
|
|
# same dev ID and inode). This prevents relocations from being performed
|
|
|
|
# on a binary more than once.
|
|
|
|
next unless hardlinks.add? [pn.stat.dev, pn.stat.ino]
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-06-22 16:56:37 -07:00
|
|
|
elf_files << pn
|
|
|
|
end
|
|
|
|
elf_files
|
|
|
|
end
|
|
|
|
end
|