Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create a KVM image
  2. Update the the KVM xml file:
    1. Code Block
      sudo virsh edit <uuid>
       
      <domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>
      
      
      ###and at the end add:
      
      
        <qemu:commandline>
          <qemu:arg value='-gdb'/>
          <qemu:arg value='tcp::1200'/> ## 1200 is the TCP port that gdb will connect on
        </qemu:commandline>
      </domain>
    2. On Ubuntu host the "sudo virsh edit" approach didn't seem to update the VM's definition. The following approach work:
      1. Code Block
        virsh dumpxml test03 > test03.xml
        vi test03.xml # Update it as above
        virsh define test03.xml
  3. Grab the vmlinux and unzip it 
    1. Code Block
      /boot/vmlinux-2.6.32.431.23.3.el6_lustre.bz2
    2. place the vmlinux on y our guest OS
  4. Download and place the attached .gdbinit in your home directory
  5. Place the modules with debugging symbols on your host machine
  6. Starup the guest OS
  7. On the guest, Load the modules you wish to debug lnet.ko for example.
  8. On the host, startup gdb with the vmlinux
    1. Code Block
      gdb vmlinux-2.6.32.431.23.3.el6_lustre
  9. In GDB on the guest: 
    1. Code Block
      (gdb) target remote localhost:1200
      ## This is defined int he .gdbinit and it will list all the addresses of the loaded modules
      (gdb) mod-list-syms
      add-symbol-file lnet.ko 0xffffffffa03c8000
      add-symbol-file sha512_generic.ko 0xffffffffa00a8000
      add-symbol-file sha256_generic.ko 0xffffffffa0065000
      add-symbol-file crc32c_intel.ko 0xffffffffa0023000
      add-symbol-file libcfs.ko 0xffffffffa0356000
      add-symbol-file fuse.ko 0xffffffffa0231000
      add-symbol-file autofs4.ko 0xffffffffa034e000
      add-symbol-file sunrpc.ko 0xffffffffa02f5000
      add-symbol-file bnx2fc.ko 0xffffffffa02d7000
      ....
      ## Add the symbols to GDB using the module with debugging symbols you copied to your host machine
      (gdb) add-symbol-file /path/to/lnet.ko 0xffffffffa03c8000
      ## Add breakpoints as you wish
      ## continue execution 
      (gdb) continue

      By this point the symbols for the module you wish to debug is loaded in GDB and GDB is attached to your guest OS.

  10. Add strategic breakpoints to enhance your debugging
  11. Invoke the scenario you wish to debug
  12. GDB will break at the desired break points, allowing you to debug as you normally would a user space program from gdb.