mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 00:17:37 +01:00
266299a931
GitOrigin-RevId: 00afb717506f28ff9190241e7db96d0dfb7be347
60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
"""
|
|
Signs all of the known testing binaries with insecure development entitlements.
|
|
|
|
Specifically the `Get Task Allow` is what we are looking for.
|
|
Adding the `Get Task Allow` entitlement allows us to attach to
|
|
the mongo processes and get core dumps/debug in any way we need.
|
|
You can view some more documentation on this topic here:
|
|
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_debugger#discussion
|
|
"""
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
from buildscripts.resmokelib.hang_analyzer.gen_hang_analyzer_tasks import (
|
|
LOCAL_BIN_DIR,
|
|
MULTIVERSION_BIN_DIR,
|
|
)
|
|
|
|
|
|
def main():
|
|
if sys.platform != "darwin":
|
|
print("Non-macos system detected, do not need to sign binaries.")
|
|
sys.exit(0)
|
|
|
|
build_bin_dir = os.path.join("build", "install", "bin")
|
|
binary_directories = [MULTIVERSION_BIN_DIR, LOCAL_BIN_DIR, build_bin_dir]
|
|
entitlements_file = os.path.abspath(os.path.join("etc", "macos_dev_entitlements.xml"))
|
|
assert os.path.exists(entitlements_file), f"{entitlements_file} does not exist"
|
|
|
|
for binary_dir in binary_directories:
|
|
if not os.path.exists(binary_dir):
|
|
continue
|
|
|
|
for binary in os.listdir(binary_dir):
|
|
binary_path = os.path.join(binary_dir, binary)
|
|
if not os.path.isfile(binary_path):
|
|
continue
|
|
|
|
cmd = [
|
|
"/usr/bin/codesign",
|
|
"-s",
|
|
"-",
|
|
"-f",
|
|
"--entitlements",
|
|
entitlements_file,
|
|
binary_path,
|
|
]
|
|
|
|
print(f"Signing {binary}")
|
|
try:
|
|
subprocess.run(cmd, check=True)
|
|
except subprocess.CalledProcessError:
|
|
print(f"Signing {binary} retry")
|
|
subprocess.run(cmd, check=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|