forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrewrite_sanitizer_dylib.py
152 lines (124 loc) · 5.05 KB
/
rewrite_sanitizer_dylib.py
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
140
141
142
143
144
145
146
147
148
149
150
151
152
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from argparse import ArgumentParser
import os
from pathlib import Path
import re
import shutil
import subprocess
import sys
from buildconfig import substs
"""
Scans the given directories for binaries referencing the AddressSanitizer
runtime library, copies it to the main directory and rewrites binaries to not
reference it with absolute paths but with @executable_path instead.
"""
# This is the dylib name pattern
DYLIB_NAME_PATTERN = re.compile(r"libclang_rt\.(a|ub)san_osx_dynamic\.dylib")
def resolve_rpath(filename):
otoolOut = subprocess.check_output([substs["OTOOL"], "-l", filename], text=True)
currentCmd = None
# The lines we need to find look like this:
# ...
# Load command 22
# cmd LC_RPATH
# cmdsize 80
# path /home/build/src/clang/bin/../lib/clang/3.8.0/lib/darwin (offset 12)
# Load command 23
# ...
# Other load command types have a varying number of fields.
for line in otoolOut.splitlines():
cmdMatch = re.match(r"^\s+cmd ([A-Z_]+)", line)
if cmdMatch is not None:
currentCmd = cmdMatch.group(1)
continue
if currentCmd == "LC_RPATH":
pathMatch = re.match(r"^\s+path (.*) \(offset \d+\)", line)
if pathMatch is not None:
path = pathMatch.group(1)
if Path(path).is_dir():
return path
print(f"@rpath could not be resolved from {filename}", file=sys.stderr)
sys.exit(1)
def scan_directory(path):
dylibsCopied = set()
dylibsRequired = set()
if not path.is_dir():
print(f"Input path {path} is not a folder", file=sys.stderr)
sys.exit(1)
for file in path.rglob("*"):
if not file.is_file():
continue
# Skip all files that aren't either dylibs or executable
if not (file.suffix == ".dylib" or os.access(str(file), os.X_OK)):
continue
try:
otoolOut = subprocess.check_output(
[substs["OTOOL"], "-L", str(file)], text=True
)
except Exception:
# Errors are expected on non-mach executables, ignore them and continue
continue
for line in otoolOut.splitlines():
match = DYLIB_NAME_PATTERN.search(line)
if match is not None:
dylibName = match.group(0)
absDylibPath = line.split()[0]
# Don't try to rewrite binaries twice
if absDylibPath.startswith("@executable_path/"):
continue
dylibsRequired.add(dylibName)
if dylibName not in dylibsCopied:
if absDylibPath.startswith("@rpath/"):
rpath = resolve_rpath(str(file))
copyDylibPath = absDylibPath.replace("@rpath", rpath)
else:
copyDylibPath = absDylibPath
if Path(copyDylibPath).is_file():
# Copy the runtime once to the main directory, which is passed
# as the argument to this function.
shutil.copy(copyDylibPath, str(path))
# Now rewrite the library itself
subprocess.check_call(
[
substs["INSTALL_NAME_TOOL"],
"-id",
f"@executable_path/{dylibName}",
str(path / dylibName),
]
)
dylibsCopied.add(dylibName)
else:
print(
f"dylib path in {file} was not found at: {copyDylibPath}",
file=sys.stderr,
)
# Now use install_name_tool to rewrite the path in our binary
if file.parent == path:
relpath = ""
else:
relpath = f"{os.path.relpath(str(path), str(file.parent))}/"
subprocess.check_call(
[
substs["INSTALL_NAME_TOOL"],
"-change",
absDylibPath,
f"@executable_path/{relpath}{dylibName}",
str(file),
]
)
break
dylibsMissing = dylibsRequired - dylibsCopied
if dylibsMissing:
for dylibName in dylibsMissing:
print(f"{dylibName} could not be found", file=sys.stderr)
sys.exit(1)
def parse_args(argv=None):
parser = ArgumentParser()
parser.add_argument("paths", metavar="path", type=Path, nargs="+")
return parser.parse_args(argv)
if __name__ == "__main__":
args = parse_args()
for d in args.paths:
scan_directory(d)