2013-11-15 19:51:08 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Merge or print the coverage data collected by asan's coverage.
|
|
|
|
# Input files are sequences of 4-byte integers.
|
|
|
|
# We need to merge these integers into a set and then
|
|
|
|
# either print them (as hex) or dump them into another file.
|
|
|
|
import array
|
2014-05-19 20:53:03 +08:00
|
|
|
import struct
|
2013-11-15 19:51:08 +08:00
|
|
|
import sys
|
2014-05-27 20:37:52 +08:00
|
|
|
import bisect
|
|
|
|
import os.path
|
2013-11-15 19:51:08 +08:00
|
|
|
|
|
|
|
prog_name = "";
|
|
|
|
|
|
|
|
def Usage():
|
|
|
|
print >> sys.stderr, "Usage: \n" + \
|
2015-03-18 06:09:19 +08:00
|
|
|
" " + prog_name + " [32|64] merge file1 [file2 ...] > output\n" \
|
|
|
|
" " + prog_name + " [32|64] print file1 [file2 ...]\n" \
|
|
|
|
" " + prog_name + " [32|64] unpack file1 [file2 ...]\n" \
|
|
|
|
" " + prog_name + " [32|64] rawunpack file1 [file2 ...]\n"
|
2013-11-15 19:51:08 +08:00
|
|
|
exit(1)
|
|
|
|
|
2015-03-18 06:09:19 +08:00
|
|
|
def TypeCodeForBits(bits):
|
|
|
|
if bits == 64:
|
|
|
|
return 'L'
|
|
|
|
else:
|
|
|
|
return 'I'
|
|
|
|
|
|
|
|
def ReadOneFile(path, bits):
|
2014-05-19 20:53:03 +08:00
|
|
|
with open(path, mode="rb") as f:
|
|
|
|
f.seek(0, 2)
|
|
|
|
size = f.tell()
|
|
|
|
f.seek(0, 0)
|
2015-03-18 08:23:44 +08:00
|
|
|
s = array.array(TypeCodeForBits(bits), f.read(size))
|
2015-03-18 06:09:19 +08:00
|
|
|
print >>sys.stderr, "%s: read %d PCs from %s" % (prog_name, size * 8 / bits, path)
|
2013-11-15 19:51:08 +08:00
|
|
|
return s
|
|
|
|
|
2015-03-18 06:09:19 +08:00
|
|
|
def Merge(files, bits):
|
2013-11-15 19:51:08 +08:00
|
|
|
s = set()
|
|
|
|
for f in files:
|
2015-03-18 08:23:44 +08:00
|
|
|
s = s.union(set(ReadOneFile(f, bits)))
|
2013-11-15 19:51:08 +08:00
|
|
|
print >> sys.stderr, "%s: %d files merged; %d PCs total" % \
|
|
|
|
(prog_name, len(files), len(s))
|
|
|
|
return sorted(s)
|
|
|
|
|
2015-03-18 06:09:19 +08:00
|
|
|
def PrintFiles(files, bits):
|
2015-03-18 08:23:44 +08:00
|
|
|
if len(files) > 1:
|
|
|
|
s = Merge(files, bits)
|
|
|
|
else: # If there is just on file, print the PCs in order.
|
|
|
|
s = ReadOneFile(files[0], bits)
|
2013-11-15 19:51:08 +08:00
|
|
|
for i in s:
|
|
|
|
print "0x%x" % i
|
|
|
|
|
2015-03-18 06:09:19 +08:00
|
|
|
def MergeAndPrint(files, bits):
|
2013-11-15 19:51:08 +08:00
|
|
|
if sys.stdout.isatty():
|
|
|
|
Usage()
|
2015-03-18 06:09:19 +08:00
|
|
|
s = Merge(files, bits)
|
|
|
|
a = array.array(TypeCodeForBits(bits), s)
|
2013-11-15 19:51:08 +08:00
|
|
|
a.tofile(sys.stdout)
|
|
|
|
|
2014-05-19 20:53:03 +08:00
|
|
|
|
|
|
|
def UnpackOneFile(path):
|
|
|
|
with open(path, mode="rb") as f:
|
|
|
|
print >> sys.stderr, "%s: unpacking %s" % (prog_name, path)
|
|
|
|
while True:
|
|
|
|
header = f.read(12)
|
|
|
|
if not header: return
|
|
|
|
if len(header) < 12:
|
|
|
|
break
|
|
|
|
pid, module_length, blob_size = struct.unpack('iII', header)
|
|
|
|
module = f.read(module_length)
|
|
|
|
blob = f.read(blob_size)
|
|
|
|
assert(len(module) == module_length)
|
|
|
|
assert(len(blob) == blob_size)
|
|
|
|
extracted_file = "%s.%d.sancov" % (module, pid)
|
|
|
|
print >> sys.stderr, "%s: extracting %s" % \
|
|
|
|
(prog_name, extracted_file)
|
|
|
|
# The packed file may contain multiple blobs for the same pid/module
|
|
|
|
# pair. Append to the end of the file instead of overwriting.
|
|
|
|
with open(extracted_file, 'ab') as f2:
|
|
|
|
f2.write(blob)
|
|
|
|
# fail
|
|
|
|
raise Exception('Error reading file %s' % path)
|
|
|
|
|
|
|
|
|
|
|
|
def Unpack(files):
|
|
|
|
for f in files:
|
|
|
|
UnpackOneFile(f)
|
|
|
|
|
2015-03-18 06:09:19 +08:00
|
|
|
def UnpackOneRawFile(path, map_path, bits):
|
2014-05-27 20:37:52 +08:00
|
|
|
mem_map = []
|
|
|
|
with open(map_path, mode="rt") as f_map:
|
|
|
|
print >> sys.stderr, "%s: reading map %s" % (prog_name, map_path)
|
2015-03-18 06:09:19 +08:00
|
|
|
if bits != int(f_map.readline()):
|
|
|
|
raise Exception('Wrong bits size in the map')
|
2014-05-27 20:37:52 +08:00
|
|
|
for line in f_map:
|
|
|
|
parts = line.rstrip().split()
|
|
|
|
mem_map.append((int(parts[0], 16),
|
|
|
|
int(parts[1], 16),
|
|
|
|
int(parts[2], 16),
|
2014-06-03 23:25:43 +08:00
|
|
|
' '.join(parts[3:])))
|
2014-05-27 20:37:52 +08:00
|
|
|
mem_map.sort(key=lambda m : m[0])
|
|
|
|
mem_map_keys = [m[0] for m in mem_map]
|
|
|
|
|
|
|
|
with open(path, mode="rb") as f:
|
|
|
|
print >> sys.stderr, "%s: unpacking %s" % (prog_name, path)
|
|
|
|
|
|
|
|
f.seek(0, 2)
|
|
|
|
size = f.tell()
|
|
|
|
f.seek(0, 0)
|
2015-03-18 06:09:19 +08:00
|
|
|
pcs = array.array(TypeCodeForBits(bits), f.read(size))
|
2014-05-27 20:37:52 +08:00
|
|
|
mem_map_pcs = [[] for i in range(0, len(mem_map))]
|
|
|
|
|
|
|
|
for pc in pcs:
|
|
|
|
if pc == 0: continue
|
|
|
|
map_idx = bisect.bisect(mem_map_keys, pc) - 1
|
|
|
|
(start, end, base, module_path) = mem_map[map_idx]
|
|
|
|
assert pc >= start
|
|
|
|
if pc >= end:
|
|
|
|
print >> sys.stderr, "warning: %s: pc %x outside of any known mapping" % (prog_name, pc)
|
|
|
|
continue
|
|
|
|
mem_map_pcs[map_idx].append(pc - base)
|
|
|
|
|
|
|
|
for ((start, end, base, module_path), pc_list) in zip(mem_map, mem_map_pcs):
|
|
|
|
if len(pc_list) == 0: continue
|
|
|
|
assert path.endswith('.sancov.raw')
|
|
|
|
dst_path = module_path + '.' + os.path.basename(path)[:-4]
|
2014-12-26 00:03:24 +08:00
|
|
|
print >> sys.stderr, "%s: writing %d PCs to %s" % (prog_name, len(pc_list), dst_path)
|
2015-03-18 06:09:19 +08:00
|
|
|
arr = array.array(TypeCodeForBits(bits))
|
2014-05-27 20:37:52 +08:00
|
|
|
arr.fromlist(sorted(pc_list))
|
|
|
|
with open(dst_path, 'ab') as f2:
|
|
|
|
arr.tofile(f2)
|
|
|
|
|
2015-03-18 06:09:19 +08:00
|
|
|
def RawUnpack(files, bits):
|
2014-05-27 20:37:52 +08:00
|
|
|
for f in files:
|
|
|
|
if not f.endswith('.sancov.raw'):
|
|
|
|
raise Exception('Unexpected raw file name %s' % f)
|
|
|
|
f_map = f[:-3] + 'map'
|
2015-03-18 06:09:19 +08:00
|
|
|
UnpackOneRawFile(f, f_map, bits)
|
2014-05-19 20:53:03 +08:00
|
|
|
|
2013-11-15 19:51:08 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
prog_name = sys.argv[0]
|
2015-03-18 06:09:19 +08:00
|
|
|
if len(sys.argv) <= 3:
|
|
|
|
Usage();
|
|
|
|
|
|
|
|
if sys.argv[1] == "32":
|
|
|
|
bits = 32
|
|
|
|
elif sys.argv[1] == "64":
|
|
|
|
bits = 64
|
|
|
|
else:
|
2013-11-15 19:51:08 +08:00
|
|
|
Usage();
|
2015-03-18 06:09:19 +08:00
|
|
|
|
|
|
|
if sys.argv[2] == "print":
|
|
|
|
PrintFiles(sys.argv[3:], bits)
|
|
|
|
elif sys.argv[2] == "merge":
|
|
|
|
MergeAndPrint(sys.argv[3:], bits)
|
|
|
|
elif sys.argv[2] == "unpack":
|
|
|
|
Unpack(sys.argv[3:])
|
|
|
|
elif sys.argv[2] == "rawunpack":
|
|
|
|
RawUnpack(sys.argv[3:], bits)
|
2013-11-15 19:51:08 +08:00
|
|
|
else:
|
|
|
|
Usage()
|