This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
doghook/attach-basic.sh
F1ssi0N 7d54105fec
Fix all issues related to running doghook on linux (#21)
* add more linux signatures

* Update premake script to generate correct symbols on respective platforms

* Add debugger gdb for linux builds

* Change from -ggdb to -gdwarf

* change from -gdward to -g3

* Update linux signatures

* Fix issues with virtual function calling

* Fix a bunch of crashes.

* Update prediction vfunc indexes

* Update more indexes

* No more crashes!

* Fix usercmd padding

* Fix more index issues

* Change attach scripts to reflect what they do

* Fix windows compilation issues - remove hardcoded path from attach-basic

* Update attach script
2018-03-18 19:24:49 +00:00

62 lines
1.3 KiB
Bash
Executable File

#!/usr/bin/env bash
# cwd into where this script is located
line=$(pidof hl2_linux)
arr=($line)
inst=$1
if [ $# == 0 ]; then
inst=0
fi
if [ ${#arr[@]} == 0 ]; then
echo TF2 isn\'t running!
exit
fi
if [ $inst -gt ${#arr[@]} ] || [ $inst == ${#arr[@]} ]; then
echo wrong index!
exit
fi
proc=${arr[$inst]}
echo Running instances: "${arr[@]}"
echo Attaching to "$proc"
#sudo ./detach $inst bin/libcathook.so
#if grep -q "$(realpath bin/libcathook.so)" /proc/"$proc"/maps; then
# echo already loaded
# exit
#fi
# pBypass for crash dumps being sent
# You may also want to consider using -nobreakpad in your launch options.
sudo rm -rf /tmp/dumps # Remove if it exists
sudo mkdir /tmp/dumps # Make it as root
sudo chmod 000 /tmp/dumps # No permissions
#FILENAME="/tmp/.gl$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 6 | head -n 1)"
#cp "bin/Debug/libdoghook.so" "$FILENAME"
FILENAME=$(readlink -f "${0%/*}/bin/Debug/libdoghook.so")
echo loading "$FILENAME" to "$proc"
sudo killall -19 steam
sudo killall -19 steamwebhelper
sudo gdb -n -q -batch \
-ex "attach $proc" \
-ex "set \$dlopen = (void*(*)(char*, int)) dlopen" \
-ex "call \$dlopen(\"$FILENAME\", 1)" \
-ex "call dlerror()" \
-ex 'print (char *) $2' \
-ex "detach" \
-ex "quit"
#rm $FILENAME
sudo killall -18 steamwebhelper
sudo killall -18 steam