Eric Schrock's Blog

Debugging on AMD64 – Part Three

November 21, 2004

Given that the amd64 ABI is nearly set in stone, and (as pointed out in comments on my last entry) future OpenSolaris ports could run into similar problems on other architectures (like PowerPC), you may wonder how we can make life easier in Solaris. In this entry I’ll elaborate on two possibilities. Note that these are little more than fantasies at the moment – no real engineering work has been done, nor is there any guarantee that they will appear in a future Solaris release.

DWARF Support for MDB

Even though DWARF is a complex beast, it’s not impossible to write an interpreter. It’s just a matter of doing the work. The more subtle problem is designing it correctly, and making the data accessible in the kernel. Since MDB and KMDB are primarily kernel or post-mortem userland tools, this has not been a high priority. CTF gives us most of what we need, and including all the DWARF information in the kernel (or corefiles) is prohibitively expensive. That being said, there are those among us that would like to see MDB take a more prominent userland role (where it would compete with dbx and gdb), at which point proper DWARF support would be a very nice thing to have.

If this is done properly, we’ll end up with a debugging library that’s format-independent. Whether the target has CTF, STABS, or DWARF data, MDB (and KMDB) will just “do the right thing”. No one argues that this isn’t a cool idea – it’s just a matter of engineering resources and business justification.

Programmatic Disassembler

The alternative solution is to create a disassembler library that understands code at a semantic level. Once you have a disassembler that understands the logical breakdown of a program, you can determine (via simulation) the original argument values to functions. Of course, it’s not always guaranteed to work, but you’ll always know when you’re guessing (even DWARF can’t be correct 100% of the time). This requires no debugging information, only the machine text. It will also help out the DTrace pid provider, which has to wrestle with jump tables and other werid compiler-isms. Of course, this is monumentally more difficult than a DWARF parser – especially on x86.

This idea (along with a prototype) has been around for many years. The converted have prophesized that libdis will bring peace to the world and an end to world hunger. As with many great ideas, there just hasn’t been justification for devoting the necessary engineering resources. But if it can get the arguments to functions on amd64 correct in 98% of the situations, it would be incredibly valuable.

OpenSolaris Debugging Futures

There are a host of other ideas that we have kicking around here in the Solaris group. They range from pretty mundance to completely insane. As OpenSolaris finishes getting in gear, I’m looking forward to getting these ideas out in the public and finding support for all the cool possibilities that just aren’t high enough priority for us right now. The existence of a larger development community will also make good debugging tools a much better business proposition.

Recent Posts

April 21, 2013
February 28, 2013
August 14, 2012
July 28, 2012

Archives