reverie/scripts/dump-vdso.py
generatedunixname89002005287564 a455a6b619
Some checks failed
ci / Check (push) Has been cancelled
ci / Test Suite (push) Has been cancelled
ci / Clippy (push) Has been cancelled
hermetic_infra
Reviewed By: jasonwhite

Differential Revision: D64105413

fbshipit-source-id: 0d3a27a9a3d9deeaa545e42b9e2d96ed307d5c18
2024-10-09 17:24:28 -07:00

58 lines
1.4 KiB
Python
Executable file

#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""
Dumps VDSO to the given file. This is useful for debugging why Reverie might not
be able to patch VDSO entries.
Usage: ./dump-vdso.py [filename]
Examples:
./dump-vdso.py | hexdump -C
./dump-vdso.py vdso.so && objdump -d vdso.so
"""
import argparse
import ctypes
import sys
from typing import List, Optional
def dump_vdso() -> list[ctypes.c_ubyte] | None:
"""
Returns a list containing the VDSO.
"""
with open("/proc/self/maps") as f:
for line in f:
if "[vdso]" in line:
start, end = (int(x, 16) for x in line.split(" ")[0].split("-"))
length = end - start
return (ctypes.c_ubyte * length).from_address(start)
def main() -> int:
parser = argparse.ArgumentParser(
prog="dump-vdso", description="Dumps VDSO to the given file."
)
parser.add_argument("filename", nargs="?", help="Filename to write to.")
args = parser.parse_args()
data = dump_vdso()
if args.filename:
with open(args.filename, "wb") as f:
f.write(data)
else:
sys.stdout.buffer.write(data)
return 0
if __name__ == "__main__":
main()