Newer
Older
minerva / Meta / debug-kernel.sh
@minerva minerva on 13 Jul 2 KB Initial commit
#!/usr/bin/env bash

SCRIPT_DIR="$(dirname "${0}")"

if [ -z "$MINERVA_ARCH" ]; then
    MINERVA_ARCH="x86_64"
fi

# Set this environment variable to override the default debugger.
#
if [ -z "$MINERVA_KERNEL_DEBUGGER" ]; then
    # Prepend the toolchain's GDB bin directory so we pick up GDB from there
    PATH="$SCRIPT_DIR/../Toolchain/Local/$MINERVA_ARCH-gdb/bin:$PATH"
    # GDB used to be installed directly inside the toolchain bin directory
    PATH="$SCRIPT_DIR/../Toolchain/Local/$MINERVA_ARCH/bin:$PATH"

    if command -v "$MINERVA_ARCH-pc-minerva-gdb" >/dev/null; then
        MINERVA_KERNEL_DEBUGGER="$MINERVA_ARCH-pc-minerva-gdb"
    elif command -v "$MINERVA_ARCH-elf-gdb" >/dev/null; then
        MINERVA_KERNEL_DEBUGGER="$MINERVA_ARCH-elf-gdb"
    elif command -v gdb >/dev/null && gdb -ex 'set architecture' -ex 'quit' 2>&1 | grep "${MINERVA_ARCH//_/-}"; then
        MINERVA_KERNEL_DEBUGGER="gdb"
    else
        echo "Error: No suitable GDB installation found." >&2
        echo "Please install $MINERVA_ARCH-elf-gdb or build it with Toolchain/BuildGDB.sh $MINERVA_ARCH" >&2
        # Prevent tmux from dying instantly by waiting for user input
        read -rp "Press Enter to exit"
        exit 1
    fi
fi

toolchain_suffix=
if [ "$MINERVA_TOOLCHAIN" = "Clang" ]; then
    toolchain_suffix="clang"
fi

# The QEMU -s option (enabled by default in ./run) sets up a debugger
# remote on localhost:1234. So point our debugger there, and inform
# the debugger which binary to load symbols, etc from.
#
if [ "$MINERVA_ARCH" = "x86_64" ]; then
    gdb_arch=i386:x86-64
    prekernel_image=Prekernel64
    kernel_image=Kernel_shared_object
    kernel_base=0x2000200000
elif [ "$MINERVA_ARCH" = "aarch64" ]; then
    gdb_arch=aarch64:armv8-r
    prekernel_image=Prekernel
    kernel_image=Kernel
    kernel_base=0x0
elif [ "$MINERVA_ARCH" = "riscv64" ]; then
    gdb_arch=riscv:rv64
    prekernel_image=Prekernel
    kernel_image=Kernel
    kernel_base=0x0
fi

# FIXME: This doesn't work when running QEMU inside the WSL2 VM
if command -v wslpath >/dev/null; then
    gdb_host=$(powershell.exe "(Test-Connection -ComputerName (hostname) -Count 1).IPV4Address.IPAddressToString" | tr -d '\r\n')
else
    gdb_host=${MINERVA_HOST_IP:-127.0.0.1}
fi


exec $MINERVA_KERNEL_DEBUGGER \
    -ex "file $SCRIPT_DIR/../Build/${MINERVA_ARCH:-x86_64}$toolchain_suffix/Kernel/Prekernel/$prekernel_image" \
    -ex "set confirm off" \
    -ex "directory $SCRIPT_DIR/../Build/${MINERVA_ARCH:-x86_64}$toolchain_suffix/" \
    -ex "add-symbol-file $SCRIPT_DIR/../Build/${MINERVA_ARCH:-x86_64}$toolchain_suffix/Kernel/$kernel_image -o $kernel_base" \
    -ex "set confirm on" \
    -ex "set arch $gdb_arch" \
    -ex "set print frame-arguments none" \
    -ex "set print asm-demangle on" \
    -ex "target remote ${gdb_host}:1234" \
    -ex "source $SCRIPT_DIR/minerva_gdb.py" \
    -ex "layout asm" \
    -ex "fs next" \
    "$@"