2016-08-20 12:46:10 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Install Voltron for whichever debuggers are detected (only GDB and LLDB so
|
|
|
|
# far).
|
|
|
|
#
|
|
|
|
# Adapted from pwndbg's install script.
|
|
|
|
#
|
|
|
|
# Usage: ./install.sh [ -u -d ]
|
|
|
|
# -u Install to user's site-packages directory
|
|
|
|
# -d Install in developer mode (-e flag passed to pip)
|
|
|
|
#
|
|
|
|
SUDO='sudo'
|
|
|
|
GDB=$(command -v gdb)
|
|
|
|
LLDB=$(command -v lldb)
|
|
|
|
|
2016-10-14 10:35:49 +00:00
|
|
|
set -x
|
2016-08-20 12:46:10 +00:00
|
|
|
|
2016-09-24 11:32:10 +00:00
|
|
|
if [ -z "${LLDB}" ]; then
|
|
|
|
for i in `seq 4 8`; do
|
|
|
|
LLDB=$(command -v lldb-3.$i)
|
|
|
|
if [ -n "${LLDB}" ]; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2016-08-20 12:46:10 +00:00
|
|
|
while getopts ":ud" opt; do
|
|
|
|
case $opt in
|
|
|
|
u)
|
|
|
|
USER_MODE='--user'
|
|
|
|
SUDO=''
|
|
|
|
;;
|
|
|
|
d)
|
|
|
|
DEV_MODE="-e"
|
|
|
|
;;
|
|
|
|
\?)
|
|
|
|
echo "Invalid option: -$OPTARG" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
function install_apt {
|
|
|
|
if uname | grep -i Linux &>/dev/null; then
|
|
|
|
sudo apt-get update
|
|
|
|
if echo $PYVER|grep "3\."; then
|
2016-09-14 22:59:03 +00:00
|
|
|
sudo apt-get -y install libreadline6-dev python3-dev python3-setuptools python3-yaml python3-pip
|
2016-08-20 12:46:10 +00:00
|
|
|
else
|
2016-09-14 22:59:03 +00:00
|
|
|
sudo apt-get -y install libreadline6-dev python-dev python-setuptools python-yaml python-pip
|
2016-08-20 12:46:10 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ -n "${GDB}" ]; then
|
|
|
|
# Find the Python version used by GDB
|
2016-10-14 10:35:49 +00:00
|
|
|
GDB_PYVER=$(${GDB} -batch -q --nx -ex 'pi import platform; print(".".join(platform.python_version_tuple()[:2]))')
|
|
|
|
GDB_PYTHON=$(${GDB} -batch -q --nx -ex 'pi import sys; print(sys.executable)')
|
|
|
|
GDB_PYTHON="${GDB_PYTHON}${GDB_PYVER}"
|
2016-08-20 12:46:10 +00:00
|
|
|
|
|
|
|
install_apt
|
|
|
|
|
|
|
|
if [ -z $USER_MODE ]; then
|
2016-09-24 11:32:10 +00:00
|
|
|
GDB_SITE_PACKAGES=$(${GDB} -batch -q --nx -ex 'pi import site; print(site.getsitepackages()[0])')
|
2016-08-20 12:46:10 +00:00
|
|
|
else
|
2016-09-24 11:32:10 +00:00
|
|
|
GDB_SITE_PACKAGES=$(${GDB} -batch -q --nx -ex 'pi import site; print(site.getusersitepackages())')
|
2016-08-20 12:46:10 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Install Voltron and dependencies
|
2016-10-14 10:35:49 +00:00
|
|
|
${SUDO} ${GDB_PYTHON} -m pip install $USER_MODE $DEV_MODE -U .
|
2016-08-20 12:46:10 +00:00
|
|
|
|
|
|
|
# Add Voltron to gdbinit
|
2016-10-14 10:35:49 +00:00
|
|
|
if ! grep voltron "${HOME}/.gdbinit" &>/dev/null; then
|
|
|
|
GDB_INIT_FILE="${HOME}/.gdbinit"
|
|
|
|
echo "source $GDB_SITE_PACKAGES/voltron/entry.py" >> ${GDB_INIT_FILE}
|
2016-08-20 12:46:10 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "${LLDB}" ]; then
|
|
|
|
# Find the Python version used by LLDB
|
2016-10-14 10:35:49 +00:00
|
|
|
LLDB_PYVER=$(${LLDB} -Qxb --one-line 'script import platform; print(".".join(platform.python_version_tuple()[:2]))'|tail -1)
|
|
|
|
LLDB_PYTHON=$(${LLDB} -Qxb --one-line 'script import sys; print(sys.executable)'|tail -1)
|
|
|
|
LLDB_PYTHON="${LLDB_PYTHON}${LLDB_PYVER}"
|
2016-08-20 12:46:10 +00:00
|
|
|
if [ -z $USER_MODE ]; then
|
2016-09-24 11:32:10 +00:00
|
|
|
LLDB_SITE_PACKAGES=$(${LLDB} -Qxb --one-line 'script import site; print(site.getsitepackages()[0])'|tail -1)
|
2016-08-20 12:46:10 +00:00
|
|
|
else
|
2016-09-24 11:32:10 +00:00
|
|
|
LLDB_SITE_PACKAGES=$(${LLDB} -Qxb --one-line 'script import site; print(site.getusersitepackages())'|tail -1)
|
2016-08-20 12:46:10 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
install_apt
|
|
|
|
|
|
|
|
if [ "$LLDB_SITE_PACKAGES" == "$GDB_SITE_PACKAGES" ]; then
|
|
|
|
echo "Skipping installation for LLDB - same site-packages directory"
|
|
|
|
else
|
|
|
|
# Install Voltron and dependencies
|
2016-10-14 10:35:49 +00:00
|
|
|
${SUDO} ${LLDB_PYTHON} -m pip install $USER_MODE $DEV_MODE -U .
|
2016-08-20 12:46:10 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Add Voltron to lldbinit
|
2016-10-14 10:35:49 +00:00
|
|
|
if ! grep voltron "${HOME}/.lldbinit" &>/dev/null; then
|
2016-10-17 13:01:13 +00:00
|
|
|
LLDB_INIT_FILE="${HOME}/.lldbinit"
|
2016-10-14 10:35:49 +00:00
|
|
|
echo "command script import $LLDB_SITE_PACKAGES/voltron/entry.py" >> ${LLDB_INIT_FILE}
|
2016-08-20 12:46:10 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${GDB}" ] && [ -z "${LLDB}" ]; then
|
|
|
|
# Find system Python
|
|
|
|
PYTHON=$(command -v python)
|
|
|
|
PYVER=$(${PYTHON} -c 'import platform; print(".".join(platform.python_version_tuple()[:2]))')
|
|
|
|
if [ -z $USER_MODE ]; then
|
|
|
|
PYTHON_SITE_PACKAGES=$(${PYTHON} -c 'import site; print(site.getsitepackages()[0])')
|
|
|
|
else
|
|
|
|
PYTHON_SITE_PACKAGES=$(${PYTHON} -c 'import site; print(site.getusersitepackages())')
|
|
|
|
fi
|
|
|
|
|
|
|
|
install_apt
|
|
|
|
|
|
|
|
# Install Voltron and dependencies
|
|
|
|
${SUDO} ${PYTHON} -m pip install $USER_MODE $DEV_MODE -U .
|
|
|
|
fi
|
|
|
|
|
|
|
|
set +x
|
|
|
|
echo "=============================================================="
|
|
|
|
if [ -n "${GDB}" ]; then
|
|
|
|
echo "Installed for GDB (${GDB}):"
|
2016-10-14 10:35:49 +00:00
|
|
|
echo " Python: $GDB_PYTHON"
|
2016-08-20 12:46:10 +00:00
|
|
|
echo " Packages directory: $GDB_SITE_PACKAGES"
|
2016-10-14 10:35:49 +00:00
|
|
|
if [ -n "${GDB_INIT_FILE}" ]; then
|
2016-08-20 12:46:10 +00:00
|
|
|
echo " Added voltron to: ~/.gdbinit"
|
|
|
|
else
|
|
|
|
echo " Already loaded in: ~/.gdbinit"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ -n "${LLDB}" ]; then
|
|
|
|
echo "Installed for LLDB (${LLDB}):"
|
2016-10-14 10:35:49 +00:00
|
|
|
echo " Python: $LLDB_PYTHON"
|
2016-08-20 12:46:10 +00:00
|
|
|
echo " Packages directory: $LLDB_SITE_PACKAGES"
|
2016-10-14 10:35:49 +00:00
|
|
|
if [ -n "${LLDB_INIT_FILE}" ]; then
|
2016-08-20 12:46:10 +00:00
|
|
|
echo " Added voltron to: ~/.lldbinit"
|
|
|
|
else
|
|
|
|
echo " Already loaded in: ~/.lldbinit"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ -z "${GDB}" ] && [ -z "${LLDB}" ]; then
|
|
|
|
echo "Couldn't find any debuggers. Installed using the Python in your path:"
|
|
|
|
echo " Python: $PYTHON"
|
|
|
|
echo " Packages directory: $PYTHON_SITE_PACKAGES"
|
|
|
|
echo " Did not add Voltron to any debugger init files."
|
|
|
|
fi
|