/usr/share/passenger/helper-scripts/backtrace-sanitizer.rb is in ruby-passenger 4.0.37-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | #!/usr/bin/env ruby
# Phusion Passenger - https://www.phusionpassenger.com/
# Copyright (c) 2013 Phusion
#
# "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# Parses output of the glibc backtrace() function and
# translates addresses into function names and source
# file locations.
class Addr2line
attr_reader :stdin, :stdout, :pid
def initialize(filename)
a, b = IO.pipe
c, d = IO.pipe
@pid = fork do
STDIN.reopen(a)
b.close
STDOUT.reopen(d)
c.close
exec("addr2line", "-Cfie", filename)
end
a.close
d.close
@stdin = b
@stdout = c
@stdin.sync = @stdout.sync = true
end
def query(address)
@stdin.write("#{address}\n")
function = @stdout.readline
source = @stdout.readline
function.strip!
source.strip!
return [function, source]
end
def close
@stdin.close
@stdout.close
Process.kill('KILL', @pid)
Process.waitpid(@pid) rescue nil
end
end
def passthrough(input, output)
while !input.eof?
data = input.readline
output.write(data)
output.flush
end
end
input = STDIN
output = STDERR
output.sync = true
output.puts "Using backtrace sanitizer."
argv0, pid_or_filename = ARGV
if pid_or_filename =~ /\A\d+\Z/
begin
exe_filename = File.expand_path(File.readlink("/proc/#{pid_or_filename}/exe"))
rescue Errno::ENOENT, Errno::EACCES => e
warn "*** backtrace-sanitizer warning: #{e} -> passthrough input"
passthrough(input, output)
exit
end
else
exe_filename = File.expand_path(pid_or_filename)
end
exe_basename = File.basename(exe_filename)
addr2lines = {}
begin
while !input.eof?
line = input.readline.strip
# Example lines:
# ./test() [0x400b64]
# /lib/libc.so.6(__libc_start_main+0xfd) [0x7fcc0ad00c8d]
if line =~ /(.*)\[(.*?)\]$/
# Split line into:
# subject: /lib/libc.so.6(__libc_start_main+0xfd)
# address: 0x7fcc0ad00c8d
subject = $1
address = $2
subject.strip!
subject =~ /(.*?)(\((.*?)\))?$/
# Split subject into:
# file: /lib/libc.so.6
# context: __libc_start_main+0xfd
file = $1
context = $3
file.strip!
context = nil if context && context.empty?
if file =~ /\A\// && File.exist?(file)
filename = file
elsif file == argv0 || file == exe_filename || file == exe_basename
filename = exe_filename
else
filename = nil
end
if filename.nil?
output.puts line
else
addr2line = (addr2lines[filename] ||= Addr2line.new(filename))
function, source = addr2line.query(address)
new_context = "#{function} at #{source}"
new_context << "; #{context}" if context
output.puts "#{file}(#{new_context}) [#{address}]"
end
else
output.puts line
end
end
ensure
addr2lines.each_value do |addr2line|
addr2line.close
end
end
|