47 lines
1001 B
Bash
Executable File
47 lines
1001 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sbf_sdk=$(cd "$(dirname "$0")/.." && pwd)
|
|
# shellcheck source=sdk/sbf/env.sh
|
|
source "$sbf_sdk"/env.sh
|
|
|
|
so=$1
|
|
dump=$2
|
|
if [[ -z $so ]] || [[ -z $dump ]]; then
|
|
echo "Usage: $0 sbf-program.so dump.txt" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -r $so ]]; then
|
|
echo "Error: File not found or readable: $so" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! command -v rustfilt > /dev/null; then
|
|
echo "Error: rustfilt not found. It can be installed by running: cargo install rustfilt" >&2
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
out_dir=$(dirname "$dump")
|
|
if [[ ! -d $out_dir ]]; then
|
|
mkdir -p "$out_dir"
|
|
fi
|
|
dump_mangled=$dump.mangled
|
|
|
|
(
|
|
set -ex
|
|
ls -la "$so" > "$dump_mangled"
|
|
"$sbf_sdk"/dependencies/platform-tools/llvm/bin/llvm-readelf -aW "$so" >>"$dump_mangled"
|
|
"$OBJDUMP" --print-imm-hex --source --disassemble "$so" >> "$dump_mangled"
|
|
sed s/://g < "$dump_mangled" | rustfilt > "$dump"
|
|
)
|
|
rm -f "$dump_mangled"
|
|
|
|
if [[ ! -f "$dump" ]]; then
|
|
echo "Error: Failed to create $dump" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo >&2
|
|
echo "Wrote $dump" >&2
|