Created
March 7, 2022 17:09
-
-
Save fzakaria/de117012d31c7145ff6fa2e81b1fcbe5 to your computer and use it in GitHub Desktop.
Largest RPATH in /nix/store/*/bin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'find' | |
require 'elftools' | |
STORE = "/nix/store/*/bin/*" | |
puts "Searching /nix/store for rpath entries." | |
seen = 0 | |
current = "" | |
enum = Dir.glob(STORE).lazy.map do | path| | |
seen += 1 | |
current = path | |
next ["", "", 0] unless File.file? path | |
# some .debug files have a crazy amount of dynamic tags | |
next ["", "", 0] if path.end_with? ".debug" | |
begin | |
file = ELFTools::ELFFile.new(File.open(path)) | |
sections = file.sections_by_type(:dynamic) | |
next ["", "", 0] if sections.nil? || sections.count.zero? | |
section = sections.map do |section| | |
rpath = section.tag_by_type(ELFTools::Constants::DT_RUNPATH).value.split(':') | |
[path, rpath, rpath.count] | |
end.max do |a, b| | |
a[2] <=> b[2] | |
end | |
next section | |
rescue => e | |
# do nothing | |
# puts e | |
next ["", "", 0] | |
end | |
end | |
Thread.new do | |
while true do | |
puts "Seen: #{seen} Current: #{current}" | |
sleep 30 | |
end | |
end | |
max = enum.max do |a, b| | |
a[2] <=> b[2] | |
end | |
puts max |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll need to do
gem install --user elftools
or the equivalent.I need to make this a real package and Nix package it.... I know!