Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Remote debugging with GDB

April 28, 2015
Gary Benson

Share:

    gnu logoThis past few weeks I've been working on making remote debugging in GDB easier to use. What's remote debugging? It's where you run GDB on one machine and the program being debugged on another. To do this you need something to allow GDB to control the program being debugged, and that something is called the remote stub. GDB ships with a remote stub called gdbserver, but other remote stubs exist. You can write them into your own program too, which is handy if you're using minimal or unusual hardware that cannot run regular applications... cellphone masts, satellites, that kind of thing.  I bet you didn't know GDB could do that!

    If you've used remote debugging in GDB you'll know it requires a certain amount of setup. You need to tell GDB how to access to your program's binaries with a set sysroot command, you need to obtain a local copy of the main executable and supply that to GDB with a file command, and you need to tell GDB to commence remote debugging with a target remote command.

    Until now.

    Now all you need is the target remote command.

    This new code is really new. It's not in any GDB release yet, let alone in RHEL or Fedora. So, with the caveat that none of these examples will work today unless you built GDB yourself from git or a snapshot, here's some things you can do with gdbserver using the new code.

    Here's an example of a traditional remote debugging session, with the things you type in bold. In one window:

    abc$ ssh xyz.example.com
    xyz$ gdbserver :9999 --attach 5312
    Attached; pid = 5312
    Listening on port 9999

    gdbserver attached to process 5312, stopped it, and is waiting for GDB to talk to it on TCP port 9999. Now, in another window:

    abc$ gdb -q
    (gdb) target remote xyz.example.com:9999
    Remote debugging using xyz.example.com:9999
    ...lots of messages you can ignore...
    (gdb) bt
    #0 0x00000035b5edf098 in *__GI___poll (fds=0x27467a0, nfds=8,
    timeout=<optimized out>) at ../sysdeps/unix/sysv/linux/poll.c:83
    #1 0x00000035b76449f9 in ?? () from target:/lib64/libglib-2.0.so.0
    #2 0x00000035b76451a5 in g_main_loop_run ()
    from target:/lib64/libglib-2.0.so.0
    #3 0x0000003dfd34dd17 in gtk_main ()
    from target:/usr/lib64/libgtk-x11-2.0.so.0
    #4 0x000000000040913d in main ()

    Now you have GDB on one machine (abc) controlling process 5312 on another machine (xyz) via gdbserver.  I did a backtrace here, but you can do pretty much anything you can with regular, non-remote GDB.

    I called that a "traditional" remote debugging session because that's how a lot of people use this, but there's a more flexible way of doing things if you're using gdbserver as your stub. GDB and gdbserver can communicate over stdio pipes, so you can chain commands, and the new code to remove all the setup you used to need makes this really nice. Lets do that first example again, with pipes this time:

    abc$ gdb -q
    (gdb) target remote | ssh -T xyz.example.com gdbserver - --attach 5312
    Remote debugging using | ssh -T xyz.example.com gdbserver - --attach 5312
    Attached; pid = 5312
    Remote debugging using stdio
    ...lots of messages...
    (gdb)

    The "-" in gdbserver's argument list replaces the ":9999" in the previous example. It tells gdbserver we're using stdio pipes rather than TCP port 9999. As well as configuring everything with single command, this has the advantage that the communication is through ssh; there's no security in GDB's remote protocol, so it's not the kind of thing you want to do over the open internet.

    What else can you do with this? Anything you can do through stdio pipes! You can enter Docker containers:

    (gdb) target remote | sudo docker exec -i e0c1afa81e1d gdbserver - --attach 58
    Remote debugging using | sudo docker exec -i e0c1afa81e1d gdbserver - --attach 58
    Attached; pid = 58
    Remote debugging using stdio
    ...

    Notice how I slipped sudo in there too. Anything you can do over stdio pipes, remember? If you're using Kubernetes you can use kubectl exec, or with OpenShift osc exec.

    gdbserver can do more than just attach, you can start programs with it too:

    (gdb) target remote | sudo docker exec -i e0c1afa81e1d gdbserver - /bin/sh
    Remote debugging using | sudo docker exec -i e0c1afa81e1d gdbserver - /bin/sh
    Process /bin/sh created; pid = 89
    stdin/stdout redirected
    Remote debugging using stdio
    ...

    Or you can start it without any specific program, and then tell it what do do from within GDB. This is by far the most flexible way to use gdbserver.  You can control more than one process, for example:

    (gdb) target extended-remote | ssh -T root@xyz.example.com gdbserver --multi -
    Remote debugging using | gdbserver --multi -
    Remote debugging using stdio
    (gdb) attach 774
    ...messages...
    (gdb) add-inferior
    Added inferior 2
    (gdb) inferior 2
    [Switching to inferior 2 [<null>] (<noexec>)]
    (gdb) attach 871
    ...messages...
    (gdb) info inferiors
    Num Description Executable
    * 2 process 871 target:/usr/sbin/httpd
      1 process 774 target:/usr/libexec/mysqld

    Ready to debug that connection issue between your webserver and database?

    Last updated: October 18, 2018

    Recent Posts

    • Speech-to-text with Whisper and Red Hat AI Inference Server

    • How to use Splunk as an event source for Event-Driven Ansible

    • Integrate vLLM inference on macOS/iOS with Llama Stack APIs

    • Optimize model serving at the edge with RawDeployment mode

    • Introducing Red Hat build of Cryostat 4.0

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue