2016-01-05 09:58:10 +00:00
|
|
|
require 'set'
|
2015-01-15 08:47:15 +00:00
|
|
|
|
2016-01-05 09:58:10 +00:00
|
|
|
LIBRUBY_SO = 'libruby.so'
|
|
|
|
PROBES_D = 'probes.d'
|
2015-01-15 08:47:15 +00:00
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
# These probes are excluded by VM_COLLECT_USAGE_DETAILS ifdef.
|
|
|
|
EXCLUDE_PROBES = Set.new %w(insn insn__operand)
|
|
|
|
|
|
|
|
## Detect SystemTap section headers presence
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
stap_headers = [
|
|
|
|
'\.stapsdt\.base',
|
|
|
|
'\.note\.stapsdt'
|
|
|
|
]
|
|
|
|
|
|
|
|
header_regexp = %r{ (#{stap_headers.join('|')}) }
|
|
|
|
|
|
|
|
section_headers = `readelf -S "#{LIBRUBY_SO}"`
|
|
|
|
detected_stap_headers = section_headers.scan(header_regexp).flatten
|
|
|
|
|
|
|
|
# Assume there are both headers until this is proven wrong ;)
|
|
|
|
unless detected_stap_headers.size == 2
|
|
|
|
puts 'ERROR: SystemTap (DTrace) headers were not detected in resulting library.'
|
|
|
|
exit false
|
|
|
|
end
|
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
## Find if every declared probe is propagated to resulting library
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
# Colect probes specified in probes.d file.
|
2017-01-09 14:58:21 +00:00
|
|
|
probes_declared = []
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
File.open(PROBES_D) do |file|
|
|
|
|
file.each_line do |line|
|
|
|
|
if probe = line[/probe (\S+)\(.*\);/, 1]
|
2017-01-09 14:58:21 +00:00
|
|
|
probes_declared << probe
|
2016-01-05 09:58:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
probes_declared = Set.new probes_declared
|
2016-01-05 09:58:10 +00:00
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
unless EXCLUDE_PROBES.subset? probes_declared
|
2016-01-05 09:58:10 +00:00
|
|
|
puts 'ERROR: Change in SystemTap (DTrace) probes definition file detected.'
|
|
|
|
exit false
|
|
|
|
end
|
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
probes_declared -= EXCLUDE_PROBES
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
# Detect probes in resulting library.
|
2017-01-09 14:58:21 +00:00
|
|
|
get_probes_detected = %r{
|
|
|
|
^\s*Provider:\s+ruby,\s+Name:\s+(\S+),\s+.*$
|
2016-01-05 09:58:10 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
probes_detected = `eu-readelf -n "#{LIBRUBY_SO}"`
|
|
|
|
|
|
|
|
probes_detected = Set.new probes_detected.scan(get_probes_detected).flatten
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
# Both sets must be equal, otherwise something is wrong.
|
2017-01-09 14:58:21 +00:00
|
|
|
unless probes_declared == probes_detected
|
2016-01-05 09:58:10 +00:00
|
|
|
puts 'ERROR: SystemTap (DTrace) probes were not correctly propagated into resulting library.'
|
2017-01-09 14:58:21 +00:00
|
|
|
puts " Undetected probes: #{(probes_declared - probes_detected).sort.join(', ')}\n",
|
|
|
|
" Additional detected probes: #{(probes_detected - probes_declared).sort.join(', ')}"
|
|
|
|
|
2015-01-15 08:47:15 +00:00
|
|
|
exit false
|
|
|
|
end
|